diff --git a/grammar-declarations.js b/grammar-declarations.js index e653728..a98ea81 100644 --- a/grammar-declarations.js +++ b/grammar-declarations.js @@ -9,6 +9,7 @@ module.exports = { $.typedef_declaration, $.function_declaration, $.variable_declaration, + $.enum_declaration, ), _access_identifier: ($) => choice('default', 'null', 'get', 'set', 'dynamic', 'never'), access_identifiers: ($) => @@ -59,6 +60,13 @@ module.exports = { field('body', $.block), ), + enum_declaration: ($) => + seq( + 'enum', + field('name', $._lhs_expression), + field('body', $.block) + ), + typedef_declaration: ($) => seq( repeat($.metadata), diff --git a/grammar-literals.js b/grammar-literals.js index 480620f..0037202 100644 --- a/grammar-literals.js +++ b/grammar-literals.js @@ -25,7 +25,8 @@ module.exports = { array: ($) => choice( seq('[', commaSep(prec.left($.expression)), ']'), - seq('[', $.expression, $.identifier, ']'), //array comprehension + seq('[', $.for_statement,prec.right($.expression), ']'), //array comprehension + seq('[', $.while_statement, prec.right($.expression), ']'), //array comprehension ), // https://haxe.org/manual/expression-map-declaration.html diff --git a/grammar.js b/grammar.js index f4b3fea..b7e9598 100644 --- a/grammar.js +++ b/grammar.js @@ -30,6 +30,11 @@ const haxe_grammar = { [$.function_declaration, $.variable_declaration], [$._prefixUnaryOperator, $._arithmeticOperator], [$._prefixUnaryOperator, $._postfixUnaryOperator], + [$.for_statement], + [$.try_statement], + [$.catch_statement], + [$.while_statement], + [$.do_while_statement], ], rules: { module: ($) => seq(repeat($.statement)), @@ -46,6 +51,10 @@ const haxe_grammar = { $.package_statement, $.declaration, $.switch_expression, + $.for_statement, + $.try_statement, + $.while_statement, + $.do_while_statement, seq($.expression, $._lookback_semicolon), $.conditional_statement, $.throw_statement, @@ -148,10 +157,22 @@ const haxe_grammar = { _parenthesized_expression: ($) => seq('(', repeat1(prec.left($.expression)), ')'), + for_statement: ($) => + seq( + 'for', + '(', + seq(choice($.pair, $.identifier), 'in', choice($._parenthesized_expression, $.identifier, $.range_expression)), + ')', + optional(field('body', $.statement)), + ), + range_expression: ($) => - prec( - 1, - seq($.identifier, 'in', choice(seq($.integer, $._rangeOperator, $.integer), $.identifier)), + prec(2, + seq( + choice($._parenthesized_expression, $.integer), + alias($._rangeOperator, $.operator), + choice($._parenthesized_expression, $.integer), + ) ), expression: ($) => @@ -161,9 +182,9 @@ const haxe_grammar = { $.runtime_type_check_expression, $.cast_expression, $.type_trace_expression, - $.range_expression, $._parenthesized_expression, $.switch_expression, + $.range_expression, // simple expression, or chained. seq($._rhs_expression, repeat(seq($.operator, $._rhs_expression))), seq('return', optional($._rhs_expression)), @@ -235,17 +256,52 @@ const haxe_grammar = { // arg list is () with any amount of expressions followed by commas _arg_list: ($) => seq('(', commaSep($.expression), ')'), - conditional_statement: ($) => + try_statement: ($) => prec.right( 1, seq( - field('name', 'if'), + 'try', + field('body', $.statement), + repeat1( + $.catch_statement + ), + ), + ), + + catch_statement: ($) => + seq('catch', + '(', field('arguments_list', $._arg_list), - optional($.block), - optional(seq(choice('else', 'else if'), $.block)), + ')', + field('body', choice($.statement, $.block)), ), + + + else_clause: ($) => seq('else', $.statement), + + conditional_statement: ($) => prec.right(seq( + 'if', + field('condition', $._parenthesized_expression), + field('body', $.statement), + optional(field('else', $.else_clause)), ), + ), + while_statement: ($) => seq( + 'while', + field('condition', $._parenthesized_expression), + optional(field('body', $.statement)), + ), + + do_while_statement: ($) => prec.right(seq( + 'do', + field('body', choice($.expression, $.block)), + 'while', + field('condition', $._parenthesized_expression), + $._semicolon, + ), + ), + _call: ($) => prec( 1, @@ -274,9 +330,8 @@ const haxe_grammar = { ...declarations, ...literals, - comment: ($) => token(choice(seq('//', /.*/), seq('/*', /[^*]*\*+([^/*][^*]*\*+)*/, '/'))), - // TODO: implement the structures that use these - keyword: ($) => choice('catch', 'do', 'enum', 'for', 'try', 'while'), + comment: ($) =>token(choice(seq('//', /.*/), seq('/*', /[^*]*\*+([^/*][^*]*\*+)*/, '/'))), + // keywords reserved by the haxe compiler that are not currently used reserved_keyword: ($) => choice('operator'), identifier: ($) => /[a-zA-Z_]+[a-zA-Z0-9]*/, diff --git a/package.json b/package.json index 0647de2..67eb356 100644 --- a/package.json +++ b/package.json @@ -20,17 +20,13 @@ "tree-sitter-cli": "^0.22.6", "prebuildify": "^6.0.0" }, - "tree-sitter": [ - { - "scope": "source.hx", - "file-types": [ - "hx" - ], - "highlights": [ - "queries/highlights.scm" - ], - "injection-regex": "^(hx|haxe)$" - } + "files": [ + "grammar.js", + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "src/**" ], "dependencies": { "node-gyp-build": "^4.8.0" @@ -42,13 +38,5 @@ "tree_sitter": { "optional": true } - }, - "files": [ - "grammar.js", - "binding.gyp", - "prebuilds/**", - "bindings/node/*", - "queries/*", - "src/**" - ] + } } diff --git a/src/grammar.json b/src/grammar.json index 60b06a8..2dd8f1b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1,4 +1,5 @@ { + "$schema": "https://tree-sitter.github.io/tree-sitter/assets/schemas/grammar.schema.json", "name": "haxe", "word": "identifier", "rules": { @@ -44,6 +45,22 @@ "type": "SYMBOL", "name": "switch_expression" }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "try_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "do_while_statement" + }, { "type": "SEQ", "members": [ @@ -189,6 +206,47 @@ "type": "SYMBOL", "name": "_pascalCaseIdentifier" }, + "_type_path": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "package_name" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + { + "type": "SYMBOL", + "name": "type_name" + } + ] + }, "import_statement": { "type": "SEQ", "members": [ @@ -232,39 +290,97 @@ } }, { - "type": "SEQ", + "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "type_name" + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + } + ] }, { - "type": "CHOICE", + "type": "SEQ", "members": [ { - "type": "SEQ", + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "." + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_camelCaseIdentifier" + }, + "named": true, + "value": "identifier" + } + ] }, { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "_camelCaseIdentifier" - }, - "named": true, - "value": "identifier" + "type": "BLANK" } ] + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "as" }, { - "type": "BLANK" + "type": "STRING", + "value": "in" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_camelCaseIdentifier" + }, + "named": true, + "value": "identifier" } ] } ] + }, + { + "type": "BLANK" } ] }, @@ -673,43 +789,116 @@ } ] }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "for" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "range_expression" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, "range_expression": { "type": "PREC", - "value": 1, + "value": 2, "content": { "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "identifier" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "integer" + } + ] }, { - "type": "STRING", - "value": "in" + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_rangeOperator" + }, + "named": true, + "value": "operator" }, { "type": "CHOICE", "members": [ { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "integer" - }, - { - "type": "SYMBOL", - "name": "_rangeOperator" - }, - { - "type": "SYMBOL", - "name": "integer" - } - ] + "type": "SYMBOL", + "name": "_parenthesized_expression" }, { "type": "SYMBOL", - "name": "identifier" + "name": "integer" } ] } @@ -741,15 +930,15 @@ }, { "type": "SYMBOL", - "name": "range_expression" + "name": "_parenthesized_expression" }, { "type": "SYMBOL", - "name": "_parenthesized_expression" + "name": "switch_expression" }, { "type": "SYMBOL", - "name": "switch_expression" + "name": "range_expression" }, { "type": "SEQ", @@ -1342,69 +1531,209 @@ } ] }, - "conditional_statement": { + "try_statement": { "type": "PREC_RIGHT", "value": 1, "content": { "type": "SEQ", "members": [ + { + "type": "STRING", + "value": "try" + }, { "type": "FIELD", - "name": "name", + "name": "body", "content": { - "type": "STRING", - "value": "if" + "type": "SYMBOL", + "name": "statement" } }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "catch_statement" + } + } + ] + } + }, + "catch_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "catch" + }, + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "arguments_list", + "content": { + "type": "SYMBOL", + "name": "_arg_list" + } + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "statement" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + } + } + ] + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "statement" + } + ] + }, + "conditional_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, { "type": "FIELD", - "name": "arguments_list", + "name": "condition", "content": { "type": "SYMBOL", - "name": "_arg_list" + "name": "_parenthesized_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" } }, { "type": "CHOICE", "members": [ { - "type": "SYMBOL", - "name": "block" + "type": "FIELD", + "name": "else", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } }, { "type": "BLANK" } ] + } + ] + } + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_parenthesized_expression" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "statement" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "do_while_statement": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "do" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + } + }, + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "_parenthesized_expression" + } }, { - "type": "CHOICE", - "members": [ - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "else" - }, - { - "type": "STRING", - "value": "else if" - } - ] - }, - { - "type": "SYMBOL", - "name": "block" - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "SYMBOL", + "name": "_semicolon" } ] } @@ -1450,20 +1779,73 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", + "type": "STRING", + "value": "new" + }, + { + "type": "SEQ", "members": [ { - "type": "STRING", - "value": "new" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "package_name" + }, + { + "type": "STRING", + "value": "." + } + ] + } }, { - "type": "BLANK" + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "type_name" + }, + { + "type": "STRING", + "value": "." + } + ] + } + }, + { + "type": "FIELD", + "name": "constructor", + "content": { + "type": "SYMBOL", + "name": "type_name" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_params" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "FIELD", + "name": "arguments_list", + "content": { + "type": "SYMBOL", + "name": "_arg_list" + } } ] - }, - { - "type": "SYMBOL", - "name": "_call" } ] }, @@ -1750,6 +2132,10 @@ { "type": "SYMBOL", "name": "variable_declaration" + }, + { + "type": "SYMBOL", + "name": "enum_declaration" } ] }, @@ -1918,25 +2304,11 @@ } }, { - "type": "CHOICE", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "final" - }, - { - "type": "STRING", - "value": "abstract" - } - ] - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } }, { "type": "STRING", @@ -1977,7 +2349,7 @@ "name": "super_class_name", "content": { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_path" } }, { @@ -2016,7 +2388,7 @@ "name": "interface_name", "content": { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_path" } }, { @@ -2053,16 +2425,11 @@ "type": "SEQ", "members": [ { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "final" - }, - { - "type": "BLANK" - } - ] + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } }, { "type": "STRING", @@ -2105,7 +2472,7 @@ "name": "interface_name", "content": { "type": "SYMBOL", - "name": "_lhs_expression" + "name": "_type_path" } }, { @@ -2138,6 +2505,31 @@ } ] }, + "enum_declaration": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "enum" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_lhs_expression" + } + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "block" + } + } + ] + }, "typedef_declaration": { "type": "SEQ", "members": [ @@ -2148,6 +2540,13 @@ "name": "metadata" } }, + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_modifier" + } + }, { "type": "STRING", "value": "typedef" @@ -2226,30 +2625,21 @@ "value": "function" }, { - "type": "CHOICE", - "members": [ - { - "type": "FIELD", - "name": "name", - "content": { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { "type": "SYMBOL", "name": "_lhs_expression" + }, + { + "type": "STRING", + "value": "new" } - }, - { - "type": "FIELD", - "name": "name", - "content": { - "type": "ALIAS", - "content": { - "type": "STRING", - "value": "new" - }, - "named": true, - "value": "identifier" - } - } - ] + ] + } }, { "type": "CHOICE", @@ -2802,11 +3192,40 @@ }, { "type": "SYMBOL", - "name": "expression" + "name": "for_statement" + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" }, { "type": "SYMBOL", - "name": "identifier" + "name": "while_statement" + }, + { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SYMBOL", + "name": "expression" + } }, { "type": "STRING", @@ -3220,35 +3639,6 @@ ] } }, - "keyword": { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "catch" - }, - { - "type": "STRING", - "value": "do" - }, - { - "type": "STRING", - "value": "enum" - }, - { - "type": "STRING", - "value": "for" - }, - { - "type": "STRING", - "value": "try" - }, - { - "type": "STRING", - "value": "while" - } - ] - }, "reserved_keyword": { "type": "CHOICE", "members": [ @@ -3298,10 +3688,6 @@ "typedef_declaration", "type" ], - [ - "call_expression", - "_constructor_call" - ], [ "_rhs_expression", "pair" @@ -3345,6 +3731,21 @@ [ "_prefixUnaryOperator", "_postfixUnaryOperator" + ], + [ + "for_statement" + ], + [ + "try_statement" + ], + [ + "catch_statement" + ], + [ + "while_statement" + ], + [ + "do_while_statement" ] ], "precedences": [], diff --git a/src/node-types.json b/src/node-types.json index daea2b9..bdfcf30 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -7,6 +7,10 @@ "type": "class_declaration", "named": true }, + { + "type": "enum_declaration", + "named": true + }, { "type": "function_declaration", "named": true @@ -58,6 +62,10 @@ "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true @@ -113,6 +121,10 @@ { "type": "type_trace_expression", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -157,10 +169,18 @@ "type": "declaration", "named": true }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true @@ -229,6 +249,10 @@ "type": "throw_statement", "named": true }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -236,6 +260,10 @@ { "type": "using_statement", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -359,9 +387,19 @@ } ] }, + "constructor": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type_name", + "named": true + } + ] + }, "object": { "multiple": false, - "required": true, + "required": false, "types": [ { "type": "identifier", @@ -375,9 +413,17 @@ } }, "children": { - "multiple": false, + "multiple": true, "required": false, "types": [ + { + "type": "package_name", + "named": true + }, + { + "type": "type_name", + "named": true + }, { "type": "type_params", "named": true @@ -425,10 +471,18 @@ "type": "declaration", "named": true }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true @@ -497,6 +551,10 @@ "type": "throw_statement", "named": true }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -504,6 +562,10 @@ { "type": "using_statement", "named": true + }, + { + "type": "while_statement", + "named": true } ] } @@ -579,82 +641,120 @@ } }, { - "type": "class_declaration", + "type": "catch_statement", "named": true, "fields": { - "body": { - "multiple": false, + "arguments_list": { + "multiple": true, "required": true, "types": [ { - "type": "block", + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "array", "named": true - } - ] - }, - "interface_name": { - "multiple": true, - "required": false, - "types": [ + }, { - "type": "identifier", + "type": "bool", "named": true }, { - "type": "member_expression", + "type": "break", + "named": false + }, + { + "type": "call_expression", "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "identifier", + "type": "cast_expression", "named": true }, { - "type": "member_expression", + "type": "continue", + "named": false + }, + { + "type": "float", "named": true - } - ] - }, - "super_class_name": { - "multiple": false, - "required": false, - "types": [ + }, { "type": "identifier", "named": true }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, { "type": "member_expression", "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false } ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "metadata", - "named": true - }, - { - "type": "type_params", - "named": true - } - ] - } - }, - { - "type": "conditional_statement", - "named": true, - "fields": { - "arguments_list": { + }, + "body": { "multiple": true, "required": true, "types": [ @@ -667,11 +767,11 @@ "named": false }, { - "type": ",", - "named": false + "type": "array", + "named": true }, { - "type": "array", + "type": "block", "named": true }, { @@ -690,18 +790,38 @@ "type": "cast_expression", "named": true }, + { + "type": "conditional_statement", + "named": true + }, { "type": "continue", "named": false }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true }, + { + "type": "import_statement", + "named": true + }, { "type": "integer", "named": true @@ -726,10 +846,18 @@ "type": "operator", "named": true }, + { + "type": "package_statement", + "named": true + }, { "type": "pair", "named": true }, + { + "type": "preprocessor_statement", + "named": true + }, { "type": "range_expression", "named": true @@ -754,6 +882,14 @@ "type": "switch_expression", "named": true }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -761,41 +897,1451 @@ { "type": "untyped", "named": false - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ + }, { - "type": "if", - "named": false + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", + "named": true } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "block", - "named": true - } - ] } }, { - "type": "float", - "named": true, - "fields": {} - }, - { - "type": "function_arg", + "type": "class_declaration", "named": true, "fields": { - "name": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "interface_name": { + "multiple": true, + "required": false, + "types": [ + { + "type": ".", + "named": false + }, + { + "type": "package_name", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "super_class_name": { + "multiple": true, + "required": false, + "types": [ + { + "type": ".", + "named": false + }, + { + "type": "package_name", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "metadata", + "named": true + }, + { + "type": "type_params", + "named": true + } + ] + } + }, + { + "type": "conditional_statement", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "conditional_statement", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import_statement", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "package_statement", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "preprocessor_statement", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false + }, + { + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + }, + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false + } + ] + }, + "else": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + } + } + }, + { + "type": "do_while_statement", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false + } + ] + }, + "condition": { + "multiple": true, + "required": true, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false + } + ] + } + } + }, + { + "type": "else_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "array", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "conditional_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import_statement", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "package_statement", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "preprocessor_statement", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + { + "type": "enum_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + } + }, + { + "type": "float", + "named": true, + "fields": {} + }, + { + "type": "for_statement", + "named": true, + "fields": { + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "conditional_statement", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import_statement", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "package_statement", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "preprocessor_statement", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false + }, + { + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + } + ] + } + }, + { + "type": "function_arg", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "function_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": false, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "new", + "named": false + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "function_arg", + "named": true + }, + { + "type": "metadata", + "named": true + }, + { + "type": "type_params", + "named": true + } + ] + } + }, + { + "type": "function_type", + "named": true, + "fields": { + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "type", + "named": true + } + ] + } + }, + { + "type": "identifier", + "named": true, + "fields": {} + }, + { + "type": "import_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "package_name", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + } + }, + { + "type": "integer", + "named": true, + "fields": {} + }, + { + "type": "interface_declaration", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "interface_name": { + "multiple": true, + "required": false, + "types": [ + { + "type": ".", + "named": false + }, + { + "type": "package_name", + "named": true + }, + { + "type": "type_name", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "type_params", + "named": true + } + ] + } + }, + { + "type": "interpolation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + } + ] + } + }, + { + "type": "map", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "pair", + "named": true + } + ] + } + }, + { + "type": "member_expression", + "named": true, + "fields": { + "literal": { + "multiple": false, + "required": false, + "types": [ + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "string", + "named": true + } + ] + }, + "member": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "this", + "named": false + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "operator", + "named": true + } + ] + } + }, + { + "type": "metadata", + "named": true, + "fields": { + "name": { "multiple": false, "required": true, "types": [ @@ -822,10 +2368,134 @@ "type": "bool", "named": true }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + } + ] + } + }, + { + "type": "module", + "named": true, + "root": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "array", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "conditional_statement", + "named": true + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import_statement", + "named": true + }, { "type": "integer", "named": true @@ -834,6 +2504,10 @@ "type": "map", "named": true }, + { + "type": "member_expression", + "named": true + }, { "type": "null", "named": true @@ -842,203 +2516,300 @@ "type": "object", "named": true }, + { + "type": "operator", + "named": true + }, + { + "type": "package_statement", + "named": true + }, { "type": "pair", "named": true }, + { + "type": "preprocessor_statement", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, { "type": "string", "named": true }, { - "type": "type", + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", "named": true } ] } }, { - "type": "function_declaration", + "type": "null", "named": true, - "fields": { - "body": { - "multiple": false, - "required": false, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - }, - "return_type": { - "multiple": false, - "required": false, - "types": [ - { - "type": "type", - "named": true - } - ] - } - }, + "fields": {} + }, + { + "type": "object", + "named": true, + "fields": {}, "children": { "multiple": true, "required": false, "types": [ { - "type": "function_arg", - "named": true - }, - { - "type": "metadata", - "named": true - }, - { - "type": "type_params", + "type": "pair", "named": true } ] } }, { - "type": "function_type", + "type": "operator", + "named": true, + "fields": {} + }, + { + "type": "package_name", + "named": true, + "fields": {} + }, + { + "type": "package_statement", "named": true, "fields": { - "return_type": { - "multiple": false, + "name": { + "multiple": true, "required": false, "types": [ { - "type": "type", + "type": ".", + "named": false + }, + { + "type": "package_name", "named": true } ] } - }, + } + }, + { + "type": "pair", + "named": true, + "fields": {}, "children": { "multiple": true, "required": true, "types": [ { - "type": "identifier", + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", "named": true }, { "type": "type", "named": true + }, + { + "type": "type_trace_expression", + "named": true } ] } }, { - "type": "identifier", - "named": true, - "fields": {} - }, - { - "type": "import_statement", + "type": "preprocessor_statement", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ + { + "type": "array", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "float", + "named": true + }, { "type": "identifier", "named": true }, { - "type": "package_name", + "type": "integer", "named": true }, { - "type": "type_name", + "type": "map", "named": true - } - ] - } - }, - { - "type": "integer", - "named": true, - "fields": {} - }, - { - "type": "interface_declaration", - "named": true, - "fields": { - "body": { - "multiple": false, - "required": true, - "types": [ - { - "type": "block", - "named": true - } - ] - }, - "interface_name": { - "multiple": true, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - }, - "name": { - "multiple": false, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": false, - "types": [ + }, { - "type": "type_params", + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", "named": true } ] } }, { - "type": "interpolation", + "type": "range_expression", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "array", @@ -1120,28 +2891,45 @@ } }, { - "type": "map", + "type": "runtime_type_check_expression", + "named": true, + "fields": {} + }, + { + "type": "string", "named": true, "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "pair", + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", "named": true } ] } }, { - "type": "member_expression", + "type": "subscript_expression", "named": true, "fields": { - "literal": { - "multiple": false, - "required": false, + "index": { + "multiple": true, + "required": true, "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, { "type": "array", "named": true @@ -1150,10 +2938,30 @@ "type": "bool", "named": true }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "continue", + "named": false + }, { "type": "float", "named": true }, + { + "type": "identifier", + "named": true + }, { "type": "integer", "named": true @@ -1162,6 +2970,10 @@ "type": "map", "named": true }, + { + "type": "member_expression", + "named": true + }, { "type": "null", "named": true @@ -1171,70 +2983,44 @@ "named": true }, { - "type": "pair", + "type": "operator", "named": true }, { - "type": "string", + "type": "pair", "named": true - } - ] - }, - "member": { - "multiple": true, - "required": true, - "types": [ + }, { - "type": "identifier", + "type": "range_expression", "named": true }, { - "type": "member_expression", + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", "named": true - } - ] - }, - "object": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "identifier", + "type": "string", "named": true }, { - "type": "this", - "named": false - } - ] - } - }, - "children": { - "multiple": false, - "required": false, - "types": [ - { - "type": "operator", - "named": true - } - ] - } - }, - { - "type": "metadata", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ + "type": "subscript_expression", + "named": true + }, { - "type": "identifier", + "type": "switch_expression", "named": true }, { - "type": "member_expression", + "type": "type_trace_expression", "named": true + }, + { + "type": "untyped", + "named": false } ] } @@ -1323,12 +3109,12 @@ } }, { - "type": "module", + "type": "switch_expression", "named": true, "fields": {}, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { "type": "array", @@ -1350,171 +3136,6 @@ "type": "cast_expression", "named": true }, - { - "type": "conditional_statement", - "named": true - }, - { - "type": "declaration", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "import_statement", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "map", - "named": true - }, - { - "type": "member_expression", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "object", - "named": true - }, - { - "type": "operator", - "named": true - }, - { - "type": "package_statement", - "named": true - }, - { - "type": "pair", - "named": true - }, - { - "type": "preprocessor_statement", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "runtime_type_check_expression", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript_expression", - "named": true - }, - { - "type": "switch_expression", - "named": true - }, - { - "type": "throw_statement", - "named": true - }, - { - "type": "type_trace_expression", - "named": true - }, - { - "type": "using_statement", - "named": true - } - ] - } - }, - { - "type": "null", - "named": true, - "fields": {} - }, - { - "type": "object", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "pair", - "named": true - } - ] - } - }, - { - "type": "operator", - "named": true, - "fields": {} - }, - { - "type": "package_name", - "named": true, - "fields": {} - }, - { - "type": "package_statement", - "named": true, - "fields": { - "name": { - "multiple": true, - "required": false, - "types": [ - { - "type": ".", - "named": false - }, - { - "type": "package_name", - "named": true - } - ] - } - } - }, - { - "type": "pair", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "array", - "named": true - }, - { - "type": "bool", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "cast_expression", - "named": true - }, { "type": "float", "named": true @@ -1571,10 +3192,6 @@ "type": "switch_expression", "named": true }, - { - "type": "type", - "named": true - }, { "type": "type_trace_expression", "named": true @@ -1583,7 +3200,7 @@ } }, { - "type": "preprocessor_statement", + "type": "throw_statement", "named": true, "fields": {}, "children": { @@ -1670,53 +3287,10 @@ } }, { - "type": "range_expression", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - } - ] - } - }, - { - "type": "runtime_type_check_expression", - "named": true, - "fields": {} - }, - { - "type": "string", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "escape_sequence", - "named": true - }, - { - "type": "interpolation", - "named": true - } - ] - } - }, - { - "type": "subscript_expression", + "type": "try_statement", "named": true, "fields": { - "index": { + "body": { "multiple": true, "required": true, "types": [ @@ -1732,6 +3306,10 @@ "type": "array", "named": true }, + { + "type": "block", + "named": true + }, { "type": "bool", "named": true @@ -1748,18 +3326,38 @@ "type": "cast_expression", "named": true }, + { + "type": "conditional_statement", + "named": true + }, { "type": "continue", "named": false }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, { "type": "float", "named": true }, + { + "type": "for_statement", + "named": true + }, { "type": "identifier", "named": true }, + { + "type": "import_statement", + "named": true + }, { "type": "integer", "named": true @@ -1777,15 +3375,23 @@ "named": true }, { - "type": "object", + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "package_statement", "named": true }, { - "type": "operator", + "type": "pair", "named": true }, { - "type": "pair", + "type": "preprocessor_statement", "named": true }, { @@ -1812,6 +3418,14 @@ "type": "switch_expression", "named": true }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, { "type": "type_trace_expression", "named": true @@ -1819,191 +3433,131 @@ { "type": "untyped", "named": false + }, + { + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", + "named": true } ] } }, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "array", - "named": true - }, - { - "type": "bool", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "cast_expression", + "type": "catch_statement", "named": true - }, + } + ] + } + }, + { + "type": "type", + "named": true, + "fields": { + "built_in": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "type_name": { + "multiple": false, + "required": false, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ { - "type": "float", + "type": "function_type", "named": true }, { "type": "identifier", "named": true }, - { - "type": "integer", - "named": true - }, - { - "type": "map", - "named": true - }, { "type": "member_expression", "named": true }, - { - "type": "null", - "named": true - }, - { - "type": "object", - "named": true - }, - { - "type": "operator", - "named": true - }, { "type": "pair", "named": true }, { - "type": "range_expression", - "named": true - }, - { - "type": "runtime_type_check_expression", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript_expression", - "named": true - }, - { - "type": "switch_expression", - "named": true - }, - { - "type": "type_trace_expression", + "type": "type_params", "named": true } ] } }, { - "type": "switch_expression", - "named": true, + "type": "type_check", + "named": false, "fields": {}, "children": { "multiple": true, "required": true, "types": [ - { - "type": "array", - "named": true - }, - { - "type": "block", - "named": true - }, - { - "type": "bool", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "cast_expression", - "named": true - }, - { - "type": "float", - "named": true - }, { "type": "identifier", "named": true }, { - "type": "integer", - "named": true - }, - { - "type": "map", - "named": true - }, - { - "type": "member_expression", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "object", - "named": true - }, - { - "type": "operator", - "named": true - }, - { - "type": "pair", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "runtime_type_check_expression", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript_expression", - "named": true - }, - { - "type": "switch_expression", + "type": "type", "named": true - }, + } + ] + } + }, + { + "type": "type_name", + "named": true, + "fields": {} + }, + { + "type": "type_params", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ { - "type": "type_trace_expression", + "type": "type", "named": true } ] } }, { - "type": "throw_statement", + "type": "type_trace_expression", "named": true, "fields": {}, "children": { - "multiple": true, - "required": false, + "multiple": false, + "required": true, "types": [ { "type": "array", @@ -2017,10 +3571,6 @@ "type": "call_expression", "named": true }, - { - "type": "cast_expression", - "named": true - }, { "type": "float", "named": true @@ -2049,58 +3599,24 @@ "type": "object", "named": true }, - { - "type": "operator", - "named": true - }, { "type": "pair", "named": true }, - { - "type": "range_expression", - "named": true - }, - { - "type": "runtime_type_check_expression", - "named": true - }, { "type": "string", "named": true - }, - { - "type": "subscript_expression", - "named": true - }, - { - "type": "switch_expression", - "named": true - }, - { - "type": "type_trace_expression", - "named": true } ] } }, { - "type": "type", + "type": "typedef_declaration", "named": true, - "fields": { - "built_in": { - "multiple": false, - "required": false, - "types": [ - { - "type": "identifier", - "named": true - } - ] - }, - "type_name": { + "fields": { + "name": { "multiple": false, - "required": false, + "required": true, "types": [ { "type": "identifier", @@ -2115,10 +3631,10 @@ }, "children": { "multiple": true, - "required": false, + "required": true, "types": [ { - "type": "function_type", + "type": "block", "named": true }, { @@ -2130,7 +3646,11 @@ "named": true }, { - "type": "pair", + "type": "metadata", + "named": true + }, + { + "type": "type", "named": true }, { @@ -2141,52 +3661,61 @@ } }, { - "type": "type_check", - "named": false, + "type": "using_statement", + "named": true, "fields": {}, "children": { "multiple": true, "required": true, "types": [ { - "type": "identifier", + "type": "package_name", "named": true }, { - "type": "type", + "type": "type_name", "named": true } ] } }, { - "type": "type_name", - "named": true, - "fields": {} - }, - { - "type": "type_params", + "type": "variable_declaration", "named": true, - "fields": {}, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "type", + "type": "access_identifiers", "named": true - } - ] - } - }, - { - "type": "type_trace_expression", - "named": true, - "fields": {}, - "children": { - "multiple": false, - "required": true, - "types": [ + }, { "type": "array", "named": true @@ -2199,6 +3728,10 @@ "type": "call_expression", "named": true }, + { + "type": "cast_expression", + "named": true + }, { "type": "float", "named": true @@ -2219,6 +3752,10 @@ "type": "member_expression", "named": true }, + { + "type": "metadata", + "named": true + }, { "type": "null", "named": true @@ -2227,204 +3764,305 @@ "type": "object", "named": true }, + { + "type": "operator", + "named": true + }, { "type": "pair", "named": true }, + { + "type": "range_expression", + "named": true + }, + { + "type": "runtime_type_check_expression", + "named": true + }, { "type": "string", "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", + "named": true } ] } }, { - "type": "typedef_declaration", + "type": "while_statement", "named": true, "fields": { - "name": { - "multiple": false, + "body": { + "multiple": true, + "required": false, + "types": [ + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", + "named": true + }, + { + "type": "block", + "named": true + }, + { + "type": "bool", + "named": true + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "conditional_statement", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "declaration", + "named": true + }, + { + "type": "do_while_statement", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "import_statement", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, + { + "type": "member_expression", + "named": true + }, + { + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "package_statement", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "preprocessor_statement", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "throw_statement", + "named": true + }, + { + "type": "try_statement", + "named": true + }, + { + "type": "type_trace_expression", + "named": true + }, + { + "type": "untyped", + "named": false + }, + { + "type": "using_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + } + ] + }, + "condition": { + "multiple": true, "required": true, "types": [ { - "type": "identifier", + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "array", "named": true }, { - "type": "member_expression", + "type": "bool", "named": true - } - ] - } - }, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "block", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "member_expression", - "named": true - }, - { - "type": "metadata", - "named": true - }, - { - "type": "type", - "named": true - }, - { - "type": "type_params", - "named": true - } - ] - } - }, - { - "type": "using_statement", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": true, - "types": [ - { - "type": "package_name", - "named": true - }, - { - "type": "type_name", - "named": true - } - ] - } - }, - { - "type": "variable_declaration", - "named": true, - "fields": { - "name": { - "multiple": false, - "required": true, - "types": [ + }, + { + "type": "break", + "named": false + }, + { + "type": "call_expression", + "named": true + }, + { + "type": "cast_expression", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "float", + "named": true + }, { "type": "identifier", "named": true }, + { + "type": "integer", + "named": true + }, + { + "type": "map", + "named": true + }, { "type": "member_expression", "named": true - } - ] - }, - "type": { - "multiple": false, - "required": false, - "types": [ + }, { - "type": "type", + "type": "null", + "named": true + }, + { + "type": "object", + "named": true + }, + { + "type": "operator", + "named": true + }, + { + "type": "pair", + "named": true + }, + { + "type": "range_expression", + "named": true + }, + { + "type": "return", + "named": false + }, + { + "type": "runtime_type_check_expression", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript_expression", + "named": true + }, + { + "type": "switch_expression", + "named": true + }, + { + "type": "type_trace_expression", "named": true + }, + { + "type": "untyped", + "named": false } ] } - }, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "access_identifiers", - "named": true - }, - { - "type": "array", - "named": true - }, - { - "type": "bool", - "named": true - }, - { - "type": "call_expression", - "named": true - }, - { - "type": "cast_expression", - "named": true - }, - { - "type": "float", - "named": true - }, - { - "type": "identifier", - "named": true - }, - { - "type": "integer", - "named": true - }, - { - "type": "map", - "named": true - }, - { - "type": "member_expression", - "named": true - }, - { - "type": "metadata", - "named": true - }, - { - "type": "null", - "named": true - }, - { - "type": "object", - "named": true - }, - { - "type": "operator", - "named": true - }, - { - "type": "pair", - "named": true - }, - { - "type": "range_expression", - "named": true - }, - { - "type": "runtime_type_check_expression", - "named": true - }, - { - "type": "string", - "named": true - }, - { - "type": "subscript_expression", - "named": true - }, - { - "type": "switch_expression", - "named": true - }, - { - "type": "type_trace_expression", - "named": true - } - ] } }, { @@ -2503,6 +4141,10 @@ "type": ".", "named": false }, + { + "type": "...", + "named": false + }, { "type": "/", "named": false @@ -2607,6 +4249,10 @@ "type": "abstract", "named": false }, + { + "type": "as", + "named": false + }, { "type": "break", "named": false @@ -2651,10 +4297,6 @@ "type": "else", "named": false }, - { - "type": "else if", - "named": false - }, { "type": "enum", "named": false @@ -2731,10 +4373,6 @@ "type": "null", "named": false }, - { - "type": "operator", - "named": false - }, { "type": "overload", "named": false diff --git a/src/parser.c b/src/parser.c index bee0998..0dd0256 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,15 +5,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 2892 -#define LARGE_STATE_COUNT 706 -#define SYMBOL_COUNT 214 +#define STATE_COUNT 3710 +#define LARGE_STATE_COUNT 880 +#define SYMBOL_COUNT 222 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 119 +#define TOKEN_COUNT 117 #define EXTERNAL_TOKEN_COUNT 3 -#define FIELD_COUNT 13 +#define FIELD_COUNT 16 #define MAX_ALIAS_SEQUENCE_LENGTH 13 -#define PRODUCTION_ID_COUNT 113 +#define PRODUCTION_ID_COUNT 119 enum ts_symbol_identifiers { sym_identifier = 1, @@ -23,135 +23,135 @@ enum ts_symbol_identifiers { anon_sym_package = 5, anon_sym_DOT = 6, anon_sym_import = 7, - anon_sym_using = 8, - anon_sym_throw = 9, - anon_sym_LPAREN = 10, - anon_sym_RPAREN = 11, - anon_sym_switch = 12, - anon_sym_RBRACE = 13, - anon_sym_LBRACE = 14, - anon_sym_case = 15, - anon_sym__ = 16, - anon_sym_COLON = 17, - anon_sym_default = 18, - anon_sym_cast = 19, - anon_sym_COMMA = 20, - anon_sym_DOLLARtype = 21, - anon_sym_in = 22, - anon_sym_return = 23, - anon_sym_untyped = 24, - anon_sym_break = 25, - anon_sym_continue = 26, - anon_sym_LBRACK = 27, - anon_sym_RBRACK = 28, - anon_sym_this = 29, - anon_sym_QMARK = 30, - anon_sym_Void = 31, - anon_sym_Int = 32, - anon_sym_Float = 33, - anon_sym_Bool = 34, - anon_sym_Null = 35, - anon_sym_DASH_GT = 36, - anon_sym_AT = 37, - anon_sym_AT_COLON = 38, - anon_sym_if = 39, - anon_sym_else = 40, - anon_sym_elseif = 41, - anon_sym_new = 42, - anon_sym_TILDE = 43, - anon_sym_BANG = 44, - anon_sym_DASH = 45, - anon_sym_PLUS_PLUS = 46, - anon_sym_DASH_DASH = 47, - anon_sym_PERCENT = 48, - anon_sym_STAR = 49, - anon_sym_SLASH = 50, - anon_sym_PLUS = 51, - anon_sym_LT_LT = 52, - anon_sym_GT_GT = 53, - anon_sym_GT_GT_GT = 54, - anon_sym_AMP = 55, - anon_sym_PIPE = 56, - anon_sym_CARET = 57, - anon_sym_AMP_AMP = 58, - anon_sym_PIPE_PIPE = 59, - anon_sym_EQ_EQ = 60, - anon_sym_BANG_EQ = 61, - anon_sym_LT = 62, - anon_sym_LT_EQ = 63, - anon_sym_GT = 64, - anon_sym_GT_EQ = 65, - anon_sym_EQ_GT = 66, - anon_sym_QMARK_QMARK = 67, - anon_sym_EQ = 68, - sym__rangeOperator = 69, - anon_sym_null = 70, - anon_sym_get = 71, - anon_sym_set = 72, - anon_sym_dynamic = 73, - anon_sym_never = 74, - anon_sym_macro = 75, - anon_sym_abstract = 76, - anon_sym_static = 77, - anon_sym_public = 78, - anon_sym_private = 79, - anon_sym_extern = 80, - anon_sym_inline = 81, - anon_sym_overload = 82, - anon_sym_override = 83, - anon_sym_final = 84, - anon_sym_class = 85, - anon_sym_extends = 86, - anon_sym_implements = 87, - anon_sym_interface = 88, - anon_sym_typedef = 89, - anon_sym_function = 90, - anon_sym_var = 91, - aux_sym_integer_token1 = 92, - aux_sym_integer_token2 = 93, - aux_sym_float_token1 = 94, - aux_sym_float_token2 = 95, - anon_sym_true = 96, - anon_sym_false = 97, - aux_sym_string_token1 = 98, - aux_sym_string_token2 = 99, - aux_sym_string_token3 = 100, - aux_sym_string_token4 = 101, - anon_sym_DOLLAR_LBRACE = 102, - anon_sym_DOLLAR = 103, - anon_sym_LBRACE2 = 104, - sym_escape_sequence = 105, - sym_comment = 106, - anon_sym_catch = 107, - anon_sym_do = 108, - anon_sym_enum = 109, - anon_sym_for = 110, - anon_sym_try = 111, - anon_sym_while = 112, - anon_sym_operator = 113, - sym__camelCaseIdentifier = 114, - sym__pascalCaseIdentifier = 115, - sym__lookback_semicolon = 116, - sym__closing_brace_marker = 117, - sym__closing_brace_unmarker = 118, - sym_module = 119, - sym_preprocessor_statement = 120, - sym_package_statement = 121, - sym_package_name = 122, - sym_type_name = 123, - sym_import_statement = 124, - sym_using_statement = 125, - sym_throw_statement = 126, - sym__rhs_expression = 127, - sym__unaryExpression = 128, - sym_runtime_type_check_expression = 129, - sym_switch_expression = 130, - sym__closing_brace = 131, - sym_switch_block = 132, - sym_case_statement = 133, - sym_cast_expression = 134, - sym_type_trace_expression = 135, - sym__parenthesized_expression = 136, + anon_sym_STAR = 8, + anon_sym_as = 9, + anon_sym_in = 10, + anon_sym_using = 11, + anon_sym_throw = 12, + anon_sym_LPAREN = 13, + anon_sym_RPAREN = 14, + anon_sym_switch = 15, + anon_sym_RBRACE = 16, + anon_sym_LBRACE = 17, + anon_sym_case = 18, + anon_sym__ = 19, + anon_sym_COLON = 20, + anon_sym_default = 21, + anon_sym_cast = 22, + anon_sym_COMMA = 23, + anon_sym_DOLLARtype = 24, + anon_sym_for = 25, + anon_sym_return = 26, + anon_sym_untyped = 27, + anon_sym_break = 28, + anon_sym_continue = 29, + anon_sym_LBRACK = 30, + anon_sym_RBRACK = 31, + anon_sym_this = 32, + anon_sym_QMARK = 33, + anon_sym_Void = 34, + anon_sym_Int = 35, + anon_sym_Float = 36, + anon_sym_Bool = 37, + anon_sym_Null = 38, + anon_sym_DASH_GT = 39, + anon_sym_AT = 40, + anon_sym_AT_COLON = 41, + anon_sym_try = 42, + anon_sym_catch = 43, + anon_sym_else = 44, + anon_sym_if = 45, + anon_sym_while = 46, + anon_sym_do = 47, + anon_sym_new = 48, + anon_sym_TILDE = 49, + anon_sym_BANG = 50, + anon_sym_DASH = 51, + anon_sym_PLUS_PLUS = 52, + anon_sym_DASH_DASH = 53, + anon_sym_PERCENT = 54, + anon_sym_SLASH = 55, + anon_sym_PLUS = 56, + anon_sym_LT_LT = 57, + anon_sym_GT_GT = 58, + anon_sym_GT_GT_GT = 59, + anon_sym_AMP = 60, + anon_sym_PIPE = 61, + anon_sym_CARET = 62, + anon_sym_AMP_AMP = 63, + anon_sym_PIPE_PIPE = 64, + anon_sym_EQ_EQ = 65, + anon_sym_BANG_EQ = 66, + anon_sym_LT = 67, + anon_sym_LT_EQ = 68, + anon_sym_GT = 69, + anon_sym_GT_EQ = 70, + anon_sym_EQ_GT = 71, + anon_sym_QMARK_QMARK = 72, + anon_sym_EQ = 73, + anon_sym_DOT_DOT_DOT = 74, + anon_sym_null = 75, + anon_sym_get = 76, + anon_sym_set = 77, + anon_sym_dynamic = 78, + anon_sym_never = 79, + anon_sym_macro = 80, + anon_sym_abstract = 81, + anon_sym_static = 82, + anon_sym_public = 83, + anon_sym_private = 84, + anon_sym_extern = 85, + anon_sym_inline = 86, + anon_sym_overload = 87, + anon_sym_override = 88, + anon_sym_final = 89, + anon_sym_class = 90, + anon_sym_extends = 91, + anon_sym_implements = 92, + anon_sym_interface = 93, + anon_sym_enum = 94, + anon_sym_typedef = 95, + anon_sym_function = 96, + anon_sym_var = 97, + aux_sym_integer_token1 = 98, + aux_sym_integer_token2 = 99, + aux_sym_float_token1 = 100, + aux_sym_float_token2 = 101, + anon_sym_true = 102, + anon_sym_false = 103, + aux_sym_string_token1 = 104, + aux_sym_string_token2 = 105, + aux_sym_string_token3 = 106, + aux_sym_string_token4 = 107, + anon_sym_DOLLAR_LBRACE = 108, + anon_sym_DOLLAR = 109, + sym_escape_sequence = 110, + sym_comment = 111, + sym__camelCaseIdentifier = 112, + sym__pascalCaseIdentifier = 113, + sym__lookback_semicolon = 114, + sym__closing_brace_marker = 115, + sym__closing_brace_unmarker = 116, + sym_module = 117, + sym_preprocessor_statement = 118, + sym_package_statement = 119, + sym_package_name = 120, + sym_type_name = 121, + sym__type_path = 122, + sym_import_statement = 123, + sym_using_statement = 124, + sym_throw_statement = 125, + sym__rhs_expression = 126, + sym__unaryExpression = 127, + sym_runtime_type_check_expression = 128, + sym_switch_expression = 129, + sym__closing_brace = 130, + sym_switch_block = 131, + sym_case_statement = 132, + sym_cast_expression = 133, + sym_type_trace_expression = 134, + sym__parenthesized_expression = 135, + sym_for_statement = 136, sym_range_expression = 137, sym_subscript_expression = 138, sym_member_expression = 139, @@ -163,74 +163,82 @@ enum ts_symbol_identifiers { sym_block = 145, sym_metadata = 146, sym__arg_list = 147, - sym_conditional_statement = 148, - sym__call = 149, - sym__constructor_call = 150, - sym_call_expression = 151, - sym_operator = 152, - sym__unaryOperator = 153, - sym__prefixUnaryOperator = 154, - sym__postfixUnaryOperator = 155, - sym__binaryOperator = 156, - sym__arithmeticOperator = 157, - sym__bitwiseOperator = 158, - sym__logicalOperator = 159, - sym__comparisonOperator = 160, - sym__miscOperator = 161, - sym__assignmentOperator = 162, - sym__compoundAssignmentOperator = 163, - sym_declaration = 164, - sym__access_identifier = 165, - sym_access_identifiers = 166, - sym_type_params = 167, - sym__modifier = 168, - sym_class_declaration = 169, - sym_interface_declaration = 170, - sym_typedef_declaration = 171, - sym_function_declaration = 172, - sym__function_arg_list = 173, - sym_function_arg = 174, - sym_variable_declaration = 175, - sym__literal = 176, - sym_integer = 177, - sym_float = 178, - sym_bool = 179, - sym_string = 180, - sym_null = 181, - sym_array = 182, - sym_map = 183, - sym_object = 184, - sym_structure_type = 185, - sym_structure_type_pair = 186, - sym_pair = 187, - sym_interpolation = 188, - sym__interpolated_block = 189, - sym__interpolated_identifier = 190, - sym__semicolon = 191, - aux_sym_module_repeat1 = 192, - aux_sym_package_statement_repeat1 = 193, - aux_sym_import_statement_repeat1 = 194, - aux_sym_switch_block_repeat1 = 195, - aux_sym__parenthesized_expression_repeat1 = 196, - aux_sym_expression_repeat1 = 197, - aux_sym_member_expression_repeat1 = 198, - aux_sym__function_type_args_repeat1 = 199, - aux_sym__arg_list_repeat1 = 200, - aux_sym_type_params_repeat1 = 201, - aux_sym_class_declaration_repeat1 = 202, - aux_sym_class_declaration_repeat2 = 203, - aux_sym_interface_declaration_repeat1 = 204, - aux_sym_function_declaration_repeat1 = 205, - aux_sym__function_arg_list_repeat1 = 206, - aux_sym_variable_declaration_repeat1 = 207, - aux_sym_variable_declaration_repeat2 = 208, - aux_sym_string_repeat1 = 209, - aux_sym_string_repeat2 = 210, - aux_sym_array_repeat1 = 211, - aux_sym_map_repeat1 = 212, - aux_sym_structure_type_repeat1 = 213, - anon_alias_sym_type = 214, - anon_alias_sym_type_check = 215, + sym_try_statement = 148, + sym_catch_statement = 149, + sym_else_clause = 150, + sym_conditional_statement = 151, + sym_while_statement = 152, + sym_do_while_statement = 153, + sym__call = 154, + sym__constructor_call = 155, + sym_call_expression = 156, + sym_operator = 157, + sym__unaryOperator = 158, + sym__prefixUnaryOperator = 159, + sym__postfixUnaryOperator = 160, + sym__binaryOperator = 161, + sym__arithmeticOperator = 162, + sym__bitwiseOperator = 163, + sym__logicalOperator = 164, + sym__comparisonOperator = 165, + sym__miscOperator = 166, + sym__assignmentOperator = 167, + sym__compoundAssignmentOperator = 168, + sym__rangeOperator = 169, + sym_declaration = 170, + sym__access_identifier = 171, + sym_access_identifiers = 172, + sym_type_params = 173, + sym__modifier = 174, + sym_class_declaration = 175, + sym_interface_declaration = 176, + sym_enum_declaration = 177, + sym_typedef_declaration = 178, + sym_function_declaration = 179, + sym__function_arg_list = 180, + sym_function_arg = 181, + sym_variable_declaration = 182, + sym__literal = 183, + sym_integer = 184, + sym_float = 185, + sym_bool = 186, + sym_string = 187, + sym_null = 188, + sym_array = 189, + sym_map = 190, + sym_object = 191, + sym_structure_type = 192, + sym_structure_type_pair = 193, + sym_pair = 194, + sym_interpolation = 195, + sym__interpolated_block = 196, + sym__interpolated_identifier = 197, + sym__semicolon = 198, + aux_sym_module_repeat1 = 199, + aux_sym_package_statement_repeat1 = 200, + aux_sym__type_path_repeat1 = 201, + aux_sym_switch_block_repeat1 = 202, + aux_sym__parenthesized_expression_repeat1 = 203, + aux_sym_expression_repeat1 = 204, + aux_sym_member_expression_repeat1 = 205, + aux_sym__function_type_args_repeat1 = 206, + aux_sym__arg_list_repeat1 = 207, + aux_sym_try_statement_repeat1 = 208, + aux_sym_type_params_repeat1 = 209, + aux_sym_class_declaration_repeat1 = 210, + aux_sym_class_declaration_repeat2 = 211, + aux_sym_class_declaration_repeat3 = 212, + aux_sym_interface_declaration_repeat1 = 213, + aux_sym__function_arg_list_repeat1 = 214, + aux_sym_variable_declaration_repeat1 = 215, + aux_sym_variable_declaration_repeat2 = 216, + aux_sym_string_repeat1 = 217, + aux_sym_string_repeat2 = 218, + aux_sym_array_repeat1 = 219, + aux_sym_map_repeat1 = 220, + aux_sym_structure_type_repeat1 = 221, + anon_alias_sym_type = 222, + anon_alias_sym_type_check = 223, }; static const char * const ts_symbol_names[] = { @@ -242,6 +250,9 @@ static const char * const ts_symbol_names[] = { [anon_sym_package] = "package", [anon_sym_DOT] = ".", [anon_sym_import] = "import", + [anon_sym_STAR] = "*", + [anon_sym_as] = "as", + [anon_sym_in] = "in", [anon_sym_using] = "using", [anon_sym_throw] = "throw", [anon_sym_LPAREN] = "(", @@ -256,7 +267,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_cast] = "cast", [anon_sym_COMMA] = ",", [anon_sym_DOLLARtype] = "$type", - [anon_sym_in] = "in", + [anon_sym_for] = "for", [anon_sym_return] = "return", [anon_sym_untyped] = "untyped", [anon_sym_break] = "break", @@ -273,9 +284,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_DASH_GT] = "->", [anon_sym_AT] = "@", [anon_sym_AT_COLON] = "@:", - [anon_sym_if] = "if", + [anon_sym_try] = "try", + [anon_sym_catch] = "catch", [anon_sym_else] = "else", - [anon_sym_elseif] = "else if", + [anon_sym_if] = "if", + [anon_sym_while] = "while", + [anon_sym_do] = "do", [anon_sym_new] = "new", [anon_sym_TILDE] = "~", [anon_sym_BANG] = "!", @@ -283,7 +297,6 @@ static const char * const ts_symbol_names[] = { [anon_sym_PLUS_PLUS] = "++", [anon_sym_DASH_DASH] = "--", [anon_sym_PERCENT] = "%", - [anon_sym_STAR] = "*", [anon_sym_SLASH] = "/", [anon_sym_PLUS] = "+", [anon_sym_LT_LT] = "<<", @@ -303,7 +316,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_EQ_GT] = "=>", [anon_sym_QMARK_QMARK] = "\?\?", [anon_sym_EQ] = "=", - [sym__rangeOperator] = "_rangeOperator", + [anon_sym_DOT_DOT_DOT] = "...", [anon_sym_null] = "null", [anon_sym_get] = "get", [anon_sym_set] = "set", @@ -323,6 +336,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_extends] = "extends", [anon_sym_implements] = "implements", [anon_sym_interface] = "interface", + [anon_sym_enum] = "enum", [anon_sym_typedef] = "typedef", [anon_sym_function] = "function", [anon_sym_var] = "var", @@ -338,16 +352,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_string_token4] = "string_token4", [anon_sym_DOLLAR_LBRACE] = "${", [anon_sym_DOLLAR] = "$", - [anon_sym_LBRACE2] = "{", [sym_escape_sequence] = "escape_sequence", [sym_comment] = "comment", - [anon_sym_catch] = "catch", - [anon_sym_do] = "do", - [anon_sym_enum] = "enum", - [anon_sym_for] = "for", - [anon_sym_try] = "try", - [anon_sym_while] = "while", - [anon_sym_operator] = "operator", [sym__camelCaseIdentifier] = "_camelCaseIdentifier", [sym__pascalCaseIdentifier] = "_pascalCaseIdentifier", [sym__lookback_semicolon] = "_lookback_semicolon", @@ -358,6 +364,7 @@ static const char * const ts_symbol_names[] = { [sym_package_statement] = "package_statement", [sym_package_name] = "package_name", [sym_type_name] = "type_name", + [sym__type_path] = "_type_path", [sym_import_statement] = "import_statement", [sym_using_statement] = "using_statement", [sym_throw_statement] = "throw_statement", @@ -371,6 +378,7 @@ static const char * const ts_symbol_names[] = { [sym_cast_expression] = "cast_expression", [sym_type_trace_expression] = "type_trace_expression", [sym__parenthesized_expression] = "_parenthesized_expression", + [sym_for_statement] = "for_statement", [sym_range_expression] = "range_expression", [sym_subscript_expression] = "subscript_expression", [sym_member_expression] = "member_expression", @@ -382,7 +390,12 @@ static const char * const ts_symbol_names[] = { [sym_block] = "block", [sym_metadata] = "metadata", [sym__arg_list] = "_arg_list", + [sym_try_statement] = "try_statement", + [sym_catch_statement] = "catch_statement", + [sym_else_clause] = "else_clause", [sym_conditional_statement] = "conditional_statement", + [sym_while_statement] = "while_statement", + [sym_do_while_statement] = "do_while_statement", [sym__call] = "_call", [sym__constructor_call] = "_constructor_call", [sym_call_expression] = "call_expression", @@ -398,6 +411,7 @@ static const char * const ts_symbol_names[] = { [sym__miscOperator] = "_miscOperator", [sym__assignmentOperator] = "_assignmentOperator", [sym__compoundAssignmentOperator] = "_compoundAssignmentOperator", + [sym__rangeOperator] = "_rangeOperator", [sym_declaration] = "declaration", [sym__access_identifier] = "_access_identifier", [sym_access_identifiers] = "access_identifiers", @@ -405,6 +419,7 @@ static const char * const ts_symbol_names[] = { [sym__modifier] = "_modifier", [sym_class_declaration] = "class_declaration", [sym_interface_declaration] = "interface_declaration", + [sym_enum_declaration] = "enum_declaration", [sym_typedef_declaration] = "typedef_declaration", [sym_function_declaration] = "function_declaration", [sym__function_arg_list] = "_function_arg_list", @@ -428,18 +443,19 @@ static const char * const ts_symbol_names[] = { [sym__semicolon] = "_semicolon", [aux_sym_module_repeat1] = "module_repeat1", [aux_sym_package_statement_repeat1] = "package_statement_repeat1", - [aux_sym_import_statement_repeat1] = "import_statement_repeat1", + [aux_sym__type_path_repeat1] = "_type_path_repeat1", [aux_sym_switch_block_repeat1] = "switch_block_repeat1", [aux_sym__parenthesized_expression_repeat1] = "_parenthesized_expression_repeat1", [aux_sym_expression_repeat1] = "expression_repeat1", [aux_sym_member_expression_repeat1] = "member_expression_repeat1", [aux_sym__function_type_args_repeat1] = "_function_type_args_repeat1", [aux_sym__arg_list_repeat1] = "_arg_list_repeat1", + [aux_sym_try_statement_repeat1] = "try_statement_repeat1", [aux_sym_type_params_repeat1] = "type_params_repeat1", [aux_sym_class_declaration_repeat1] = "class_declaration_repeat1", [aux_sym_class_declaration_repeat2] = "class_declaration_repeat2", + [aux_sym_class_declaration_repeat3] = "class_declaration_repeat3", [aux_sym_interface_declaration_repeat1] = "interface_declaration_repeat1", - [aux_sym_function_declaration_repeat1] = "function_declaration_repeat1", [aux_sym__function_arg_list_repeat1] = "_function_arg_list_repeat1", [aux_sym_variable_declaration_repeat1] = "variable_declaration_repeat1", [aux_sym_variable_declaration_repeat2] = "variable_declaration_repeat2", @@ -461,6 +477,9 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_package] = anon_sym_package, [anon_sym_DOT] = anon_sym_DOT, [anon_sym_import] = anon_sym_import, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_as] = anon_sym_as, + [anon_sym_in] = anon_sym_in, [anon_sym_using] = anon_sym_using, [anon_sym_throw] = anon_sym_throw, [anon_sym_LPAREN] = anon_sym_LPAREN, @@ -475,7 +494,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_cast] = anon_sym_cast, [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_DOLLARtype] = anon_sym_DOLLARtype, - [anon_sym_in] = anon_sym_in, + [anon_sym_for] = anon_sym_for, [anon_sym_return] = anon_sym_return, [anon_sym_untyped] = anon_sym_untyped, [anon_sym_break] = anon_sym_break, @@ -492,9 +511,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_DASH_GT] = anon_sym_DASH_GT, [anon_sym_AT] = anon_sym_AT, [anon_sym_AT_COLON] = anon_sym_AT_COLON, - [anon_sym_if] = anon_sym_if, + [anon_sym_try] = anon_sym_try, + [anon_sym_catch] = anon_sym_catch, [anon_sym_else] = anon_sym_else, - [anon_sym_elseif] = anon_sym_elseif, + [anon_sym_if] = anon_sym_if, + [anon_sym_while] = anon_sym_while, + [anon_sym_do] = anon_sym_do, [anon_sym_new] = anon_sym_new, [anon_sym_TILDE] = anon_sym_TILDE, [anon_sym_BANG] = anon_sym_BANG, @@ -502,7 +524,6 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_PLUS_PLUS] = anon_sym_PLUS_PLUS, [anon_sym_DASH_DASH] = anon_sym_DASH_DASH, [anon_sym_PERCENT] = anon_sym_PERCENT, - [anon_sym_STAR] = anon_sym_STAR, [anon_sym_SLASH] = anon_sym_SLASH, [anon_sym_PLUS] = anon_sym_PLUS, [anon_sym_LT_LT] = anon_sym_LT_LT, @@ -522,7 +543,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_EQ_GT] = anon_sym_EQ_GT, [anon_sym_QMARK_QMARK] = anon_sym_QMARK_QMARK, [anon_sym_EQ] = anon_sym_EQ, - [sym__rangeOperator] = sym__rangeOperator, + [anon_sym_DOT_DOT_DOT] = anon_sym_DOT_DOT_DOT, [anon_sym_null] = anon_sym_null, [anon_sym_get] = anon_sym_get, [anon_sym_set] = anon_sym_set, @@ -542,6 +563,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_extends] = anon_sym_extends, [anon_sym_implements] = anon_sym_implements, [anon_sym_interface] = anon_sym_interface, + [anon_sym_enum] = anon_sym_enum, [anon_sym_typedef] = anon_sym_typedef, [anon_sym_function] = anon_sym_function, [anon_sym_var] = anon_sym_var, @@ -557,16 +579,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_string_token4] = aux_sym_string_token4, [anon_sym_DOLLAR_LBRACE] = anon_sym_DOLLAR_LBRACE, [anon_sym_DOLLAR] = anon_sym_DOLLAR, - [anon_sym_LBRACE2] = anon_sym_LBRACE, [sym_escape_sequence] = sym_escape_sequence, [sym_comment] = sym_comment, - [anon_sym_catch] = anon_sym_catch, - [anon_sym_do] = anon_sym_do, - [anon_sym_enum] = anon_sym_enum, - [anon_sym_for] = anon_sym_for, - [anon_sym_try] = anon_sym_try, - [anon_sym_while] = anon_sym_while, - [anon_sym_operator] = anon_sym_operator, [sym__camelCaseIdentifier] = sym__camelCaseIdentifier, [sym__pascalCaseIdentifier] = sym__pascalCaseIdentifier, [sym__lookback_semicolon] = sym__lookback_semicolon, @@ -577,6 +591,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_package_statement] = sym_package_statement, [sym_package_name] = sym_package_name, [sym_type_name] = sym_type_name, + [sym__type_path] = sym__type_path, [sym_import_statement] = sym_import_statement, [sym_using_statement] = sym_using_statement, [sym_throw_statement] = sym_throw_statement, @@ -590,6 +605,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_cast_expression] = sym_cast_expression, [sym_type_trace_expression] = sym_type_trace_expression, [sym__parenthesized_expression] = sym__parenthesized_expression, + [sym_for_statement] = sym_for_statement, [sym_range_expression] = sym_range_expression, [sym_subscript_expression] = sym_subscript_expression, [sym_member_expression] = sym_member_expression, @@ -601,7 +617,12 @@ static const TSSymbol ts_symbol_map[] = { [sym_block] = sym_block, [sym_metadata] = sym_metadata, [sym__arg_list] = sym__arg_list, + [sym_try_statement] = sym_try_statement, + [sym_catch_statement] = sym_catch_statement, + [sym_else_clause] = sym_else_clause, [sym_conditional_statement] = sym_conditional_statement, + [sym_while_statement] = sym_while_statement, + [sym_do_while_statement] = sym_do_while_statement, [sym__call] = sym__call, [sym__constructor_call] = sym__constructor_call, [sym_call_expression] = sym_call_expression, @@ -617,6 +638,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__miscOperator] = sym__miscOperator, [sym__assignmentOperator] = sym__assignmentOperator, [sym__compoundAssignmentOperator] = sym__compoundAssignmentOperator, + [sym__rangeOperator] = sym__rangeOperator, [sym_declaration] = sym_declaration, [sym__access_identifier] = sym__access_identifier, [sym_access_identifiers] = sym_access_identifiers, @@ -624,6 +646,7 @@ static const TSSymbol ts_symbol_map[] = { [sym__modifier] = sym__modifier, [sym_class_declaration] = sym_class_declaration, [sym_interface_declaration] = sym_interface_declaration, + [sym_enum_declaration] = sym_enum_declaration, [sym_typedef_declaration] = sym_typedef_declaration, [sym_function_declaration] = sym_function_declaration, [sym__function_arg_list] = sym__function_arg_list, @@ -647,18 +670,19 @@ static const TSSymbol ts_symbol_map[] = { [sym__semicolon] = sym__semicolon, [aux_sym_module_repeat1] = aux_sym_module_repeat1, [aux_sym_package_statement_repeat1] = aux_sym_package_statement_repeat1, - [aux_sym_import_statement_repeat1] = aux_sym_import_statement_repeat1, + [aux_sym__type_path_repeat1] = aux_sym__type_path_repeat1, [aux_sym_switch_block_repeat1] = aux_sym_switch_block_repeat1, [aux_sym__parenthesized_expression_repeat1] = aux_sym__parenthesized_expression_repeat1, [aux_sym_expression_repeat1] = aux_sym_expression_repeat1, [aux_sym_member_expression_repeat1] = aux_sym_member_expression_repeat1, [aux_sym__function_type_args_repeat1] = aux_sym__function_type_args_repeat1, [aux_sym__arg_list_repeat1] = aux_sym__arg_list_repeat1, + [aux_sym_try_statement_repeat1] = aux_sym_try_statement_repeat1, [aux_sym_type_params_repeat1] = aux_sym_type_params_repeat1, [aux_sym_class_declaration_repeat1] = aux_sym_class_declaration_repeat1, [aux_sym_class_declaration_repeat2] = aux_sym_class_declaration_repeat2, + [aux_sym_class_declaration_repeat3] = aux_sym_class_declaration_repeat3, [aux_sym_interface_declaration_repeat1] = aux_sym_interface_declaration_repeat1, - [aux_sym_function_declaration_repeat1] = aux_sym_function_declaration_repeat1, [aux_sym__function_arg_list_repeat1] = aux_sym__function_arg_list_repeat1, [aux_sym_variable_declaration_repeat1] = aux_sym_variable_declaration_repeat1, [aux_sym_variable_declaration_repeat2] = aux_sym_variable_declaration_repeat2, @@ -704,6 +728,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, [anon_sym_using] = { .visible = true, .named = false, @@ -760,7 +796,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_in] = { + [anon_sym_for] = { .visible = true, .named = false, }, @@ -828,7 +864,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_if] = { + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_catch] = { .visible = true, .named = false, }, @@ -836,7 +876,15 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_elseif] = { + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_do] = { .visible = true, .named = false, }, @@ -868,10 +916,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_STAR] = { - .visible = true, - .named = false, - }, [anon_sym_SLASH] = { .visible = true, .named = false, @@ -948,9 +992,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [sym__rangeOperator] = { - .visible = false, - .named = true, + [anon_sym_DOT_DOT_DOT] = { + .visible = true, + .named = false, }, [anon_sym_null] = { .visible = true, @@ -1028,6 +1072,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_enum] = { + .visible = true, + .named = false, + }, [anon_sym_typedef] = { .visible = true, .named = false, @@ -1088,10 +1136,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, - [anon_sym_LBRACE2] = { - .visible = true, - .named = false, - }, [sym_escape_sequence] = { .visible = true, .named = true, @@ -1100,34 +1144,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [anon_sym_catch] = { - .visible = true, - .named = false, - }, - [anon_sym_do] = { - .visible = true, - .named = false, - }, - [anon_sym_enum] = { - .visible = true, - .named = false, - }, - [anon_sym_for] = { - .visible = true, - .named = false, - }, - [anon_sym_try] = { - .visible = true, - .named = false, - }, - [anon_sym_while] = { - .visible = true, - .named = false, - }, - [anon_sym_operator] = { - .visible = true, - .named = false, - }, [sym__camelCaseIdentifier] = { .visible = false, .named = true, @@ -1168,6 +1184,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__type_path] = { + .visible = false, + .named = true, + }, [sym_import_statement] = { .visible = true, .named = true, @@ -1220,6 +1240,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, [sym_range_expression] = { .visible = true, .named = true, @@ -1264,10 +1288,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym_try_statement] = { + .visible = true, + .named = true, + }, + [sym_catch_statement] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, [sym_conditional_statement] = { .visible = true, .named = true, }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_do_while_statement] = { + .visible = true, + .named = true, + }, [sym__call] = { .visible = false, .named = true, @@ -1328,6 +1372,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__rangeOperator] = { + .visible = false, + .named = true, + }, [sym_declaration] = { .visible = false, .named = true, @@ -1357,6 +1405,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_enum_declaration] = { + .visible = true, + .named = true, + }, [sym_typedef_declaration] = { .visible = true, .named = true, @@ -1449,7 +1501,7 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_import_statement_repeat1] = { + [aux_sym__type_path_repeat1] = { .visible = false, .named = false, }, @@ -1477,6 +1529,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, + [aux_sym_try_statement_repeat1] = { + .visible = false, + .named = false, + }, [aux_sym_type_params_repeat1] = { .visible = false, .named = false, @@ -1489,11 +1545,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_interface_declaration_repeat1] = { + [aux_sym_class_declaration_repeat3] = { .visible = false, .named = false, }, - [aux_sym_function_declaration_repeat1] = { + [aux_sym_interface_declaration_repeat1] = { .visible = false, .named = false, }, @@ -1543,16 +1599,19 @@ enum ts_field_identifiers { field_arguments_list = 1, field_body = 2, field_built_in = 3, - field_index = 4, - field_interface_name = 5, - field_literal = 6, - field_member = 7, - field_name = 8, - field_object = 9, - field_return_type = 10, - field_super_class_name = 11, - field_type = 12, - field_type_name = 13, + field_condition = 4, + field_constructor = 5, + field_else = 6, + field_index = 7, + field_interface_name = 8, + field_literal = 9, + field_member = 10, + field_name = 11, + field_object = 12, + field_return_type = 13, + field_super_class_name = 14, + field_type = 15, + field_type_name = 16, }; static const char * const ts_field_names[] = { @@ -1560,6 +1619,9 @@ static const char * const ts_field_names[] = { [field_arguments_list] = "arguments_list", [field_body] = "body", [field_built_in] = "built_in", + [field_condition] = "condition", + [field_constructor] = "constructor", + [field_else] = "else", [field_index] = "index", [field_interface_name] = "interface_name", [field_literal] = "literal", @@ -1574,112 +1636,114 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 2}, - [2] = {.index = 2, .length = 1}, - [3] = {.index = 3, .length = 2}, - [4] = {.index = 5, .length = 2}, - [5] = {.index = 7, .length = 2}, - [7] = {.index = 9, .length = 1}, - [8] = {.index = 10, .length = 2}, - [9] = {.index = 12, .length = 2}, - [10] = {.index = 14, .length = 1}, - [11] = {.index = 15, .length = 1}, + [2] = {.index = 2, .length = 2}, + [3] = {.index = 4, .length = 1}, + [4] = {.index = 5, .length = 1}, + [5] = {.index = 6, .length = 2}, + [7] = {.index = 8, .length = 1}, + [8] = {.index = 9, .length = 2}, + [9] = {.index = 11, .length = 1}, + [10] = {.index = 12, .length = 2}, + [11] = {.index = 14, .length = 2}, [12] = {.index = 16, .length = 2}, - [13] = {.index = 18, .length = 2}, - [14] = {.index = 20, .length = 2}, - [15] = {.index = 22, .length = 2}, - [16] = {.index = 24, .length = 2}, - [17] = {.index = 26, .length = 2}, - [18] = {.index = 28, .length = 1}, - [19] = {.index = 29, .length = 2}, - [20] = {.index = 31, .length = 3}, - [21] = {.index = 34, .length = 2}, - [22] = {.index = 36, .length = 1}, - [23] = {.index = 2, .length = 1}, - [24] = {.index = 37, .length = 1}, - [25] = {.index = 38, .length = 2}, - [26] = {.index = 40, .length = 1}, - [28] = {.index = 41, .length = 2}, - [29] = {.index = 43, .length = 3}, - [30] = {.index = 46, .length = 2}, - [31] = {.index = 48, .length = 3}, - [32] = {.index = 51, .length = 3}, - [33] = {.index = 29, .length = 2}, - [34] = {.index = 54, .length = 2}, - [36] = {.index = 56, .length = 1}, - [37] = {.index = 57, .length = 2}, - [38] = {.index = 40, .length = 1}, - [39] = {.index = 59, .length = 1}, - [41] = {.index = 60, .length = 1}, - [42] = {.index = 61, .length = 3}, - [43] = {.index = 64, .length = 3}, - [44] = {.index = 67, .length = 2}, - [45] = {.index = 69, .length = 3}, - [46] = {.index = 72, .length = 4}, - [47] = {.index = 76, .length = 3}, - [48] = {.index = 36, .length = 1}, - [49] = {.index = 79, .length = 2}, - [50] = {.index = 81, .length = 2}, - [51] = {.index = 79, .length = 2}, - [52] = {.index = 81, .length = 2}, - [53] = {.index = 83, .length = 2}, - [54] = {.index = 85, .length = 3}, - [55] = {.index = 88, .length = 2}, - [56] = {.index = 41, .length = 2}, - [57] = {.index = 59, .length = 1}, - [59] = {.index = 90, .length = 3}, - [60] = {.index = 93, .length = 4}, - [61] = {.index = 97, .length = 3}, - [62] = {.index = 100, .length = 2}, - [63] = {.index = 102, .length = 4}, - [64] = {.index = 106, .length = 3}, - [65] = {.index = 109, .length = 4}, - [66] = {.index = 36, .length = 1}, - [67] = {.index = 113, .length = 2}, - [68] = {.index = 115, .length = 3}, - [69] = {.index = 113, .length = 2}, - [70] = {.index = 115, .length = 3}, - [71] = {.index = 118, .length = 3}, - [72] = {.index = 121, .length = 3}, - [73] = {.index = 124, .length = 2}, - [74] = {.index = 126, .length = 2}, - [75] = {.index = 128, .length = 2}, - [76] = {.index = 126, .length = 2}, - [77] = {.index = 128, .length = 2}, - [78] = {.index = 130, .length = 2}, - [79] = {.index = 83, .length = 2}, - [80] = {.index = 132, .length = 4}, - [81] = {.index = 136, .length = 3}, - [82] = {.index = 139, .length = 4}, - [83] = {.index = 143, .length = 4}, - [84] = {.index = 147, .length = 3}, - [85] = {.index = 147, .length = 3}, - [86] = {.index = 150, .length = 3}, - [87] = {.index = 153, .length = 4}, - [88] = {.index = 157, .length = 3}, - [89] = {.index = 160, .length = 2}, - [90] = {.index = 162, .length = 2}, - [91] = {.index = 164, .length = 3}, - [92] = {.index = 162, .length = 2}, - [93] = {.index = 164, .length = 3}, - [94] = {.index = 167, .length = 2}, - [95] = {.index = 169, .length = 2}, - [96] = {.index = 171, .length = 2}, - [97] = {.index = 169, .length = 2}, - [98] = {.index = 171, .length = 2}, - [99] = {.index = 173, .length = 4}, - [100] = {.index = 177, .length = 4}, - [101] = {.index = 181, .length = 3}, - [102] = {.index = 184, .length = 4}, - [103] = {.index = 188, .length = 3}, - [104] = {.index = 188, .length = 3}, - [105] = {.index = 191, .length = 2}, - [106] = {.index = 193, .length = 2}, - [107] = {.index = 195, .length = 3}, - [108] = {.index = 193, .length = 2}, - [109] = {.index = 195, .length = 3}, - [110] = {.index = 198, .length = 4}, - [111] = {.index = 202, .length = 3}, - [112] = {.index = 202, .length = 3}, + [14] = {.index = 18, .length = 1}, + [15] = {.index = 19, .length = 1}, + [16] = {.index = 20, .length = 2}, + [17] = {.index = 22, .length = 2}, + [18] = {.index = 24, .length = 2}, + [19] = {.index = 26, .length = 2}, + [20] = {.index = 28, .length = 2}, + [21] = {.index = 30, .length = 2}, + [22] = {.index = 32, .length = 3}, + [23] = {.index = 35, .length = 3}, + [24] = {.index = 38, .length = 2}, + [25] = {.index = 40, .length = 2}, + [26] = {.index = 42, .length = 1}, + [27] = {.index = 43, .length = 2}, + [28] = {.index = 45, .length = 3}, + [29] = {.index = 48, .length = 2}, + [30] = {.index = 50, .length = 1}, + [31] = {.index = 51, .length = 1}, + [32] = {.index = 52, .length = 2}, + [33] = {.index = 54, .length = 1}, + [34] = {.index = 55, .length = 2}, + [36] = {.index = 57, .length = 3}, + [37] = {.index = 60, .length = 4}, + [38] = {.index = 64, .length = 4}, + [39] = {.index = 68, .length = 2}, + [40] = {.index = 70, .length = 2}, + [41] = {.index = 72, .length = 2}, + [42] = {.index = 74, .length = 2}, + [43] = {.index = 76, .length = 3}, + [44] = {.index = 79, .length = 3}, + [45] = {.index = 82, .length = 2}, + [47] = {.index = 84, .length = 1}, + [48] = {.index = 85, .length = 2}, + [49] = {.index = 87, .length = 3}, + [50] = {.index = 90, .length = 1}, + [51] = {.index = 91, .length = 2}, + [53] = {.index = 93, .length = 1}, + [54] = {.index = 94, .length = 5}, + [55] = {.index = 99, .length = 3}, + [56] = {.index = 102, .length = 2}, + [57] = {.index = 104, .length = 2}, + [58] = {.index = 106, .length = 3}, + [59] = {.index = 109, .length = 4}, + [60] = {.index = 113, .length = 3}, + [61] = {.index = 50, .length = 1}, + [62] = {.index = 116, .length = 2}, + [63] = {.index = 118, .length = 2}, + [64] = {.index = 120, .length = 2}, + [65] = {.index = 122, .length = 3}, + [66] = {.index = 125, .length = 3}, + [67] = {.index = 128, .length = 2}, + [68] = {.index = 130, .length = 3}, + [71] = {.index = 133, .length = 1}, + [72] = {.index = 134, .length = 2}, + [73] = {.index = 136, .length = 2}, + [74] = {.index = 138, .length = 4}, + [75] = {.index = 142, .length = 3}, + [76] = {.index = 145, .length = 4}, + [77] = {.index = 50, .length = 1}, + [78] = {.index = 149, .length = 2}, + [79] = {.index = 151, .length = 3}, + [80] = {.index = 154, .length = 2}, + [81] = {.index = 156, .length = 3}, + [82] = {.index = 159, .length = 4}, + [83] = {.index = 163, .length = 3}, + [84] = {.index = 166, .length = 2}, + [85] = {.index = 168, .length = 2}, + [86] = {.index = 170, .length = 2}, + [87] = {.index = 172, .length = 3}, + [88] = {.index = 175, .length = 3}, + [90] = {.index = 178, .length = 2}, + [91] = {.index = 180, .length = 3}, + [92] = {.index = 183, .length = 4}, + [93] = {.index = 187, .length = 3}, + [94] = {.index = 190, .length = 2}, + [95] = {.index = 192, .length = 4}, + [96] = {.index = 196, .length = 3}, + [97] = {.index = 199, .length = 4}, + [98] = {.index = 203, .length = 2}, + [99] = {.index = 205, .length = 3}, + [100] = {.index = 208, .length = 2}, + [101] = {.index = 210, .length = 3}, + [102] = {.index = 213, .length = 4}, + [103] = {.index = 217, .length = 3}, + [104] = {.index = 220, .length = 2}, + [105] = {.index = 222, .length = 2}, + [107] = {.index = 224, .length = 3}, + [108] = {.index = 227, .length = 4}, + [109] = {.index = 231, .length = 4}, + [110] = {.index = 235, .length = 3}, + [111] = {.index = 238, .length = 2}, + [112] = {.index = 240, .length = 4}, + [113] = {.index = 244, .length = 3}, + [114] = {.index = 247, .length = 4}, + [115] = {.index = 251, .length = 2}, + [116] = {.index = 253, .length = 3}, + [117] = {.index = 256, .length = 4}, + [118] = {.index = 260, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -1687,288 +1751,369 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_arguments_list, 0, .inherited = true}, {field_object, 0, .inherited = true}, [2] = + {field_arguments_list, 0, .inherited = true}, + {field_constructor, 0, .inherited = true}, + [4] = {field_name, 1}, - [3] = - {field_arguments_list, 1}, - {field_name, 0}, [5] = - {field_arguments_list, 1, .inherited = true}, - {field_object, 1, .inherited = true}, - [7] = + {field_condition, 1}, + [6] = {field_arguments_list, 1}, {field_object, 0}, - [9] = + [8] = {field_member, 0}, - [10] = + [9] = {field_member, 2, .inherited = true}, {field_object, 0}, + [11] = + {field_body, 1}, [12] = {field_body, 2}, - {field_name, 1}, + {field_condition, 1}, [14] = + {field_arguments_list, 2}, + {field_constructor, 1}, + [16] = + {field_body, 2}, + {field_name, 1}, + [18] = {field_type_name, 0}, - [15] = + [19] = {field_built_in, 0}, - [16] = + [20] = {field_arguments_list, 2}, {field_object, 0}, - [18] = + [22] = {field_literal, 0}, {field_member, 2, .inherited = true}, - [20] = + [24] = {field_name, 1}, {field_name, 2}, - [22] = + [26] = {field_member, 0, .inherited = true}, {field_member, 1, .inherited = true}, - [24] = + [28] = {field_member, 3, .inherited = true}, {field_object, 0}, - [26] = + [30] = + {field_body, 1}, + {field_body, 2}, + [32] = + {field_body, 2}, {field_body, 3}, - {field_name, 2}, - [28] = + {field_condition, 1}, + [35] = + {field_body, 2}, + {field_condition, 1}, + {field_else, 3}, + [38] = + {field_arguments_list, 3}, + {field_constructor, 1}, + [40] = + {field_arguments_list, 3}, + {field_constructor, 2}, + [42] = {field_interface_name, 1}, - [29] = + [43] = {field_body, 3}, {field_name, 1}, - [31] = + [45] = {field_body, 3}, {field_interface_name, 2, .inherited = true}, {field_name, 1}, - [34] = + [48] = {field_interface_name, 0, .inherited = true}, {field_interface_name, 1, .inherited = true}, - [36] = + [50] = {field_name, 0}, - [37] = + [51] = {field_index, 2}, - [38] = + [52] = {field_literal, 0}, {field_member, 3, .inherited = true}, - [40] = + [54] = {field_name, 2}, - [41] = - {field_body, 4}, + [55] = + {field_body, 3}, {field_name, 2}, - [43] = + [57] = + {field_body, 1}, + {field_body, 2}, + {field_body, 3}, + [60] = + {field_body, 2}, + {field_body, 3}, + {field_condition, 1}, + {field_else, 4}, + [64] = + {field_body, 2}, + {field_body, 3}, {field_body, 4}, - {field_interface_name, 3, .inherited = true}, - {field_name, 2}, - [46] = + {field_condition, 1}, + [68] = + {field_body, 1}, + {field_condition, 3}, + [70] = + {field_arguments_list, 4}, + {field_constructor, 2}, + [72] = + {field_arguments_list, 4}, + {field_constructor, 3}, + [74] = {field_name, 1}, {field_type, 3}, - [48] = + [76] = {field_body, 4}, {field_name, 1}, {field_super_class_name, 3}, - [51] = + [79] = {field_body, 4}, {field_interface_name, 3, .inherited = true}, {field_name, 1}, - [54] = + [82] = {field_index, 2}, {field_index, 3}, - [56] = + [84] = {field_return_type, 2}, - [57] = + [85] = + {field_body, 4}, + {field_name, 2}, + [87] = {field_body, 4}, + {field_interface_name, 3, .inherited = true}, + {field_name, 2}, + [90] = {field_name, 3}, - [59] = + [91] = + {field_body, 4}, {field_name, 3}, - [60] = + [93] = {field_type, 4}, - [61] = - {field_body, 5}, - {field_name, 2}, - {field_super_class_name, 4}, - [64] = - {field_body, 5}, - {field_interface_name, 4, .inherited = true}, - {field_name, 2}, - [67] = + [94] = + {field_body, 2}, + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + {field_else, 5}, + [99] = + {field_body, 1}, + {field_body, 2}, + {field_condition, 4}, + [102] = + {field_arguments_list, 5}, + {field_constructor, 3}, + [104] = {field_name, 1}, {field_type, 4}, - [69] = + [106] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 3}, - [72] = + [109] = {field_body, 5}, {field_interface_name, 4, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [76] = + [113] = {field_body, 5}, {field_name, 1}, {field_super_class_name, 4}, - [79] = + [116] = {field_body, 4}, {field_name, 1}, - [81] = + [118] = {field_name, 1}, {field_return_type, 4}, - [83] = - {field_body, 5}, - {field_name, 3}, - [85] = - {field_body, 5}, - {field_interface_name, 4, .inherited = true}, - {field_name, 3}, - [88] = + [120] = {field_name, 2}, {field_type, 4}, - [90] = - {field_body, 6}, + [122] = + {field_body, 5}, {field_name, 2}, {field_super_class_name, 4}, - [93] = - {field_body, 6}, - {field_interface_name, 5, .inherited = true}, + [125] = + {field_body, 5}, + {field_interface_name, 4, .inherited = true}, {field_name, 2}, - {field_super_class_name, 4}, - [97] = + [128] = + {field_body, 5}, + {field_name, 3}, + [130] = + {field_body, 5}, + {field_interface_name, 4, .inherited = true}, + {field_name, 3}, + [133] = {field_body, 6}, - {field_name, 2}, - {field_super_class_name, 5}, - [100] = + [134] = + {field_arguments_list, 2}, + {field_body, 4}, + [136] = {field_name, 1}, {field_type, 5}, - [102] = + [138] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 3}, - [106] = + [142] = {field_body, 6}, {field_name, 1}, {field_super_class_name, 4}, - [109] = + [145] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, {field_name, 1}, {field_super_class_name, 4}, - [113] = + [149] = {field_name, 1}, {field_return_type, 5}, - [115] = + [151] = {field_body, 5}, {field_name, 1}, {field_return_type, 4}, - [118] = + [154] = + {field_name, 2}, + {field_type, 5}, + [156] = {field_body, 6}, - {field_name, 3}, - {field_super_class_name, 5}, - [121] = + {field_name, 2}, + {field_super_class_name, 4}, + [159] = {field_body, 6}, {field_interface_name, 5, .inherited = true}, - {field_name, 3}, - [124] = {field_name, 2}, - {field_type, 5}, - [126] = + {field_super_class_name, 4}, + [163] = + {field_body, 6}, + {field_name, 2}, + {field_super_class_name, 5}, + [166] = {field_body, 5}, {field_name, 2}, - [128] = + [168] = {field_name, 2}, {field_return_type, 5}, - [130] = + [170] = {field_name, 3}, {field_type, 5}, - [132] = + [172] = + {field_body, 6}, + {field_name, 3}, + {field_super_class_name, 5}, + [175] = + {field_body, 6}, + {field_interface_name, 5, .inherited = true}, + {field_name, 3}, + [178] = + {field_body, 6}, + {field_body, 7}, + [180] = + {field_arguments_list, 2}, + {field_body, 4}, + {field_body, 5}, + [183] = + {field_body, 7}, + {field_interface_name, 6, .inherited = true}, + {field_name, 1}, + {field_super_class_name, 4}, + [187] = + {field_body, 6}, + {field_name, 1}, + {field_return_type, 5}, + [190] = + {field_name, 2}, + {field_type, 6}, + [192] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 4}, - [136] = + [196] = {field_body, 7}, {field_name, 2}, {field_super_class_name, 5}, - [139] = + [199] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [143] = - {field_body, 7}, - {field_interface_name, 6, .inherited = true}, - {field_name, 1}, - {field_super_class_name, 4}, - [147] = + [203] = + {field_name, 2}, + {field_return_type, 6}, + [205] = {field_body, 6}, - {field_name, 1}, + {field_name, 2}, {field_return_type, 5}, - [150] = + [208] = + {field_name, 3}, + {field_type, 6}, + [210] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 5}, - [153] = + [213] = {field_body, 7}, {field_interface_name, 6, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [157] = + [217] = {field_body, 7}, {field_name, 3}, {field_super_class_name, 6}, - [160] = - {field_name, 2}, - {field_type, 6}, - [162] = - {field_name, 2}, - {field_return_type, 6}, - [164] = + [220] = {field_body, 6}, - {field_name, 2}, - {field_return_type, 5}, - [167] = {field_name, 3}, - {field_type, 6}, - [169] = - {field_body, 6}, - {field_name, 3}, - [171] = + [222] = {field_name, 3}, {field_return_type, 6}, - [173] = + [224] = + {field_body, 6}, + {field_body, 7}, + {field_body, 8}, + [227] = + {field_arguments_list, 2}, + {field_body, 4}, + {field_body, 5}, + {field_body, 6}, + [231] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 2}, {field_super_class_name, 5}, - [177] = + [235] = + {field_body, 7}, + {field_name, 2}, + {field_return_type, 6}, + [238] = + {field_name, 3}, + {field_type, 7}, + [240] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 5}, - [181] = + [244] = {field_body, 8}, {field_name, 3}, {field_super_class_name, 6}, - [184] = + [247] = {field_body, 8}, {field_interface_name, 7, .inherited = true}, {field_name, 3}, {field_super_class_name, 6}, - [188] = - {field_body, 7}, - {field_name, 2}, - {field_return_type, 6}, - [191] = - {field_name, 3}, - {field_type, 7}, - [193] = + [251] = {field_name, 3}, {field_return_type, 7}, - [195] = + [253] = {field_body, 7}, {field_name, 3}, {field_return_type, 6}, - [198] = + [256] = {field_body, 9}, {field_interface_name, 8, .inherited = true}, {field_name, 3}, {field_super_class_name, 6}, - [202] = + [260] = {field_body, 8}, {field_name, 3}, {field_return_type, 7}, @@ -1979,92 +2124,44 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [6] = { [1] = anon_alias_sym_type_check, }, - [16] = { + [13] = { [1] = sym_operator, }, - [23] = { - [1] = sym_identifier, + [20] = { + [1] = sym_operator, }, - [25] = { + [32] = { [1] = sym_operator, }, - [27] = { + [35] = { [3] = sym_identifier, }, - [33] = { - [1] = sym_identifier, - }, - [35] = { + [46] = { [1] = anon_alias_sym_type, }, - [38] = { - [2] = sym_identifier, - }, - [40] = { + [52] = { [4] = sym_identifier, }, - [48] = { + [61] = { [2] = sym_type, }, - [49] = { - [1] = sym_identifier, - }, - [50] = { - [1] = sym_identifier, - }, - [56] = { - [2] = sym_identifier, - }, - [57] = { + [69] = { [3] = sym_identifier, + [5] = sym_identifier, }, - [58] = { + [70] = { [5] = sym_identifier, }, - [66] = { + [77] = { [3] = sym_type, }, - [67] = { - [1] = sym_identifier, - }, - [68] = { - [1] = sym_identifier, - }, - [74] = { - [2] = sym_identifier, - }, - [75] = { - [2] = sym_identifier, - }, - [79] = { - [3] = sym_identifier, - }, - [84] = { - [1] = sym_identifier, - }, - [90] = { - [2] = sym_identifier, - }, - [91] = { - [2] = sym_identifier, - }, - [95] = { - [3] = sym_identifier, - }, - [96] = { - [3] = sym_identifier, - }, - [103] = { - [2] = sym_identifier, + [89] = { + [4] = sym_identifier, + [6] = sym_identifier, }, [106] = { - [3] = sym_identifier, - }, - [107] = { - [3] = sym_identifier, - }, - [111] = { - [3] = sym_identifier, + [5] = sym_identifier, + [7] = sym_identifier, }, }; @@ -2076,6 +2173,9 @@ static const uint16_t ts_non_terminal_alias_map[] = { sym_type, anon_alias_sym_type, sym_type, + sym__rangeOperator, 2, + sym__rangeOperator, + sym_operator, sym_structure_type_pair, 2, sym_pair, anon_alias_sym_type_check, @@ -2086,201 +2186,201 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, - [5] = 5, + [3] = 3, + [4] = 2, + [5] = 3, [6] = 2, - [7] = 4, - [8] = 5, - [9] = 4, - [10] = 5, - [11] = 5, - [12] = 5, - [13] = 2, - [14] = 2, - [15] = 5, - [16] = 16, - [17] = 17, - [18] = 17, - [19] = 19, - [20] = 20, - [21] = 21, - [22] = 21, - [23] = 23, + [7] = 3, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 2, + [12] = 10, + [13] = 8, + [14] = 3, + [15] = 9, + [16] = 10, + [17] = 8, + [18] = 9, + [19] = 3, + [20] = 10, + [21] = 2, + [22] = 3, + [23] = 2, [24] = 24, - [25] = 25, - [26] = 26, - [27] = 26, - [28] = 28, - [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 33, - [35] = 30, - [36] = 31, - [37] = 28, - [38] = 29, - [39] = 39, - [40] = 39, - [41] = 32, - [42] = 29, - [43] = 30, - [44] = 31, - [45] = 32, - [46] = 28, - [47] = 33, - [48] = 48, - [49] = 29, - [50] = 33, - [51] = 30, - [52] = 32, - [53] = 48, - [54] = 31, - [55] = 28, - [56] = 56, - [57] = 57, - [58] = 57, - [59] = 56, - [60] = 60, - [61] = 60, - [62] = 62, - [63] = 63, - [64] = 63, - [65] = 62, - [66] = 62, - [67] = 63, - [68] = 63, - [69] = 63, - [70] = 62, - [71] = 62, - [72] = 72, - [73] = 73, - [74] = 74, - [75] = 75, - [76] = 76, - [77] = 73, - [78] = 73, - [79] = 73, - [80] = 80, - [81] = 75, - [82] = 74, - [83] = 74, - [84] = 76, - [85] = 60, - [86] = 73, - [87] = 60, - [88] = 73, - [89] = 74, - [90] = 73, - [91] = 74, - [92] = 92, - [93] = 93, - [94] = 94, - [95] = 94, - [96] = 96, - [97] = 97, - [98] = 98, - [99] = 99, - [100] = 100, - [101] = 101, - [102] = 102, - [103] = 103, - [104] = 103, - [105] = 94, - [106] = 106, - [107] = 107, - [108] = 94, + [25] = 24, + [26] = 2, + [27] = 27, + [28] = 3, + [29] = 3, + [30] = 2, + [31] = 3, + [32] = 2, + [33] = 2, + [34] = 3, + [35] = 3, + [36] = 3, + [37] = 2, + [38] = 2, + [39] = 2, + [40] = 3, + [41] = 3, + [42] = 2, + [43] = 3, + [44] = 2, + [45] = 3, + [46] = 2, + [47] = 2, + [48] = 3, + [49] = 49, + [50] = 49, + [51] = 51, + [52] = 52, + [53] = 51, + [54] = 54, + [55] = 52, + [56] = 51, + [57] = 54, + [58] = 52, + [59] = 51, + [60] = 51, + [61] = 51, + [62] = 51, + [63] = 51, + [64] = 49, + [65] = 51, + [66] = 2, + [67] = 49, + [68] = 52, + [69] = 51, + [70] = 51, + [71] = 54, + [72] = 51, + [73] = 51, + [74] = 49, + [75] = 54, + [76] = 49, + [77] = 54, + [78] = 3, + [79] = 79, + [80] = 51, + [81] = 52, + [82] = 52, + [83] = 52, + [84] = 51, + [85] = 52, + [86] = 51, + [87] = 51, + [88] = 51, + [89] = 54, + [90] = 52, + [91] = 91, + [92] = 54, + [93] = 54, + [94] = 52, + [95] = 49, + [96] = 49, + [97] = 49, + [98] = 49, + [99] = 49, + [100] = 49, + [101] = 49, + [102] = 49, + [103] = 49, + [104] = 49, + [105] = 49, + [106] = 49, + [107] = 54, + [108] = 108, [109] = 109, [110] = 110, [111] = 111, - [112] = 100, + [112] = 112, [113] = 113, [114] = 114, - [115] = 115, - [116] = 116, + [115] = 110, + [116] = 112, [117] = 117, - [118] = 113, - [119] = 119, - [120] = 94, - [121] = 117, - [122] = 92, - [123] = 110, - [124] = 94, - [125] = 125, - [126] = 126, - [127] = 126, - [128] = 99, - [129] = 98, - [130] = 94, + [118] = 111, + [119] = 110, + [120] = 120, + [121] = 121, + [122] = 122, + [123] = 114, + [124] = 108, + [125] = 122, + [126] = 117, + [127] = 109, + [128] = 110, + [129] = 120, + [130] = 121, [131] = 131, - [132] = 102, - [133] = 126, - [134] = 134, - [135] = 135, - [136] = 111, - [137] = 94, - [138] = 138, - [139] = 106, - [140] = 94, - [141] = 107, - [142] = 125, - [143] = 94, - [144] = 144, - [145] = 97, - [146] = 94, - [147] = 134, - [148] = 94, - [149] = 93, - [150] = 126, - [151] = 94, - [152] = 94, - [153] = 94, - [154] = 135, - [155] = 110, - [156] = 131, - [157] = 157, - [158] = 94, - [159] = 116, - [160] = 115, - [161] = 126, - [162] = 94, - [163] = 138, - [164] = 144, - [165] = 114, - [166] = 109, - [167] = 94, - [168] = 157, - [169] = 169, - [170] = 170, - [171] = 101, - [172] = 172, + [132] = 131, + [133] = 113, + [134] = 108, + [135] = 117, + [136] = 109, + [137] = 113, + [138] = 114, + [139] = 122, + [140] = 140, + [141] = 141, + [142] = 122, + [143] = 143, + [144] = 143, + [145] = 145, + [146] = 141, + [147] = 147, + [148] = 147, + [149] = 149, + [150] = 117, + [151] = 113, + [152] = 109, + [153] = 114, + [154] = 108, + [155] = 155, + [156] = 155, + [157] = 155, + [158] = 155, + [159] = 155, + [160] = 160, + [161] = 161, + [162] = 160, + [163] = 163, + [164] = 160, + [165] = 165, + [166] = 166, + [167] = 161, + [168] = 160, + [169] = 161, + [170] = 160, + [171] = 161, + [172] = 161, [173] = 173, - [174] = 174, + [174] = 173, [175] = 175, [176] = 176, [177] = 177, [178] = 178, - [179] = 179, + [179] = 178, [180] = 180, [181] = 181, [182] = 182, [183] = 183, [184] = 184, - [185] = 185, + [185] = 173, [186] = 186, [187] = 187, [188] = 188, [189] = 189, [190] = 190, - [191] = 191, + [191] = 173, [192] = 192, [193] = 193, [194] = 194, [195] = 195, [196] = 196, - [197] = 197, + [197] = 173, [198] = 198, [199] = 199, [200] = 200, @@ -2289,13 +2389,13 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [203] = 203, [204] = 204, [205] = 205, - [206] = 206, + [206] = 178, [207] = 207, [208] = 208, - [209] = 172, - [210] = 205, + [209] = 209, + [210] = 210, [211] = 211, - [212] = 175, + [212] = 212, [213] = 213, [214] = 214, [215] = 215, @@ -2303,203 +2403,203 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [217] = 217, [218] = 218, [219] = 219, - [220] = 173, - [221] = 221, + [220] = 220, + [221] = 178, [222] = 222, - [223] = 174, + [223] = 223, [224] = 224, [225] = 225, [226] = 226, - [227] = 227, + [227] = 178, [228] = 228, - [229] = 197, - [230] = 205, - [231] = 177, - [232] = 190, - [233] = 204, - [234] = 206, - [235] = 205, - [236] = 189, - [237] = 228, - [238] = 213, - [239] = 187, - [240] = 188, - [241] = 195, - [242] = 180, - [243] = 204, - [244] = 198, - [245] = 221, - [246] = 222, - [247] = 185, - [248] = 225, - [249] = 184, - [250] = 183, - [251] = 200, - [252] = 215, - [253] = 178, - [254] = 202, - [255] = 186, - [256] = 211, - [257] = 196, + [229] = 229, + [230] = 230, + [231] = 209, + [232] = 232, + [233] = 233, + [234] = 234, + [235] = 235, + [236] = 236, + [237] = 237, + [238] = 238, + [239] = 239, + [240] = 240, + [241] = 241, + [242] = 241, + [243] = 243, + [244] = 244, + [245] = 245, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 241, + [251] = 241, + [252] = 252, + [253] = 249, + [254] = 241, + [255] = 255, + [256] = 241, + [257] = 241, [258] = 258, - [259] = 201, - [260] = 217, - [261] = 224, - [262] = 226, - [263] = 219, - [264] = 177, - [265] = 208, - [266] = 176, - [267] = 193, - [268] = 206, - [269] = 216, - [270] = 199, - [271] = 181, - [272] = 218, - [273] = 182, - [274] = 191, - [275] = 227, - [276] = 203, - [277] = 194, - [278] = 179, - [279] = 192, - [280] = 190, - [281] = 214, - [282] = 207, + [259] = 166, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 241, + [264] = 264, + [265] = 241, + [266] = 266, + [267] = 267, + [268] = 241, + [269] = 255, + [270] = 262, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 279, + [280] = 280, + [281] = 281, + [282] = 282, [283] = 283, [284] = 284, - [285] = 284, - [286] = 204, - [287] = 284, - [288] = 288, - [289] = 284, - [290] = 290, - [291] = 172, - [292] = 204, - [293] = 206, - [294] = 190, - [295] = 174, - [296] = 296, - [297] = 297, - [298] = 297, - [299] = 175, - [300] = 173, - [301] = 177, - [302] = 297, - [303] = 258, - [304] = 296, - [305] = 290, - [306] = 297, - [307] = 307, - [308] = 308, - [309] = 309, - [310] = 310, - [311] = 311, - [312] = 312, - [313] = 313, - [314] = 314, - [315] = 315, - [316] = 283, - [317] = 317, - [318] = 288, - [319] = 319, - [320] = 320, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 324, - [325] = 325, - [326] = 326, - [327] = 327, - [328] = 328, - [329] = 329, - [330] = 330, - [331] = 331, - [332] = 332, - [333] = 333, - [334] = 334, - [335] = 335, - [336] = 336, - [337] = 337, - [338] = 338, - [339] = 339, + [285] = 285, + [286] = 243, + [287] = 244, + [288] = 245, + [289] = 246, + [290] = 247, + [291] = 248, + [292] = 285, + [293] = 271, + [294] = 267, + [295] = 241, + [296] = 266, + [297] = 241, + [298] = 241, + [299] = 241, + [300] = 272, + [301] = 273, + [302] = 226, + [303] = 175, + [304] = 175, + [305] = 264, + [306] = 249, + [307] = 266, + [308] = 249, + [309] = 275, + [310] = 276, + [311] = 264, + [312] = 277, + [313] = 266, + [314] = 241, + [315] = 264, + [316] = 266, + [317] = 278, + [318] = 279, + [319] = 249, + [320] = 280, + [321] = 241, + [322] = 281, + [323] = 264, + [324] = 241, + [325] = 282, + [326] = 283, + [327] = 163, + [328] = 284, + [329] = 193, + [330] = 241, + [331] = 200, + [332] = 201, + [333] = 208, + [334] = 240, + [335] = 261, + [336] = 214, + [337] = 241, + [338] = 213, + [339] = 225, [340] = 340, - [341] = 341, - [342] = 342, - [343] = 343, - [344] = 344, - [345] = 345, - [346] = 346, - [347] = 347, - [348] = 348, - [349] = 349, - [350] = 350, - [351] = 351, + [341] = 228, + [342] = 234, + [343] = 214, + [344] = 223, + [345] = 229, + [346] = 230, + [347] = 226, + [348] = 233, + [349] = 237, + [350] = 222, + [351] = 189, [352] = 352, - [353] = 353, - [354] = 354, - [355] = 355, - [356] = 356, - [357] = 357, - [358] = 358, - [359] = 359, - [360] = 360, - [361] = 361, - [362] = 362, - [363] = 363, - [364] = 364, - [365] = 365, - [366] = 366, - [367] = 367, - [368] = 368, - [369] = 369, - [370] = 370, - [371] = 371, - [372] = 372, - [373] = 373, - [374] = 374, - [375] = 375, - [376] = 376, - [377] = 377, - [378] = 378, - [379] = 379, - [380] = 380, - [381] = 381, - [382] = 382, - [383] = 383, - [384] = 384, - [385] = 385, - [386] = 386, - [387] = 387, - [388] = 388, - [389] = 389, - [390] = 390, - [391] = 391, + [353] = 235, + [354] = 236, + [355] = 192, + [356] = 232, + [357] = 205, + [358] = 200, + [359] = 177, + [360] = 180, + [361] = 181, + [362] = 182, + [363] = 186, + [364] = 187, + [365] = 238, + [366] = 201, + [367] = 188, + [368] = 190, + [369] = 194, + [370] = 195, + [371] = 176, + [372] = 196, + [373] = 198, + [374] = 199, + [375] = 202, + [376] = 203, + [377] = 204, + [378] = 207, + [379] = 184, + [380] = 210, + [381] = 239, + [382] = 211, + [383] = 212, + [384] = 224, + [385] = 215, + [386] = 216, + [387] = 217, + [388] = 218, + [389] = 219, + [390] = 220, + [391] = 183, [392] = 392, [393] = 393, [394] = 394, - [395] = 395, + [395] = 214, [396] = 396, - [397] = 397, + [397] = 175, [398] = 398, - [399] = 399, + [399] = 398, [400] = 400, [401] = 401, [402] = 402, - [403] = 403, + [403] = 201, [404] = 404, [405] = 405, - [406] = 406, + [406] = 396, [407] = 407, - [408] = 408, - [409] = 409, - [410] = 410, - [411] = 411, - [412] = 412, + [408] = 400, + [409] = 398, + [410] = 200, + [411] = 398, + [412] = 396, [413] = 413, - [414] = 414, - [415] = 415, - [416] = 416, + [414] = 396, + [415] = 352, + [416] = 226, [417] = 417, [418] = 418, [419] = 419, @@ -2511,23 +2611,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [425] = 425, [426] = 426, [427] = 427, - [428] = 283, + [428] = 428, [429] = 429, [430] = 430, [431] = 431, [432] = 432, - [433] = 416, + [433] = 433, [434] = 434, - [435] = 204, - [436] = 172, + [435] = 435, + [436] = 436, [437] = 437, [438] = 438, - [439] = 175, + [439] = 439, [440] = 440, - [441] = 379, + [441] = 441, [442] = 442, - [443] = 174, - [444] = 173, + [443] = 443, + [444] = 444, [445] = 445, [446] = 446, [447] = 447, @@ -2563,7 +2663,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [477] = 477, [478] = 478, [479] = 479, - [480] = 416, + [480] = 480, [481] = 481, [482] = 482, [483] = 483, @@ -2571,7 +2671,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [485] = 485, [486] = 486, [487] = 487, - [488] = 416, + [488] = 488, [489] = 489, [490] = 490, [491] = 491, @@ -2582,1964 +2682,1964 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [496] = 496, [497] = 497, [498] = 498, - [499] = 498, - [500] = 448, - [501] = 451, - [502] = 365, - [503] = 432, - [504] = 397, - [505] = 474, - [506] = 442, - [507] = 478, - [508] = 485, - [509] = 468, - [510] = 364, - [511] = 445, - [512] = 400, - [513] = 361, - [514] = 458, - [515] = 369, - [516] = 355, - [517] = 392, - [518] = 288, - [519] = 346, - [520] = 492, - [521] = 407, - [522] = 370, - [523] = 368, - [524] = 373, - [525] = 395, - [526] = 419, - [527] = 338, - [528] = 320, - [529] = 466, - [530] = 465, - [531] = 378, - [532] = 489, - [533] = 479, - [534] = 438, - [535] = 390, - [536] = 321, - [537] = 461, - [538] = 494, - [539] = 482, - [540] = 459, - [541] = 360, - [542] = 481, - [543] = 327, - [544] = 450, - [545] = 457, - [546] = 456, - [547] = 404, - [548] = 334, - [549] = 477, - [550] = 472, - [551] = 393, - [552] = 453, + [499] = 499, + [500] = 500, + [501] = 501, + [502] = 502, + [503] = 503, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 510, + [511] = 511, + [512] = 512, + [513] = 513, + [514] = 514, + [515] = 515, + [516] = 516, + [517] = 517, + [518] = 518, + [519] = 519, + [520] = 520, + [521] = 521, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 526, + [527] = 527, + [528] = 528, + [529] = 529, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 543, + [544] = 544, + [545] = 545, + [546] = 392, + [547] = 547, + [548] = 340, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, [553] = 553, - [554] = 447, - [555] = 333, + [554] = 554, + [555] = 555, [556] = 556, - [557] = 440, - [558] = 332, - [559] = 385, - [560] = 387, - [561] = 331, - [562] = 388, - [563] = 464, - [564] = 391, - [565] = 330, - [566] = 467, - [567] = 328, - [568] = 324, - [569] = 398, - [570] = 411, - [571] = 322, - [572] = 437, - [573] = 308, - [574] = 394, - [575] = 288, - [576] = 283, - [577] = 389, - [578] = 383, - [579] = 556, - [580] = 460, - [581] = 329, - [582] = 455, - [583] = 319, - [584] = 310, - [585] = 454, - [586] = 452, - [587] = 336, - [588] = 363, - [589] = 326, - [590] = 434, - [591] = 431, - [592] = 553, - [593] = 421, - [594] = 430, - [595] = 380, - [596] = 377, - [597] = 446, - [598] = 375, - [599] = 376, - [600] = 381, - [601] = 382, - [602] = 429, - [603] = 449, - [604] = 374, - [605] = 384, - [606] = 471, - [607] = 315, - [608] = 476, - [609] = 314, - [610] = 483, - [611] = 313, - [612] = 312, - [613] = 386, - [614] = 427, - [615] = 309, - [616] = 335, - [617] = 396, - [618] = 487, - [619] = 325, - [620] = 317, - [621] = 399, - [622] = 401, - [623] = 311, - [624] = 462, - [625] = 339, - [626] = 402, - [627] = 340, - [628] = 341, - [629] = 342, - [630] = 426, - [631] = 473, - [632] = 463, - [633] = 337, - [634] = 403, - [635] = 323, - [636] = 425, - [637] = 343, - [638] = 405, - [639] = 497, - [640] = 371, - [641] = 424, - [642] = 406, - [643] = 367, - [644] = 493, - [645] = 408, - [646] = 344, - [647] = 366, - [648] = 307, - [649] = 362, - [650] = 423, - [651] = 345, - [652] = 496, - [653] = 422, - [654] = 347, - [655] = 409, - [656] = 348, - [657] = 410, - [658] = 412, - [659] = 495, + [557] = 547, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 547, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 547, + [571] = 392, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 579, + [580] = 580, + [581] = 581, + [582] = 582, + [583] = 583, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 392, + [592] = 592, + [593] = 593, + [594] = 417, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 417, + [599] = 595, + [600] = 596, + [601] = 597, + [602] = 417, + [603] = 595, + [604] = 597, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 608, + [609] = 595, + [610] = 597, + [611] = 611, + [612] = 612, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 401, + [621] = 417, + [622] = 595, + [623] = 597, + [624] = 595, + [625] = 596, + [626] = 404, + [627] = 407, + [628] = 417, + [629] = 392, + [630] = 597, + [631] = 405, + [632] = 413, + [633] = 402, + [634] = 595, + [635] = 596, + [636] = 417, + [637] = 413, + [638] = 597, + [639] = 413, + [640] = 402, + [641] = 407, + [642] = 417, + [643] = 595, + [644] = 597, + [645] = 393, + [646] = 394, + [647] = 402, + [648] = 392, + [649] = 407, + [650] = 549, + [651] = 484, + [652] = 485, + [653] = 486, + [654] = 487, + [655] = 488, + [656] = 561, + [657] = 489, + [658] = 562, + [659] = 490, [660] = 491, - [661] = 349, - [662] = 413, - [663] = 469, - [664] = 490, - [665] = 350, - [666] = 351, - [667] = 352, - [668] = 470, - [669] = 353, - [670] = 486, - [671] = 354, - [672] = 414, - [673] = 356, - [674] = 415, - [675] = 357, - [676] = 417, - [677] = 418, - [678] = 372, - [679] = 358, - [680] = 420, - [681] = 475, - [682] = 359, - [683] = 484, - [684] = 39, - [685] = 33, - [686] = 29, - [687] = 28, - [688] = 32, - [689] = 31, - [690] = 30, - [691] = 691, - [692] = 33, - [693] = 60, - [694] = 28, - [695] = 56, - [696] = 32, - [697] = 57, - [698] = 30, - [699] = 29, - [700] = 31, - [701] = 39, - [702] = 702, - [703] = 60, - [704] = 33, - [705] = 705, - [706] = 33, - [707] = 39, - [708] = 33, - [709] = 39, - [710] = 39, - [711] = 33, - [712] = 39, - [713] = 33, - [714] = 39, - [715] = 33, - [716] = 33, - [717] = 39, - [718] = 28, - [719] = 29, - [720] = 30, - [721] = 31, - [722] = 32, - [723] = 29, - [724] = 32, - [725] = 31, - [726] = 31, - [727] = 30, - [728] = 31, - [729] = 32, - [730] = 28, - [731] = 32, - [732] = 30, - [733] = 30, - [734] = 28, - [735] = 29, - [736] = 29, - [737] = 28, - [738] = 28, - [739] = 32, - [740] = 31, - [741] = 741, - [742] = 31, - [743] = 284, - [744] = 28, - [745] = 30, - [746] = 32, - [747] = 30, - [748] = 29, - [749] = 29, - [750] = 31, - [751] = 32, - [752] = 30, - [753] = 205, - [754] = 28, - [755] = 29, - [756] = 205, - [757] = 179, - [758] = 284, - [759] = 213, - [760] = 760, - [761] = 284, - [762] = 217, - [763] = 297, - [764] = 297, - [765] = 296, - [766] = 416, - [767] = 416, - [768] = 416, - [769] = 416, - [770] = 770, - [771] = 771, - [772] = 205, - [773] = 205, - [774] = 205, - [775] = 57, - [776] = 213, - [777] = 179, - [778] = 203, - [779] = 57, - [780] = 218, - [781] = 196, - [782] = 56, - [783] = 194, - [784] = 60, - [785] = 60, - [786] = 205, - [787] = 205, - [788] = 57, - [789] = 179, - [790] = 60, - [791] = 57, - [792] = 57, - [793] = 56, - [794] = 205, - [795] = 60, - [796] = 57, - [797] = 213, - [798] = 56, - [799] = 57, - [800] = 56, - [801] = 218, - [802] = 179, - [803] = 803, - [804] = 60, - [805] = 196, - [806] = 205, - [807] = 807, - [808] = 803, - [809] = 803, - [810] = 203, - [811] = 807, - [812] = 807, - [813] = 194, - [814] = 807, - [815] = 213, - [816] = 803, - [817] = 807, - [818] = 803, - [819] = 30, - [820] = 820, - [821] = 820, - [822] = 822, - [823] = 823, - [824] = 824, - [825] = 825, - [826] = 826, - [827] = 29, - [828] = 828, - [829] = 829, - [830] = 830, - [831] = 60, - [832] = 179, - [833] = 833, - [834] = 57, - [835] = 56, - [836] = 836, - [837] = 31, - [838] = 823, - [839] = 75, - [840] = 57, - [841] = 841, - [842] = 842, - [843] = 841, - [844] = 57, - [845] = 56, - [846] = 825, - [847] = 823, - [848] = 56, - [849] = 836, - [850] = 60, - [851] = 828, - [852] = 841, - [853] = 60, - [854] = 32, - [855] = 57, - [856] = 823, - [857] = 823, - [858] = 824, - [859] = 859, - [860] = 841, - [861] = 822, - [862] = 823, - [863] = 56, - [864] = 842, - [865] = 60, - [866] = 829, - [867] = 826, - [868] = 57, - [869] = 823, - [870] = 60, - [871] = 28, - [872] = 841, - [873] = 76, - [874] = 859, - [875] = 841, - [876] = 841, - [877] = 213, - [878] = 57, - [879] = 830, - [880] = 833, - [881] = 57, - [882] = 882, - [883] = 883, - [884] = 884, - [885] = 884, - [886] = 886, - [887] = 887, - [888] = 888, - [889] = 889, - [890] = 889, - [891] = 891, - [892] = 892, - [893] = 891, - [894] = 892, - [895] = 895, - [896] = 896, - [897] = 57, - [898] = 898, - [899] = 887, - [900] = 896, - [901] = 895, - [902] = 213, - [903] = 56, - [904] = 888, - [905] = 898, - [906] = 906, - [907] = 907, - [908] = 908, - [909] = 909, - [910] = 910, - [911] = 911, - [912] = 912, - [913] = 913, - [914] = 914, - [915] = 915, - [916] = 916, - [917] = 917, - [918] = 918, - [919] = 919, - [920] = 918, - [921] = 921, - [922] = 922, - [923] = 923, - [924] = 924, - [925] = 916, - [926] = 926, - [927] = 908, + [661] = 492, + [662] = 420, + [663] = 493, + [664] = 494, + [665] = 495, + [666] = 496, + [667] = 563, + [668] = 497, + [669] = 498, + [670] = 499, + [671] = 500, + [672] = 501, + [673] = 502, + [674] = 503, + [675] = 504, + [676] = 505, + [677] = 506, + [678] = 507, + [679] = 508, + [680] = 509, + [681] = 510, + [682] = 511, + [683] = 512, + [684] = 513, + [685] = 514, + [686] = 515, + [687] = 516, + [688] = 517, + [689] = 518, + [690] = 565, + [691] = 519, + [692] = 520, + [693] = 521, + [694] = 522, + [695] = 523, + [696] = 524, + [697] = 525, + [698] = 526, + [699] = 527, + [700] = 528, + [701] = 529, + [702] = 530, + [703] = 531, + [704] = 532, + [705] = 533, + [706] = 566, + [707] = 534, + [708] = 535, + [709] = 536, + [710] = 537, + [711] = 538, + [712] = 539, + [713] = 540, + [714] = 541, + [715] = 542, + [716] = 543, + [717] = 544, + [718] = 545, + [719] = 567, + [720] = 568, + [721] = 569, + [722] = 552, + [723] = 418, + [724] = 467, + [725] = 451, + [726] = 402, + [727] = 468, + [728] = 469, + [729] = 572, + [730] = 573, + [731] = 574, + [732] = 553, + [733] = 575, + [734] = 576, + [735] = 577, + [736] = 578, + [737] = 579, + [738] = 580, + [739] = 464, + [740] = 421, + [741] = 422, + [742] = 554, + [743] = 423, + [744] = 581, + [745] = 555, + [746] = 582, + [747] = 583, + [748] = 424, + [749] = 584, + [750] = 585, + [751] = 419, + [752] = 413, + [753] = 470, + [754] = 556, + [755] = 425, + [756] = 426, + [757] = 471, + [758] = 587, + [759] = 407, + [760] = 588, + [761] = 551, + [762] = 589, + [763] = 427, + [764] = 428, + [765] = 590, + [766] = 429, + [767] = 430, + [768] = 431, + [769] = 592, + [770] = 593, + [771] = 605, + [772] = 606, + [773] = 607, + [774] = 432, + [775] = 472, + [776] = 433, + [777] = 473, + [778] = 465, + [779] = 402, + [780] = 550, + [781] = 434, + [782] = 608, + [783] = 611, + [784] = 435, + [785] = 436, + [786] = 437, + [787] = 438, + [788] = 439, + [789] = 440, + [790] = 474, + [791] = 612, + [792] = 613, + [793] = 441, + [794] = 475, + [795] = 558, + [796] = 442, + [797] = 443, + [798] = 614, + [799] = 476, + [800] = 407, + [801] = 444, + [802] = 615, + [803] = 445, + [804] = 446, + [805] = 616, + [806] = 466, + [807] = 447, + [808] = 617, + [809] = 477, + [810] = 478, + [811] = 479, + [812] = 480, + [813] = 448, + [814] = 449, + [815] = 450, + [816] = 481, + [817] = 619, + [818] = 452, + [819] = 482, + [820] = 453, + [821] = 454, + [822] = 413, + [823] = 455, + [824] = 456, + [825] = 483, + [826] = 457, + [827] = 458, + [828] = 459, + [829] = 460, + [830] = 461, + [831] = 618, + [832] = 559, + [833] = 462, + [834] = 463, + [835] = 560, + [836] = 586, + [837] = 837, + [838] = 837, + [839] = 839, + [840] = 840, + [841] = 840, + [842] = 839, + [843] = 109, + [844] = 113, + [845] = 114, + [846] = 108, + [847] = 117, + [848] = 112, + [849] = 110, + [850] = 113, + [851] = 109, + [852] = 117, + [853] = 114, + [854] = 108, + [855] = 121, + [856] = 122, + [857] = 120, + [858] = 110, + [859] = 113, + [860] = 108, + [861] = 131, + [862] = 114, + [863] = 117, + [864] = 109, + [865] = 865, + [866] = 122, + [867] = 117, + [868] = 110, + [869] = 110, + [870] = 147, + [871] = 141, + [872] = 112, + [873] = 109, + [874] = 113, + [875] = 114, + [876] = 112, + [877] = 108, + [878] = 878, + [879] = 879, + [880] = 112, + [881] = 110, + [882] = 340, + [883] = 112, + [884] = 110, + [885] = 112, + [886] = 112, + [887] = 110, + [888] = 112, + [889] = 110, + [890] = 110, + [891] = 117, + [892] = 113, + [893] = 114, + [894] = 109, + [895] = 108, + [896] = 175, + [897] = 114, + [898] = 109, + [899] = 114, + [900] = 108, + [901] = 113, + [902] = 109, + [903] = 108, + [904] = 113, + [905] = 114, + [906] = 109, + [907] = 113, + [908] = 108, + [909] = 117, + [910] = 108, + [911] = 114, + [912] = 113, + [913] = 117, + [914] = 109, + [915] = 117, + [916] = 117, + [917] = 117, + [918] = 108, + [919] = 109, + [920] = 109, + [921] = 113, + [922] = 114, + [923] = 108, + [924] = 117, + [925] = 113, + [926] = 114, + [927] = 117, [928] = 928, - [929] = 929, - [930] = 923, - [931] = 931, - [932] = 60, - [933] = 924, - [934] = 934, - [935] = 926, - [936] = 936, - [937] = 937, - [938] = 922, - [939] = 917, - [940] = 940, - [941] = 941, - [942] = 915, - [943] = 943, - [944] = 907, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 907, - [951] = 951, - [952] = 952, + [929] = 114, + [930] = 108, + [931] = 109, + [932] = 109, + [933] = 400, + [934] = 396, + [935] = 398, + [936] = 396, + [937] = 398, + [938] = 113, + [939] = 108, + [940] = 175, + [941] = 114, + [942] = 396, + [943] = 175, + [944] = 113, + [945] = 117, + [946] = 547, + [947] = 547, + [948] = 205, + [949] = 340, + [950] = 184, + [951] = 597, + [952] = 597, [953] = 953, - [954] = 954, - [955] = 947, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 953, - [960] = 960, - [961] = 907, - [962] = 962, - [963] = 909, - [964] = 946, - [965] = 909, - [966] = 966, - [967] = 967, - [968] = 968, - [969] = 969, - [970] = 970, - [971] = 971, - [972] = 972, - [973] = 921, - [974] = 974, + [954] = 392, + [955] = 417, + [956] = 595, + [957] = 596, + [958] = 417, + [959] = 595, + [960] = 413, + [961] = 597, + [962] = 402, + [963] = 547, + [964] = 547, + [965] = 417, + [966] = 596, + [967] = 392, + [968] = 407, + [969] = 595, + [970] = 417, + [971] = 595, + [972] = 597, + [973] = 413, + [974] = 407, [975] = 975, - [976] = 907, + [976] = 402, [977] = 977, - [978] = 909, - [979] = 979, - [980] = 980, - [981] = 912, - [982] = 982, - [983] = 983, - [984] = 977, - [985] = 931, - [986] = 983, - [987] = 980, - [988] = 982, - [989] = 972, - [990] = 974, - [991] = 991, - [992] = 970, - [993] = 928, - [994] = 994, - [995] = 968, - [996] = 996, - [997] = 997, - [998] = 958, - [999] = 941, - [1000] = 1000, - [1001] = 60, - [1002] = 954, - [1003] = 945, - [1004] = 940, - [1005] = 1005, - [1006] = 948, - [1007] = 951, - [1008] = 1008, - [1009] = 996, - [1010] = 991, - [1011] = 971, + [978] = 122, + [979] = 121, + [980] = 120, + [981] = 121, + [982] = 121, + [983] = 121, + [984] = 120, + [985] = 122, + [986] = 122, + [987] = 175, + [988] = 122, + [989] = 175, + [990] = 340, + [991] = 175, + [992] = 120, + [993] = 205, + [994] = 192, + [995] = 122, + [996] = 238, + [997] = 121, + [998] = 237, + [999] = 177, + [1000] = 147, + [1001] = 176, + [1002] = 141, + [1003] = 175, + [1004] = 205, + [1005] = 175, + [1006] = 175, + [1007] = 340, + [1008] = 175, + [1009] = 175, + [1010] = 340, + [1011] = 1011, [1012] = 1012, - [1013] = 929, - [1014] = 975, - [1015] = 949, + [1013] = 176, + [1014] = 1014, + [1015] = 1011, [1016] = 1016, - [1017] = 957, - [1018] = 936, - [1019] = 997, - [1020] = 956, - [1021] = 943, - [1022] = 1022, - [1023] = 967, - [1024] = 1008, - [1025] = 910, - [1026] = 994, - [1027] = 937, - [1028] = 960, - [1029] = 913, - [1030] = 919, - [1031] = 962, - [1032] = 934, - [1033] = 1005, - [1034] = 1000, - [1035] = 909, - [1036] = 1022, - [1037] = 1037, - [1038] = 1037, - [1039] = 1037, + [1017] = 1017, + [1018] = 237, + [1019] = 1019, + [1020] = 1020, + [1021] = 1011, + [1022] = 122, + [1023] = 1023, + [1024] = 1011, + [1025] = 1016, + [1026] = 1017, + [1027] = 1019, + [1028] = 1028, + [1029] = 121, + [1030] = 122, + [1031] = 1016, + [1032] = 1011, + [1033] = 1016, + [1034] = 1017, + [1035] = 1019, + [1036] = 177, + [1037] = 121, + [1038] = 238, + [1039] = 121, [1040] = 1040, - [1041] = 1040, - [1042] = 1040, - [1043] = 284, - [1044] = 1044, - [1045] = 29, - [1046] = 30, - [1047] = 1047, - [1048] = 31, - [1049] = 39, - [1050] = 1044, - [1051] = 1047, - [1052] = 28, - [1053] = 284, - [1054] = 32, - [1055] = 1055, - [1056] = 1056, - [1057] = 284, - [1058] = 284, - [1059] = 284, - [1060] = 284, - [1061] = 1055, - [1062] = 284, - [1063] = 284, - [1064] = 1055, - [1065] = 1055, - [1066] = 39, - [1067] = 284, - [1068] = 32, - [1069] = 28, - [1070] = 297, - [1071] = 297, - [1072] = 1072, - [1073] = 1073, - [1074] = 1074, - [1075] = 1075, - [1076] = 1076, - [1077] = 1077, - [1078] = 1078, - [1079] = 1072, - [1080] = 1080, + [1041] = 121, + [1042] = 176, + [1043] = 192, + [1044] = 122, + [1045] = 1045, + [1046] = 1046, + [1047] = 237, + [1048] = 120, + [1049] = 205, + [1050] = 340, + [1051] = 205, + [1052] = 1052, + [1053] = 121, + [1054] = 120, + [1055] = 121, + [1056] = 175, + [1057] = 1017, + [1058] = 177, + [1059] = 192, + [1060] = 1060, + [1061] = 1052, + [1062] = 1016, + [1063] = 120, + [1064] = 121, + [1065] = 1017, + [1066] = 1066, + [1067] = 238, + [1068] = 1045, + [1069] = 1019, + [1070] = 1019, + [1071] = 1012, + [1072] = 1040, + [1073] = 1046, + [1074] = 121, + [1075] = 122, + [1076] = 120, + [1077] = 1014, + [1078] = 1020, + [1079] = 1028, + [1080] = 1060, [1081] = 1081, - [1082] = 1082, - [1083] = 1083, - [1084] = 1084, - [1085] = 1085, - [1086] = 1086, + [1082] = 1023, + [1083] = 1081, + [1084] = 1066, + [1085] = 120, + [1086] = 121, [1087] = 1087, - [1088] = 1073, - [1089] = 1074, - [1090] = 1087, - [1091] = 33, - [1092] = 1086, - [1093] = 1075, - [1094] = 1094, - [1095] = 31, - [1096] = 39, + [1088] = 1088, + [1089] = 1089, + [1090] = 141, + [1091] = 1091, + [1092] = 1092, + [1093] = 147, + [1094] = 113, + [1095] = 1095, + [1096] = 1088, [1097] = 1097, - [1098] = 30, - [1099] = 1080, - [1100] = 29, - [1101] = 1076, - [1102] = 28, - [1103] = 32, - [1104] = 1077, - [1105] = 1094, - [1106] = 1078, - [1107] = 31, - [1108] = 30, - [1109] = 29, - [1110] = 1085, - [1111] = 1111, - [1112] = 1084, - [1113] = 1081, - [1114] = 1082, - [1115] = 1083, - [1116] = 1116, - [1117] = 1117, - [1118] = 297, - [1119] = 1119, + [1098] = 1098, + [1099] = 1089, + [1100] = 340, + [1101] = 114, + [1102] = 108, + [1103] = 121, + [1104] = 1091, + [1105] = 1105, + [1106] = 109, + [1107] = 1095, + [1108] = 1105, + [1109] = 1109, + [1110] = 1110, + [1111] = 120, + [1112] = 1092, + [1113] = 1087, + [1114] = 1114, + [1115] = 1114, + [1116] = 1110, + [1117] = 117, + [1118] = 1118, + [1119] = 205, [1120] = 1120, [1121] = 1121, - [1122] = 284, + [1122] = 1122, [1123] = 1123, [1124] = 1124, - [1125] = 39, - [1126] = 33, + [1125] = 1125, + [1126] = 1126, [1127] = 1127, - [1128] = 1116, + [1128] = 1124, [1129] = 1129, - [1130] = 1130, - [1131] = 1131, - [1132] = 1132, - [1133] = 39, - [1134] = 1134, - [1135] = 297, - [1136] = 284, - [1137] = 297, - [1138] = 1134, + [1130] = 121, + [1131] = 122, + [1132] = 120, + [1133] = 1133, + [1134] = 1121, + [1135] = 1135, + [1136] = 1136, + [1137] = 1137, + [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 284, + [1141] = 1124, [1142] = 1142, - [1143] = 1121, + [1143] = 1143, [1144] = 1144, - [1145] = 1123, + [1145] = 1145, [1146] = 1146, - [1147] = 284, - [1148] = 297, - [1149] = 1120, - [1150] = 1119, - [1151] = 1134, - [1152] = 1116, - [1153] = 1121, - [1154] = 1124, - [1155] = 1127, + [1147] = 1147, + [1148] = 1148, + [1149] = 1149, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1155, [1156] = 1156, - [1157] = 39, + [1157] = 1157, [1158] = 1158, - [1159] = 1130, - [1160] = 1131, - [1161] = 39, - [1162] = 217, - [1163] = 1139, - [1164] = 1142, - [1165] = 1140, - [1166] = 1134, - [1167] = 1116, - [1168] = 1144, - [1169] = 1146, - [1170] = 1121, - [1171] = 1156, - [1172] = 1158, - [1173] = 205, - [1174] = 1132, - [1175] = 296, - [1176] = 297, - [1177] = 217, - [1178] = 1142, - [1179] = 1123, - [1180] = 1123, - [1181] = 284, + [1159] = 1159, + [1160] = 1160, + [1161] = 1161, + [1162] = 1162, + [1163] = 1163, + [1164] = 1164, + [1165] = 1165, + [1166] = 1166, + [1167] = 1121, + [1168] = 1168, + [1169] = 1169, + [1170] = 1170, + [1171] = 1171, + [1172] = 1124, + [1173] = 1173, + [1174] = 1174, + [1175] = 1175, + [1176] = 1176, + [1177] = 122, + [1178] = 1178, + [1179] = 1179, + [1180] = 1180, + [1181] = 1121, [1182] = 1182, - [1183] = 1123, - [1184] = 197, - [1185] = 176, + [1183] = 1183, + [1184] = 1138, + [1185] = 1185, [1186] = 1186, [1187] = 1187, - [1188] = 1188, - [1189] = 1186, - [1190] = 1186, - [1191] = 284, - [1192] = 1186, - [1193] = 1187, - [1194] = 1188, - [1195] = 1186, - [1196] = 1187, - [1197] = 48, - [1198] = 416, - [1199] = 1186, - [1200] = 192, - [1201] = 192, - [1202] = 189, - [1203] = 1188, - [1204] = 296, - [1205] = 176, - [1206] = 197, - [1207] = 296, - [1208] = 296, - [1209] = 39, - [1210] = 201, - [1211] = 28, - [1212] = 201, - [1213] = 32, - [1214] = 416, - [1215] = 1186, - [1216] = 1187, - [1217] = 1187, - [1218] = 31, - [1219] = 1188, - [1220] = 189, - [1221] = 1188, - [1222] = 29, - [1223] = 30, - [1224] = 193, - [1225] = 200, - [1226] = 217, - [1227] = 416, - [1228] = 173, - [1229] = 180, - [1230] = 188, - [1231] = 187, - [1232] = 174, - [1233] = 227, - [1234] = 215, - [1235] = 175, - [1236] = 297, - [1237] = 178, - [1238] = 181, - [1239] = 182, - [1240] = 185, - [1241] = 217, - [1242] = 186, - [1243] = 228, - [1244] = 214, - [1245] = 32, - [1246] = 208, - [1247] = 172, - [1248] = 31, - [1249] = 183, - [1250] = 184, - [1251] = 199, - [1252] = 30, - [1253] = 29, - [1254] = 211, - [1255] = 216, - [1256] = 28, - [1257] = 188, - [1258] = 195, - [1259] = 225, - [1260] = 222, - [1261] = 221, - [1262] = 219, - [1263] = 198, - [1264] = 32, - [1265] = 226, - [1266] = 224, - [1267] = 200, - [1268] = 32, - [1269] = 416, - [1270] = 172, - [1271] = 202, - [1272] = 175, - [1273] = 202, - [1274] = 31, - [1275] = 416, - [1276] = 224, - [1277] = 226, - [1278] = 198, - [1279] = 174, - [1280] = 30, - [1281] = 33, - [1282] = 195, - [1283] = 193, - [1284] = 219, - [1285] = 216, - [1286] = 211, - [1287] = 173, - [1288] = 221, - [1289] = 222, - [1290] = 199, - [1291] = 225, - [1292] = 184, - [1293] = 183, - [1294] = 29, - [1295] = 28, - [1296] = 177, - [1297] = 1297, - [1298] = 207, - [1299] = 190, - [1300] = 191, - [1301] = 297, - [1302] = 28, - [1303] = 208, - [1304] = 214, - [1305] = 29, - [1306] = 191, - [1307] = 416, - [1308] = 204, - [1309] = 206, - [1310] = 30, - [1311] = 228, - [1312] = 297, - [1313] = 1313, - [1314] = 186, - [1315] = 185, - [1316] = 182, - [1317] = 181, - [1318] = 178, - [1319] = 217, - [1320] = 297, - [1321] = 31, - [1322] = 180, - [1323] = 207, - [1324] = 215, - [1325] = 416, - [1326] = 227, - [1327] = 187, - [1328] = 1328, - [1329] = 1329, - [1330] = 1330, - [1331] = 1330, - [1332] = 1330, - [1333] = 1333, - [1334] = 1330, - [1335] = 1335, - [1336] = 1336, - [1337] = 1337, - [1338] = 1330, - [1339] = 1336, - [1340] = 1340, - [1341] = 1330, - [1342] = 1330, - [1343] = 1330, - [1344] = 1344, - [1345] = 176, - [1346] = 1330, - [1347] = 1347, - [1348] = 1330, - [1349] = 1330, - [1350] = 1350, - [1351] = 33, - [1352] = 1352, - [1353] = 1330, - [1354] = 1354, - [1355] = 1355, - [1356] = 296, - [1357] = 197, - [1358] = 1358, - [1359] = 1359, - [1360] = 1330, - [1361] = 1330, - [1362] = 201, - [1363] = 1363, - [1364] = 1330, - [1365] = 1365, - [1366] = 1366, - [1367] = 1367, - [1368] = 1330, - [1369] = 1369, - [1370] = 1370, - [1371] = 1335, - [1372] = 1359, - [1373] = 1335, - [1374] = 1344, - [1375] = 1375, - [1376] = 1330, - [1377] = 32, - [1378] = 31, - [1379] = 30, - [1380] = 29, - [1381] = 28, - [1382] = 32, - [1383] = 31, - [1384] = 296, - [1385] = 1369, - [1386] = 30, - [1387] = 29, - [1388] = 28, + [1188] = 1171, + [1189] = 1124, + [1190] = 1190, + [1191] = 1191, + [1192] = 1136, + [1193] = 1193, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1121, + [1199] = 1195, + [1200] = 1200, + [1201] = 1138, + [1202] = 1171, + [1203] = 1124, + [1204] = 1194, + [1205] = 1200, + [1206] = 1171, + [1207] = 1174, + [1208] = 1174, + [1209] = 1125, + [1210] = 1120, + [1211] = 1129, + [1212] = 1129, + [1213] = 1213, + [1214] = 1187, + [1215] = 1124, + [1216] = 1148, + [1217] = 1124, + [1218] = 1152, + [1219] = 1125, + [1220] = 1171, + [1221] = 1125, + [1222] = 1222, + [1223] = 1223, + [1224] = 1124, + [1225] = 1225, + [1226] = 1226, + [1227] = 1186, + [1228] = 1190, + [1229] = 1139, + [1230] = 1140, + [1231] = 1142, + [1232] = 1232, + [1233] = 1163, + [1234] = 1183, + [1235] = 1235, + [1236] = 1236, + [1237] = 1237, + [1238] = 1238, + [1239] = 1200, + [1240] = 1171, + [1241] = 1191, + [1242] = 1200, + [1243] = 1157, + [1244] = 1162, + [1245] = 1245, + [1246] = 1238, + [1247] = 1149, + [1248] = 1151, + [1249] = 1153, + [1250] = 1154, + [1251] = 1156, + [1252] = 1171, + [1253] = 1124, + [1254] = 1196, + [1255] = 1171, + [1256] = 1175, + [1257] = 1174, + [1258] = 1193, + [1259] = 1200, + [1260] = 1174, + [1261] = 1261, + [1262] = 1262, + [1263] = 1225, + [1264] = 1232, + [1265] = 1171, + [1266] = 1226, + [1267] = 1245, + [1268] = 1164, + [1269] = 1166, + [1270] = 1213, + [1271] = 1222, + [1272] = 1171, + [1273] = 1223, + [1274] = 1150, + [1275] = 1129, + [1276] = 1276, + [1277] = 1180, + [1278] = 1276, + [1279] = 1122, + [1280] = 1123, + [1281] = 1127, + [1282] = 1133, + [1283] = 1135, + [1284] = 1137, + [1285] = 1171, + [1286] = 1124, + [1287] = 1144, + [1288] = 1121, + [1289] = 1138, + [1290] = 1145, + [1291] = 1146, + [1292] = 1138, + [1293] = 1125, + [1294] = 1155, + [1295] = 1158, + [1296] = 1159, + [1297] = 1160, + [1298] = 1161, + [1299] = 1165, + [1300] = 1168, + [1301] = 1169, + [1302] = 1173, + [1303] = 1176, + [1304] = 1121, + [1305] = 1138, + [1306] = 1178, + [1307] = 1121, + [1308] = 1138, + [1309] = 1179, + [1310] = 1121, + [1311] = 1138, + [1312] = 1185, + [1313] = 1129, + [1314] = 1261, + [1315] = 122, + [1316] = 1121, + [1317] = 1138, + [1318] = 1138, + [1319] = 1262, + [1320] = 1121, + [1321] = 1138, + [1322] = 1121, + [1323] = 1138, + [1324] = 1121, + [1325] = 1138, + [1326] = 1121, + [1327] = 1138, + [1328] = 1138, + [1329] = 1121, + [1330] = 1138, + [1331] = 1236, + [1332] = 1121, + [1333] = 1138, + [1334] = 1334, + [1335] = 1121, + [1336] = 1138, + [1337] = 1237, + [1338] = 1121, + [1339] = 1339, + [1340] = 1334, + [1341] = 1341, + [1342] = 1341, + [1343] = 1343, + [1344] = 1343, + [1345] = 113, + [1346] = 109, + [1347] = 117, + [1348] = 114, + [1349] = 108, + [1350] = 113, + [1351] = 1351, + [1352] = 112, + [1353] = 114, + [1354] = 1351, + [1355] = 108, + [1356] = 112, + [1357] = 109, + [1358] = 117, + [1359] = 396, + [1360] = 396, + [1361] = 396, + [1362] = 396, + [1363] = 398, + [1364] = 109, + [1365] = 398, + [1366] = 398, + [1367] = 108, + [1368] = 113, + [1369] = 110, + [1370] = 398, + [1371] = 114, + [1372] = 110, + [1373] = 117, + [1374] = 1374, + [1375] = 400, + [1376] = 1374, + [1377] = 1374, + [1378] = 400, + [1379] = 1374, + [1380] = 1380, + [1381] = 396, + [1382] = 108, + [1383] = 1383, + [1384] = 396, + [1385] = 1385, + [1386] = 1386, + [1387] = 1387, + [1388] = 1388, [1389] = 1389, - [1390] = 1330, - [1391] = 1391, + [1390] = 131, + [1391] = 117, [1392] = 1392, [1393] = 1393, [1394] = 1394, - [1395] = 296, + [1395] = 1395, [1396] = 1396, - [1397] = 1397, - [1398] = 1330, + [1397] = 1389, + [1398] = 1396, [1399] = 1399, - [1400] = 1394, - [1401] = 1389, - [1402] = 297, - [1403] = 1333, - [1404] = 1404, - [1405] = 1405, - [1406] = 1350, - [1407] = 1407, - [1408] = 1408, - [1409] = 1370, - [1410] = 189, - [1411] = 1392, - [1412] = 1358, - [1413] = 1367, - [1414] = 1352, - [1415] = 1335, + [1400] = 547, + [1401] = 1401, + [1402] = 109, + [1403] = 1403, + [1404] = 1383, + [1405] = 114, + [1406] = 1403, + [1407] = 547, + [1408] = 547, + [1409] = 1388, + [1410] = 1410, + [1411] = 1411, + [1412] = 1395, + [1413] = 1387, + [1414] = 1393, + [1415] = 1392, [1416] = 1416, - [1417] = 1330, - [1418] = 1355, - [1419] = 192, - [1420] = 1366, + [1417] = 1411, + [1418] = 1418, + [1419] = 1399, + [1420] = 1410, [1421] = 1421, - [1422] = 1422, - [1423] = 1330, - [1424] = 1375, - [1425] = 1330, - [1426] = 1328, - [1427] = 1330, - [1428] = 1330, - [1429] = 33, - [1430] = 1337, - [1431] = 1335, - [1432] = 1432, - [1433] = 1329, - [1434] = 1365, - [1435] = 1330, - [1436] = 1391, - [1437] = 1422, - [1438] = 1396, - [1439] = 1405, - [1440] = 1330, - [1441] = 1432, - [1442] = 1442, - [1443] = 416, - [1444] = 1421, + [1422] = 1421, + [1423] = 1423, + [1424] = 1385, + [1425] = 1416, + [1426] = 113, + [1427] = 396, + [1428] = 547, + [1429] = 1394, + [1430] = 1418, + [1431] = 1401, + [1432] = 112, + [1433] = 166, + [1434] = 1434, + [1435] = 1435, + [1436] = 1436, + [1437] = 112, + [1438] = 1434, + [1439] = 1435, + [1440] = 1436, + [1441] = 184, + [1442] = 398, + [1443] = 1443, + [1444] = 112, [1445] = 1445, - [1446] = 1446, - [1447] = 215, - [1448] = 1448, - [1449] = 416, + [1446] = 1443, + [1447] = 1447, + [1448] = 175, + [1449] = 112, [1450] = 1450, - [1451] = 1448, - [1452] = 32, - [1453] = 1453, + [1451] = 1451, + [1452] = 1452, + [1453] = 1434, [1454] = 1454, - [1455] = 1448, - [1456] = 1448, - [1457] = 1450, - [1458] = 1450, - [1459] = 214, + [1455] = 1454, + [1456] = 1447, + [1457] = 1451, + [1458] = 1458, + [1459] = 1459, [1460] = 1460, - [1461] = 187, - [1462] = 28, - [1463] = 188, - [1464] = 1464, - [1465] = 1465, - [1466] = 1450, - [1467] = 225, - [1468] = 1468, - [1469] = 1448, - [1470] = 1448, - [1471] = 1471, - [1472] = 1446, - [1473] = 186, - [1474] = 178, - [1475] = 29, - [1476] = 1476, - [1477] = 1448, - [1478] = 1478, + [1461] = 1461, + [1462] = 1445, + [1463] = 1434, + [1464] = 1454, + [1465] = 1458, + [1466] = 1447, + [1467] = 1435, + [1468] = 1435, + [1469] = 1447, + [1470] = 1470, + [1471] = 1447, + [1472] = 1461, + [1473] = 1436, + [1474] = 1459, + [1475] = 112, + [1476] = 1436, + [1477] = 1460, + [1478] = 400, [1479] = 1479, [1480] = 1480, - [1481] = 1448, - [1482] = 30, - [1483] = 31, - [1484] = 1446, - [1485] = 1485, - [1486] = 1486, - [1487] = 1487, - [1488] = 1446, - [1489] = 185, - [1490] = 32, - [1491] = 1491, - [1492] = 1492, - [1493] = 1450, - [1494] = 1485, - [1495] = 1450, - [1496] = 1448, - [1497] = 28, - [1498] = 1498, - [1499] = 1486, - [1500] = 1500, - [1501] = 1446, - [1502] = 181, - [1503] = 183, - [1504] = 208, - [1505] = 1505, - [1506] = 416, - [1507] = 1507, - [1508] = 1507, - [1509] = 191, - [1510] = 1507, - [1511] = 221, - [1512] = 1500, + [1481] = 396, + [1482] = 396, + [1483] = 193, + [1484] = 199, + [1485] = 396, + [1486] = 208, + [1487] = 1479, + [1488] = 1480, + [1489] = 1479, + [1490] = 189, + [1491] = 112, + [1492] = 396, + [1493] = 396, + [1494] = 396, + [1495] = 163, + [1496] = 1479, + [1497] = 1480, + [1498] = 396, + [1499] = 109, + [1500] = 113, + [1501] = 114, + [1502] = 108, + [1503] = 117, + [1504] = 1479, + [1505] = 1480, + [1506] = 1480, + [1507] = 396, + [1508] = 131, + [1509] = 183, + [1510] = 186, + [1511] = 210, + [1512] = 1512, [1513] = 1513, - [1514] = 1450, - [1515] = 1454, - [1516] = 1450, - [1517] = 1446, - [1518] = 227, - [1519] = 1450, - [1520] = 1505, - [1521] = 1448, - [1522] = 1446, - [1523] = 1500, - [1524] = 1524, - [1525] = 1450, - [1526] = 1500, - [1527] = 1527, - [1528] = 296, - [1529] = 1468, - [1530] = 1446, - [1531] = 1448, - [1532] = 1446, - [1533] = 1507, - [1534] = 1448, - [1535] = 1535, - [1536] = 1450, - [1537] = 1537, - [1538] = 1486, - [1539] = 1450, - [1540] = 202, - [1541] = 1446, - [1542] = 1542, - [1543] = 1446, - [1544] = 207, - [1545] = 1450, - [1546] = 1546, - [1547] = 1547, - [1548] = 1448, - [1549] = 1448, - [1550] = 1446, - [1551] = 228, - [1552] = 1552, - [1553] = 1454, - [1554] = 1468, - [1555] = 1450, - [1556] = 1500, - [1557] = 30, - [1558] = 1558, - [1559] = 1450, - [1560] = 1454, - [1561] = 1448, - [1562] = 1448, - [1563] = 1480, - [1564] = 1450, - [1565] = 200, + [1514] = 211, + [1515] = 212, + [1516] = 398, + [1517] = 109, + [1518] = 113, + [1519] = 114, + [1520] = 108, + [1521] = 117, + [1522] = 398, + [1523] = 213, + [1524] = 215, + [1525] = 216, + [1526] = 1513, + [1527] = 217, + [1528] = 398, + [1529] = 218, + [1530] = 219, + [1531] = 220, + [1532] = 222, + [1533] = 224, + [1534] = 225, + [1535] = 187, + [1536] = 1513, + [1537] = 228, + [1538] = 229, + [1539] = 230, + [1540] = 109, + [1541] = 113, + [1542] = 114, + [1543] = 108, + [1544] = 117, + [1545] = 232, + [1546] = 1513, + [1547] = 239, + [1548] = 223, + [1549] = 234, + [1550] = 235, + [1551] = 236, + [1552] = 180, + [1553] = 398, + [1554] = 547, + [1555] = 166, + [1556] = 184, + [1557] = 188, + [1558] = 166, + [1559] = 184, + [1560] = 190, + [1561] = 181, + [1562] = 398, + [1563] = 184, + [1564] = 194, + [1565] = 110, [1566] = 1566, - [1567] = 175, - [1568] = 1446, - [1569] = 1448, - [1570] = 1471, - [1571] = 1465, - [1572] = 1460, - [1573] = 416, - [1574] = 219, - [1575] = 1575, + [1567] = 112, + [1568] = 195, + [1569] = 196, + [1570] = 198, + [1571] = 182, + [1572] = 398, + [1573] = 202, + [1574] = 203, + [1575] = 204, [1576] = 184, - [1577] = 1453, - [1578] = 1446, - [1579] = 1579, + [1577] = 207, + [1578] = 1513, + [1579] = 233, [1580] = 1580, - [1581] = 182, - [1582] = 1468, - [1583] = 1486, - [1584] = 1446, - [1585] = 199, - [1586] = 1468, - [1587] = 1450, + [1581] = 1581, + [1582] = 1582, + [1583] = 199, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 189, [1588] = 1588, - [1589] = 416, - [1590] = 1487, - [1591] = 1492, - [1592] = 1478, - [1593] = 1448, - [1594] = 1446, - [1595] = 1446, - [1596] = 211, - [1597] = 1547, - [1598] = 1598, - [1599] = 1479, - [1600] = 216, - [1601] = 31, - [1602] = 1450, - [1603] = 1446, - [1604] = 1604, - [1605] = 1448, - [1606] = 1606, - [1607] = 1479, + [1589] = 1589, + [1590] = 208, + [1591] = 1591, + [1592] = 1582, + [1593] = 1593, + [1594] = 110, + [1595] = 208, + [1596] = 1596, + [1597] = 189, + [1598] = 109, + [1599] = 113, + [1600] = 114, + [1601] = 108, + [1602] = 117, + [1603] = 1603, + [1604] = 1584, + [1605] = 1605, + [1606] = 1585, + [1607] = 1586, [1608] = 1608, - [1609] = 1546, - [1610] = 198, - [1611] = 1486, - [1612] = 1612, + [1609] = 400, + [1610] = 109, + [1611] = 1611, + [1612] = 1580, [1613] = 1613, - [1614] = 174, - [1615] = 1615, - [1616] = 1468, - [1617] = 172, - [1618] = 1468, - [1619] = 1448, - [1620] = 180, - [1621] = 1448, - [1622] = 1604, - [1623] = 1613, - [1624] = 1612, - [1625] = 1588, - [1626] = 1580, - [1627] = 173, - [1628] = 1608, - [1629] = 1448, - [1630] = 29, - [1631] = 1448, - [1632] = 1575, - [1633] = 226, - [1634] = 1537, - [1635] = 224, - [1636] = 193, - [1637] = 1448, - [1638] = 1498, - [1639] = 1542, + [1614] = 113, + [1615] = 1589, + [1616] = 114, + [1617] = 108, + [1618] = 117, + [1619] = 1619, + [1620] = 1608, + [1621] = 1621, + [1622] = 1622, + [1623] = 1608, + [1624] = 1624, + [1625] = 400, + [1626] = 1611, + [1627] = 1580, + [1628] = 1613, + [1629] = 1629, + [1630] = 400, + [1631] = 1631, + [1632] = 1613, + [1633] = 1633, + [1634] = 1634, + [1635] = 1611, + [1636] = 1580, + [1637] = 1637, + [1638] = 1608, + [1639] = 193, [1640] = 1640, - [1641] = 416, - [1642] = 1476, - [1643] = 1448, - [1644] = 416, - [1645] = 1507, - [1646] = 1448, - [1647] = 1491, - [1648] = 1606, - [1649] = 195, - [1650] = 1454, - [1651] = 1524, - [1652] = 1652, - [1653] = 222, - [1654] = 30, - [1655] = 416, + [1641] = 1641, + [1642] = 1611, + [1643] = 1613, + [1644] = 1613, + [1645] = 1608, + [1646] = 1608, + [1647] = 1608, + [1648] = 1608, + [1649] = 110, + [1650] = 1608, + [1651] = 1608, + [1652] = 1608, + [1653] = 1608, + [1654] = 1608, + [1655] = 1608, [1656] = 1656, - [1657] = 28, - [1658] = 1658, - [1659] = 32, - [1660] = 29, - [1661] = 31, - [1662] = 205, + [1657] = 175, + [1658] = 1593, + [1659] = 1608, + [1660] = 1605, + [1661] = 1603, + [1662] = 163, [1663] = 1663, [1664] = 1664, [1665] = 1665, [1666] = 1666, [1667] = 1667, - [1668] = 1664, + [1668] = 1668, [1669] = 1669, - [1670] = 1666, - [1671] = 1664, - [1672] = 1665, - [1673] = 1669, + [1670] = 1663, + [1671] = 1671, + [1672] = 1588, + [1673] = 1673, [1674] = 1674, - [1675] = 1669, - [1676] = 1667, - [1677] = 1665, - [1678] = 1665, - [1679] = 1664, - [1680] = 1666, - [1681] = 1669, - [1682] = 1666, - [1683] = 1665, - [1684] = 1664, - [1685] = 1685, - [1686] = 1666, - [1687] = 1666, - [1688] = 1669, - [1689] = 179, - [1690] = 1664, - [1691] = 1665, - [1692] = 1664, - [1693] = 1666, - [1694] = 1669, - [1695] = 1665, - [1696] = 1665, - [1697] = 1664, - [1698] = 1664, - [1699] = 1664, - [1700] = 1666, - [1701] = 1665, - [1702] = 1667, - [1703] = 1669, - [1704] = 1669, - [1705] = 1665, - [1706] = 1666, - [1707] = 1665, - [1708] = 1664, - [1709] = 1667, - [1710] = 1669, - [1711] = 1669, + [1675] = 1668, + [1676] = 1676, + [1677] = 1677, + [1678] = 1678, + [1679] = 1679, + [1680] = 1624, + [1681] = 1596, + [1682] = 1608, + [1683] = 1580, + [1684] = 1608, + [1685] = 1608, + [1686] = 1608, + [1687] = 1608, + [1688] = 1593, + [1689] = 1633, + [1690] = 193, + [1691] = 1656, + [1692] = 1674, + [1693] = 1591, + [1694] = 1694, + [1695] = 1695, + [1696] = 1608, + [1697] = 1608, + [1698] = 1608, + [1699] = 1699, + [1700] = 1621, + [1701] = 1593, + [1702] = 1619, + [1703] = 1622, + [1704] = 1608, + [1705] = 1669, + [1706] = 1637, + [1707] = 1608, + [1708] = 1641, + [1709] = 398, + [1710] = 547, + [1711] = 1608, [1712] = 1666, - [1713] = 1669, - [1714] = 1667, - [1715] = 1666, - [1716] = 1665, - [1717] = 1666, - [1718] = 1666, + [1713] = 1580, + [1714] = 1714, + [1715] = 163, + [1716] = 400, + [1717] = 1699, + [1718] = 199, [1719] = 1719, - [1720] = 1665, - [1721] = 1664, - [1722] = 1669, - [1723] = 1664, - [1724] = 1669, - [1725] = 1665, - [1726] = 1667, - [1727] = 1666, - [1728] = 1728, - [1729] = 1669, - [1730] = 1669, - [1731] = 1665, - [1732] = 1669, - [1733] = 1666, - [1734] = 1665, - [1735] = 1666, - [1736] = 1669, - [1737] = 1664, - [1738] = 1666, - [1739] = 1664, - [1740] = 1665, - [1741] = 1669, - [1742] = 1664, - [1743] = 1666, - [1744] = 1664, - [1745] = 1665, - [1746] = 1669, - [1747] = 1667, - [1748] = 1666, - [1749] = 1664, - [1750] = 1664, - [1751] = 1669, - [1752] = 1665, - [1753] = 1669, - [1754] = 1666, - [1755] = 1664, - [1756] = 1665, - [1757] = 1669, - [1758] = 1666, - [1759] = 1664, - [1760] = 1665, - [1761] = 1669, - [1762] = 1666, - [1763] = 1664, - [1764] = 1665, - [1765] = 1669, - [1766] = 1685, - [1767] = 1666, - [1768] = 1674, - [1769] = 1666, - [1770] = 1664, - [1771] = 1664, - [1772] = 1665, - [1773] = 1665, - [1774] = 1669, - [1775] = 1666, - [1776] = 1728, - [1777] = 1664, - [1778] = 1665, - [1779] = 1665, - [1780] = 1669, - [1781] = 1666, - [1782] = 1664, - [1783] = 1783, - [1784] = 1784, - [1785] = 1783, - [1786] = 1786, - [1787] = 1787, - [1788] = 1788, - [1789] = 1789, - [1790] = 1790, - [1791] = 1791, + [1720] = 1720, + [1721] = 1629, + [1722] = 1580, + [1723] = 1580, + [1724] = 1724, + [1725] = 1580, + [1726] = 1611, + [1727] = 1580, + [1728] = 1593, + [1729] = 1593, + [1730] = 1719, + [1731] = 1593, + [1732] = 1593, + [1733] = 1673, + [1734] = 1593, + [1735] = 1580, + [1736] = 1593, + [1737] = 1593, + [1738] = 1593, + [1739] = 1593, + [1740] = 1581, + [1741] = 1593, + [1742] = 1593, + [1743] = 1593, + [1744] = 1678, + [1745] = 1593, + [1746] = 1640, + [1747] = 1593, + [1748] = 1724, + [1749] = 196, + [1750] = 1750, + [1751] = 190, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 194, + [1757] = 195, + [1758] = 215, + [1759] = 216, + [1760] = 198, + [1761] = 200, + [1762] = 217, + [1763] = 202, + [1764] = 203, + [1765] = 204, + [1766] = 1766, + [1767] = 109, + [1768] = 190, + [1769] = 218, + [1770] = 207, + [1771] = 1752, + [1772] = 1772, + [1773] = 1752, + [1774] = 239, + [1775] = 1775, + [1776] = 210, + [1777] = 1777, + [1778] = 1778, + [1779] = 211, + [1780] = 1780, + [1781] = 212, + [1782] = 213, + [1783] = 113, + [1784] = 214, + [1785] = 1785, + [1786] = 215, + [1787] = 216, + [1788] = 217, + [1789] = 218, + [1790] = 219, + [1791] = 114, [1792] = 1792, - [1793] = 1789, - [1794] = 1794, + [1793] = 108, + [1794] = 220, [1795] = 1795, - [1796] = 1796, - [1797] = 1797, - [1798] = 1791, + [1796] = 547, + [1797] = 222, + [1798] = 223, [1799] = 1799, - [1800] = 1800, - [1801] = 1801, - [1802] = 1797, - [1803] = 1800, - [1804] = 1784, - [1805] = 1801, - [1806] = 1799, - [1807] = 1807, - [1808] = 1792, - [1809] = 1792, - [1810] = 1790, - [1811] = 1811, - [1812] = 1790, - [1813] = 1813, - [1814] = 1801, - [1815] = 1815, - [1816] = 1787, - [1817] = 1800, - [1818] = 1784, - [1819] = 1811, - [1820] = 1786, - [1821] = 1799, - [1822] = 1815, - [1823] = 1786, - [1824] = 1794, - [1825] = 1807, - [1826] = 1783, - [1827] = 1791, - [1828] = 1794, - [1829] = 1829, - [1830] = 1807, - [1831] = 205, - [1832] = 1832, - [1833] = 1832, - [1834] = 1832, - [1835] = 1832, - [1836] = 1832, - [1837] = 1837, - [1838] = 205, - [1839] = 205, - [1840] = 213, - [1841] = 179, - [1842] = 179, - [1843] = 213, - [1844] = 1837, - [1845] = 196, - [1846] = 1846, - [1847] = 1847, - [1848] = 196, - [1849] = 205, - [1850] = 1847, - [1851] = 1851, - [1852] = 1852, - [1853] = 1853, - [1854] = 205, - [1855] = 205, - [1856] = 205, - [1857] = 1837, - [1858] = 1858, - [1859] = 1859, - [1860] = 205, - [1861] = 1859, - [1862] = 205, - [1863] = 1837, - [1864] = 213, - [1865] = 179, - [1866] = 1859, - [1867] = 196, - [1868] = 196, - [1869] = 1837, - [1870] = 205, - [1871] = 205, - [1872] = 1872, - [1873] = 196, + [1800] = 1752, + [1801] = 1777, + [1802] = 224, + [1803] = 1750, + [1804] = 1795, + [1805] = 220, + [1806] = 225, + [1807] = 117, + [1808] = 1752, + [1809] = 226, + [1810] = 228, + [1811] = 229, + [1812] = 230, + [1813] = 232, + [1814] = 222, + [1815] = 1795, + [1816] = 233, + [1817] = 1752, + [1818] = 234, + [1819] = 235, + [1820] = 1820, + [1821] = 236, + [1822] = 1822, + [1823] = 1752, + [1824] = 239, + [1825] = 1825, + [1826] = 1777, + [1827] = 1827, + [1828] = 114, + [1829] = 1795, + [1830] = 1830, + [1831] = 1831, + [1832] = 181, + [1833] = 108, + [1834] = 1752, + [1835] = 1835, + [1836] = 1795, + [1837] = 547, + [1838] = 1838, + [1839] = 1752, + [1840] = 1777, + [1841] = 1752, + [1842] = 109, + [1843] = 547, + [1844] = 1844, + [1845] = 223, + [1846] = 182, + [1847] = 1795, + [1848] = 224, + [1849] = 225, + [1850] = 1850, + [1851] = 201, + [1852] = 1831, + [1853] = 210, + [1854] = 1752, + [1855] = 1777, + [1856] = 1795, + [1857] = 1777, + [1858] = 211, + [1859] = 117, + [1860] = 212, + [1861] = 183, + [1862] = 1862, + [1863] = 1752, + [1864] = 1864, + [1865] = 1795, + [1866] = 1795, + [1867] = 1795, + [1868] = 207, + [1869] = 1869, + [1870] = 180, + [1871] = 1871, + [1872] = 1844, + [1873] = 1873, [1874] = 1874, - [1875] = 1837, - [1876] = 213, - [1877] = 179, - [1878] = 196, - [1879] = 1879, - [1880] = 1880, - [1881] = 1881, - [1882] = 1882, - [1883] = 1883, - [1884] = 1881, - [1885] = 1882, + [1875] = 1755, + [1876] = 1876, + [1877] = 1877, + [1878] = 1878, + [1879] = 1752, + [1880] = 1838, + [1881] = 1777, + [1882] = 1864, + [1883] = 194, + [1884] = 1777, + [1885] = 228, [1886] = 1886, - [1887] = 1887, - [1888] = 1886, - [1889] = 1886, - [1890] = 1887, - [1891] = 1887, - [1892] = 201, - [1893] = 297, + [1887] = 1820, + [1888] = 1888, + [1889] = 195, + [1890] = 1890, + [1891] = 1891, + [1892] = 1892, + [1893] = 1890, [1894] = 1894, [1895] = 1895, [1896] = 1896, - [1897] = 297, - [1898] = 1895, - [1899] = 297, - [1900] = 1895, - [1901] = 297, - [1902] = 205, - [1903] = 297, - [1904] = 1363, - [1905] = 297, - [1906] = 1445, - [1907] = 1895, - [1908] = 1896, - [1909] = 1896, - [1910] = 201, - [1911] = 1894, - [1912] = 1894, - [1913] = 1894, - [1914] = 1894, - [1915] = 297, - [1916] = 1895, - [1917] = 1896, - [1918] = 1918, - [1919] = 1896, - [1920] = 1920, + [1897] = 1850, + [1898] = 1886, + [1899] = 1869, + [1900] = 1900, + [1901] = 1753, + [1902] = 229, + [1903] = 230, + [1904] = 1862, + [1905] = 1905, + [1906] = 1906, + [1907] = 1907, + [1908] = 1908, + [1909] = 1754, + [1910] = 1772, + [1911] = 1780, + [1912] = 1785, + [1913] = 1792, + [1914] = 1799, + [1915] = 1822, + [1916] = 1825, + [1917] = 1827, + [1918] = 1835, + [1919] = 1795, + [1920] = 1777, [1921] = 1921, - [1922] = 296, - [1923] = 297, - [1924] = 297, - [1925] = 297, - [1926] = 296, - [1927] = 1927, - [1928] = 1928, - [1929] = 1927, - [1930] = 1930, - [1931] = 1407, - [1932] = 296, - [1933] = 1933, - [1934] = 1928, - [1935] = 1933, - [1936] = 1928, - [1937] = 416, - [1938] = 297, - [1939] = 1939, - [1940] = 297, - [1941] = 1941, - [1942] = 1408, - [1943] = 1941, - [1944] = 1927, + [1922] = 1777, + [1923] = 1891, + [1924] = 1831, + [1925] = 400, + [1926] = 213, + [1927] = 1873, + [1928] = 186, + [1929] = 1795, + [1930] = 1752, + [1931] = 187, + [1932] = 1795, + [1933] = 1795, + [1934] = 547, + [1935] = 1873, + [1936] = 1874, + [1937] = 1755, + [1938] = 1876, + [1939] = 1877, + [1940] = 1838, + [1941] = 1864, + [1942] = 232, + [1943] = 1943, + [1944] = 1900, [1945] = 1945, - [1946] = 1941, - [1947] = 1933, - [1948] = 290, - [1949] = 1949, - [1950] = 1950, - [1951] = 1951, - [1952] = 1951, - [1953] = 1953, - [1954] = 1954, - [1955] = 1955, - [1956] = 1953, - [1957] = 204, - [1958] = 1958, - [1959] = 297, - [1960] = 416, - [1961] = 416, - [1962] = 1954, - [1963] = 1963, - [1964] = 1953, - [1965] = 297, - [1966] = 1966, - [1967] = 1967, - [1968] = 1967, - [1969] = 1535, - [1970] = 1970, - [1971] = 1967, - [1972] = 1972, - [1973] = 1972, - [1974] = 416, - [1975] = 1970, - [1976] = 1951, - [1977] = 1966, - [1978] = 1954, - [1979] = 1963, - [1980] = 416, - [1981] = 1972, - [1982] = 1970, - [1983] = 1983, - [1984] = 1984, - [1985] = 1963, - [1986] = 1986, - [1987] = 1987, - [1988] = 1984, - [1989] = 201, - [1990] = 1972, - [1991] = 1963, - [1992] = 416, - [1993] = 1987, - [1994] = 1983, - [1995] = 1950, - [1996] = 1950, + [1946] = 1777, + [1947] = 1905, + [1948] = 547, + [1949] = 188, + [1950] = 233, + [1951] = 1795, + [1952] = 1873, + [1953] = 1874, + [1954] = 1755, + [1955] = 1876, + [1956] = 1877, + [1957] = 1838, + [1958] = 1864, + [1959] = 1959, + [1960] = 1777, + [1961] = 180, + [1962] = 1906, + [1963] = 1873, + [1964] = 1874, + [1965] = 1755, + [1966] = 1892, + [1967] = 1876, + [1968] = 1877, + [1969] = 1838, + [1970] = 1864, + [1971] = 1795, + [1972] = 1777, + [1973] = 547, + [1974] = 181, + [1975] = 1975, + [1976] = 547, + [1977] = 182, + [1978] = 1795, + [1979] = 1750, + [1980] = 1830, + [1981] = 1831, + [1982] = 1877, + [1983] = 1795, + [1984] = 196, + [1985] = 1752, + [1986] = 1777, + [1987] = 1871, + [1988] = 1795, + [1989] = 547, + [1990] = 1777, + [1991] = 183, + [1992] = 1795, + [1993] = 113, + [1994] = 1752, + [1995] = 1777, + [1996] = 198, [1997] = 1997, - [1998] = 416, - [1999] = 1983, - [2000] = 1963, - [2001] = 1958, - [2002] = 1972, - [2003] = 1997, - [2004] = 1966, - [2005] = 2005, - [2006] = 2006, - [2007] = 296, - [2008] = 2008, - [2009] = 2009, - [2010] = 416, - [2011] = 1407, - [2012] = 1408, - [2013] = 1132, - [2014] = 2014, - [2015] = 2015, - [2016] = 2016, - [2017] = 2017, - [2018] = 1408, - [2019] = 1132, - [2020] = 2014, - [2021] = 2021, - [2022] = 213, - [2023] = 2023, - [2024] = 1407, - [2025] = 1132, - [2026] = 1399, - [2027] = 1393, - [2028] = 1404, - [2029] = 2014, - [2030] = 2021, - [2031] = 2031, - [2032] = 2014, - [2033] = 379, - [2034] = 1579, - [2035] = 296, - [2036] = 2036, - [2037] = 1615, - [2038] = 2036, - [2039] = 2008, - [2040] = 2040, - [2041] = 2041, - [2042] = 1132, - [2043] = 1132, - [2044] = 2044, - [2045] = 2014, - [2046] = 1340, - [2047] = 2008, - [2048] = 2021, - [2049] = 2044, - [2050] = 1652, - [2051] = 2036, - [2052] = 2044, - [2053] = 2053, - [2054] = 2017, - [2055] = 2055, - [2056] = 2056, - [2057] = 2057, + [1998] = 1752, + [1999] = 1752, + [2000] = 186, + [2001] = 2001, + [2002] = 234, + [2003] = 1877, + [2004] = 1750, + [2005] = 1877, + [2006] = 1795, + [2007] = 1752, + [2008] = 202, + [2009] = 1795, + [2010] = 1777, + [2011] = 235, + [2012] = 1750, + [2013] = 1877, + [2014] = 1795, + [2015] = 1894, + [2016] = 1777, + [2017] = 1795, + [2018] = 1877, + [2019] = 2019, + [2020] = 203, + [2021] = 1876, + [2022] = 1877, + [2023] = 187, + [2024] = 1750, + [2025] = 204, + [2026] = 236, + [2027] = 1831, + [2028] = 1750, + [2029] = 1750, + [2030] = 1750, + [2031] = 1895, + [2032] = 1795, + [2033] = 1750, + [2034] = 1874, + [2035] = 1877, + [2036] = 1750, + [2037] = 1750, + [2038] = 1750, + [2039] = 1907, + [2040] = 1795, + [2041] = 352, + [2042] = 1750, + [2043] = 1750, + [2044] = 1750, + [2045] = 1750, + [2046] = 188, + [2047] = 1750, + [2048] = 1896, + [2049] = 1908, + [2050] = 1878, + [2051] = 219, + [2052] = 205, + [2053] = 117, + [2054] = 109, + [2055] = 113, + [2056] = 114, + [2057] = 108, [2058] = 2058, [2059] = 2059, - [2060] = 2060, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, + [2060] = 547, + [2061] = 340, + [2062] = 205, + [2063] = 175, [2064] = 2064, - [2065] = 416, + [2065] = 237, [2066] = 2066, [2067] = 2067, [2068] = 2068, [2069] = 2069, [2070] = 2070, - [2071] = 2071, - [2072] = 2072, - [2073] = 2073, - [2074] = 2074, - [2075] = 2075, - [2076] = 2070, + [2071] = 2067, + [2072] = 2068, + [2073] = 2069, + [2074] = 2070, + [2075] = 2067, + [2076] = 2068, [2077] = 2069, - [2078] = 2068, - [2079] = 2079, - [2080] = 2055, - [2081] = 2081, - [2082] = 2082, - [2083] = 2060, - [2084] = 2058, - [2085] = 2085, - [2086] = 2086, - [2087] = 2087, - [2088] = 2075, - [2089] = 2089, - [2090] = 2085, - [2091] = 2091, - [2092] = 2092, - [2093] = 2071, - [2094] = 2094, - [2095] = 2095, - [2096] = 2096, - [2097] = 2097, - [2098] = 2086, - [2099] = 2099, - [2100] = 2085, - [2101] = 2101, - [2102] = 2102, - [2103] = 2089, - [2104] = 2075, - [2105] = 2105, - [2106] = 2106, - [2107] = 2107, - [2108] = 2108, - [2109] = 2109, - [2110] = 2110, - [2111] = 2111, - [2112] = 2105, - [2113] = 2113, - [2114] = 2067, - [2115] = 2102, - [2116] = 2066, - [2117] = 2094, - [2118] = 2079, - [2119] = 2119, - [2120] = 2111, - [2121] = 2072, - [2122] = 416, - [2123] = 2123, - [2124] = 2123, - [2125] = 258, - [2126] = 2126, - [2127] = 2127, - [2128] = 2128, - [2129] = 2129, - [2130] = 2087, - [2131] = 2131, - [2132] = 1535, - [2133] = 2126, - [2134] = 2127, - [2135] = 2095, - [2136] = 2094, - [2137] = 2071, - [2138] = 2138, - [2139] = 2139, - [2140] = 2119, - [2141] = 2092, - [2142] = 2142, - [2143] = 2143, - [2144] = 2144, - [2145] = 1445, - [2146] = 2091, - [2147] = 2109, - [2148] = 2082, - [2149] = 2074, - [2150] = 1363, - [2151] = 2095, - [2152] = 2152, - [2153] = 2072, - [2154] = 2073, - [2155] = 2063, - [2156] = 2081, - [2157] = 2067, - [2158] = 2081, - [2159] = 2067, - [2160] = 2160, - [2161] = 2082, - [2162] = 2162, - [2163] = 416, - [2164] = 2164, - [2165] = 2165, - [2166] = 2166, - [2167] = 2096, - [2168] = 2168, - [2169] = 2169, - [2170] = 2128, - [2171] = 2138, - [2172] = 2059, - [2173] = 2097, - [2174] = 2106, - [2175] = 2139, - [2176] = 1535, - [2177] = 2110, - [2178] = 2081, - [2179] = 2082, - [2180] = 2180, - [2181] = 2082, - [2182] = 2131, - [2183] = 2183, - [2184] = 2184, - [2185] = 2185, - [2186] = 2186, - [2187] = 2087, - [2188] = 2188, - [2189] = 2189, - [2190] = 2190, - [2191] = 2108, - [2192] = 2107, - [2193] = 2160, - [2194] = 2071, - [2195] = 2094, - [2196] = 2067, + [2078] = 2070, + [2079] = 2068, + [2080] = 2068, + [2081] = 2069, + [2082] = 2070, + [2083] = 2067, + [2084] = 2068, + [2085] = 2069, + [2086] = 2070, + [2087] = 2067, + [2088] = 2068, + [2089] = 2069, + [2090] = 2070, + [2091] = 2067, + [2092] = 2068, + [2093] = 2069, + [2094] = 2070, + [2095] = 2067, + [2096] = 2068, + [2097] = 2069, + [2098] = 2070, + [2099] = 2067, + [2100] = 2068, + [2101] = 2069, + [2102] = 2070, + [2103] = 2067, + [2104] = 2068, + [2105] = 2069, + [2106] = 2070, + [2107] = 2067, + [2108] = 2068, + [2109] = 2069, + [2110] = 2070, + [2111] = 2067, + [2112] = 2068, + [2113] = 2068, + [2114] = 2070, + [2115] = 2068, + [2116] = 2069, + [2117] = 2069, + [2118] = 2070, + [2119] = 2067, + [2120] = 2067, + [2121] = 2070, + [2122] = 2068, + [2123] = 2069, + [2124] = 2069, + [2125] = 2070, + [2126] = 2069, + [2127] = 2067, + [2128] = 2070, + [2129] = 2067, + [2130] = 2130, + [2131] = 2067, + [2132] = 2068, + [2133] = 2069, + [2134] = 2067, + [2135] = 2068, + [2136] = 2070, + [2137] = 2137, + [2138] = 2069, + [2139] = 175, + [2140] = 2070, + [2141] = 2067, + [2142] = 2067, + [2143] = 2068, + [2144] = 2069, + [2145] = 2070, + [2146] = 2146, + [2147] = 2068, + [2148] = 2130, + [2149] = 2069, + [2150] = 2150, + [2151] = 2069, + [2152] = 2068, + [2153] = 2070, + [2154] = 2150, + [2155] = 2067, + [2156] = 2068, + [2157] = 2068, + [2158] = 2069, + [2159] = 2070, + [2160] = 2067, + [2161] = 2146, + [2162] = 2068, + [2163] = 2069, + [2164] = 2070, + [2165] = 2067, + [2166] = 2069, + [2167] = 2068, + [2168] = 2069, + [2169] = 2070, + [2170] = 2067, + [2171] = 2068, + [2172] = 2070, + [2173] = 2069, + [2174] = 2070, + [2175] = 2067, + [2176] = 2068, + [2177] = 2069, + [2178] = 2070, + [2179] = 2070, + [2180] = 2067, + [2181] = 2067, + [2182] = 2068, + [2183] = 2067, + [2184] = 2069, + [2185] = 2070, + [2186] = 2067, + [2187] = 2068, + [2188] = 2069, + [2189] = 2070, + [2190] = 2067, + [2191] = 2068, + [2192] = 2069, + [2193] = 2070, + [2194] = 2067, + [2195] = 2195, + [2196] = 2196, [2197] = 2197, - [2198] = 2162, - [2199] = 2085, + [2198] = 2198, + [2199] = 2199, [2200] = 2200, [2201] = 2201, [2202] = 2202, - [2203] = 2075, - [2204] = 2142, - [2205] = 416, - [2206] = 2206, - [2207] = 2207, - [2208] = 2208, - [2209] = 2087, - [2210] = 2210, - [2211] = 2211, - [2212] = 2067, - [2213] = 296, - [2214] = 2131, - [2215] = 2166, - [2216] = 2168, + [2203] = 2203, + [2204] = 2204, + [2205] = 2205, + [2206] = 2200, + [2207] = 2202, + [2208] = 205, + [2209] = 2066, + [2210] = 2196, + [2211] = 2195, + [2212] = 2198, + [2213] = 2203, + [2214] = 2197, + [2215] = 2204, + [2216] = 2216, [2217] = 2217, - [2218] = 2169, - [2219] = 2180, - [2220] = 2220, - [2221] = 2200, - [2222] = 2201, - [2223] = 2202, - [2224] = 2057, - [2225] = 2201, - [2226] = 2211, - [2227] = 2227, - [2228] = 2207, - [2229] = 2206, - [2230] = 2143, - [2231] = 2144, - [2232] = 2119, - [2233] = 2139, - [2234] = 416, - [2235] = 2166, - [2236] = 2168, - [2237] = 2169, - [2238] = 2138, - [2239] = 2129, - [2240] = 2128, - [2241] = 2066, - [2242] = 2108, - [2243] = 2107, - [2244] = 2197, - [2245] = 2101, - [2246] = 416, - [2247] = 2099, - [2248] = 2180, - [2249] = 2183, - [2250] = 2188, - [2251] = 2184, - [2252] = 2060, - [2253] = 2081, - [2254] = 2082, - [2255] = 2055, - [2256] = 296, - [2257] = 2144, - [2258] = 2068, - [2259] = 2069, - [2260] = 2070, - [2261] = 2227, - [2262] = 2087, - [2263] = 2062, - [2264] = 2099, - [2265] = 2059, - [2266] = 2189, - [2267] = 2057, - [2268] = 2152, - [2269] = 2071, - [2270] = 2094, - [2271] = 2207, - [2272] = 2190, - [2273] = 2101, - [2274] = 2085, - [2275] = 2206, - [2276] = 2276, - [2277] = 2227, - [2278] = 2075, - [2279] = 2082, - [2280] = 2211, - [2281] = 2281, - [2282] = 2185, - [2283] = 2152, - [2284] = 2200, - [2285] = 2164, - [2286] = 2129, - [2287] = 2067, + [2218] = 2218, + [2219] = 2219, + [2220] = 2219, + [2221] = 2201, + [2222] = 2216, + [2223] = 340, + [2224] = 175, + [2225] = 2199, + [2226] = 2226, + [2227] = 2226, + [2228] = 2226, + [2229] = 2226, + [2230] = 237, + [2231] = 2226, + [2232] = 2226, + [2233] = 175, + [2234] = 2066, + [2235] = 2235, + [2236] = 2236, + [2237] = 2235, + [2238] = 2235, + [2239] = 2235, + [2240] = 2235, + [2241] = 2235, + [2242] = 2235, + [2243] = 2235, + [2244] = 2244, + [2245] = 2245, + [2246] = 2246, + [2247] = 2235, + [2248] = 2245, + [2249] = 2249, + [2250] = 2235, + [2251] = 2235, + [2252] = 2235, + [2253] = 2235, + [2254] = 2235, + [2255] = 237, + [2256] = 2235, + [2257] = 2235, + [2258] = 2235, + [2259] = 2235, + [2260] = 175, + [2261] = 2066, + [2262] = 175, + [2263] = 175, + [2264] = 2066, + [2265] = 340, + [2266] = 2266, + [2267] = 2266, + [2268] = 205, + [2269] = 175, + [2270] = 175, + [2271] = 237, + [2272] = 2066, + [2273] = 2273, + [2274] = 175, + [2275] = 237, + [2276] = 175, + [2277] = 2277, + [2278] = 2066, + [2279] = 2279, + [2280] = 2280, + [2281] = 205, + [2282] = 2282, + [2283] = 340, + [2284] = 2280, + [2285] = 237, + [2286] = 2286, + [2287] = 2287, [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 2291, - [2292] = 2292, - [2293] = 2293, - [2294] = 2294, - [2295] = 2293, - [2296] = 2296, - [2297] = 2297, + [2289] = 2288, + [2290] = 189, + [2291] = 398, + [2292] = 398, + [2293] = 398, + [2294] = 189, + [2295] = 398, + [2296] = 400, + [2297] = 400, [2298] = 2298, [2299] = 2299, - [2300] = 2300, - [2301] = 2301, - [2302] = 2302, - [2303] = 2289, - [2304] = 2304, - [2305] = 2305, - [2306] = 2290, - [2307] = 2291, - [2308] = 2292, - [2309] = 2293, - [2310] = 2310, - [2311] = 2311, + [2300] = 2299, + [2301] = 2299, + [2302] = 547, + [2303] = 2299, + [2304] = 2298, + [2305] = 398, + [2306] = 1695, + [2307] = 1679, + [2308] = 2298, + [2309] = 547, + [2310] = 175, + [2311] = 2298, [2312] = 2312, - [2313] = 2313, - [2314] = 2314, - [2315] = 2301, - [2316] = 204, + [2313] = 2298, + [2314] = 547, + [2315] = 2299, + [2316] = 398, [2317] = 2317, - [2318] = 2299, - [2319] = 2319, - [2320] = 2289, - [2321] = 2296, - [2322] = 1579, - [2323] = 2323, - [2324] = 2288, - [2325] = 2291, - [2326] = 2292, - [2327] = 2327, - [2328] = 2293, - [2329] = 1615, - [2330] = 1652, + [2318] = 2318, + [2319] = 547, + [2320] = 596, + [2321] = 2321, + [2322] = 2322, + [2323] = 2322, + [2324] = 2322, + [2325] = 2325, + [2326] = 2326, + [2327] = 2322, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, [2331] = 2331, [2332] = 2332, - [2333] = 2296, + [2333] = 2331, [2334] = 2334, [2335] = 2335, - [2336] = 2300, - [2337] = 2337, - [2338] = 2338, - [2339] = 2339, - [2340] = 2300, - [2341] = 2289, - [2342] = 2288, + [2336] = 2336, + [2337] = 2322, + [2338] = 392, + [2339] = 2322, + [2340] = 2322, + [2341] = 2322, + [2342] = 2322, [2343] = 2343, - [2344] = 1579, - [2345] = 2291, - [2346] = 2292, - [2347] = 2289, - [2348] = 2293, - [2349] = 2349, - [2350] = 1615, - [2351] = 2300, - [2352] = 1652, - [2353] = 1340, - [2354] = 2354, - [2355] = 2331, - [2356] = 1393, - [2357] = 2302, - [2358] = 2305, - [2359] = 1399, - [2360] = 2296, + [2344] = 398, + [2345] = 2332, + [2346] = 398, + [2347] = 2334, + [2348] = 2322, + [2349] = 2322, + [2350] = 2350, + [2351] = 398, + [2352] = 2350, + [2353] = 2322, + [2354] = 2322, + [2355] = 398, + [2356] = 2325, + [2357] = 2357, + [2358] = 2322, + [2359] = 2335, + [2360] = 2360, [2361] = 2361, - [2362] = 2293, - [2363] = 2363, - [2364] = 2364, - [2365] = 2310, - [2366] = 2300, - [2367] = 1404, - [2368] = 2292, - [2369] = 2291, - [2370] = 2300, - [2371] = 2300, + [2362] = 1664, + [2363] = 2322, + [2364] = 2322, + [2365] = 2329, + [2366] = 2343, + [2367] = 2322, + [2368] = 201, + [2369] = 2328, + [2370] = 1665, + [2371] = 2360, [2372] = 2372, - [2373] = 2300, - [2374] = 2290, - [2375] = 2300, - [2376] = 2296, - [2377] = 2300, - [2378] = 2378, + [2373] = 417, + [2374] = 595, + [2375] = 597, + [2376] = 417, + [2377] = 595, + [2378] = 597, [2379] = 2379, - [2380] = 2289, - [2381] = 2300, - [2382] = 2382, - [2383] = 2383, - [2384] = 2384, - [2385] = 2300, - [2386] = 2300, - [2387] = 2300, - [2388] = 2289, - [2389] = 2389, - [2390] = 2300, - [2391] = 2300, - [2392] = 2300, - [2393] = 2301, - [2394] = 2300, - [2395] = 2395, - [2396] = 2300, + [2380] = 2372, + [2381] = 398, + [2382] = 2322, + [2383] = 398, + [2384] = 2357, + [2385] = 2385, + [2386] = 2386, + [2387] = 413, + [2388] = 2388, + [2389] = 402, + [2390] = 407, + [2391] = 2388, + [2392] = 2392, + [2393] = 2393, + [2394] = 2388, + [2395] = 547, + [2396] = 2386, [2397] = 2397, - [2398] = 2398, - [2399] = 2299, - [2400] = 2300, - [2401] = 2300, - [2402] = 2293, - [2403] = 2403, - [2404] = 2395, - [2405] = 2300, - [2406] = 2300, - [2407] = 2310, + [2398] = 2385, + [2399] = 2399, + [2400] = 2400, + [2401] = 2386, + [2402] = 2402, + [2403] = 398, + [2404] = 2385, + [2405] = 2405, + [2406] = 2406, + [2407] = 2399, [2408] = 2408, - [2409] = 2403, - [2410] = 2300, - [2411] = 2411, - [2412] = 2349, - [2413] = 2300, - [2414] = 2354, + [2409] = 398, + [2410] = 1888, + [2411] = 2400, + [2412] = 2405, + [2413] = 392, + [2414] = 2402, [2415] = 2415, - [2416] = 2332, - [2417] = 2299, - [2418] = 2314, + [2416] = 2402, + [2417] = 2408, + [2418] = 2388, [2419] = 2419, - [2420] = 2304, - [2421] = 2288, - [2422] = 2301, + [2420] = 2386, + [2421] = 2385, + [2422] = 2385, [2423] = 2423, [2424] = 2424, - [2425] = 2384, - [2426] = 2290, - [2427] = 2427, - [2428] = 2299, - [2429] = 2292, - [2430] = 2291, - [2431] = 2290, - [2432] = 2389, - [2433] = 2398, - [2434] = 2434, - [2435] = 2288, - [2436] = 2291, - [2437] = 2292, - [2438] = 2301, - [2439] = 2300, - [2440] = 2383, - [2441] = 2379, - [2442] = 2442, - [2443] = 2415, - [2444] = 2419, - [2445] = 2445, - [2446] = 2446, - [2447] = 2447, + [2425] = 2400, + [2426] = 2424, + [2427] = 2423, + [2428] = 2419, + [2429] = 2385, + [2430] = 2430, + [2431] = 2406, + [2432] = 189, + [2433] = 2433, + [2434] = 2397, + [2435] = 417, + [2436] = 595, + [2437] = 596, + [2438] = 597, + [2439] = 417, + [2440] = 595, + [2441] = 597, + [2442] = 2415, + [2443] = 2408, + [2444] = 2408, + [2445] = 2400, + [2446] = 2392, + [2447] = 2408, [2448] = 2448, - [2449] = 2449, - [2450] = 2450, - [2451] = 2451, - [2452] = 2452, + [2449] = 2386, + [2450] = 2388, + [2451] = 2393, + [2452] = 2386, [2453] = 2453, - [2454] = 2454, - [2455] = 2455, - [2456] = 2456, + [2454] = 2402, + [2455] = 2400, + [2456] = 2402, [2457] = 2457, [2458] = 2458, [2459] = 2459, @@ -4548,175 +4648,175 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2462] = 2457, [2463] = 2463, [2464] = 2464, - [2465] = 2455, - [2466] = 2447, - [2467] = 2452, + [2465] = 1975, + [2466] = 2466, + [2467] = 2467, [2468] = 2468, - [2469] = 2469, - [2470] = 2470, - [2471] = 2471, - [2472] = 2464, + [2469] = 1443, + [2470] = 2461, + [2471] = 1667, + [2472] = 1665, [2473] = 2473, [2474] = 2474, - [2475] = 2451, - [2476] = 2476, + [2475] = 413, + [2476] = 1443, [2477] = 2477, [2478] = 2478, [2479] = 2479, - [2480] = 2455, + [2480] = 2464, [2481] = 2481, - [2482] = 2455, - [2483] = 2455, - [2484] = 2455, - [2485] = 2455, - [2486] = 2486, - [2487] = 2447, - [2488] = 2481, - [2489] = 2489, + [2482] = 2478, + [2483] = 2483, + [2484] = 1664, + [2485] = 2467, + [2486] = 2468, + [2487] = 2468, + [2488] = 2478, + [2489] = 2474, [2490] = 2490, - [2491] = 2455, - [2492] = 2455, - [2493] = 2455, - [2494] = 2455, - [2495] = 2495, - [2496] = 2496, - [2497] = 2455, - [2498] = 2498, - [2499] = 2477, + [2491] = 1997, + [2492] = 2492, + [2493] = 2493, + [2494] = 2494, + [2495] = 400, + [2496] = 1443, + [2497] = 2497, + [2498] = 1664, + [2499] = 402, [2500] = 2500, - [2501] = 2486, - [2502] = 2455, - [2503] = 2455, - [2504] = 2442, - [2505] = 2455, - [2506] = 2506, - [2507] = 2471, - [2508] = 2477, - [2509] = 2455, - [2510] = 2455, - [2511] = 2455, - [2512] = 2454, - [2513] = 2455, - [2514] = 2514, - [2515] = 2514, + [2501] = 2501, + [2502] = 547, + [2503] = 2460, + [2504] = 2493, + [2505] = 2505, + [2506] = 407, + [2507] = 2461, + [2508] = 1443, + [2509] = 1665, + [2510] = 2461, + [2511] = 2468, + [2512] = 2464, + [2513] = 1694, + [2514] = 1443, + [2515] = 2515, [2516] = 2516, - [2517] = 2455, - [2518] = 2455, - [2519] = 2468, - [2520] = 2520, - [2521] = 2516, - [2522] = 2522, - [2523] = 2463, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2450, - [2528] = 2455, - [2529] = 2459, - [2530] = 2530, - [2531] = 2500, - [2532] = 2455, - [2533] = 2490, - [2534] = 2473, + [2517] = 2494, + [2518] = 2464, + [2519] = 1443, + [2520] = 2501, + [2521] = 340, + [2522] = 400, + [2523] = 2464, + [2524] = 1945, + [2525] = 2468, + [2526] = 1676, + [2527] = 1677, + [2528] = 2478, + [2529] = 2529, + [2530] = 400, + [2531] = 2478, + [2532] = 2505, + [2533] = 2461, + [2534] = 2534, [2535] = 2535, - [2536] = 296, - [2537] = 2474, - [2538] = 2461, + [2536] = 2536, + [2537] = 2537, + [2538] = 2538, [2539] = 2539, [2540] = 2540, - [2541] = 2464, + [2541] = 2541, [2542] = 2542, - [2543] = 2455, + [2543] = 2543, [2544] = 2544, - [2545] = 2522, + [2545] = 2545, [2546] = 2546, [2547] = 2547, - [2548] = 2476, - [2549] = 2478, - [2550] = 2477, - [2551] = 2535, - [2552] = 2454, - [2553] = 2553, - [2554] = 2524, - [2555] = 2455, - [2556] = 2449, - [2557] = 2479, + [2548] = 2548, + [2549] = 2549, + [2550] = 2550, + [2551] = 2551, + [2552] = 2552, + [2553] = 2535, + [2554] = 2554, + [2555] = 2555, + [2556] = 1888, + [2557] = 2557, [2558] = 2558, [2559] = 2559, [2560] = 2560, [2561] = 2561, - [2562] = 2495, + [2562] = 2562, [2563] = 2563, - [2564] = 2520, - [2565] = 2496, - [2566] = 2530, - [2567] = 2477, + [2564] = 2564, + [2565] = 2565, + [2566] = 2566, + [2567] = 2567, [2568] = 2568, [2569] = 2569, [2570] = 2570, - [2571] = 2463, - [2572] = 2498, + [2571] = 2534, + [2572] = 2572, [2573] = 2573, - [2574] = 2456, + [2574] = 2574, [2575] = 2575, - [2576] = 2542, - [2577] = 2558, - [2578] = 2544, + [2576] = 2576, + [2577] = 2577, + [2578] = 2578, [2579] = 2579, - [2580] = 2525, - [2581] = 2490, - [2582] = 2489, - [2583] = 2463, + [2580] = 2580, + [2581] = 2563, + [2582] = 2551, + [2583] = 547, [2584] = 2584, - [2585] = 2477, - [2586] = 2455, + [2585] = 2585, + [2586] = 2586, [2587] = 2587, - [2588] = 2526, - [2589] = 2447, - [2590] = 2490, - [2591] = 2563, - [2592] = 2553, + [2588] = 1695, + [2589] = 2589, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, [2593] = 2593, [2594] = 2594, - [2595] = 2454, - [2596] = 2596, - [2597] = 2454, - [2598] = 2559, - [2599] = 2522, - [2600] = 2560, - [2601] = 2490, - [2602] = 2584, - [2603] = 2539, - [2604] = 2575, - [2605] = 2449, + [2595] = 2591, + [2596] = 2587, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 2600, + [2601] = 2601, + [2602] = 2602, + [2603] = 2603, + [2604] = 2604, + [2605] = 2592, [2606] = 2606, - [2607] = 2573, - [2608] = 2447, - [2609] = 2477, + [2607] = 400, + [2608] = 547, + [2609] = 2609, [2610] = 2610, - [2611] = 2469, - [2612] = 2457, + [2611] = 2593, + [2612] = 2612, [2613] = 2613, - [2614] = 2570, - [2615] = 2470, - [2616] = 2569, - [2617] = 2463, - [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2624, - [2625] = 2625, - [2626] = 2626, - [2627] = 2627, + [2614] = 2614, + [2615] = 2615, + [2616] = 2616, + [2617] = 2617, + [2618] = 2537, + [2619] = 2594, + [2620] = 392, + [2621] = 2569, + [2622] = 2575, + [2623] = 2576, + [2624] = 2584, + [2625] = 2603, + [2626] = 2606, + [2627] = 2610, [2628] = 2628, [2629] = 2629, - [2630] = 2630, + [2630] = 2550, [2631] = 2631, - [2632] = 2632, - [2633] = 288, + [2632] = 2629, + [2633] = 2562, [2634] = 2634, [2635] = 2635, [2636] = 2636, @@ -4724,257 +4824,1075 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2638] = 2638, [2639] = 2639, [2640] = 2640, - [2641] = 2641, - [2642] = 2642, + [2641] = 2631, + [2642] = 2640, [2643] = 2643, [2644] = 2644, [2645] = 2645, [2646] = 2646, [2647] = 2647, - [2648] = 2648, + [2648] = 2590, [2649] = 2649, [2650] = 2650, - [2651] = 2649, - [2652] = 2652, - [2653] = 2647, - [2654] = 283, - [2655] = 2655, - [2656] = 2656, - [2657] = 2657, - [2658] = 2657, + [2651] = 2651, + [2652] = 2634, + [2653] = 2541, + [2654] = 2585, + [2655] = 2542, + [2656] = 2609, + [2657] = 2638, + [2658] = 1888, [2659] = 2659, - [2660] = 2655, - [2661] = 2638, - [2662] = 2662, - [2663] = 2620, - [2664] = 2664, + [2660] = 2538, + [2661] = 2644, + [2662] = 2539, + [2663] = 2540, + [2664] = 547, [2665] = 2665, - [2666] = 2666, - [2667] = 2643, - [2668] = 2641, - [2669] = 2649, - [2670] = 2644, - [2671] = 2625, + [2666] = 2639, + [2667] = 2667, + [2668] = 2602, + [2669] = 2669, + [2670] = 2544, + [2671] = 2548, [2672] = 2672, - [2673] = 2673, - [2674] = 2619, - [2675] = 2621, + [2673] = 2665, + [2674] = 2674, + [2675] = 2613, [2676] = 2676, - [2677] = 2677, - [2678] = 2649, - [2679] = 2679, - [2680] = 2622, - [2681] = 2623, - [2682] = 2624, - [2683] = 2683, - [2684] = 2684, - [2685] = 2685, - [2686] = 2686, - [2687] = 2627, - [2688] = 2688, - [2689] = 2624, - [2690] = 2635, - [2691] = 2691, - [2692] = 2625, - [2693] = 2628, - [2694] = 2629, + [2677] = 2645, + [2678] = 2613, + [2679] = 2589, + [2680] = 2545, + [2681] = 2681, + [2682] = 2647, + [2683] = 400, + [2684] = 2597, + [2685] = 2649, + [2686] = 2562, + [2687] = 2644, + [2688] = 2598, + [2689] = 2689, + [2690] = 547, + [2691] = 2535, + [2692] = 2613, + [2693] = 2665, + [2694] = 2694, [2695] = 2695, - [2696] = 2696, - [2697] = 2626, - [2698] = 2698, - [2699] = 2699, - [2700] = 2647, - [2701] = 2701, + [2696] = 2548, + [2697] = 2697, + [2698] = 2613, + [2699] = 547, + [2700] = 2536, + [2701] = 2535, [2702] = 2702, - [2703] = 2703, - [2704] = 2630, - [2705] = 2705, - [2706] = 2634, - [2707] = 2656, - [2708] = 2665, - [2709] = 2642, - [2710] = 2677, - [2711] = 2624, - [2712] = 2683, - [2713] = 2685, - [2714] = 2645, - [2715] = 2632, - [2716] = 2650, - [2717] = 2619, - [2718] = 2684, - [2719] = 2679, - [2720] = 2659, - [2721] = 2619, - [2722] = 2722, - [2723] = 2666, - [2724] = 2688, - [2725] = 2725, - [2726] = 2726, - [2727] = 2618, - [2728] = 2728, - [2729] = 2729, - [2730] = 2730, - [2731] = 2731, - [2732] = 2673, - [2733] = 2733, - [2734] = 2734, - [2735] = 2676, - [2736] = 2736, - [2737] = 2636, - [2738] = 2738, + [2703] = 2536, + [2704] = 2549, + [2705] = 2681, + [2706] = 2706, + [2707] = 2707, + [2708] = 2708, + [2709] = 2667, + [2710] = 2599, + [2711] = 547, + [2712] = 2712, + [2713] = 2541, + [2714] = 547, + [2715] = 2667, + [2716] = 2716, + [2717] = 352, + [2718] = 2578, + [2719] = 2615, + [2720] = 2669, + [2721] = 2552, + [2722] = 2554, + [2723] = 2667, + [2724] = 2724, + [2725] = 2555, + [2726] = 2651, + [2727] = 2727, + [2728] = 2557, + [2729] = 2559, + [2730] = 2560, + [2731] = 2579, + [2732] = 2600, + [2733] = 2612, + [2734] = 2694, + [2735] = 2695, + [2736] = 2604, + [2737] = 2628, + [2738] = 2674, [2739] = 2739, - [2740] = 2688, - [2741] = 2619, - [2742] = 2742, - [2743] = 2679, - [2744] = 2686, - [2745] = 2745, + [2740] = 2740, + [2741] = 2741, + [2742] = 2667, + [2743] = 2580, + [2744] = 2541, + [2745] = 2578, [2746] = 2746, - [2747] = 2624, - [2748] = 2639, - [2749] = 2702, - [2750] = 2750, - [2751] = 2637, - [2752] = 2698, - [2753] = 2753, - [2754] = 2703, - [2755] = 2672, - [2756] = 2679, - [2757] = 2639, - [2758] = 2641, - [2759] = 2641, - [2760] = 2695, - [2761] = 2699, - [2762] = 2624, - [2763] = 2664, - [2764] = 2619, - [2765] = 2619, - [2766] = 2679, + [2747] = 2667, + [2748] = 2614, + [2749] = 2535, + [2750] = 1679, + [2751] = 2562, + [2752] = 2644, + [2753] = 2667, + [2754] = 2635, + [2755] = 2564, + [2756] = 2665, + [2757] = 2667, + [2758] = 2636, + [2759] = 2548, + [2760] = 2565, + [2761] = 2566, + [2762] = 2567, + [2763] = 2667, + [2764] = 2665, + [2765] = 2535, + [2766] = 2613, [2767] = 2767, - [2768] = 2625, - [2769] = 2624, - [2770] = 2725, - [2771] = 2679, - [2772] = 2619, - [2773] = 2679, - [2774] = 2774, - [2775] = 2705, - [2776] = 2643, - [2777] = 2696, - [2778] = 2619, - [2779] = 2679, - [2780] = 2780, - [2781] = 2781, - [2782] = 2782, - [2783] = 2619, - [2784] = 2679, - [2785] = 2619, - [2786] = 2736, - [2787] = 2619, - [2788] = 2679, - [2789] = 2647, - [2790] = 2782, - [2791] = 2619, - [2792] = 2679, - [2793] = 2649, - [2794] = 2794, - [2795] = 2619, - [2796] = 2679, - [2797] = 2624, - [2798] = 2798, - [2799] = 2619, - [2800] = 2679, - [2801] = 2637, - [2802] = 2802, - [2803] = 2619, - [2804] = 2679, - [2805] = 2805, - [2806] = 2806, - [2807] = 2619, - [2808] = 2679, - [2809] = 2809, - [2810] = 2767, - [2811] = 2619, - [2812] = 2679, - [2813] = 2813, - [2814] = 2806, - [2815] = 2619, - [2816] = 2679, - [2817] = 2817, - [2818] = 2818, - [2819] = 2619, - [2820] = 2679, - [2821] = 2638, - [2822] = 2802, - [2823] = 2619, - [2824] = 2679, - [2825] = 2620, - [2826] = 2826, - [2827] = 2619, - [2828] = 2679, - [2829] = 2688, - [2830] = 2679, - [2831] = 2619, - [2832] = 2679, - [2833] = 2833, - [2834] = 2834, - [2835] = 2619, - [2836] = 2679, - [2837] = 2679, - [2838] = 2639, - [2839] = 2619, - [2840] = 2679, + [2768] = 2536, + [2769] = 2769, + [2770] = 2667, + [2771] = 2676, + [2772] = 2665, + [2773] = 2536, + [2774] = 2568, + [2775] = 2775, + [2776] = 2769, + [2777] = 2665, + [2778] = 2665, + [2779] = 2665, + [2780] = 2541, + [2781] = 2697, + [2782] = 2613, + [2783] = 2783, + [2784] = 2716, + [2785] = 2724, + [2786] = 2613, + [2787] = 2433, + [2788] = 2613, + [2789] = 2665, + [2790] = 2739, + [2791] = 2613, + [2792] = 2570, + [2793] = 2665, + [2794] = 2665, + [2795] = 2665, + [2796] = 2665, + [2797] = 2572, + [2798] = 2613, + [2799] = 2617, + [2800] = 2613, + [2801] = 2573, + [2802] = 547, + [2803] = 2613, + [2804] = 2727, + [2805] = 596, + [2806] = 2727, + [2807] = 2665, + [2808] = 2665, + [2809] = 2665, + [2810] = 2650, + [2811] = 2613, + [2812] = 2543, + [2813] = 2547, + [2814] = 2613, + [2815] = 2574, + [2816] = 2601, + [2817] = 2558, + [2818] = 2613, + [2819] = 2561, + [2820] = 2616, + [2821] = 2562, + [2822] = 2644, + [2823] = 2667, + [2824] = 2665, + [2825] = 2613, + [2826] = 417, + [2827] = 595, + [2828] = 597, + [2829] = 2613, + [2830] = 2577, + [2831] = 2586, + [2832] = 2646, + [2833] = 2548, + [2834] = 2546, + [2835] = 2835, + [2836] = 2836, + [2837] = 2837, + [2838] = 1997, + [2839] = 2839, + [2840] = 2840, [2841] = 2841, - [2842] = 2637, - [2843] = 2834, + [2842] = 2840, + [2843] = 1694, [2844] = 2844, - [2845] = 2780, - [2846] = 2841, - [2847] = 2729, - [2848] = 2648, - [2849] = 2731, - [2850] = 2794, - [2851] = 2733, - [2852] = 2734, - [2853] = 2641, - [2854] = 2646, + [2845] = 2845, + [2846] = 2846, + [2847] = 1945, + [2848] = 2848, + [2849] = 2844, + [2850] = 2850, + [2851] = 2844, + [2852] = 2852, + [2853] = 2853, + [2854] = 2854, [2855] = 2855, - [2856] = 2738, - [2857] = 2722, - [2858] = 2739, - [2859] = 2813, - [2860] = 2746, - [2861] = 2833, - [2862] = 2753, + [2856] = 595, + [2857] = 2857, + [2858] = 2850, + [2859] = 2859, + [2860] = 2860, + [2861] = 2861, + [2862] = 2862, [2863] = 2863, - [2864] = 2774, - [2865] = 2855, - [2866] = 2620, - [2867] = 2805, - [2868] = 2863, - [2869] = 2730, - [2870] = 2742, - [2871] = 2579, - [2872] = 2620, - [2873] = 2619, - [2874] = 2587, - [2875] = 2844, - [2876] = 2624, - [2877] = 2638, - [2878] = 2625, - [2879] = 2844, - [2880] = 2880, - [2881] = 2643, - [2882] = 2882, - [2883] = 2679, - [2884] = 2818, - [2885] = 2844, - [2886] = 2643, - [2887] = 2844, - [2888] = 2638, - [2889] = 2880, - [2890] = 2798, - [2891] = 2647, + [2864] = 2864, + [2865] = 2865, + [2866] = 2866, + [2867] = 2867, + [2868] = 2861, + [2869] = 2869, + [2870] = 2870, + [2871] = 2871, + [2872] = 2872, + [2873] = 2873, + [2874] = 2869, + [2875] = 2875, + [2876] = 2876, + [2877] = 2844, + [2878] = 2878, + [2879] = 2879, + [2880] = 2860, + [2881] = 2881, + [2882] = 2876, + [2883] = 2883, + [2884] = 2846, + [2885] = 2857, + [2886] = 2871, + [2887] = 2865, + [2888] = 2844, + [2889] = 2850, + [2890] = 2860, + [2891] = 2861, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2870, + [2896] = 1997, + [2897] = 2844, + [2898] = 2860, + [2899] = 2899, + [2900] = 2857, + [2901] = 2871, + [2902] = 2865, + [2903] = 2861, + [2904] = 2899, + [2905] = 2905, + [2906] = 2906, + [2907] = 2906, + [2908] = 2844, + [2909] = 2860, + [2910] = 2860, + [2911] = 2844, + [2912] = 2844, + [2913] = 201, + [2914] = 2844, + [2915] = 2844, + [2916] = 2844, + [2917] = 2844, + [2918] = 2844, + [2919] = 2844, + [2920] = 2844, + [2921] = 2844, + [2922] = 2844, + [2923] = 2844, + [2924] = 2844, + [2925] = 2844, + [2926] = 2844, + [2927] = 2844, + [2928] = 2844, + [2929] = 2844, + [2930] = 2844, + [2931] = 2844, + [2932] = 2844, + [2933] = 2844, + [2934] = 2876, + [2935] = 2875, + [2936] = 2875, + [2937] = 2937, + [2938] = 2938, + [2939] = 2836, + [2940] = 2940, + [2941] = 2839, + [2942] = 2942, + [2943] = 2862, + [2944] = 2846, + [2945] = 2872, + [2946] = 2845, + [2947] = 2854, + [2948] = 2948, + [2949] = 2949, + [2950] = 2867, + [2951] = 2951, + [2952] = 2952, + [2953] = 2854, + [2954] = 2879, + [2955] = 2844, + [2956] = 2835, + [2957] = 1667, + [2958] = 2854, + [2959] = 1975, + [2960] = 2854, + [2961] = 2854, + [2962] = 2962, + [2963] = 2854, + [2964] = 2964, + [2965] = 2965, + [2966] = 2966, + [2967] = 2967, + [2968] = 2865, + [2969] = 2854, + [2970] = 417, + [2971] = 2865, + [2972] = 2876, + [2973] = 1676, + [2974] = 2940, + [2975] = 2854, + [2976] = 1677, + [2977] = 2977, + [2978] = 2978, + [2979] = 2854, + [2980] = 2854, + [2981] = 2875, + [2982] = 2982, + [2983] = 2940, + [2984] = 2984, + [2985] = 2854, + [2986] = 2940, + [2987] = 2879, + [2988] = 2854, + [2989] = 2977, + [2990] = 2940, + [2991] = 2846, + [2992] = 2940, + [2993] = 2940, + [2994] = 2940, + [2995] = 2940, + [2996] = 2940, + [2997] = 2940, + [2998] = 2940, + [2999] = 2940, + [3000] = 2940, + [3001] = 2940, + [3002] = 2836, + [3003] = 2978, + [3004] = 2850, + [3005] = 413, + [3006] = 2948, + [3007] = 2836, + [3008] = 596, + [3009] = 3009, + [3010] = 2857, + [3011] = 2871, + [3012] = 2861, + [3013] = 2837, + [3014] = 2850, + [3015] = 2854, + [3016] = 2906, + [3017] = 2836, + [3018] = 2857, + [3019] = 2871, + [3020] = 3009, + [3021] = 1945, + [3022] = 2949, + [3023] = 3023, + [3024] = 2899, + [3025] = 2906, + [3026] = 2948, + [3027] = 2850, + [3028] = 2940, + [3029] = 2906, + [3030] = 3030, + [3031] = 3031, + [3032] = 2836, + [3033] = 3033, + [3034] = 3034, + [3035] = 2899, + [3036] = 2850, + [3037] = 2906, + [3038] = 2836, + [3039] = 2850, + [3040] = 2949, + [3041] = 2906, + [3042] = 2836, + [3043] = 2850, + [3044] = 2906, + [3045] = 2836, + [3046] = 402, + [3047] = 2876, + [3048] = 1975, + [3049] = 3049, + [3050] = 3050, + [3051] = 2875, + [3052] = 3052, + [3053] = 2836, + [3054] = 2906, + [3055] = 2836, + [3056] = 2850, + [3057] = 2906, + [3058] = 2836, + [3059] = 2850, + [3060] = 2940, + [3061] = 2906, + [3062] = 2948, + [3063] = 2949, + [3064] = 2854, + [3065] = 2850, + [3066] = 2906, + [3067] = 2836, + [3068] = 2850, + [3069] = 2906, + [3070] = 2836, + [3071] = 2850, + [3072] = 3072, + [3073] = 2906, + [3074] = 2836, + [3075] = 2879, + [3076] = 192, + [3077] = 2899, + [3078] = 2948, + [3079] = 2949, + [3080] = 2940, + [3081] = 2951, + [3082] = 3082, + [3083] = 2951, + [3084] = 2850, + [3085] = 2906, + [3086] = 2836, + [3087] = 2850, + [3088] = 2906, + [3089] = 2836, + [3090] = 2850, + [3091] = 2854, + [3092] = 2906, + [3093] = 2836, + [3094] = 2937, + [3095] = 3095, + [3096] = 3052, + [3097] = 3082, + [3098] = 3023, + [3099] = 3099, + [3100] = 2942, + [3101] = 2952, + [3102] = 2850, + [3103] = 2879, + [3104] = 2966, + [3105] = 2906, + [3106] = 3030, + [3107] = 2846, + [3108] = 2854, + [3109] = 3109, + [3110] = 407, + [3111] = 597, + [3112] = 2841, + [3113] = 2854, + [3114] = 3114, + [3115] = 3115, + [3116] = 3116, + [3117] = 3117, + [3118] = 3118, + [3119] = 3116, + [3120] = 3117, + [3121] = 3121, + [3122] = 3122, + [3123] = 3116, + [3124] = 3116, + [3125] = 3125, + [3126] = 3116, + [3127] = 3116, + [3128] = 3116, + [3129] = 3116, + [3130] = 3116, + [3131] = 3131, + [3132] = 3116, + [3133] = 3116, + [3134] = 3134, + [3135] = 3116, + [3136] = 3116, + [3137] = 3121, + [3138] = 3116, + [3139] = 3116, + [3140] = 3116, + [3141] = 3116, + [3142] = 3116, + [3143] = 3116, + [3144] = 3117, + [3145] = 3122, + [3146] = 3146, + [3147] = 3116, + [3148] = 3148, + [3149] = 3117, + [3150] = 3150, + [3151] = 3114, + [3152] = 3146, + [3153] = 3117, + [3154] = 3154, + [3155] = 3155, + [3156] = 3148, + [3157] = 3157, + [3158] = 3158, + [3159] = 3159, + [3160] = 3160, + [3161] = 3161, + [3162] = 3162, + [3163] = 3155, + [3164] = 3164, + [3165] = 3165, + [3166] = 3166, + [3167] = 3167, + [3168] = 400, + [3169] = 3169, + [3170] = 3170, + [3171] = 400, + [3172] = 3172, + [3173] = 3173, + [3174] = 3122, + [3175] = 3175, + [3176] = 3122, + [3177] = 3122, + [3178] = 3122, + [3179] = 3179, + [3180] = 3117, + [3181] = 3157, + [3182] = 3122, + [3183] = 3117, + [3184] = 3117, + [3185] = 3117, + [3186] = 3122, + [3187] = 3158, + [3188] = 3150, + [3189] = 3189, + [3190] = 3155, + [3191] = 3191, + [3192] = 3192, + [3193] = 3160, + [3194] = 3194, + [3195] = 3116, + [3196] = 3196, + [3197] = 3122, + [3198] = 3194, + [3199] = 3122, + [3200] = 3154, + [3201] = 3122, + [3202] = 3122, + [3203] = 3122, + [3204] = 3196, + [3205] = 3150, + [3206] = 3191, + [3207] = 3207, + [3208] = 3208, + [3209] = 3155, + [3210] = 3122, + [3211] = 3134, + [3212] = 3165, + [3213] = 3122, + [3214] = 3159, + [3215] = 3122, + [3216] = 3134, + [3217] = 3150, + [3218] = 3155, + [3219] = 3150, + [3220] = 3155, + [3221] = 3134, + [3222] = 3150, + [3223] = 3155, + [3224] = 3150, + [3225] = 3155, + [3226] = 3167, + [3227] = 3150, + [3228] = 3155, + [3229] = 3150, + [3230] = 3116, + [3231] = 3150, + [3232] = 3150, + [3233] = 3117, + [3234] = 3150, + [3235] = 3150, + [3236] = 3236, + [3237] = 3150, + [3238] = 3194, + [3239] = 3161, + [3240] = 3150, + [3241] = 3196, + [3242] = 3242, + [3243] = 3155, + [3244] = 3125, + [3245] = 3169, + [3246] = 3146, + [3247] = 3247, + [3248] = 3157, + [3249] = 3170, + [3250] = 3247, + [3251] = 3196, + [3252] = 3252, + [3253] = 3173, + [3254] = 3254, + [3255] = 3175, + [3256] = 3256, + [3257] = 3159, + [3258] = 3258, + [3259] = 3159, + [3260] = 3150, + [3261] = 3172, + [3262] = 3167, + [3263] = 3263, + [3264] = 3146, + [3265] = 3265, + [3266] = 3236, + [3267] = 3254, + [3268] = 3134, + [3269] = 3269, + [3270] = 3116, + [3271] = 3117, + [3272] = 3162, + [3273] = 3196, + [3274] = 3192, + [3275] = 3099, + [3276] = 3194, + [3277] = 3131, + [3278] = 3157, + [3279] = 3146, + [3280] = 3122, + [3281] = 3281, + [3282] = 3150, + [3283] = 3165, + [3284] = 3194, + [3285] = 3285, + [3286] = 3286, + [3287] = 3287, + [3288] = 3167, + [3289] = 3116, + [3290] = 3117, + [3291] = 3291, + [3292] = 3165, + [3293] = 3286, + [3294] = 3150, + [3295] = 3189, + [3296] = 3296, + [3297] = 3159, + [3298] = 3287, + [3299] = 3207, + [3300] = 3116, + [3301] = 3117, + [3302] = 3116, + [3303] = 3116, + [3304] = 3117, + [3305] = 3291, + [3306] = 3166, + [3307] = 3157, + [3308] = 3167, + [3309] = 3122, + [3310] = 3116, + [3311] = 3117, + [3312] = 3117, + [3313] = 3116, + [3314] = 3117, + [3315] = 3134, + [3316] = 3165, + [3317] = 3116, + [3318] = 3117, + [3319] = 3285, + [3320] = 3320, + [3321] = 3321, + [3322] = 3320, + [3323] = 3320, + [3324] = 3324, + [3325] = 3325, + [3326] = 3326, + [3327] = 3327, + [3328] = 3328, + [3329] = 3329, + [3330] = 3330, + [3331] = 3320, + [3332] = 3321, + [3333] = 3333, + [3334] = 3334, + [3335] = 3335, + [3336] = 3336, + [3337] = 3337, + [3338] = 3338, + [3339] = 3339, + [3340] = 3340, + [3341] = 3341, + [3342] = 3342, + [3343] = 3343, + [3344] = 3320, + [3345] = 3345, + [3346] = 3346, + [3347] = 3347, + [3348] = 3333, + [3349] = 3349, + [3350] = 575, + [3351] = 3351, + [3352] = 3333, + [3353] = 3353, + [3354] = 3354, + [3355] = 3355, + [3356] = 3321, + [3357] = 3346, + [3358] = 3354, + [3359] = 3337, + [3360] = 3343, + [3361] = 3337, + [3362] = 3346, + [3363] = 3328, + [3364] = 3364, + [3365] = 3320, + [3366] = 3366, + [3367] = 3333, + [3368] = 3368, + [3369] = 3369, + [3370] = 3370, + [3371] = 3371, + [3372] = 3328, + [3373] = 3368, + [3374] = 3374, + [3375] = 3375, + [3376] = 3320, + [3377] = 3333, + [3378] = 3337, + [3379] = 3379, + [3380] = 3333, + [3381] = 3381, + [3382] = 3325, + [3383] = 3383, + [3384] = 3321, + [3385] = 3325, + [3386] = 3386, + [3387] = 3387, + [3388] = 3369, + [3389] = 3389, + [3390] = 3320, + [3391] = 3333, + [3392] = 3375, + [3393] = 3366, + [3394] = 3394, + [3395] = 3325, + [3396] = 3396, + [3397] = 3337, + [3398] = 3333, + [3399] = 3337, + [3400] = 3334, + [3401] = 3401, + [3402] = 3402, + [3403] = 3403, + [3404] = 3337, + [3405] = 3405, + [3406] = 3320, + [3407] = 3407, + [3408] = 3408, + [3409] = 3409, + [3410] = 3347, + [3411] = 3337, + [3412] = 3337, + [3413] = 3413, + [3414] = 3414, + [3415] = 3366, + [3416] = 3320, + [3417] = 3417, + [3418] = 3335, + [3419] = 3419, + [3420] = 3420, + [3421] = 3328, + [3422] = 3342, + [3423] = 3368, + [3424] = 3383, + [3425] = 3414, + [3426] = 3341, + [3427] = 3337, + [3428] = 3320, + [3429] = 3429, + [3430] = 3420, + [3431] = 3347, + [3432] = 3320, + [3433] = 3408, + [3434] = 3329, + [3435] = 3435, + [3436] = 3242, + [3437] = 3437, + [3438] = 3320, + [3439] = 3439, + [3440] = 3440, + [3441] = 3333, + [3442] = 3442, + [3443] = 3328, + [3444] = 3337, + [3445] = 3445, + [3446] = 3366, + [3447] = 3337, + [3448] = 3402, + [3449] = 3449, + [3450] = 3338, + [3451] = 3339, + [3452] = 3452, + [3453] = 3396, + [3454] = 3320, + [3455] = 3420, + [3456] = 3368, + [3457] = 3337, + [3458] = 3370, + [3459] = 3370, + [3460] = 3437, + [3461] = 3461, + [3462] = 3417, + [3463] = 3333, + [3464] = 3452, + [3465] = 3440, + [3466] = 3417, + [3467] = 3467, + [3468] = 558, + [3469] = 3417, + [3470] = 3470, + [3471] = 3417, + [3472] = 3337, + [3473] = 3417, + [3474] = 3440, + [3475] = 3417, + [3476] = 3379, + [3477] = 3417, + [3478] = 3328, + [3479] = 3336, + [3480] = 3480, + [3481] = 3449, + [3482] = 3482, + [3483] = 3483, + [3484] = 3484, + [3485] = 3440, + [3486] = 3486, + [3487] = 3325, + [3488] = 3337, + [3489] = 3320, + [3490] = 3370, + [3491] = 3417, + [3492] = 3366, + [3493] = 3442, + [3494] = 3381, + [3495] = 3324, + [3496] = 3371, + [3497] = 3334, + [3498] = 3498, + [3499] = 3409, + [3500] = 3442, + [3501] = 3420, + [3502] = 3483, + [3503] = 3337, + [3504] = 3504, + [3505] = 3403, + [3506] = 3320, + [3507] = 3507, + [3508] = 3320, + [3509] = 3509, + [3510] = 3510, + [3511] = 3511, + [3512] = 3337, + [3513] = 3320, + [3514] = 3514, + [3515] = 3335, + [3516] = 3337, + [3517] = 3320, + [3518] = 3366, + [3519] = 3420, + [3520] = 3520, + [3521] = 3521, + [3522] = 3370, + [3523] = 3523, + [3524] = 3445, + [3525] = 3525, + [3526] = 3420, + [3527] = 3333, + [3528] = 3514, + [3529] = 3370, + [3530] = 3387, + [3531] = 3531, + [3532] = 3439, + [3533] = 3420, + [3534] = 3370, + [3535] = 3480, + [3536] = 3536, + [3537] = 3368, + [3538] = 3346, + [3539] = 3539, + [3540] = 3337, + [3541] = 3541, + [3542] = 3420, + [3543] = 3333, + [3544] = 3370, + [3545] = 3521, + [3546] = 3417, + [3547] = 3366, + [3548] = 3548, + [3549] = 3401, + [3550] = 3340, + [3551] = 3320, + [3552] = 3552, + [3553] = 3324, + [3554] = 3353, + [3555] = 3420, + [3556] = 3556, + [3557] = 3557, + [3558] = 3370, + [3559] = 3337, + [3560] = 3347, + [3561] = 3484, + [3562] = 3346, + [3563] = 3333, + [3564] = 3557, + [3565] = 3419, + [3566] = 3440, + [3567] = 3370, + [3568] = 3429, + [3569] = 3539, + [3570] = 3461, + [3571] = 3347, + [3572] = 3429, + [3573] = 3320, + [3574] = 3333, + [3575] = 3374, + [3576] = 3334, + [3577] = 3577, + [3578] = 3536, + [3579] = 3504, + [3580] = 3580, + [3581] = 3333, + [3582] = 3413, + [3583] = 3366, + [3584] = 3328, + [3585] = 3585, + [3586] = 3507, + [3587] = 3366, + [3588] = 3588, + [3589] = 3355, + [3590] = 3420, + [3591] = 3334, + [3592] = 3592, + [3593] = 3370, + [3594] = 3320, + [3595] = 3449, + [3596] = 3324, + [3597] = 3420, + [3598] = 3337, + [3599] = 3334, + [3600] = 3370, + [3601] = 3328, + [3602] = 3321, + [3603] = 3509, + [3604] = 3420, + [3605] = 3337, + [3606] = 3334, + [3607] = 3370, + [3608] = 3608, + [3609] = 3320, + [3610] = 3328, + [3611] = 3394, + [3612] = 3333, + [3613] = 3484, + [3614] = 3510, + [3615] = 3470, + [3616] = 3405, + [3617] = 3429, + [3618] = 3552, + [3619] = 3548, + [3620] = 3585, + [3621] = 3330, + [3622] = 3442, + [3623] = 3623, + [3624] = 3556, + [3625] = 3328, + [3626] = 3337, + [3627] = 3337, + [3628] = 3628, + [3629] = 3320, + [3630] = 3389, + [3631] = 3328, + [3632] = 3486, + [3633] = 3366, + [3634] = 3634, + [3635] = 3369, + [3636] = 3337, + [3637] = 3420, + [3638] = 3511, + [3639] = 3639, + [3640] = 3370, + [3641] = 3320, + [3642] = 3642, + [3643] = 3608, + [3644] = 3420, + [3645] = 3320, + [3646] = 3642, + [3647] = 3370, + [3648] = 3333, + [3649] = 3531, + [3650] = 3577, + [3651] = 3420, + [3652] = 3369, + [3653] = 3435, + [3654] = 3370, + [3655] = 3655, + [3656] = 3656, + [3657] = 3334, + [3658] = 3658, + [3659] = 3639, + [3660] = 3484, + [3661] = 3484, + [3662] = 3484, + [3663] = 3484, + [3664] = 3484, + [3665] = 3484, + [3666] = 3484, + [3667] = 3484, + [3668] = 3484, + [3669] = 3484, + [3670] = 3484, + [3671] = 3320, + [3672] = 3337, + [3673] = 3369, + [3674] = 3320, + [3675] = 3420, + [3676] = 3334, + [3677] = 3520, + [3678] = 3656, + [3679] = 3327, + [3680] = 3366, + [3681] = 3370, + [3682] = 3634, + [3683] = 3364, + [3684] = 3484, + [3685] = 3337, + [3686] = 3325, + [3687] = 3334, + [3688] = 3320, + [3689] = 3333, + [3690] = 3420, + [3691] = 3442, + [3692] = 3525, + [3693] = 3693, + [3694] = 3580, + [3695] = 3693, + [3696] = 3337, + [3697] = 3655, + [3698] = 3386, + [3699] = 3349, + [3700] = 3484, + [3701] = 3337, + [3702] = 3320, + [3703] = 3449, + [3704] = 3420, + [3705] = 3337, + [3706] = 3325, + [3707] = 3484, + [3708] = 3484, + [3709] = 3370, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -4982,82 +5900,81 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(44); + if (eof) ADVANCE(38); ADVANCE_MAP( - '!', 71, - '"', 124, - '#', 45, - '$', 130, - '%', 76, - '&', 83, - '\'', 114, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 73, - '.', 52, - '/', 78, - '0', 104, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '@', 65, - '[', 60, - '\\', 34, - ']', 61, - '^', 85, - '_', 102, - 'e', 141, - 'i', 140, - '{', 131, - '|', 84, - '}', 55, - '~', 70, + '!', 62, + '"', 114, + '#', 39, + '$', 120, + '%', 67, + '&', 73, + '\'', 104, + '(', 47, + ')', 48, + '*', 46, + '+', 69, + ',', 52, + '-', 64, + '.', 45, + '/', 68, + '0', 94, + ':', 51, + '<', 81, + '=', 89, + '>', 84, + '?', 57, + '@', 59, + '[', 54, + '\\', 29, + ']', 55, + '^', 75, + '_', 92, + 'e', 128, + '{', 50, + '|', 74, + '}', 49, + '~', 61, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(41); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(145); + lookahead == 0xfeff) SKIP(36); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(130); END_STATE(); case 1: ADVANCE_MAP( - '!', 71, - '"', 124, - '$', 33, - '%', 76, - '&', 83, - '\'', 114, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 73, - '.', 52, - '/', 78, - '0', 104, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '[', 60, - '^', 85, - '_', 102, - '{', 56, - '|', 84, - '~', 70, + '!', 62, + '"', 114, + '$', 28, + '%', 67, + '&', 73, + '\'', 104, + '(', 47, + ')', 48, + '*', 46, + '+', 69, + ',', 52, + '-', 64, + '.', 45, + '/', 68, + '0', 94, + ':', 51, + '<', 81, + '=', 89, + '>', 84, + '?', 57, + '[', 54, + '^', 75, + '_', 92, + '{', 50, + '|', 74, + '~', 61, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -5065,30 +5982,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(1); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 2: ADVANCE_MAP( - '!', 71, - '%', 76, - '&', 83, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 73, - '.', 52, - '/', 78, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '[', 60, - '^', 85, - '|', 84, - '~', 70, + '!', 62, + '%', 67, + '&', 73, + '(', 47, + ')', 48, + '*', 46, + '+', 69, + ',', 52, + '-', 63, + '.', 45, + '/', 68, + ':', 51, + '<', 81, + '=', 89, + '>', 84, + '?', 57, + '@', 59, + '[', 54, + ']', 55, + '^', 75, + '{', 50, + '|', 74, + '~', 61, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -5098,35 +6018,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(2); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 3: ADVANCE_MAP( - '!', 71, - '%', 76, - '&', 83, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 72, - '.', 52, - '/', 78, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '@', 65, - '[', 60, - ']', 61, - '^', 85, - '{', 56, - '|', 84, - '}', 55, - '~', 70, + '"', 114, + '\'', 104, + '(', 47, + ')', 48, + ',', 52, + '-', 20, + '.', 44, + '/', 16, + '0', 94, + ':', 51, + '<', 80, + '=', 88, + '>', 83, + '?', 56, + '@', 59, + '[', 54, + ']', 55, + '_', 92, + '{', 50, + '}', 49, ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -5134,32 +6051,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(3); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 4: ADVANCE_MAP( - '"', 124, - '\'', 114, - '(', 53, - ')', 54, - ',', 58, - '-', 22, - '.', 51, - '/', 13, - '0', 104, - ':', 57, - '<', 90, - '=', 100, - '>', 93, - '?', 62, - '[', 60, - ']', 61, - '_', 102, - '{', 56, - '}', 55, + '"', 114, + '\'', 104, + '(', 47, + ')', 48, + ',', 52, + '-', 20, + '.', 44, + '/', 16, + '0', 94, + ':', 51, + '<', 80, + '=', 90, + '>', 83, + '?', 56, + '[', 54, + ']', 55, + '_', 92, + '{', 50, + '}', 49, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -5167,144 +6083,137 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(4); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 5: - ADVANCE_MAP( - '"', 124, - '\'', 114, - '(', 53, - ')', 54, - ',', 58, - '-', 22, - '/', 13, - '0', 104, - ':', 57, - '<', 90, - '=', 98, - '>', 93, - '?', 62, - '@', 65, - '[', 60, - ']', 61, - '_', 102, - '{', 56, - '}', 55, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (lookahead == '"') ADVANCE(114); + if (lookahead == '/') ADVANCE(116); + if (lookahead == '\\') ADVANCE(118); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(5); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + lookahead == 0xfeff) ADVANCE(117); + if (lookahead != 0) ADVANCE(115); END_STATE(); case 6: - if (lookahead == '"') ADVANCE(124); - if (lookahead == '/') ADVANCE(126); - if (lookahead == '\\') ADVANCE(128); + ADVANCE_MAP( + '"', 105, + '$', 120, + '\'', 104, + '.', 44, + '/', 110, + '0', 94, + ':', 51, + '=', 111, + '?', 56, + '[', 54, + '\\', 113, + '_', 92, + '{', 50, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(127); - if (lookahead != 0) ADVANCE(125); + lookahead == 0xfeff) ADVANCE(106); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 7: ADVANCE_MAP( - '"', 115, - '$', 130, - '\'', 114, - '.', 51, - '/', 120, - '0', 104, - ':', 57, - '=', 121, - '?', 62, - '[', 60, - '\\', 123, - '_', 102, - '{', 56, + '"', 105, + '$', 120, + '\'', 104, + '/', 110, + '0', 94, + '[', 54, + '\\', 113, + '_', 92, + '{', 50, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(116); + lookahead == 0xfeff) ADVANCE(107); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); - if (lookahead != 0) ADVANCE(115); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 8: ADVANCE_MAP( - '"', 115, - '$', 130, - '\'', 114, - '/', 120, - '0', 104, - '[', 60, - '\\', 123, - '_', 102, - '{', 56, + '$', 120, + '\'', 104, + '.', 44, + '/', 110, + ':', 51, + '=', 111, + '?', 56, + '\\', 113, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(117); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); - if (lookahead != 0) ADVANCE(115); + lookahead == 0xfeff) ADVANCE(108); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 9: - ADVANCE_MAP( - '$', 130, - '\'', 114, - '.', 51, - '/', 120, - ':', 57, - '=', 121, - '?', 62, - '\\', 123, - ); + if (lookahead == '$') ADVANCE(120); + if (lookahead == '\'') ADVANCE(104); + if (lookahead == '/') ADVANCE(110); + if (lookahead == '\\') ADVANCE(113); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(118); - if (lookahead != 0) ADVANCE(115); + lookahead == 0xfeff) ADVANCE(109); + if (lookahead != 0) ADVANCE(105); END_STATE(); case 10: - if (lookahead == '$') ADVANCE(130); - if (lookahead == '\'') ADVANCE(114); - if (lookahead == '/') ADVANCE(120); - if (lookahead == '\\') ADVANCE(123); + ADVANCE_MAP( + '(', 47, + ')', 48, + ',', 52, + '-', 20, + '/', 16, + '=', 88, + '>', 83, + '{', 50, + ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(119); - if (lookahead != 0) ADVANCE(115); + lookahead == 0xfeff) SKIP(10); + if (('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 11: ADVANCE_MAP( - '(', 53, - ')', 54, - ',', 58, - '-', 22, - '/', 13, - '=', 98, - '>', 93, - '{', 56, + '(', 47, + ')', 48, + ',', 52, + '.', 44, + '/', 16, + ':', 51, + '<', 80, + '=', 90, + '?', 56, + ']', 55, + '{', 50, + '}', 49, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || @@ -5314,23 +6223,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0xfeff) SKIP(11); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 12: - ADVANCE_MAP( - '(', 53, - ')', 54, - ',', 58, - '.', 51, - '/', 13, - ':', 57, - '<', 90, - '=', 23, - '?', 62, - ']', 61, - '{', 56, - '}', 55, - ); + if (lookahead == '(') ADVANCE(47); + if (lookahead == '/') ADVANCE(16); + if (lookahead == '0') ADVANCE(98); + if (lookahead == '_') ADVANCE(96); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(99); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || @@ -5338,865 +6238,722 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 0x2060 || lookahead == 0xfeff) SKIP(12); if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); case 13: - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); - END_STATE(); - case 14: - if (lookahead == '*') ADVANCE(14); - if (lookahead == '/') ADVANCE(135); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 15: - if (lookahead == '*') ADVANCE(14); - if (lookahead != 0) ADVANCE(15); - END_STATE(); - case 16: - if (lookahead == '.') ADVANCE(101); - END_STATE(); - case 17: - if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(108); - if (lookahead == '_') ADVANCE(106); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(109); + if (lookahead == '(') ADVANCE(47); + if (lookahead == '/') ADVANCE(16); + if (lookahead == '0') ADVANCE(98); + if (lookahead == 'e') ADVANCE(25); + if (lookahead == 'i') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(17); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + lookahead == 0xfeff) SKIP(14); + if (('1' <= lookahead && lookahead <= '9') || + lookahead == '_') ADVANCE(99); END_STATE(); - case 18: - if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(108); - if (lookahead == 'e') ADVANCE(30); - if (lookahead == 'i') ADVANCE(28); + case 14: + if (lookahead == '(') ADVANCE(47); + if (lookahead == '/') ADVANCE(16); + if (lookahead == '0') ADVANCE(98); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(19); + lookahead == 0xfeff) SKIP(14); if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == '_') ADVANCE(99); END_STATE(); - case 19: - if (lookahead == '/') ADVANCE(13); - if (lookahead == '0') ADVANCE(108); + case 15: + if (lookahead == '*') ADVANCE(46); + if (lookahead == '/') ADVANCE(16); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(19); - if (('1' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == 0xfeff) SKIP(15); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(135); + if (lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); + END_STATE(); + case 16: + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); + END_STATE(); + case 17: + if (lookahead == '*') ADVANCE(17); + if (lookahead == '/') ADVANCE(124); + if (lookahead != 0) ADVANCE(18); + END_STATE(); + case 18: + if (lookahead == '*') ADVANCE(17); + if (lookahead != 0) ADVANCE(18); + END_STATE(); + case 19: + if (lookahead == '.') ADVANCE(91); END_STATE(); case 20: - if (lookahead == '/') ADVANCE(13); - if (lookahead == 'e') ADVANCE(142); - if (lookahead == '{') ADVANCE(56); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(20); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + if (lookahead == '>') ADVANCE(58); END_STATE(); case 21: - if (lookahead == '/') ADVANCE(13); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(21); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(150); - if (lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + if (lookahead == 'd') ADVANCE(41); END_STATE(); case 22: - if (lookahead == '>') ADVANCE(64); + if (lookahead == 'e') ADVANCE(53); END_STATE(); case 23: - if (lookahead == '>') ADVANCE(96); + if (lookahead == 'e') ADVANCE(43); END_STATE(); case 24: - if (lookahead == 'd') ADVANCE(48); + if (lookahead == 'f') ADVANCE(40); END_STATE(); case 25: - if (lookahead == 'e') ADVANCE(59); + if (lookahead == 'l') ADVANCE(27); + if (lookahead == 'n') ADVANCE(21); END_STATE(); case 26: - if (lookahead == 'e') ADVANCE(50); + if (lookahead == 'p') ADVANCE(22); END_STATE(); case 27: - if (lookahead == 'f') ADVANCE(69); + if (lookahead == 's') ADVANCE(23); END_STATE(); case 28: - if (lookahead == 'f') ADVANCE(46); + if (lookahead == 't') ADVANCE(30); END_STATE(); case 29: - if (lookahead == 'i') ADVANCE(27); + if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'x') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); case 30: - if (lookahead == 'l') ADVANCE(32); - if (lookahead == 'n') ADVANCE(24); + if (lookahead == 'y') ADVANCE(26); END_STATE(); case 31: - if (lookahead == 'p') ADVANCE(25); - END_STATE(); - case 32: - if (lookahead == 's') ADVANCE(26); - END_STATE(); - case 33: - if (lookahead == 't') ADVANCE(35); - END_STATE(); - case 34: - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(134); - if (lookahead != 0) ADVANCE(132); - END_STATE(); - case 35: - if (lookahead == 'y') ADVANCE(31); - END_STATE(); - case 36: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(132); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(121); END_STATE(); - case 37: + case 32: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(31); END_STATE(); - case 38: + case 33: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(32); END_STATE(); - case 39: + case 34: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(38); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); END_STATE(); - case 40: + case 35: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); - END_STATE(); - case 41: - if (eof) ADVANCE(44); - ADVANCE_MAP( - '!', 71, - '"', 124, - '#', 45, - '$', 130, - '%', 76, - '&', 83, - '\'', 114, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 73, - '.', 52, - '/', 78, - '0', 104, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '@', 65, - '[', 60, - ']', 61, - '^', 85, - '_', 102, - 'e', 142, - '{', 56, - '|', 84, - '}', 55, - '~', 70, - ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == 0xa0 || - lookahead == 0x200b || - lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(41); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(145); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); - case 42: - if (eof) ADVANCE(44); + case 36: + if (eof) ADVANCE(38); ADVANCE_MAP( - '!', 71, - '"', 124, - '#', 45, - '$', 33, - '%', 76, - '&', 83, - '\'', 114, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 72, - '.', 52, - '/', 78, - '0', 104, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '@', 65, - '[', 60, - ']', 61, - '^', 85, - '_', 102, - 'e', 142, - '{', 56, - '|', 84, - '}', 55, - '~', 70, + '!', 62, + '"', 114, + '#', 39, + '$', 120, + '%', 67, + '&', 73, + '\'', 104, + '(', 47, + ')', 48, + '*', 46, + '+', 69, + ',', 52, + '-', 64, + '.', 45, + '/', 68, + '0', 94, + ':', 51, + '<', 81, + '=', 89, + '>', 84, + '?', 57, + '@', 59, + '[', 54, + ']', 55, + '^', 75, + '_', 92, + '{', 50, + '|', 74, + '}', 49, + '~', 61, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(42); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + lookahead == 0xfeff) SKIP(36); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(130); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 43: - if (eof) ADVANCE(44); + case 37: + if (eof) ADVANCE(38); ADVANCE_MAP( - '!', 71, - '"', 124, - '#', 45, - '$', 33, - '%', 76, - '&', 83, - '\'', 114, - '(', 53, - ')', 54, - '*', 77, - '+', 79, - ',', 58, - '-', 72, - '.', 52, - '/', 78, - '0', 104, - ':', 57, - '<', 91, - '=', 99, - '>', 94, - '?', 63, - '@', 65, - '[', 60, - ']', 61, - '^', 85, - '_', 102, - '{', 56, - '|', 84, - '}', 55, - '~', 70, + '!', 62, + '"', 114, + '#', 39, + '$', 28, + '%', 67, + '&', 73, + '\'', 104, + '(', 47, + ')', 48, + '*', 46, + '+', 69, + ',', 52, + '-', 63, + '.', 45, + '/', 68, + '0', 94, + ':', 51, + '<', 81, + '=', 89, + '>', 84, + '?', 57, + '@', 59, + '[', 54, + ']', 55, + '^', 75, + '_', 92, + '{', 50, + '|', 74, + '}', 49, + '~', 61, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) SKIP(43); + lookahead == 0xfeff) SKIP(37); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 44: + case 38: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 45: + case 39: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 46: - ACCEPT_TOKEN(aux_sym_preprocessor_statement_token1); - END_STATE(); - case 47: + case 40: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token1); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); END_STATE(); - case 48: + case 41: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); END_STATE(); - case 49: + case 42: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 50: + case 43: ACCEPT_TOKEN(aux_sym_preprocessor_statement_token2); - if (lookahead == 'i') ADVANCE(28); + if (lookahead == 'i') ADVANCE(24); END_STATE(); - case 51: + case 44: ACCEPT_TOKEN(anon_sym_DOT); END_STATE(); - case 52: + case 45: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(16); + if (lookahead == '.') ADVANCE(19); END_STATE(); - case 53: + case 46: + ACCEPT_TOKEN(anon_sym_STAR); + END_STATE(); + case 47: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 54: + case 48: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 55: + case 49: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 56: + case 50: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 57: + case 51: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 58: + case 52: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 59: + case 53: ACCEPT_TOKEN(anon_sym_DOLLARtype); END_STATE(); - case 60: + case 54: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 61: + case 55: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 62: + case 56: ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); - case 63: + case 57: ACCEPT_TOKEN(anon_sym_QMARK); - if (lookahead == '?') ADVANCE(97); + if (lookahead == '?') ADVANCE(87); END_STATE(); - case 64: + case 58: ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); - case 65: + case 59: ACCEPT_TOKEN(anon_sym_AT); - if (lookahead == ':') ADVANCE(66); + if (lookahead == ':') ADVANCE(60); END_STATE(); - case 66: + case 60: ACCEPT_TOKEN(anon_sym_AT_COLON); END_STATE(); - case 67: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ' ') ADVANCE(29); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'i') ADVANCE(140); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - END_STATE(); - case 68: - ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ' ') ADVANCE(29); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - END_STATE(); - case 69: - ACCEPT_TOKEN(anon_sym_elseif); - END_STATE(); - case 70: + case 61: ACCEPT_TOKEN(anon_sym_TILDE); END_STATE(); - case 71: + case 62: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(89); + if (lookahead == '=') ADVANCE(79); END_STATE(); - case 72: + case 63: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(75); + if (lookahead == '-') ADVANCE(66); END_STATE(); - case 73: + case 64: ACCEPT_TOKEN(anon_sym_DASH); - if (lookahead == '-') ADVANCE(75); - if (lookahead == '>') ADVANCE(64); + if (lookahead == '-') ADVANCE(66); + if (lookahead == '>') ADVANCE(58); END_STATE(); - case 74: + case 65: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); - case 75: + case 66: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 76: + case 67: ACCEPT_TOKEN(anon_sym_PERCENT); END_STATE(); - case 77: - ACCEPT_TOKEN(anon_sym_STAR); - END_STATE(); - case 78: + case 68: ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); END_STATE(); - case 79: + case 69: ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(74); + if (lookahead == '+') ADVANCE(65); END_STATE(); - case 80: + case 70: ACCEPT_TOKEN(anon_sym_LT_LT); END_STATE(); - case 81: + case 71: ACCEPT_TOKEN(anon_sym_GT_GT); - if (lookahead == '>') ADVANCE(82); + if (lookahead == '>') ADVANCE(72); END_STATE(); - case 82: + case 72: ACCEPT_TOKEN(anon_sym_GT_GT_GT); END_STATE(); - case 83: + case 73: ACCEPT_TOKEN(anon_sym_AMP); - if (lookahead == '&') ADVANCE(86); + if (lookahead == '&') ADVANCE(76); END_STATE(); - case 84: + case 74: ACCEPT_TOKEN(anon_sym_PIPE); - if (lookahead == '|') ADVANCE(87); + if (lookahead == '|') ADVANCE(77); END_STATE(); - case 85: + case 75: ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); - case 86: + case 76: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 87: + case 77: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 88: + case 78: ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); - case 89: + case 79: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 90: + case 80: ACCEPT_TOKEN(anon_sym_LT); END_STATE(); - case 91: + case 81: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '<') ADVANCE(80); - if (lookahead == '=') ADVANCE(92); + if (lookahead == '<') ADVANCE(70); + if (lookahead == '=') ADVANCE(82); END_STATE(); - case 92: + case 82: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 93: + case 83: ACCEPT_TOKEN(anon_sym_GT); END_STATE(); - case 94: + case 84: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(95); - if (lookahead == '>') ADVANCE(81); + if (lookahead == '=') ADVANCE(85); + if (lookahead == '>') ADVANCE(71); END_STATE(); - case 95: + case 85: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 96: + case 86: ACCEPT_TOKEN(anon_sym_EQ_GT); END_STATE(); - case 97: + case 87: ACCEPT_TOKEN(anon_sym_QMARK_QMARK); END_STATE(); - case 98: + case 88: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 99: + case 89: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(88); - if (lookahead == '>') ADVANCE(96); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(86); END_STATE(); - case 100: + case 90: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '>') ADVANCE(96); + if (lookahead == '>') ADVANCE(86); END_STATE(); - case 101: - ACCEPT_TOKEN(sym__rangeOperator); + case 91: + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); END_STATE(); - case 102: + case 92: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(111); - if (lookahead == '_') ADVANCE(102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); + if (lookahead == '.') ADVANCE(101); + if (lookahead == '_') ADVANCE(92); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 103: + case 93: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(111); - if (lookahead == '_') ADVANCE(105); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(103); + if (lookahead == '.') ADVANCE(101); + if (lookahead == '_') ADVANCE(95); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(93); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); - case 104: + case 94: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(111); - if (lookahead == 'x') ADVANCE(40); + if (lookahead == '.') ADVANCE(101); + if (lookahead == 'x') ADVANCE(35); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); + lookahead == '_') ADVANCE(95); END_STATE(); - case 105: + case 95: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '.') ADVANCE(111); + if (lookahead == '.') ADVANCE(101); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(105); + lookahead == '_') ADVANCE(95); END_STATE(); - case 106: + case 96: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(106); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + if (lookahead == '_') ADVANCE(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 107: + case 97: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == '_') ADVANCE(109); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(107); + if (lookahead == '_') ADVANCE(99); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(97); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); - case 108: + case 98: ACCEPT_TOKEN(aux_sym_integer_token1); - if (lookahead == 'x') ADVANCE(40); + if (lookahead == 'x') ADVANCE(35); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == '_') ADVANCE(99); END_STATE(); - case 109: + case 99: ACCEPT_TOKEN(aux_sym_integer_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(109); + lookahead == '_') ADVANCE(99); END_STATE(); - case 110: + case 100: ACCEPT_TOKEN(aux_sym_integer_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(110); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); END_STATE(); - case 111: + case 101: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == '.') ADVANCE(111); - if (lookahead == 'e') ADVANCE(113); + if (lookahead == '.') ADVANCE(101); + if (lookahead == 'e') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(112); + lookahead == '_') ADVANCE(102); END_STATE(); - case 112: + case 102: ACCEPT_TOKEN(aux_sym_float_token1); - if (lookahead == 'e') ADVANCE(113); + if (lookahead == 'e') ADVANCE(103); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(112); + lookahead == '_') ADVANCE(102); END_STATE(); - case 113: + case 103: ACCEPT_TOKEN(aux_sym_float_token2); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(113); + lookahead == '_') ADVANCE(103); END_STATE(); - case 114: + case 104: ACCEPT_TOKEN(aux_sym_string_token1); END_STATE(); - case 115: + case 105: ACCEPT_TOKEN(aux_sym_string_token2); END_STATE(); - case 116: + case 106: ACCEPT_TOKEN(aux_sym_string_token2); ADVANCE_MAP( - '"', 115, - '$', 130, - '.', 51, - '/', 120, - '0', 104, - ':', 57, - '=', 121, - '?', 62, - '[', 60, - '_', 102, - '{', 56, + '"', 105, + '$', 120, + '.', 44, + '/', 110, + '0', 94, + ':', 51, + '=', 111, + '?', 56, + '[', 54, + '_', 92, + '{', 50, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(116); + lookahead == 0xfeff) ADVANCE(106); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 117: + case 107: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '"') ADVANCE(115); - if (lookahead == '$') ADVANCE(130); - if (lookahead == '/') ADVANCE(120); - if (lookahead == '0') ADVANCE(104); - if (lookahead == '[') ADVANCE(60); - if (lookahead == '_') ADVANCE(102); - if (lookahead == '{') ADVANCE(56); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(105); + if (lookahead == '"') ADVANCE(105); + if (lookahead == '$') ADVANCE(120); + if (lookahead == '/') ADVANCE(110); + if (lookahead == '0') ADVANCE(94); + if (lookahead == '[') ADVANCE(54); + if (lookahead == '_') ADVANCE(92); + if (lookahead == '{') ADVANCE(50); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(95); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(117); + lookahead == 0xfeff) ADVANCE(107); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(122); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(112); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 118: + case 108: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(130); - if (lookahead == '.') ADVANCE(51); - if (lookahead == '/') ADVANCE(120); - if (lookahead == ':') ADVANCE(57); - if (lookahead == '=') ADVANCE(121); - if (lookahead == '?') ADVANCE(62); + if (lookahead == '$') ADVANCE(120); + if (lookahead == '.') ADVANCE(44); + if (lookahead == '/') ADVANCE(110); + if (lookahead == ':') ADVANCE(51); + if (lookahead == '=') ADVANCE(111); + if (lookahead == '?') ADVANCE(56); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(118); + lookahead == 0xfeff) ADVANCE(108); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 119: + case 109: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '$') ADVANCE(130); - if (lookahead == '/') ADVANCE(120); + if (lookahead == '$') ADVANCE(120); + if (lookahead == '/') ADVANCE(110); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(119); + lookahead == 0xfeff) ADVANCE(109); if (lookahead != 0 && - lookahead != '\'') ADVANCE(115); + lookahead != '\'') ADVANCE(105); END_STATE(); - case 120: + case 110: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); END_STATE(); - case 121: + case 111: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '>') ADVANCE(96); + if (lookahead == '>') ADVANCE(86); END_STATE(); - case 122: + case 112: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 123: + case 113: ACCEPT_TOKEN(aux_sym_string_token2); - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(134); - if (lookahead != 0) ADVANCE(132); + if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'x') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 124: + case 114: ACCEPT_TOKEN(aux_sym_string_token3); END_STATE(); - case 125: + case 115: ACCEPT_TOKEN(aux_sym_string_token4); END_STATE(); - case 126: + case 116: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '*') ADVANCE(15); - if (lookahead == '/') ADVANCE(136); + if (lookahead == '*') ADVANCE(18); + if (lookahead == '/') ADVANCE(125); END_STATE(); - case 127: + case 117: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == '/') ADVANCE(126); + if (lookahead == '/') ADVANCE(116); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == 0xa0 || lookahead == 0x200b || lookahead == 0x2060 || - lookahead == 0xfeff) ADVANCE(127); + lookahead == 0xfeff) ADVANCE(117); if (lookahead != 0 && - lookahead != '"') ADVANCE(125); + lookahead != '"') ADVANCE(115); END_STATE(); - case 128: + case 118: ACCEPT_TOKEN(aux_sym_string_token4); - if (lookahead == 'u') ADVANCE(39); - if (lookahead == 'x') ADVANCE(37); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(134); - if (lookahead != 0) ADVANCE(132); + if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'x') ADVANCE(32); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(123); + if (lookahead != 0) ADVANCE(121); END_STATE(); - case 129: + case 119: ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); END_STATE(); - case 130: + case 120: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '{') ADVANCE(129); - END_STATE(); - case 131: - ACCEPT_TOKEN(anon_sym_LBRACE2); + if (lookahead == '{') ADVANCE(119); END_STATE(); - case 132: + case 121: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 133: + case 122: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(132); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(121); END_STATE(); - case 134: + case 123: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(133); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(122); END_STATE(); - case 135: + case 124: ACCEPT_TOKEN(sym_comment); END_STATE(); - case 136: + case 125: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(136); - END_STATE(); - case 137: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'd') ADVANCE(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - END_STATE(); - case 138: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'e') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + lookahead != '\n') ADVANCE(125); END_STATE(); - case 139: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'e') ADVANCE(68); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - END_STATE(); - case 140: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'f') ADVANCE(47); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); - END_STATE(); - case 141: + case 126: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'l') ADVANCE(143); - if (lookahead == 'n') ADVANCE(137); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 'd') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 142: + case 127: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 'l') ADVANCE(144); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 'e') ADVANCE(42); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 143: + case 128: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 's') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 'l') ADVANCE(129); + if (lookahead == 'n') ADVANCE(126); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 144: + case 129: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (lookahead == 's') ADVANCE(139); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (lookahead == 's') ADVANCE(127); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 145: + case 130: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(145); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(130); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 146: + case 131: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(146); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(147); + if (lookahead == '_') ADVANCE(131); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(132); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(146); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); END_STATE(); - case 147: + case 132: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(147); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(132); END_STATE(); - case 148: + case 133: ACCEPT_TOKEN(sym__camelCaseIdentifier); - if (lookahead == '_') ADVANCE(148); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(148); + if (lookahead == '_') ADVANCE(133); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(149); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(134); END_STATE(); - case 149: + case 134: ACCEPT_TOKEN(sym__camelCaseIdentifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(149); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(134); END_STATE(); - case 150: + case 135: ACCEPT_TOKEN(sym__pascalCaseIdentifier); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(150); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); - case 151: + case 136: ACCEPT_TOKEN(sym__pascalCaseIdentifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(151); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(136); END_STATE(); default: return false; @@ -6261,560 +7018,561 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { END_STATE(); case 7: if (lookahead == 'b') ADVANCE(30); + if (lookahead == 's') ADVANCE(31); END_STATE(); case 8: - if (lookahead == 'r') ADVANCE(31); + if (lookahead == 'r') ADVANCE(32); END_STATE(); case 9: - if (lookahead == 'a') ADVANCE(32); - if (lookahead == 'l') ADVANCE(33); - if (lookahead == 'o') ADVANCE(34); + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'l') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); END_STATE(); case 10: - if (lookahead == 'e') ADVANCE(35); - if (lookahead == 'o') ADVANCE(36); - if (lookahead == 'y') ADVANCE(37); + if (lookahead == 'e') ADVANCE(36); + if (lookahead == 'o') ADVANCE(37); + if (lookahead == 'y') ADVANCE(38); END_STATE(); case 11: - if (lookahead == 'n') ADVANCE(38); - if (lookahead == 'x') ADVANCE(39); + if (lookahead == 'l') ADVANCE(39); + if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'x') ADVANCE(41); END_STATE(); case 12: - if (lookahead == 'a') ADVANCE(40); - if (lookahead == 'i') ADVANCE(41); - if (lookahead == 'o') ADVANCE(42); - if (lookahead == 'u') ADVANCE(43); + if (lookahead == 'a') ADVANCE(42); + if (lookahead == 'i') ADVANCE(43); + if (lookahead == 'o') ADVANCE(44); + if (lookahead == 'u') ADVANCE(45); END_STATE(); case 13: - if (lookahead == 'e') ADVANCE(44); + if (lookahead == 'e') ADVANCE(46); END_STATE(); case 14: - if (lookahead == 'f') ADVANCE(45); - if (lookahead == 'm') ADVANCE(46); - if (lookahead == 'n') ADVANCE(47); + if (lookahead == 'f') ADVANCE(47); + if (lookahead == 'm') ADVANCE(48); + if (lookahead == 'n') ADVANCE(49); END_STATE(); case 15: - if (lookahead == 'a') ADVANCE(48); + if (lookahead == 'a') ADVANCE(50); END_STATE(); case 16: - if (lookahead == 'e') ADVANCE(49); - if (lookahead == 'u') ADVANCE(50); + if (lookahead == 'e') ADVANCE(51); + if (lookahead == 'u') ADVANCE(52); END_STATE(); case 17: - if (lookahead == 'p') ADVANCE(51); - if (lookahead == 'v') ADVANCE(52); + if (lookahead == 'v') ADVANCE(53); END_STATE(); case 18: - if (lookahead == 'a') ADVANCE(53); - if (lookahead == 'r') ADVANCE(54); - if (lookahead == 'u') ADVANCE(55); + if (lookahead == 'a') ADVANCE(54); + if (lookahead == 'r') ADVANCE(55); + if (lookahead == 'u') ADVANCE(56); END_STATE(); case 19: - if (lookahead == 'e') ADVANCE(56); + if (lookahead == 'e') ADVANCE(57); END_STATE(); case 20: - if (lookahead == 'e') ADVANCE(57); - if (lookahead == 't') ADVANCE(58); - if (lookahead == 'w') ADVANCE(59); + if (lookahead == 'e') ADVANCE(58); + if (lookahead == 't') ADVANCE(59); + if (lookahead == 'w') ADVANCE(60); END_STATE(); case 21: - if (lookahead == 'h') ADVANCE(60); - if (lookahead == 'r') ADVANCE(61); - if (lookahead == 'y') ADVANCE(62); + if (lookahead == 'h') ADVANCE(61); + if (lookahead == 'r') ADVANCE(62); + if (lookahead == 'y') ADVANCE(63); END_STATE(); case 22: - if (lookahead == 'n') ADVANCE(63); - if (lookahead == 's') ADVANCE(64); + if (lookahead == 'n') ADVANCE(64); + if (lookahead == 's') ADVANCE(65); END_STATE(); case 23: - if (lookahead == 'a') ADVANCE(65); + if (lookahead == 'a') ADVANCE(66); END_STATE(); case 24: - if (lookahead == 'h') ADVANCE(66); + if (lookahead == 'h') ADVANCE(67); END_STATE(); case 25: - if (lookahead == 'o') ADVANCE(67); + if (lookahead == 'o') ADVANCE(68); END_STATE(); case 26: - if (lookahead == 'o') ADVANCE(68); + if (lookahead == 'o') ADVANCE(69); END_STATE(); case 27: - if (lookahead == 't') ADVANCE(69); + if (lookahead == 't') ADVANCE(70); END_STATE(); case 28: - if (lookahead == 'l') ADVANCE(70); + if (lookahead == 'l') ADVANCE(71); END_STATE(); case 29: - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'i') ADVANCE(72); END_STATE(); case 30: - if (lookahead == 's') ADVANCE(72); + if (lookahead == 's') ADVANCE(73); END_STATE(); case 31: - if (lookahead == 'e') ADVANCE(73); + ACCEPT_TOKEN(anon_sym_as); END_STATE(); case 32: - if (lookahead == 's') ADVANCE(74); - if (lookahead == 't') ADVANCE(75); + if (lookahead == 'e') ADVANCE(74); END_STATE(); case 33: - if (lookahead == 'a') ADVANCE(76); + if (lookahead == 's') ADVANCE(75); + if (lookahead == 't') ADVANCE(76); END_STATE(); case 34: - if (lookahead == 'n') ADVANCE(77); + if (lookahead == 'a') ADVANCE(77); END_STATE(); case 35: - if (lookahead == 'f') ADVANCE(78); + if (lookahead == 'n') ADVANCE(78); END_STATE(); case 36: - ACCEPT_TOKEN(anon_sym_do); + if (lookahead == 'f') ADVANCE(79); END_STATE(); case 37: - if (lookahead == 'n') ADVANCE(79); + ACCEPT_TOKEN(anon_sym_do); END_STATE(); case 38: - if (lookahead == 'u') ADVANCE(80); + if (lookahead == 'n') ADVANCE(80); END_STATE(); case 39: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 's') ADVANCE(81); END_STATE(); case 40: - if (lookahead == 'l') ADVANCE(82); + if (lookahead == 'u') ADVANCE(82); END_STATE(); case 41: - if (lookahead == 'n') ADVANCE(83); + if (lookahead == 't') ADVANCE(83); END_STATE(); case 42: - if (lookahead == 'r') ADVANCE(84); + if (lookahead == 'l') ADVANCE(84); END_STATE(); case 43: if (lookahead == 'n') ADVANCE(85); END_STATE(); case 44: - if (lookahead == 't') ADVANCE(86); + if (lookahead == 'r') ADVANCE(86); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_if); + if (lookahead == 'n') ADVANCE(87); END_STATE(); case 46: - if (lookahead == 'p') ADVANCE(87); + if (lookahead == 't') ADVANCE(88); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_in); - if (lookahead == 'l') ADVANCE(88); - if (lookahead == 't') ADVANCE(89); + ACCEPT_TOKEN(anon_sym_if); END_STATE(); case 48: - if (lookahead == 'c') ADVANCE(90); + if (lookahead == 'p') ADVANCE(89); END_STATE(); case 49: - if (lookahead == 'v') ADVANCE(91); - if (lookahead == 'w') ADVANCE(92); + ACCEPT_TOKEN(anon_sym_in); + if (lookahead == 'l') ADVANCE(90); + if (lookahead == 't') ADVANCE(91); END_STATE(); case 50: - if (lookahead == 'l') ADVANCE(93); + if (lookahead == 'c') ADVANCE(92); END_STATE(); case 51: - if (lookahead == 'e') ADVANCE(94); + if (lookahead == 'v') ADVANCE(93); + if (lookahead == 'w') ADVANCE(94); END_STATE(); case 52: - if (lookahead == 'e') ADVANCE(95); + if (lookahead == 'l') ADVANCE(95); END_STATE(); case 53: - if (lookahead == 'c') ADVANCE(96); + if (lookahead == 'e') ADVANCE(96); END_STATE(); case 54: - if (lookahead == 'i') ADVANCE(97); + if (lookahead == 'c') ADVANCE(97); END_STATE(); case 55: - if (lookahead == 'b') ADVANCE(98); + if (lookahead == 'i') ADVANCE(98); END_STATE(); case 56: - if (lookahead == 't') ADVANCE(99); + if (lookahead == 'b') ADVANCE(99); END_STATE(); case 57: if (lookahead == 't') ADVANCE(100); END_STATE(); case 58: - if (lookahead == 'a') ADVANCE(101); + if (lookahead == 't') ADVANCE(101); END_STATE(); case 59: - if (lookahead == 'i') ADVANCE(102); + if (lookahead == 'a') ADVANCE(102); END_STATE(); case 60: if (lookahead == 'i') ADVANCE(103); - if (lookahead == 'r') ADVANCE(104); END_STATE(); case 61: - if (lookahead == 'u') ADVANCE(105); - if (lookahead == 'y') ADVANCE(106); + if (lookahead == 'i') ADVANCE(104); + if (lookahead == 'r') ADVANCE(105); END_STATE(); case 62: - if (lookahead == 'p') ADVANCE(107); + if (lookahead == 'u') ADVANCE(106); + if (lookahead == 'y') ADVANCE(107); END_STATE(); case 63: - if (lookahead == 't') ADVANCE(108); + if (lookahead == 'p') ADVANCE(108); END_STATE(); case 64: - if (lookahead == 'i') ADVANCE(109); + if (lookahead == 't') ADVANCE(109); END_STATE(); case 65: - if (lookahead == 'r') ADVANCE(110); + if (lookahead == 'i') ADVANCE(110); END_STATE(); case 66: - if (lookahead == 'i') ADVANCE(111); + if (lookahead == 'r') ADVANCE(111); END_STATE(); case 67: - if (lookahead == 'l') ADVANCE(112); + if (lookahead == 'i') ADVANCE(112); END_STATE(); case 68: - if (lookahead == 'a') ADVANCE(113); + if (lookahead == 'l') ADVANCE(113); END_STATE(); case 69: - ACCEPT_TOKEN(anon_sym_Int); + if (lookahead == 'a') ADVANCE(114); END_STATE(); case 70: - if (lookahead == 'l') ADVANCE(114); + ACCEPT_TOKEN(anon_sym_Int); END_STATE(); case 71: - if (lookahead == 'd') ADVANCE(115); + if (lookahead == 'l') ADVANCE(115); END_STATE(); case 72: - if (lookahead == 't') ADVANCE(116); + if (lookahead == 'd') ADVANCE(116); END_STATE(); case 73: - if (lookahead == 'a') ADVANCE(117); + if (lookahead == 't') ADVANCE(117); END_STATE(); case 74: - if (lookahead == 'e') ADVANCE(118); - if (lookahead == 't') ADVANCE(119); + if (lookahead == 'a') ADVANCE(118); END_STATE(); case 75: - if (lookahead == 'c') ADVANCE(120); + if (lookahead == 'e') ADVANCE(119); + if (lookahead == 't') ADVANCE(120); END_STATE(); case 76: - if (lookahead == 's') ADVANCE(121); + if (lookahead == 'c') ADVANCE(121); END_STATE(); case 77: - if (lookahead == 't') ADVANCE(122); + if (lookahead == 's') ADVANCE(122); END_STATE(); case 78: - if (lookahead == 'a') ADVANCE(123); + if (lookahead == 't') ADVANCE(123); END_STATE(); case 79: if (lookahead == 'a') ADVANCE(124); END_STATE(); case 80: - if (lookahead == 'm') ADVANCE(125); + if (lookahead == 'a') ADVANCE(125); END_STATE(); case 81: if (lookahead == 'e') ADVANCE(126); END_STATE(); case 82: - if (lookahead == 's') ADVANCE(127); + if (lookahead == 'm') ADVANCE(127); END_STATE(); case 83: - if (lookahead == 'a') ADVANCE(128); + if (lookahead == 'e') ADVANCE(128); END_STATE(); case 84: - ACCEPT_TOKEN(anon_sym_for); + if (lookahead == 's') ADVANCE(129); END_STATE(); case 85: - if (lookahead == 'c') ADVANCE(129); + if (lookahead == 'a') ADVANCE(130); END_STATE(); case 86: - ACCEPT_TOKEN(anon_sym_get); + ACCEPT_TOKEN(anon_sym_for); END_STATE(); case 87: - if (lookahead == 'l') ADVANCE(130); - if (lookahead == 'o') ADVANCE(131); + if (lookahead == 'c') ADVANCE(131); END_STATE(); case 88: - if (lookahead == 'i') ADVANCE(132); + ACCEPT_TOKEN(anon_sym_get); END_STATE(); case 89: - if (lookahead == 'e') ADVANCE(133); + if (lookahead == 'l') ADVANCE(132); + if (lookahead == 'o') ADVANCE(133); END_STATE(); case 90: - if (lookahead == 'r') ADVANCE(134); + if (lookahead == 'i') ADVANCE(134); END_STATE(); case 91: if (lookahead == 'e') ADVANCE(135); END_STATE(); case 92: - ACCEPT_TOKEN(anon_sym_new); + if (lookahead == 'r') ADVANCE(136); END_STATE(); case 93: - if (lookahead == 'l') ADVANCE(136); + if (lookahead == 'e') ADVANCE(137); END_STATE(); case 94: - if (lookahead == 'r') ADVANCE(137); + ACCEPT_TOKEN(anon_sym_new); END_STATE(); case 95: - if (lookahead == 'r') ADVANCE(138); + if (lookahead == 'l') ADVANCE(138); END_STATE(); case 96: - if (lookahead == 'k') ADVANCE(139); + if (lookahead == 'r') ADVANCE(139); END_STATE(); case 97: - if (lookahead == 'v') ADVANCE(140); + if (lookahead == 'k') ADVANCE(140); END_STATE(); case 98: - if (lookahead == 'l') ADVANCE(141); + if (lookahead == 'v') ADVANCE(141); END_STATE(); case 99: - if (lookahead == 'u') ADVANCE(142); + if (lookahead == 'l') ADVANCE(142); END_STATE(); case 100: - ACCEPT_TOKEN(anon_sym_set); + if (lookahead == 'u') ADVANCE(143); END_STATE(); case 101: - if (lookahead == 't') ADVANCE(143); + ACCEPT_TOKEN(anon_sym_set); END_STATE(); case 102: if (lookahead == 't') ADVANCE(144); END_STATE(); case 103: - if (lookahead == 's') ADVANCE(145); + if (lookahead == 't') ADVANCE(145); END_STATE(); case 104: - if (lookahead == 'o') ADVANCE(146); + if (lookahead == 's') ADVANCE(146); END_STATE(); case 105: - if (lookahead == 'e') ADVANCE(147); + if (lookahead == 'o') ADVANCE(147); END_STATE(); case 106: - ACCEPT_TOKEN(anon_sym_try); + if (lookahead == 'e') ADVANCE(148); END_STATE(); case 107: - if (lookahead == 'e') ADVANCE(148); + ACCEPT_TOKEN(anon_sym_try); END_STATE(); case 108: - if (lookahead == 'y') ADVANCE(149); + if (lookahead == 'e') ADVANCE(149); END_STATE(); case 109: - if (lookahead == 'n') ADVANCE(150); + if (lookahead == 'y') ADVANCE(150); END_STATE(); case 110: - ACCEPT_TOKEN(anon_sym_var); + if (lookahead == 'n') ADVANCE(151); END_STATE(); case 111: - if (lookahead == 'l') ADVANCE(151); + ACCEPT_TOKEN(anon_sym_var); END_STATE(); case 112: - ACCEPT_TOKEN(anon_sym_Bool); + if (lookahead == 'l') ADVANCE(152); END_STATE(); case 113: - if (lookahead == 't') ADVANCE(152); + ACCEPT_TOKEN(anon_sym_Bool); END_STATE(); case 114: - ACCEPT_TOKEN(anon_sym_Null); + if (lookahead == 't') ADVANCE(153); END_STATE(); case 115: - ACCEPT_TOKEN(anon_sym_Void); + ACCEPT_TOKEN(anon_sym_Null); END_STATE(); case 116: - if (lookahead == 'r') ADVANCE(153); + ACCEPT_TOKEN(anon_sym_Void); END_STATE(); case 117: - if (lookahead == 'k') ADVANCE(154); + if (lookahead == 'r') ADVANCE(154); END_STATE(); case 118: - ACCEPT_TOKEN(anon_sym_case); + if (lookahead == 'k') ADVANCE(155); END_STATE(); case 119: - ACCEPT_TOKEN(anon_sym_cast); + ACCEPT_TOKEN(anon_sym_case); END_STATE(); case 120: - if (lookahead == 'h') ADVANCE(155); + ACCEPT_TOKEN(anon_sym_cast); END_STATE(); case 121: - if (lookahead == 's') ADVANCE(156); + if (lookahead == 'h') ADVANCE(156); END_STATE(); case 122: - if (lookahead == 'i') ADVANCE(157); + if (lookahead == 's') ADVANCE(157); END_STATE(); case 123: - if (lookahead == 'u') ADVANCE(158); + if (lookahead == 'i') ADVANCE(158); END_STATE(); case 124: - if (lookahead == 'm') ADVANCE(159); + if (lookahead == 'u') ADVANCE(159); END_STATE(); case 125: - ACCEPT_TOKEN(anon_sym_enum); + if (lookahead == 'm') ADVANCE(160); END_STATE(); case 126: - if (lookahead == 'n') ADVANCE(160); - if (lookahead == 'r') ADVANCE(161); + ACCEPT_TOKEN(anon_sym_else); END_STATE(); case 127: - if (lookahead == 'e') ADVANCE(162); + ACCEPT_TOKEN(anon_sym_enum); END_STATE(); case 128: - if (lookahead == 'l') ADVANCE(163); + if (lookahead == 'n') ADVANCE(161); + if (lookahead == 'r') ADVANCE(162); END_STATE(); case 129: - if (lookahead == 't') ADVANCE(164); + if (lookahead == 'e') ADVANCE(163); END_STATE(); case 130: - if (lookahead == 'e') ADVANCE(165); + if (lookahead == 'l') ADVANCE(164); END_STATE(); case 131: - if (lookahead == 'r') ADVANCE(166); + if (lookahead == 't') ADVANCE(165); END_STATE(); case 132: - if (lookahead == 'n') ADVANCE(167); + if (lookahead == 'e') ADVANCE(166); END_STATE(); case 133: - if (lookahead == 'r') ADVANCE(168); + if (lookahead == 'r') ADVANCE(167); END_STATE(); case 134: - if (lookahead == 'o') ADVANCE(169); + if (lookahead == 'n') ADVANCE(168); END_STATE(); case 135: - if (lookahead == 'r') ADVANCE(170); + if (lookahead == 'r') ADVANCE(169); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_null); + if (lookahead == 'o') ADVANCE(170); END_STATE(); case 137: - if (lookahead == 'a') ADVANCE(171); + if (lookahead == 'r') ADVANCE(171); END_STATE(); case 138: - if (lookahead == 'l') ADVANCE(172); - if (lookahead == 'r') ADVANCE(173); + ACCEPT_TOKEN(anon_sym_null); END_STATE(); case 139: - if (lookahead == 'a') ADVANCE(174); + if (lookahead == 'l') ADVANCE(172); + if (lookahead == 'r') ADVANCE(173); END_STATE(); case 140: - if (lookahead == 'a') ADVANCE(175); + if (lookahead == 'a') ADVANCE(174); END_STATE(); case 141: - if (lookahead == 'i') ADVANCE(176); + if (lookahead == 'a') ADVANCE(175); END_STATE(); case 142: - if (lookahead == 'r') ADVANCE(177); + if (lookahead == 'i') ADVANCE(176); END_STATE(); case 143: - if (lookahead == 'i') ADVANCE(178); + if (lookahead == 'r') ADVANCE(177); END_STATE(); case 144: - if (lookahead == 'c') ADVANCE(179); + if (lookahead == 'i') ADVANCE(178); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_this); + if (lookahead == 'c') ADVANCE(179); END_STATE(); case 146: - if (lookahead == 'w') ADVANCE(180); + ACCEPT_TOKEN(anon_sym_this); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_true); + if (lookahead == 'w') ADVANCE(180); END_STATE(); case 148: - if (lookahead == 'd') ADVANCE(181); + ACCEPT_TOKEN(anon_sym_true); END_STATE(); case 149: - if (lookahead == 'p') ADVANCE(182); + if (lookahead == 'd') ADVANCE(181); END_STATE(); case 150: - if (lookahead == 'g') ADVANCE(183); + if (lookahead == 'p') ADVANCE(182); END_STATE(); case 151: - if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'g') ADVANCE(183); END_STATE(); case 152: - ACCEPT_TOKEN(anon_sym_Float); + if (lookahead == 'e') ADVANCE(184); END_STATE(); case 153: - if (lookahead == 'a') ADVANCE(185); + ACCEPT_TOKEN(anon_sym_Float); END_STATE(); case 154: - ACCEPT_TOKEN(anon_sym_break); + if (lookahead == 'a') ADVANCE(185); END_STATE(); case 155: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_break); END_STATE(); case 156: - ACCEPT_TOKEN(anon_sym_class); + ACCEPT_TOKEN(anon_sym_catch); END_STATE(); case 157: - if (lookahead == 'n') ADVANCE(186); + ACCEPT_TOKEN(anon_sym_class); END_STATE(); case 158: - if (lookahead == 'l') ADVANCE(187); + if (lookahead == 'n') ADVANCE(186); END_STATE(); case 159: - if (lookahead == 'i') ADVANCE(188); + if (lookahead == 'l') ADVANCE(187); END_STATE(); case 160: - if (lookahead == 'd') ADVANCE(189); + if (lookahead == 'i') ADVANCE(188); END_STATE(); case 161: - if (lookahead == 'n') ADVANCE(190); + if (lookahead == 'd') ADVANCE(189); END_STATE(); case 162: - ACCEPT_TOKEN(anon_sym_false); + if (lookahead == 'n') ADVANCE(190); END_STATE(); case 163: - ACCEPT_TOKEN(anon_sym_final); + ACCEPT_TOKEN(anon_sym_false); END_STATE(); case 164: - if (lookahead == 'i') ADVANCE(191); + ACCEPT_TOKEN(anon_sym_final); END_STATE(); case 165: - if (lookahead == 'm') ADVANCE(192); + if (lookahead == 'i') ADVANCE(191); END_STATE(); case 166: - if (lookahead == 't') ADVANCE(193); + if (lookahead == 'm') ADVANCE(192); END_STATE(); case 167: - if (lookahead == 'e') ADVANCE(194); + if (lookahead == 't') ADVANCE(193); END_STATE(); case 168: - if (lookahead == 'f') ADVANCE(195); + if (lookahead == 'e') ADVANCE(194); END_STATE(); case 169: - ACCEPT_TOKEN(anon_sym_macro); + if (lookahead == 'f') ADVANCE(195); END_STATE(); case 170: - ACCEPT_TOKEN(anon_sym_never); + ACCEPT_TOKEN(anon_sym_macro); END_STATE(); case 171: - if (lookahead == 't') ADVANCE(196); + ACCEPT_TOKEN(anon_sym_never); END_STATE(); case 172: - if (lookahead == 'o') ADVANCE(197); + if (lookahead == 'o') ADVANCE(196); END_STATE(); case 173: - if (lookahead == 'i') ADVANCE(198); + if (lookahead == 'i') ADVANCE(197); END_STATE(); case 174: - if (lookahead == 'g') ADVANCE(199); + if (lookahead == 'g') ADVANCE(198); END_STATE(); case 175: - if (lookahead == 't') ADVANCE(200); + if (lookahead == 't') ADVANCE(199); END_STATE(); case 176: - if (lookahead == 'c') ADVANCE(201); + if (lookahead == 'c') ADVANCE(200); END_STATE(); case 177: - if (lookahead == 'n') ADVANCE(202); + if (lookahead == 'n') ADVANCE(201); END_STATE(); case 178: - if (lookahead == 'c') ADVANCE(203); + if (lookahead == 'c') ADVANCE(202); END_STATE(); case 179: - if (lookahead == 'h') ADVANCE(204); + if (lookahead == 'h') ADVANCE(203); END_STATE(); case 180: ACCEPT_TOKEN(anon_sym_throw); END_STATE(); case 181: - if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'e') ADVANCE(204); END_STATE(); case 182: - if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'e') ADVANCE(205); END_STATE(); case 183: ACCEPT_TOKEN(anon_sym_using); @@ -6823,28 +7581,28 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_while); END_STATE(); case 185: - if (lookahead == 'c') ADVANCE(207); + if (lookahead == 'c') ADVANCE(206); END_STATE(); case 186: - if (lookahead == 'u') ADVANCE(208); + if (lookahead == 'u') ADVANCE(207); END_STATE(); case 187: - if (lookahead == 't') ADVANCE(209); + if (lookahead == 't') ADVANCE(208); END_STATE(); case 188: - if (lookahead == 'c') ADVANCE(210); + if (lookahead == 'c') ADVANCE(209); END_STATE(); case 189: - if (lookahead == 's') ADVANCE(211); + if (lookahead == 's') ADVANCE(210); END_STATE(); case 190: ACCEPT_TOKEN(anon_sym_extern); END_STATE(); case 191: - if (lookahead == 'o') ADVANCE(212); + if (lookahead == 'o') ADVANCE(211); END_STATE(); case 192: - if (lookahead == 'e') ADVANCE(213); + if (lookahead == 'e') ADVANCE(212); END_STATE(); case 193: ACCEPT_TOKEN(anon_sym_import); @@ -6853,117 +7611,108 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_inline); END_STATE(); case 195: - if (lookahead == 'a') ADVANCE(214); + if (lookahead == 'a') ADVANCE(213); END_STATE(); case 196: - if (lookahead == 'o') ADVANCE(215); + if (lookahead == 'a') ADVANCE(214); END_STATE(); case 197: - if (lookahead == 'a') ADVANCE(216); + if (lookahead == 'd') ADVANCE(215); END_STATE(); case 198: - if (lookahead == 'd') ADVANCE(217); + if (lookahead == 'e') ADVANCE(216); END_STATE(); case 199: - if (lookahead == 'e') ADVANCE(218); + if (lookahead == 'e') ADVANCE(217); END_STATE(); case 200: - if (lookahead == 'e') ADVANCE(219); + ACCEPT_TOKEN(anon_sym_public); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_public); + ACCEPT_TOKEN(anon_sym_return); END_STATE(); case 202: - ACCEPT_TOKEN(anon_sym_return); + ACCEPT_TOKEN(anon_sym_static); END_STATE(); case 203: - ACCEPT_TOKEN(anon_sym_static); + ACCEPT_TOKEN(anon_sym_switch); END_STATE(); case 204: - ACCEPT_TOKEN(anon_sym_switch); + if (lookahead == 'f') ADVANCE(218); END_STATE(); case 205: - if (lookahead == 'f') ADVANCE(220); + if (lookahead == 'd') ADVANCE(219); END_STATE(); case 206: - if (lookahead == 'd') ADVANCE(221); + if (lookahead == 't') ADVANCE(220); END_STATE(); case 207: - if (lookahead == 't') ADVANCE(222); + if (lookahead == 'e') ADVANCE(221); END_STATE(); case 208: - if (lookahead == 'e') ADVANCE(223); + ACCEPT_TOKEN(anon_sym_default); END_STATE(); case 209: - ACCEPT_TOKEN(anon_sym_default); + ACCEPT_TOKEN(anon_sym_dynamic); END_STATE(); case 210: - ACCEPT_TOKEN(anon_sym_dynamic); + ACCEPT_TOKEN(anon_sym_extends); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_extends); + if (lookahead == 'n') ADVANCE(222); END_STATE(); case 212: - if (lookahead == 'n') ADVANCE(224); + if (lookahead == 'n') ADVANCE(223); END_STATE(); case 213: - if (lookahead == 'n') ADVANCE(225); + if (lookahead == 'c') ADVANCE(224); END_STATE(); case 214: - if (lookahead == 'c') ADVANCE(226); + if (lookahead == 'd') ADVANCE(225); END_STATE(); case 215: - if (lookahead == 'r') ADVANCE(227); + if (lookahead == 'e') ADVANCE(226); END_STATE(); case 216: - if (lookahead == 'd') ADVANCE(228); + ACCEPT_TOKEN(anon_sym_package); END_STATE(); case 217: - if (lookahead == 'e') ADVANCE(229); + ACCEPT_TOKEN(anon_sym_private); END_STATE(); case 218: - ACCEPT_TOKEN(anon_sym_package); + ACCEPT_TOKEN(anon_sym_typedef); END_STATE(); case 219: - ACCEPT_TOKEN(anon_sym_private); + ACCEPT_TOKEN(anon_sym_untyped); END_STATE(); case 220: - ACCEPT_TOKEN(anon_sym_typedef); + ACCEPT_TOKEN(anon_sym_abstract); END_STATE(); case 221: - ACCEPT_TOKEN(anon_sym_untyped); + ACCEPT_TOKEN(anon_sym_continue); END_STATE(); case 222: - ACCEPT_TOKEN(anon_sym_abstract); + ACCEPT_TOKEN(anon_sym_function); END_STATE(); case 223: - ACCEPT_TOKEN(anon_sym_continue); + if (lookahead == 't') ADVANCE(227); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_function); + if (lookahead == 'e') ADVANCE(228); END_STATE(); case 225: - if (lookahead == 't') ADVANCE(230); + ACCEPT_TOKEN(anon_sym_overload); END_STATE(); case 226: - if (lookahead == 'e') ADVANCE(231); + ACCEPT_TOKEN(anon_sym_override); END_STATE(); case 227: - ACCEPT_TOKEN(anon_sym_operator); + if (lookahead == 's') ADVANCE(229); END_STATE(); case 228: - ACCEPT_TOKEN(anon_sym_overload); - END_STATE(); - case 229: - ACCEPT_TOKEN(anon_sym_override); - END_STATE(); - case 230: - if (lookahead == 's') ADVANCE(232); - END_STATE(); - case 231: ACCEPT_TOKEN(anon_sym_interface); END_STATE(); - case 232: + case 229: ACCEPT_TOKEN(anon_sym_implements); END_STATE(); default: @@ -6973,2897 +7722,3715 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 43, .external_lex_state = 2}, - [2] = {.lex_state = 43, .external_lex_state = 3}, - [3] = {.lex_state = 43, .external_lex_state = 3}, - [4] = {.lex_state = 43, .external_lex_state = 3}, - [5] = {.lex_state = 43, .external_lex_state = 3}, - [6] = {.lex_state = 43, .external_lex_state = 3}, - [7] = {.lex_state = 43, .external_lex_state = 3}, - [8] = {.lex_state = 43, .external_lex_state = 3}, - [9] = {.lex_state = 43, .external_lex_state = 3}, - [10] = {.lex_state = 43, .external_lex_state = 3}, - [11] = {.lex_state = 43, .external_lex_state = 3}, - [12] = {.lex_state = 43, .external_lex_state = 3}, - [13] = {.lex_state = 43, .external_lex_state = 3}, - [14] = {.lex_state = 43, .external_lex_state = 3}, - [15] = {.lex_state = 43, .external_lex_state = 3}, - [16] = {.lex_state = 43, .external_lex_state = 2}, - [17] = {.lex_state = 43, .external_lex_state = 3}, - [18] = {.lex_state = 43, .external_lex_state = 2}, - [19] = {.lex_state = 43, .external_lex_state = 2}, - [20] = {.lex_state = 43, .external_lex_state = 2}, - [21] = {.lex_state = 43, .external_lex_state = 2}, - [22] = {.lex_state = 43, .external_lex_state = 2}, - [23] = {.lex_state = 43, .external_lex_state = 2}, - [24] = {.lex_state = 43, .external_lex_state = 2}, - [25] = {.lex_state = 43, .external_lex_state = 2}, - [26] = {.lex_state = 43, .external_lex_state = 2}, - [27] = {.lex_state = 43, .external_lex_state = 2}, - [28] = {.lex_state = 43, .external_lex_state = 2}, - [29] = {.lex_state = 43, .external_lex_state = 2}, - [30] = {.lex_state = 43, .external_lex_state = 2}, - [31] = {.lex_state = 43, .external_lex_state = 2}, - [32] = {.lex_state = 43, .external_lex_state = 2}, - [33] = {.lex_state = 43, .external_lex_state = 3}, - [34] = {.lex_state = 43, .external_lex_state = 2}, - [35] = {.lex_state = 43, .external_lex_state = 3}, - [36] = {.lex_state = 43, .external_lex_state = 3}, - [37] = {.lex_state = 43, .external_lex_state = 3}, - [38] = {.lex_state = 43, .external_lex_state = 3}, - [39] = {.lex_state = 43, .external_lex_state = 3}, - [40] = {.lex_state = 43, .external_lex_state = 2}, - [41] = {.lex_state = 43, .external_lex_state = 3}, - [42] = {.lex_state = 43, .external_lex_state = 2}, - [43] = {.lex_state = 43, .external_lex_state = 2}, - [44] = {.lex_state = 43, .external_lex_state = 2}, - [45] = {.lex_state = 43, .external_lex_state = 2}, - [46] = {.lex_state = 43, .external_lex_state = 2}, - [47] = {.lex_state = 43, .external_lex_state = 2}, - [48] = {.lex_state = 43, .external_lex_state = 3}, - [49] = {.lex_state = 43, .external_lex_state = 3}, - [50] = {.lex_state = 43, .external_lex_state = 3}, - [51] = {.lex_state = 43, .external_lex_state = 3}, - [52] = {.lex_state = 43, .external_lex_state = 3}, - [53] = {.lex_state = 43, .external_lex_state = 2}, - [54] = {.lex_state = 43, .external_lex_state = 3}, - [55] = {.lex_state = 43, .external_lex_state = 3}, - [56] = {.lex_state = 43, .external_lex_state = 2}, - [57] = {.lex_state = 43, .external_lex_state = 2}, - [58] = {.lex_state = 43, .external_lex_state = 3}, - [59] = {.lex_state = 43, .external_lex_state = 3}, - [60] = {.lex_state = 43, .external_lex_state = 3}, - [61] = {.lex_state = 43, .external_lex_state = 2}, - [62] = {.lex_state = 43, .external_lex_state = 2}, - [63] = {.lex_state = 43, .external_lex_state = 2}, - [64] = {.lex_state = 43, .external_lex_state = 2}, - [65] = {.lex_state = 43, .external_lex_state = 2}, - [66] = {.lex_state = 43, .external_lex_state = 2}, - [67] = {.lex_state = 43, .external_lex_state = 2}, - [68] = {.lex_state = 43, .external_lex_state = 2}, - [69] = {.lex_state = 43, .external_lex_state = 2}, - [70] = {.lex_state = 43, .external_lex_state = 2}, - [71] = {.lex_state = 43, .external_lex_state = 2}, - [72] = {.lex_state = 43, .external_lex_state = 2}, - [73] = {.lex_state = 43, .external_lex_state = 2}, - [74] = {.lex_state = 43, .external_lex_state = 2}, - [75] = {.lex_state = 43, .external_lex_state = 3}, - [76] = {.lex_state = 43, .external_lex_state = 3}, - [77] = {.lex_state = 43, .external_lex_state = 2}, - [78] = {.lex_state = 43, .external_lex_state = 2}, - [79] = {.lex_state = 43, .external_lex_state = 2}, - [80] = {.lex_state = 43, .external_lex_state = 2}, - [81] = {.lex_state = 43, .external_lex_state = 2}, - [82] = {.lex_state = 43, .external_lex_state = 2}, - [83] = {.lex_state = 43, .external_lex_state = 2}, - [84] = {.lex_state = 43, .external_lex_state = 2}, - [85] = {.lex_state = 43, .external_lex_state = 3}, - [86] = {.lex_state = 43, .external_lex_state = 2}, - [87] = {.lex_state = 43, .external_lex_state = 2}, - [88] = {.lex_state = 43, .external_lex_state = 2}, - [89] = {.lex_state = 43, .external_lex_state = 2}, - [90] = {.lex_state = 43, .external_lex_state = 2}, - [91] = {.lex_state = 43, .external_lex_state = 2}, - [92] = {.lex_state = 43, .external_lex_state = 2}, - [93] = {.lex_state = 43, .external_lex_state = 2}, - [94] = {.lex_state = 43, .external_lex_state = 2}, - [95] = {.lex_state = 43, .external_lex_state = 2}, - [96] = {.lex_state = 43, .external_lex_state = 2}, - [97] = {.lex_state = 43, .external_lex_state = 2}, - [98] = {.lex_state = 43, .external_lex_state = 2}, - [99] = {.lex_state = 43, .external_lex_state = 2}, - [100] = {.lex_state = 43, .external_lex_state = 2}, - [101] = {.lex_state = 43, .external_lex_state = 2}, - [102] = {.lex_state = 43, .external_lex_state = 2}, - [103] = {.lex_state = 43, .external_lex_state = 2}, - [104] = {.lex_state = 43, .external_lex_state = 2}, - [105] = {.lex_state = 43, .external_lex_state = 2}, - [106] = {.lex_state = 43, .external_lex_state = 2}, - [107] = {.lex_state = 43, .external_lex_state = 2}, - [108] = {.lex_state = 43, .external_lex_state = 2}, - [109] = {.lex_state = 43, .external_lex_state = 2}, - [110] = {.lex_state = 43, .external_lex_state = 2}, - [111] = {.lex_state = 43, .external_lex_state = 2}, - [112] = {.lex_state = 43, .external_lex_state = 2}, - [113] = {.lex_state = 43, .external_lex_state = 2}, - [114] = {.lex_state = 43, .external_lex_state = 2}, - [115] = {.lex_state = 43, .external_lex_state = 2}, - [116] = {.lex_state = 43, .external_lex_state = 2}, - [117] = {.lex_state = 43, .external_lex_state = 2}, - [118] = {.lex_state = 43, .external_lex_state = 2}, - [119] = {.lex_state = 43, .external_lex_state = 2}, - [120] = {.lex_state = 43, .external_lex_state = 2}, - [121] = {.lex_state = 43, .external_lex_state = 2}, - [122] = {.lex_state = 43, .external_lex_state = 2}, - [123] = {.lex_state = 43, .external_lex_state = 2}, - [124] = {.lex_state = 43, .external_lex_state = 2}, - [125] = {.lex_state = 43, .external_lex_state = 2}, - [126] = {.lex_state = 43, .external_lex_state = 2}, - [127] = {.lex_state = 43, .external_lex_state = 2}, - [128] = {.lex_state = 43, .external_lex_state = 2}, - [129] = {.lex_state = 43, .external_lex_state = 2}, - [130] = {.lex_state = 43, .external_lex_state = 2}, - [131] = {.lex_state = 43, .external_lex_state = 2}, - [132] = {.lex_state = 43, .external_lex_state = 2}, - [133] = {.lex_state = 43, .external_lex_state = 2}, - [134] = {.lex_state = 43, .external_lex_state = 2}, - [135] = {.lex_state = 43, .external_lex_state = 2}, - [136] = {.lex_state = 43, .external_lex_state = 2}, - [137] = {.lex_state = 43, .external_lex_state = 2}, - [138] = {.lex_state = 43, .external_lex_state = 2}, - [139] = {.lex_state = 43, .external_lex_state = 2}, - [140] = {.lex_state = 43, .external_lex_state = 2}, - [141] = {.lex_state = 43, .external_lex_state = 2}, - [142] = {.lex_state = 43, .external_lex_state = 2}, - [143] = {.lex_state = 43, .external_lex_state = 2}, - [144] = {.lex_state = 43, .external_lex_state = 2}, - [145] = {.lex_state = 43, .external_lex_state = 2}, - [146] = {.lex_state = 43, .external_lex_state = 2}, - [147] = {.lex_state = 43, .external_lex_state = 2}, - [148] = {.lex_state = 43, .external_lex_state = 2}, - [149] = {.lex_state = 43, .external_lex_state = 2}, - [150] = {.lex_state = 43, .external_lex_state = 2}, - [151] = {.lex_state = 43, .external_lex_state = 2}, - [152] = {.lex_state = 43, .external_lex_state = 2}, - [153] = {.lex_state = 43, .external_lex_state = 2}, - [154] = {.lex_state = 43, .external_lex_state = 2}, - [155] = {.lex_state = 43, .external_lex_state = 2}, - [156] = {.lex_state = 43, .external_lex_state = 2}, - [157] = {.lex_state = 43, .external_lex_state = 2}, - [158] = {.lex_state = 43, .external_lex_state = 2}, - [159] = {.lex_state = 43, .external_lex_state = 2}, - [160] = {.lex_state = 43, .external_lex_state = 2}, - [161] = {.lex_state = 43, .external_lex_state = 2}, - [162] = {.lex_state = 43, .external_lex_state = 2}, - [163] = {.lex_state = 43, .external_lex_state = 2}, - [164] = {.lex_state = 43, .external_lex_state = 2}, - [165] = {.lex_state = 43, .external_lex_state = 2}, - [166] = {.lex_state = 43, .external_lex_state = 2}, - [167] = {.lex_state = 43, .external_lex_state = 2}, - [168] = {.lex_state = 43, .external_lex_state = 2}, - [169] = {.lex_state = 43, .external_lex_state = 2}, - [170] = {.lex_state = 43, .external_lex_state = 2}, - [171] = {.lex_state = 43, .external_lex_state = 2}, - [172] = {.lex_state = 42, .external_lex_state = 2}, - [173] = {.lex_state = 42, .external_lex_state = 2}, - [174] = {.lex_state = 42, .external_lex_state = 2}, - [175] = {.lex_state = 42, .external_lex_state = 2}, - [176] = {.lex_state = 43, .external_lex_state = 2}, - [177] = {.lex_state = 43, .external_lex_state = 2}, - [178] = {.lex_state = 43, .external_lex_state = 2}, - [179] = {.lex_state = 43, .external_lex_state = 2}, - [180] = {.lex_state = 43, .external_lex_state = 2}, - [181] = {.lex_state = 43, .external_lex_state = 2}, - [182] = {.lex_state = 43, .external_lex_state = 2}, - [183] = {.lex_state = 43, .external_lex_state = 2}, - [184] = {.lex_state = 43, .external_lex_state = 2}, - [185] = {.lex_state = 43, .external_lex_state = 2}, - [186] = {.lex_state = 43, .external_lex_state = 2}, - [187] = {.lex_state = 43, .external_lex_state = 2}, - [188] = {.lex_state = 43, .external_lex_state = 2}, - [189] = {.lex_state = 43, .external_lex_state = 2}, - [190] = {.lex_state = 43, .external_lex_state = 2}, - [191] = {.lex_state = 43, .external_lex_state = 2}, - [192] = {.lex_state = 43, .external_lex_state = 2}, - [193] = {.lex_state = 43, .external_lex_state = 2}, - [194] = {.lex_state = 43, .external_lex_state = 2}, - [195] = {.lex_state = 43, .external_lex_state = 2}, - [196] = {.lex_state = 43, .external_lex_state = 2}, - [197] = {.lex_state = 43, .external_lex_state = 2}, - [198] = {.lex_state = 43, .external_lex_state = 2}, - [199] = {.lex_state = 43, .external_lex_state = 2}, - [200] = {.lex_state = 43, .external_lex_state = 2}, - [201] = {.lex_state = 43, .external_lex_state = 2}, - [202] = {.lex_state = 43, .external_lex_state = 2}, - [203] = {.lex_state = 43, .external_lex_state = 2}, - [204] = {.lex_state = 43, .external_lex_state = 2}, - [205] = {.lex_state = 43, .external_lex_state = 2}, - [206] = {.lex_state = 43, .external_lex_state = 2}, - [207] = {.lex_state = 43, .external_lex_state = 2}, - [208] = {.lex_state = 43, .external_lex_state = 2}, - [209] = {.lex_state = 42, .external_lex_state = 3}, - [210] = {.lex_state = 43, .external_lex_state = 2}, - [211] = {.lex_state = 43, .external_lex_state = 2}, - [212] = {.lex_state = 42, .external_lex_state = 3}, - [213] = {.lex_state = 43, .external_lex_state = 2}, - [214] = {.lex_state = 43, .external_lex_state = 2}, - [215] = {.lex_state = 43, .external_lex_state = 2}, - [216] = {.lex_state = 43, .external_lex_state = 2}, - [217] = {.lex_state = 43, .external_lex_state = 2}, - [218] = {.lex_state = 43, .external_lex_state = 2}, - [219] = {.lex_state = 43, .external_lex_state = 2}, - [220] = {.lex_state = 42, .external_lex_state = 3}, - [221] = {.lex_state = 43, .external_lex_state = 2}, - [222] = {.lex_state = 43, .external_lex_state = 2}, - [223] = {.lex_state = 42, .external_lex_state = 3}, - [224] = {.lex_state = 43, .external_lex_state = 2}, - [225] = {.lex_state = 43, .external_lex_state = 2}, - [226] = {.lex_state = 43, .external_lex_state = 2}, - [227] = {.lex_state = 43, .external_lex_state = 2}, - [228] = {.lex_state = 43, .external_lex_state = 2}, - [229] = {.lex_state = 43, .external_lex_state = 3}, - [230] = {.lex_state = 43, .external_lex_state = 3}, - [231] = {.lex_state = 43, .external_lex_state = 1}, - [232] = {.lex_state = 43, .external_lex_state = 1}, - [233] = {.lex_state = 43, .external_lex_state = 1}, - [234] = {.lex_state = 43, .external_lex_state = 1}, - [235] = {.lex_state = 43, .external_lex_state = 3}, - [236] = {.lex_state = 43, .external_lex_state = 3}, - [237] = {.lex_state = 43, .external_lex_state = 3}, - [238] = {.lex_state = 43, .external_lex_state = 3}, - [239] = {.lex_state = 43, .external_lex_state = 3}, - [240] = {.lex_state = 43, .external_lex_state = 3}, - [241] = {.lex_state = 43, .external_lex_state = 3}, - [242] = {.lex_state = 43, .external_lex_state = 3}, - [243] = {.lex_state = 43, .external_lex_state = 3}, - [244] = {.lex_state = 43, .external_lex_state = 3}, - [245] = {.lex_state = 43, .external_lex_state = 3}, - [246] = {.lex_state = 43, .external_lex_state = 3}, - [247] = {.lex_state = 43, .external_lex_state = 3}, - [248] = {.lex_state = 43, .external_lex_state = 3}, - [249] = {.lex_state = 43, .external_lex_state = 3}, - [250] = {.lex_state = 43, .external_lex_state = 3}, - [251] = {.lex_state = 43, .external_lex_state = 3}, - [252] = {.lex_state = 43, .external_lex_state = 3}, - [253] = {.lex_state = 43, .external_lex_state = 3}, - [254] = {.lex_state = 43, .external_lex_state = 3}, - [255] = {.lex_state = 43, .external_lex_state = 3}, - [256] = {.lex_state = 43, .external_lex_state = 3}, - [257] = {.lex_state = 43, .external_lex_state = 3}, - [258] = {.lex_state = 43, .external_lex_state = 1}, - [259] = {.lex_state = 43, .external_lex_state = 3}, - [260] = {.lex_state = 43, .external_lex_state = 3}, - [261] = {.lex_state = 43, .external_lex_state = 3}, - [262] = {.lex_state = 43, .external_lex_state = 3}, - [263] = {.lex_state = 43, .external_lex_state = 3}, - [264] = {.lex_state = 43, .external_lex_state = 3}, - [265] = {.lex_state = 43, .external_lex_state = 3}, - [266] = {.lex_state = 43, .external_lex_state = 3}, - [267] = {.lex_state = 43, .external_lex_state = 3}, - [268] = {.lex_state = 43, .external_lex_state = 3}, - [269] = {.lex_state = 43, .external_lex_state = 3}, - [270] = {.lex_state = 43, .external_lex_state = 3}, - [271] = {.lex_state = 43, .external_lex_state = 3}, - [272] = {.lex_state = 43, .external_lex_state = 3}, - [273] = {.lex_state = 43, .external_lex_state = 3}, - [274] = {.lex_state = 43, .external_lex_state = 3}, - [275] = {.lex_state = 43, .external_lex_state = 3}, - [276] = {.lex_state = 43, .external_lex_state = 3}, - [277] = {.lex_state = 43, .external_lex_state = 3}, - [278] = {.lex_state = 43, .external_lex_state = 3}, - [279] = {.lex_state = 43, .external_lex_state = 3}, - [280] = {.lex_state = 43, .external_lex_state = 3}, - [281] = {.lex_state = 43, .external_lex_state = 3}, - [282] = {.lex_state = 43, .external_lex_state = 3}, - [283] = {.lex_state = 42, .external_lex_state = 3}, - [284] = {.lex_state = 43, .external_lex_state = 2}, - [285] = {.lex_state = 43, .external_lex_state = 2}, - [286] = {.lex_state = 42, .external_lex_state = 3}, - [287] = {.lex_state = 43, .external_lex_state = 3}, - [288] = {.lex_state = 42, .external_lex_state = 3}, - [289] = {.lex_state = 43, .external_lex_state = 3}, - [290] = {.lex_state = 42, .external_lex_state = 2}, - [291] = {.lex_state = 43, .external_lex_state = 2}, - [292] = {.lex_state = 43, .external_lex_state = 4}, - [293] = {.lex_state = 43, .external_lex_state = 4}, - [294] = {.lex_state = 43, .external_lex_state = 4}, - [295] = {.lex_state = 43, .external_lex_state = 2}, - [296] = {.lex_state = 43, .external_lex_state = 3}, - [297] = {.lex_state = 43, .external_lex_state = 2}, - [298] = {.lex_state = 43, .external_lex_state = 2}, - [299] = {.lex_state = 43, .external_lex_state = 2}, - [300] = {.lex_state = 43, .external_lex_state = 2}, - [301] = {.lex_state = 43, .external_lex_state = 4}, - [302] = {.lex_state = 43, .external_lex_state = 3}, - [303] = {.lex_state = 43, .external_lex_state = 4}, - [304] = {.lex_state = 43, .external_lex_state = 2}, - [305] = {.lex_state = 42, .external_lex_state = 3}, - [306] = {.lex_state = 43, .external_lex_state = 3}, - [307] = {.lex_state = 43, .external_lex_state = 3}, - [308] = {.lex_state = 43, .external_lex_state = 3}, - [309] = {.lex_state = 43, .external_lex_state = 3}, - [310] = {.lex_state = 43, .external_lex_state = 3}, - [311] = {.lex_state = 43, .external_lex_state = 3}, - [312] = {.lex_state = 43, .external_lex_state = 3}, - [313] = {.lex_state = 43, .external_lex_state = 3}, - [314] = {.lex_state = 43, .external_lex_state = 3}, - [315] = {.lex_state = 43, .external_lex_state = 3}, - [316] = {.lex_state = 42, .external_lex_state = 2}, - [317] = {.lex_state = 43, .external_lex_state = 3}, - [318] = {.lex_state = 42, .external_lex_state = 2}, - [319] = {.lex_state = 43, .external_lex_state = 3}, - [320] = {.lex_state = 43, .external_lex_state = 3}, - [321] = {.lex_state = 43, .external_lex_state = 3}, - [322] = {.lex_state = 43, .external_lex_state = 3}, - [323] = {.lex_state = 43, .external_lex_state = 3}, - [324] = {.lex_state = 43, .external_lex_state = 3}, - [325] = {.lex_state = 43, .external_lex_state = 3}, - [326] = {.lex_state = 43, .external_lex_state = 3}, - [327] = {.lex_state = 43, .external_lex_state = 3}, - [328] = {.lex_state = 43, .external_lex_state = 3}, - [329] = {.lex_state = 43, .external_lex_state = 3}, - [330] = {.lex_state = 43, .external_lex_state = 3}, - [331] = {.lex_state = 43, .external_lex_state = 3}, - [332] = {.lex_state = 43, .external_lex_state = 3}, - [333] = {.lex_state = 43, .external_lex_state = 3}, - [334] = {.lex_state = 43, .external_lex_state = 3}, - [335] = {.lex_state = 43, .external_lex_state = 3}, - [336] = {.lex_state = 43, .external_lex_state = 3}, - [337] = {.lex_state = 43, .external_lex_state = 3}, - [338] = {.lex_state = 43, .external_lex_state = 3}, - [339] = {.lex_state = 43, .external_lex_state = 3}, - [340] = {.lex_state = 43, .external_lex_state = 3}, - [341] = {.lex_state = 43, .external_lex_state = 3}, - [342] = {.lex_state = 43, .external_lex_state = 3}, - [343] = {.lex_state = 43, .external_lex_state = 3}, - [344] = {.lex_state = 43, .external_lex_state = 3}, - [345] = {.lex_state = 43, .external_lex_state = 3}, - [346] = {.lex_state = 43, .external_lex_state = 3}, - [347] = {.lex_state = 43, .external_lex_state = 3}, - [348] = {.lex_state = 43, .external_lex_state = 3}, - [349] = {.lex_state = 43, .external_lex_state = 3}, - [350] = {.lex_state = 43, .external_lex_state = 3}, - [351] = {.lex_state = 43, .external_lex_state = 3}, - [352] = {.lex_state = 43, .external_lex_state = 3}, - [353] = {.lex_state = 43, .external_lex_state = 3}, - [354] = {.lex_state = 43, .external_lex_state = 3}, - [355] = {.lex_state = 43, .external_lex_state = 3}, - [356] = {.lex_state = 43, .external_lex_state = 3}, - [357] = {.lex_state = 43, .external_lex_state = 3}, - [358] = {.lex_state = 43, .external_lex_state = 3}, - [359] = {.lex_state = 43, .external_lex_state = 3}, - [360] = {.lex_state = 43, .external_lex_state = 3}, - [361] = {.lex_state = 43, .external_lex_state = 3}, - [362] = {.lex_state = 43, .external_lex_state = 3}, - [363] = {.lex_state = 43, .external_lex_state = 3}, - [364] = {.lex_state = 43, .external_lex_state = 3}, - [365] = {.lex_state = 43, .external_lex_state = 3}, - [366] = {.lex_state = 43, .external_lex_state = 3}, - [367] = {.lex_state = 43, .external_lex_state = 3}, - [368] = {.lex_state = 43, .external_lex_state = 3}, - [369] = {.lex_state = 43, .external_lex_state = 3}, - [370] = {.lex_state = 43, .external_lex_state = 3}, - [371] = {.lex_state = 43, .external_lex_state = 3}, - [372] = {.lex_state = 43, .external_lex_state = 3}, - [373] = {.lex_state = 43, .external_lex_state = 3}, - [374] = {.lex_state = 43, .external_lex_state = 3}, - [375] = {.lex_state = 43, .external_lex_state = 3}, - [376] = {.lex_state = 43, .external_lex_state = 3}, - [377] = {.lex_state = 43, .external_lex_state = 3}, - [378] = {.lex_state = 43, .external_lex_state = 3}, - [379] = {.lex_state = 42, .external_lex_state = 2}, - [380] = {.lex_state = 43, .external_lex_state = 3}, - [381] = {.lex_state = 43, .external_lex_state = 3}, - [382] = {.lex_state = 43, .external_lex_state = 3}, - [383] = {.lex_state = 43, .external_lex_state = 3}, - [384] = {.lex_state = 43, .external_lex_state = 3}, - [385] = {.lex_state = 43, .external_lex_state = 3}, - [386] = {.lex_state = 43, .external_lex_state = 3}, - [387] = {.lex_state = 43, .external_lex_state = 3}, - [388] = {.lex_state = 43, .external_lex_state = 3}, - [389] = {.lex_state = 43, .external_lex_state = 3}, - [390] = {.lex_state = 43, .external_lex_state = 3}, - [391] = {.lex_state = 43, .external_lex_state = 3}, - [392] = {.lex_state = 43, .external_lex_state = 3}, - [393] = {.lex_state = 43, .external_lex_state = 3}, - [394] = {.lex_state = 43, .external_lex_state = 3}, - [395] = {.lex_state = 43, .external_lex_state = 3}, - [396] = {.lex_state = 43, .external_lex_state = 3}, - [397] = {.lex_state = 43, .external_lex_state = 3}, - [398] = {.lex_state = 43, .external_lex_state = 3}, - [399] = {.lex_state = 43, .external_lex_state = 3}, - [400] = {.lex_state = 43, .external_lex_state = 3}, - [401] = {.lex_state = 43, .external_lex_state = 3}, - [402] = {.lex_state = 43, .external_lex_state = 3}, - [403] = {.lex_state = 43, .external_lex_state = 3}, - [404] = {.lex_state = 43, .external_lex_state = 3}, - [405] = {.lex_state = 43, .external_lex_state = 3}, - [406] = {.lex_state = 43, .external_lex_state = 3}, - [407] = {.lex_state = 43, .external_lex_state = 3}, - [408] = {.lex_state = 43, .external_lex_state = 3}, - [409] = {.lex_state = 43, .external_lex_state = 3}, - [410] = {.lex_state = 43, .external_lex_state = 3}, - [411] = {.lex_state = 43, .external_lex_state = 3}, - [412] = {.lex_state = 43, .external_lex_state = 3}, - [413] = {.lex_state = 43, .external_lex_state = 3}, - [414] = {.lex_state = 43, .external_lex_state = 3}, - [415] = {.lex_state = 43, .external_lex_state = 3}, - [416] = {.lex_state = 43, .external_lex_state = 3}, - [417] = {.lex_state = 43, .external_lex_state = 3}, - [418] = {.lex_state = 43, .external_lex_state = 3}, - [419] = {.lex_state = 43, .external_lex_state = 3}, - [420] = {.lex_state = 43, .external_lex_state = 3}, - [421] = {.lex_state = 43, .external_lex_state = 3}, - [422] = {.lex_state = 43, .external_lex_state = 3}, - [423] = {.lex_state = 43, .external_lex_state = 3}, - [424] = {.lex_state = 43, .external_lex_state = 3}, - [425] = {.lex_state = 43, .external_lex_state = 3}, - [426] = {.lex_state = 43, .external_lex_state = 3}, - [427] = {.lex_state = 43, .external_lex_state = 3}, - [428] = {.lex_state = 43, .external_lex_state = 3}, - [429] = {.lex_state = 43, .external_lex_state = 3}, - [430] = {.lex_state = 43, .external_lex_state = 3}, - [431] = {.lex_state = 43, .external_lex_state = 3}, - [432] = {.lex_state = 43, .external_lex_state = 3}, - [433] = {.lex_state = 43, .external_lex_state = 2}, - [434] = {.lex_state = 43, .external_lex_state = 3}, - [435] = {.lex_state = 42, .external_lex_state = 2}, - [436] = {.lex_state = 43, .external_lex_state = 3}, - [437] = {.lex_state = 43, .external_lex_state = 3}, - [438] = {.lex_state = 43, .external_lex_state = 3}, - [439] = {.lex_state = 43, .external_lex_state = 3}, - [440] = {.lex_state = 43, .external_lex_state = 3}, - [441] = {.lex_state = 42, .external_lex_state = 3}, - [442] = {.lex_state = 43, .external_lex_state = 3}, - [443] = {.lex_state = 43, .external_lex_state = 3}, - [444] = {.lex_state = 43, .external_lex_state = 3}, - [445] = {.lex_state = 43, .external_lex_state = 3}, - [446] = {.lex_state = 43, .external_lex_state = 3}, - [447] = {.lex_state = 43, .external_lex_state = 3}, - [448] = {.lex_state = 43, .external_lex_state = 3}, - [449] = {.lex_state = 43, .external_lex_state = 3}, - [450] = {.lex_state = 43, .external_lex_state = 3}, - [451] = {.lex_state = 43, .external_lex_state = 3}, - [452] = {.lex_state = 43, .external_lex_state = 3}, - [453] = {.lex_state = 43, .external_lex_state = 3}, - [454] = {.lex_state = 43, .external_lex_state = 3}, - [455] = {.lex_state = 43, .external_lex_state = 3}, - [456] = {.lex_state = 43, .external_lex_state = 3}, - [457] = {.lex_state = 43, .external_lex_state = 3}, - [458] = {.lex_state = 43, .external_lex_state = 3}, - [459] = {.lex_state = 43, .external_lex_state = 3}, - [460] = {.lex_state = 43, .external_lex_state = 3}, - [461] = {.lex_state = 43, .external_lex_state = 3}, - [462] = {.lex_state = 43, .external_lex_state = 3}, - [463] = {.lex_state = 43, .external_lex_state = 3}, - [464] = {.lex_state = 43, .external_lex_state = 3}, - [465] = {.lex_state = 43, .external_lex_state = 3}, - [466] = {.lex_state = 43, .external_lex_state = 3}, - [467] = {.lex_state = 43, .external_lex_state = 3}, - [468] = {.lex_state = 43, .external_lex_state = 3}, - [469] = {.lex_state = 43, .external_lex_state = 3}, - [470] = {.lex_state = 43, .external_lex_state = 3}, - [471] = {.lex_state = 43, .external_lex_state = 3}, - [472] = {.lex_state = 43, .external_lex_state = 3}, - [473] = {.lex_state = 43, .external_lex_state = 3}, - [474] = {.lex_state = 43, .external_lex_state = 3}, - [475] = {.lex_state = 43, .external_lex_state = 3}, - [476] = {.lex_state = 43, .external_lex_state = 3}, - [477] = {.lex_state = 43, .external_lex_state = 3}, - [478] = {.lex_state = 43, .external_lex_state = 3}, - [479] = {.lex_state = 43, .external_lex_state = 3}, - [480] = {.lex_state = 43, .external_lex_state = 3}, - [481] = {.lex_state = 43, .external_lex_state = 3}, - [482] = {.lex_state = 43, .external_lex_state = 3}, - [483] = {.lex_state = 43, .external_lex_state = 3}, - [484] = {.lex_state = 43, .external_lex_state = 3}, - [485] = {.lex_state = 43, .external_lex_state = 3}, - [486] = {.lex_state = 43, .external_lex_state = 3}, - [487] = {.lex_state = 43, .external_lex_state = 3}, - [488] = {.lex_state = 43, .external_lex_state = 2}, - [489] = {.lex_state = 43, .external_lex_state = 3}, - [490] = {.lex_state = 43, .external_lex_state = 3}, - [491] = {.lex_state = 43, .external_lex_state = 3}, - [492] = {.lex_state = 43, .external_lex_state = 3}, - [493] = {.lex_state = 43, .external_lex_state = 3}, - [494] = {.lex_state = 43, .external_lex_state = 3}, - [495] = {.lex_state = 43, .external_lex_state = 3}, - [496] = {.lex_state = 43, .external_lex_state = 3}, - [497] = {.lex_state = 43, .external_lex_state = 3}, - [498] = {.lex_state = 43, .external_lex_state = 4}, - [499] = {.lex_state = 43, .external_lex_state = 1}, - [500] = {.lex_state = 43, .external_lex_state = 2}, - [501] = {.lex_state = 43, .external_lex_state = 2}, - [502] = {.lex_state = 43, .external_lex_state = 2}, - [503] = {.lex_state = 43, .external_lex_state = 2}, - [504] = {.lex_state = 43, .external_lex_state = 2}, - [505] = {.lex_state = 43, .external_lex_state = 2}, - [506] = {.lex_state = 43, .external_lex_state = 2}, - [507] = {.lex_state = 43, .external_lex_state = 2}, - [508] = {.lex_state = 43, .external_lex_state = 2}, - [509] = {.lex_state = 43, .external_lex_state = 2}, - [510] = {.lex_state = 43, .external_lex_state = 2}, - [511] = {.lex_state = 43, .external_lex_state = 2}, - [512] = {.lex_state = 43, .external_lex_state = 2}, - [513] = {.lex_state = 43, .external_lex_state = 2}, - [514] = {.lex_state = 43, .external_lex_state = 2}, - [515] = {.lex_state = 43, .external_lex_state = 2}, - [516] = {.lex_state = 43, .external_lex_state = 2}, - [517] = {.lex_state = 43, .external_lex_state = 2}, - [518] = {.lex_state = 43, .external_lex_state = 2}, - [519] = {.lex_state = 43, .external_lex_state = 2}, - [520] = {.lex_state = 43, .external_lex_state = 2}, - [521] = {.lex_state = 43, .external_lex_state = 2}, - [522] = {.lex_state = 43, .external_lex_state = 2}, - [523] = {.lex_state = 43, .external_lex_state = 2}, - [524] = {.lex_state = 43, .external_lex_state = 2}, - [525] = {.lex_state = 43, .external_lex_state = 2}, - [526] = {.lex_state = 43, .external_lex_state = 2}, - [527] = {.lex_state = 43, .external_lex_state = 2}, - [528] = {.lex_state = 43, .external_lex_state = 2}, - [529] = {.lex_state = 43, .external_lex_state = 2}, - [530] = {.lex_state = 43, .external_lex_state = 2}, - [531] = {.lex_state = 43, .external_lex_state = 2}, - [532] = {.lex_state = 43, .external_lex_state = 2}, - [533] = {.lex_state = 43, .external_lex_state = 2}, - [534] = {.lex_state = 43, .external_lex_state = 2}, - [535] = {.lex_state = 43, .external_lex_state = 2}, - [536] = {.lex_state = 43, .external_lex_state = 2}, - [537] = {.lex_state = 43, .external_lex_state = 2}, - [538] = {.lex_state = 43, .external_lex_state = 2}, - [539] = {.lex_state = 43, .external_lex_state = 2}, - [540] = {.lex_state = 43, .external_lex_state = 2}, - [541] = {.lex_state = 43, .external_lex_state = 2}, - [542] = {.lex_state = 43, .external_lex_state = 2}, - [543] = {.lex_state = 43, .external_lex_state = 2}, - [544] = {.lex_state = 43, .external_lex_state = 2}, - [545] = {.lex_state = 43, .external_lex_state = 2}, - [546] = {.lex_state = 43, .external_lex_state = 2}, - [547] = {.lex_state = 43, .external_lex_state = 2}, - [548] = {.lex_state = 43, .external_lex_state = 2}, - [549] = {.lex_state = 43, .external_lex_state = 2}, - [550] = {.lex_state = 43, .external_lex_state = 2}, - [551] = {.lex_state = 43, .external_lex_state = 2}, - [552] = {.lex_state = 43, .external_lex_state = 2}, - [553] = {.lex_state = 43, .external_lex_state = 2}, - [554] = {.lex_state = 43, .external_lex_state = 2}, - [555] = {.lex_state = 43, .external_lex_state = 2}, - [556] = {.lex_state = 43, .external_lex_state = 3}, - [557] = {.lex_state = 43, .external_lex_state = 2}, - [558] = {.lex_state = 43, .external_lex_state = 2}, - [559] = {.lex_state = 43, .external_lex_state = 2}, - [560] = {.lex_state = 43, .external_lex_state = 2}, - [561] = {.lex_state = 43, .external_lex_state = 2}, - [562] = {.lex_state = 43, .external_lex_state = 2}, - [563] = {.lex_state = 43, .external_lex_state = 2}, - [564] = {.lex_state = 43, .external_lex_state = 2}, - [565] = {.lex_state = 43, .external_lex_state = 2}, - [566] = {.lex_state = 43, .external_lex_state = 2}, - [567] = {.lex_state = 43, .external_lex_state = 2}, - [568] = {.lex_state = 43, .external_lex_state = 2}, - [569] = {.lex_state = 43, .external_lex_state = 2}, - [570] = {.lex_state = 43, .external_lex_state = 2}, - [571] = {.lex_state = 43, .external_lex_state = 2}, - [572] = {.lex_state = 43, .external_lex_state = 2}, - [573] = {.lex_state = 43, .external_lex_state = 2}, - [574] = {.lex_state = 43, .external_lex_state = 2}, - [575] = {.lex_state = 43, .external_lex_state = 3}, - [576] = {.lex_state = 43, .external_lex_state = 2}, - [577] = {.lex_state = 43, .external_lex_state = 2}, - [578] = {.lex_state = 43, .external_lex_state = 2}, - [579] = {.lex_state = 43, .external_lex_state = 2}, - [580] = {.lex_state = 43, .external_lex_state = 2}, - [581] = {.lex_state = 43, .external_lex_state = 2}, - [582] = {.lex_state = 43, .external_lex_state = 2}, - [583] = {.lex_state = 43, .external_lex_state = 2}, - [584] = {.lex_state = 43, .external_lex_state = 2}, - [585] = {.lex_state = 43, .external_lex_state = 2}, - [586] = {.lex_state = 43, .external_lex_state = 2}, - [587] = {.lex_state = 43, .external_lex_state = 2}, - [588] = {.lex_state = 43, .external_lex_state = 2}, - [589] = {.lex_state = 43, .external_lex_state = 2}, - [590] = {.lex_state = 43, .external_lex_state = 2}, - [591] = {.lex_state = 43, .external_lex_state = 2}, - [592] = {.lex_state = 43, .external_lex_state = 3}, - [593] = {.lex_state = 43, .external_lex_state = 2}, - [594] = {.lex_state = 43, .external_lex_state = 2}, - [595] = {.lex_state = 43, .external_lex_state = 2}, - [596] = {.lex_state = 43, .external_lex_state = 2}, - [597] = {.lex_state = 43, .external_lex_state = 2}, - [598] = {.lex_state = 43, .external_lex_state = 2}, - [599] = {.lex_state = 43, .external_lex_state = 2}, - [600] = {.lex_state = 43, .external_lex_state = 2}, - [601] = {.lex_state = 43, .external_lex_state = 2}, - [602] = {.lex_state = 43, .external_lex_state = 2}, - [603] = {.lex_state = 43, .external_lex_state = 2}, - [604] = {.lex_state = 43, .external_lex_state = 2}, - [605] = {.lex_state = 43, .external_lex_state = 2}, - [606] = {.lex_state = 43, .external_lex_state = 2}, - [607] = {.lex_state = 43, .external_lex_state = 2}, - [608] = {.lex_state = 43, .external_lex_state = 2}, - [609] = {.lex_state = 43, .external_lex_state = 2}, - [610] = {.lex_state = 43, .external_lex_state = 2}, - [611] = {.lex_state = 43, .external_lex_state = 2}, - [612] = {.lex_state = 43, .external_lex_state = 2}, - [613] = {.lex_state = 43, .external_lex_state = 2}, - [614] = {.lex_state = 43, .external_lex_state = 2}, - [615] = {.lex_state = 43, .external_lex_state = 2}, - [616] = {.lex_state = 43, .external_lex_state = 2}, - [617] = {.lex_state = 43, .external_lex_state = 2}, - [618] = {.lex_state = 43, .external_lex_state = 2}, - [619] = {.lex_state = 43, .external_lex_state = 2}, - [620] = {.lex_state = 43, .external_lex_state = 2}, - [621] = {.lex_state = 43, .external_lex_state = 2}, - [622] = {.lex_state = 43, .external_lex_state = 2}, - [623] = {.lex_state = 43, .external_lex_state = 2}, - [624] = {.lex_state = 43, .external_lex_state = 2}, - [625] = {.lex_state = 43, .external_lex_state = 2}, - [626] = {.lex_state = 43, .external_lex_state = 2}, - [627] = {.lex_state = 43, .external_lex_state = 2}, - [628] = {.lex_state = 43, .external_lex_state = 2}, - [629] = {.lex_state = 43, .external_lex_state = 2}, - [630] = {.lex_state = 43, .external_lex_state = 2}, - [631] = {.lex_state = 43, .external_lex_state = 2}, - [632] = {.lex_state = 43, .external_lex_state = 2}, - [633] = {.lex_state = 43, .external_lex_state = 2}, - [634] = {.lex_state = 43, .external_lex_state = 2}, - [635] = {.lex_state = 43, .external_lex_state = 2}, - [636] = {.lex_state = 43, .external_lex_state = 2}, - [637] = {.lex_state = 43, .external_lex_state = 2}, - [638] = {.lex_state = 43, .external_lex_state = 2}, - [639] = {.lex_state = 43, .external_lex_state = 2}, - [640] = {.lex_state = 43, .external_lex_state = 2}, - [641] = {.lex_state = 43, .external_lex_state = 2}, - [642] = {.lex_state = 43, .external_lex_state = 2}, - [643] = {.lex_state = 43, .external_lex_state = 2}, - [644] = {.lex_state = 43, .external_lex_state = 2}, - [645] = {.lex_state = 43, .external_lex_state = 2}, - [646] = {.lex_state = 43, .external_lex_state = 2}, - [647] = {.lex_state = 43, .external_lex_state = 2}, - [648] = {.lex_state = 43, .external_lex_state = 2}, - [649] = {.lex_state = 43, .external_lex_state = 2}, - [650] = {.lex_state = 43, .external_lex_state = 2}, - [651] = {.lex_state = 43, .external_lex_state = 2}, - [652] = {.lex_state = 43, .external_lex_state = 2}, - [653] = {.lex_state = 43, .external_lex_state = 2}, - [654] = {.lex_state = 43, .external_lex_state = 2}, - [655] = {.lex_state = 43, .external_lex_state = 2}, - [656] = {.lex_state = 43, .external_lex_state = 2}, - [657] = {.lex_state = 43, .external_lex_state = 2}, - [658] = {.lex_state = 43, .external_lex_state = 2}, - [659] = {.lex_state = 43, .external_lex_state = 2}, - [660] = {.lex_state = 43, .external_lex_state = 2}, - [661] = {.lex_state = 43, .external_lex_state = 2}, - [662] = {.lex_state = 43, .external_lex_state = 2}, - [663] = {.lex_state = 43, .external_lex_state = 2}, - [664] = {.lex_state = 43, .external_lex_state = 2}, - [665] = {.lex_state = 43, .external_lex_state = 2}, - [666] = {.lex_state = 43, .external_lex_state = 2}, - [667] = {.lex_state = 43, .external_lex_state = 2}, - [668] = {.lex_state = 43, .external_lex_state = 2}, - [669] = {.lex_state = 43, .external_lex_state = 2}, - [670] = {.lex_state = 43, .external_lex_state = 2}, - [671] = {.lex_state = 43, .external_lex_state = 2}, - [672] = {.lex_state = 43, .external_lex_state = 2}, - [673] = {.lex_state = 43, .external_lex_state = 2}, - [674] = {.lex_state = 43, .external_lex_state = 2}, - [675] = {.lex_state = 43, .external_lex_state = 2}, - [676] = {.lex_state = 43, .external_lex_state = 2}, - [677] = {.lex_state = 43, .external_lex_state = 2}, - [678] = {.lex_state = 43, .external_lex_state = 2}, - [679] = {.lex_state = 43, .external_lex_state = 2}, - [680] = {.lex_state = 43, .external_lex_state = 2}, - [681] = {.lex_state = 43, .external_lex_state = 2}, - [682] = {.lex_state = 43, .external_lex_state = 2}, - [683] = {.lex_state = 43, .external_lex_state = 2}, - [684] = {.lex_state = 43, .external_lex_state = 2}, - [685] = {.lex_state = 43, .external_lex_state = 2}, - [686] = {.lex_state = 1, .external_lex_state = 2}, - [687] = {.lex_state = 1, .external_lex_state = 2}, - [688] = {.lex_state = 1, .external_lex_state = 2}, - [689] = {.lex_state = 1, .external_lex_state = 2}, - [690] = {.lex_state = 1, .external_lex_state = 2}, - [691] = {.lex_state = 43, .external_lex_state = 2}, - [692] = {.lex_state = 43, .external_lex_state = 2}, - [693] = {.lex_state = 43, .external_lex_state = 2}, - [694] = {.lex_state = 1, .external_lex_state = 2}, - [695] = {.lex_state = 43, .external_lex_state = 2}, - [696] = {.lex_state = 1, .external_lex_state = 2}, - [697] = {.lex_state = 43, .external_lex_state = 2}, - [698] = {.lex_state = 1, .external_lex_state = 2}, - [699] = {.lex_state = 1, .external_lex_state = 2}, - [700] = {.lex_state = 1, .external_lex_state = 2}, - [701] = {.lex_state = 43, .external_lex_state = 3}, - [702] = {.lex_state = 43, .external_lex_state = 2}, - [703] = {.lex_state = 43, .external_lex_state = 2}, - [704] = {.lex_state = 43, .external_lex_state = 3}, - [705] = {.lex_state = 43, .external_lex_state = 2}, - [706] = {.lex_state = 43, .external_lex_state = 1}, - [707] = {.lex_state = 43, .external_lex_state = 2}, - [708] = {.lex_state = 43, .external_lex_state = 2}, - [709] = {.lex_state = 43, .external_lex_state = 1}, - [710] = {.lex_state = 43, .external_lex_state = 2}, - [711] = {.lex_state = 43, .external_lex_state = 2}, - [712] = {.lex_state = 43, .external_lex_state = 2}, - [713] = {.lex_state = 43, .external_lex_state = 2}, - [714] = {.lex_state = 43, .external_lex_state = 2}, - [715] = {.lex_state = 43, .external_lex_state = 4}, - [716] = {.lex_state = 43, .external_lex_state = 2}, - [717] = {.lex_state = 43, .external_lex_state = 4}, - [718] = {.lex_state = 43, .external_lex_state = 1}, - [719] = {.lex_state = 43, .external_lex_state = 1}, - [720] = {.lex_state = 43, .external_lex_state = 1}, - [721] = {.lex_state = 43, .external_lex_state = 1}, - [722] = {.lex_state = 43, .external_lex_state = 1}, - [723] = {.lex_state = 43, .external_lex_state = 2}, - [724] = {.lex_state = 1, .external_lex_state = 3}, - [725] = {.lex_state = 1, .external_lex_state = 3}, - [726] = {.lex_state = 43, .external_lex_state = 2}, - [727] = {.lex_state = 1, .external_lex_state = 3}, - [728] = {.lex_state = 43, .external_lex_state = 4}, - [729] = {.lex_state = 43, .external_lex_state = 2}, - [730] = {.lex_state = 43, .external_lex_state = 2}, - [731] = {.lex_state = 43, .external_lex_state = 4}, - [732] = {.lex_state = 43, .external_lex_state = 2}, - [733] = {.lex_state = 43, .external_lex_state = 4}, - [734] = {.lex_state = 43, .external_lex_state = 4}, - [735] = {.lex_state = 43, .external_lex_state = 4}, - [736] = {.lex_state = 1, .external_lex_state = 3}, - [737] = {.lex_state = 1, .external_lex_state = 3}, - [738] = {.lex_state = 1, .external_lex_state = 4}, - [739] = {.lex_state = 43, .external_lex_state = 4}, - [740] = {.lex_state = 1, .external_lex_state = 4}, - [741] = {.lex_state = 1, .external_lex_state = 2}, - [742] = {.lex_state = 43, .external_lex_state = 4}, - [743] = {.lex_state = 1, .external_lex_state = 2}, - [744] = {.lex_state = 43, .external_lex_state = 4}, - [745] = {.lex_state = 43, .external_lex_state = 4}, - [746] = {.lex_state = 1, .external_lex_state = 4}, - [747] = {.lex_state = 1, .external_lex_state = 4}, - [748] = {.lex_state = 1, .external_lex_state = 4}, - [749] = {.lex_state = 43, .external_lex_state = 4}, - [750] = {.lex_state = 43, .external_lex_state = 4}, - [751] = {.lex_state = 43, .external_lex_state = 4}, - [752] = {.lex_state = 43, .external_lex_state = 4}, - [753] = {.lex_state = 1, .external_lex_state = 2}, - [754] = {.lex_state = 43, .external_lex_state = 4}, - [755] = {.lex_state = 43, .external_lex_state = 4}, - [756] = {.lex_state = 1, .external_lex_state = 2}, - [757] = {.lex_state = 1, .external_lex_state = 2}, - [758] = {.lex_state = 43, .external_lex_state = 2}, - [759] = {.lex_state = 1, .external_lex_state = 2}, - [760] = {.lex_state = 43, .external_lex_state = 2}, - [761] = {.lex_state = 43, .external_lex_state = 2}, - [762] = {.lex_state = 1, .external_lex_state = 2}, - [763] = {.lex_state = 43, .external_lex_state = 2}, - [764] = {.lex_state = 43, .external_lex_state = 2}, - [765] = {.lex_state = 43, .external_lex_state = 2}, - [766] = {.lex_state = 43, .external_lex_state = 2}, - [767] = {.lex_state = 43, .external_lex_state = 2}, - [768] = {.lex_state = 43, .external_lex_state = 2}, - [769] = {.lex_state = 43, .external_lex_state = 2}, - [770] = {.lex_state = 43, .external_lex_state = 2}, - [771] = {.lex_state = 43, .external_lex_state = 2}, - [772] = {.lex_state = 43, .external_lex_state = 1}, - [773] = {.lex_state = 1, .external_lex_state = 3}, - [774] = {.lex_state = 1, .external_lex_state = 4}, - [775] = {.lex_state = 3, .external_lex_state = 3}, - [776] = {.lex_state = 43, .external_lex_state = 1}, - [777] = {.lex_state = 43, .external_lex_state = 1}, - [778] = {.lex_state = 43, .external_lex_state = 1}, - [779] = {.lex_state = 3, .external_lex_state = 3}, - [780] = {.lex_state = 43, .external_lex_state = 1}, - [781] = {.lex_state = 43, .external_lex_state = 1}, - [782] = {.lex_state = 3, .external_lex_state = 3}, - [783] = {.lex_state = 43, .external_lex_state = 1}, - [784] = {.lex_state = 3, .external_lex_state = 3}, - [785] = {.lex_state = 43, .external_lex_state = 2}, - [786] = {.lex_state = 43, .external_lex_state = 4}, - [787] = {.lex_state = 43, .external_lex_state = 4}, - [788] = {.lex_state = 3, .external_lex_state = 2}, - [789] = {.lex_state = 43, .external_lex_state = 4}, - [790] = {.lex_state = 3, .external_lex_state = 2}, - [791] = {.lex_state = 3, .external_lex_state = 2}, - [792] = {.lex_state = 43, .external_lex_state = 2}, - [793] = {.lex_state = 43, .external_lex_state = 2}, - [794] = {.lex_state = 43, .external_lex_state = 4}, - [795] = {.lex_state = 43, .external_lex_state = 1}, - [796] = {.lex_state = 43, .external_lex_state = 2}, - [797] = {.lex_state = 43, .external_lex_state = 4}, - [798] = {.lex_state = 3, .external_lex_state = 2}, - [799] = {.lex_state = 43, .external_lex_state = 1}, - [800] = {.lex_state = 43, .external_lex_state = 1}, - [801] = {.lex_state = 43, .external_lex_state = 4}, - [802] = {.lex_state = 1, .external_lex_state = 3}, - [803] = {.lex_state = 3, .external_lex_state = 2}, - [804] = {.lex_state = 3, .external_lex_state = 3}, - [805] = {.lex_state = 43, .external_lex_state = 4}, - [806] = {.lex_state = 43, .external_lex_state = 2}, - [807] = {.lex_state = 3, .external_lex_state = 2}, - [808] = {.lex_state = 3, .external_lex_state = 2}, - [809] = {.lex_state = 3, .external_lex_state = 2}, - [810] = {.lex_state = 43, .external_lex_state = 4}, - [811] = {.lex_state = 3, .external_lex_state = 2}, - [812] = {.lex_state = 3, .external_lex_state = 2}, - [813] = {.lex_state = 43, .external_lex_state = 4}, - [814] = {.lex_state = 3, .external_lex_state = 2}, - [815] = {.lex_state = 1, .external_lex_state = 3}, - [816] = {.lex_state = 3, .external_lex_state = 2}, - [817] = {.lex_state = 3, .external_lex_state = 2}, - [818] = {.lex_state = 3, .external_lex_state = 2}, - [819] = {.lex_state = 43, .external_lex_state = 2}, - [820] = {.lex_state = 43, .external_lex_state = 4}, - [821] = {.lex_state = 43, .external_lex_state = 4}, - [822] = {.lex_state = 43, .external_lex_state = 4}, - [823] = {.lex_state = 43, .external_lex_state = 2}, - [824] = {.lex_state = 0, .external_lex_state = 4}, - [825] = {.lex_state = 0, .external_lex_state = 4}, - [826] = {.lex_state = 43, .external_lex_state = 4}, - [827] = {.lex_state = 43, .external_lex_state = 2}, - [828] = {.lex_state = 0, .external_lex_state = 4}, - [829] = {.lex_state = 0, .external_lex_state = 4}, - [830] = {.lex_state = 0, .external_lex_state = 4}, - [831] = {.lex_state = 43, .external_lex_state = 4}, - [832] = {.lex_state = 1, .external_lex_state = 4}, - [833] = {.lex_state = 0, .external_lex_state = 4}, - [834] = {.lex_state = 43, .external_lex_state = 2}, - [835] = {.lex_state = 43, .external_lex_state = 2}, - [836] = {.lex_state = 0, .external_lex_state = 4}, - [837] = {.lex_state = 43, .external_lex_state = 2}, - [838] = {.lex_state = 43, .external_lex_state = 2}, - [839] = {.lex_state = 3, .external_lex_state = 3}, - [840] = {.lex_state = 43, .external_lex_state = 2}, - [841] = {.lex_state = 43, .external_lex_state = 2}, - [842] = {.lex_state = 0, .external_lex_state = 4}, - [843] = {.lex_state = 43, .external_lex_state = 2}, - [844] = {.lex_state = 43, .external_lex_state = 2}, - [845] = {.lex_state = 43, .external_lex_state = 2}, - [846] = {.lex_state = 0, .external_lex_state = 4}, - [847] = {.lex_state = 43, .external_lex_state = 2}, - [848] = {.lex_state = 43, .external_lex_state = 2}, - [849] = {.lex_state = 0, .external_lex_state = 4}, - [850] = {.lex_state = 43, .external_lex_state = 2}, - [851] = {.lex_state = 0, .external_lex_state = 4}, - [852] = {.lex_state = 43, .external_lex_state = 2}, - [853] = {.lex_state = 3, .external_lex_state = 2}, - [854] = {.lex_state = 43, .external_lex_state = 2}, - [855] = {.lex_state = 43, .external_lex_state = 2}, - [856] = {.lex_state = 43, .external_lex_state = 2}, - [857] = {.lex_state = 43, .external_lex_state = 2}, - [858] = {.lex_state = 0, .external_lex_state = 4}, - [859] = {.lex_state = 0, .external_lex_state = 4}, - [860] = {.lex_state = 43, .external_lex_state = 2}, - [861] = {.lex_state = 43, .external_lex_state = 4}, - [862] = {.lex_state = 43, .external_lex_state = 2}, - [863] = {.lex_state = 43, .external_lex_state = 4}, - [864] = {.lex_state = 0, .external_lex_state = 4}, - [865] = {.lex_state = 43, .external_lex_state = 2}, - [866] = {.lex_state = 0, .external_lex_state = 4}, - [867] = {.lex_state = 43, .external_lex_state = 4}, - [868] = {.lex_state = 43, .external_lex_state = 2}, - [869] = {.lex_state = 43, .external_lex_state = 2}, - [870] = {.lex_state = 43, .external_lex_state = 2}, - [871] = {.lex_state = 43, .external_lex_state = 2}, - [872] = {.lex_state = 43, .external_lex_state = 2}, - [873] = {.lex_state = 3, .external_lex_state = 3}, - [874] = {.lex_state = 0, .external_lex_state = 4}, - [875] = {.lex_state = 43, .external_lex_state = 2}, - [876] = {.lex_state = 43, .external_lex_state = 2}, - [877] = {.lex_state = 1, .external_lex_state = 4}, - [878] = {.lex_state = 43, .external_lex_state = 4}, - [879] = {.lex_state = 0, .external_lex_state = 4}, - [880] = {.lex_state = 0, .external_lex_state = 4}, - [881] = {.lex_state = 43, .external_lex_state = 4}, - [882] = {.lex_state = 43, .external_lex_state = 2}, - [883] = {.lex_state = 43, .external_lex_state = 2}, - [884] = {.lex_state = 43, .external_lex_state = 4}, - [885] = {.lex_state = 43, .external_lex_state = 4}, - [886] = {.lex_state = 43, .external_lex_state = 2}, - [887] = {.lex_state = 43, .external_lex_state = 4}, - [888] = {.lex_state = 43, .external_lex_state = 4}, - [889] = {.lex_state = 43, .external_lex_state = 4}, - [890] = {.lex_state = 43, .external_lex_state = 4}, - [891] = {.lex_state = 43, .external_lex_state = 4}, - [892] = {.lex_state = 43, .external_lex_state = 4}, - [893] = {.lex_state = 43, .external_lex_state = 4}, - [894] = {.lex_state = 43, .external_lex_state = 4}, - [895] = {.lex_state = 43, .external_lex_state = 4}, - [896] = {.lex_state = 43, .external_lex_state = 4}, - [897] = {.lex_state = 43, .external_lex_state = 3}, - [898] = {.lex_state = 43, .external_lex_state = 4}, - [899] = {.lex_state = 43, .external_lex_state = 4}, - [900] = {.lex_state = 43, .external_lex_state = 4}, - [901] = {.lex_state = 43, .external_lex_state = 4}, - [902] = {.lex_state = 5, .external_lex_state = 2}, - [903] = {.lex_state = 43, .external_lex_state = 3}, - [904] = {.lex_state = 43, .external_lex_state = 4}, - [905] = {.lex_state = 43, .external_lex_state = 4}, - [906] = {.lex_state = 43, .external_lex_state = 2}, - [907] = {.lex_state = 43, .external_lex_state = 2}, - [908] = {.lex_state = 43, .external_lex_state = 4}, - [909] = {.lex_state = 43, .external_lex_state = 2}, - [910] = {.lex_state = 43, .external_lex_state = 4}, - [911] = {.lex_state = 43, .external_lex_state = 4}, - [912] = {.lex_state = 43, .external_lex_state = 4}, - [913] = {.lex_state = 43, .external_lex_state = 4}, - [914] = {.lex_state = 43, .external_lex_state = 4}, - [915] = {.lex_state = 43, .external_lex_state = 4}, - [916] = {.lex_state = 43, .external_lex_state = 4}, - [917] = {.lex_state = 43, .external_lex_state = 4}, - [918] = {.lex_state = 43, .external_lex_state = 4}, - [919] = {.lex_state = 43, .external_lex_state = 4}, - [920] = {.lex_state = 43, .external_lex_state = 4}, - [921] = {.lex_state = 43, .external_lex_state = 4}, - [922] = {.lex_state = 43, .external_lex_state = 4}, - [923] = {.lex_state = 43, .external_lex_state = 4}, - [924] = {.lex_state = 43, .external_lex_state = 4}, - [925] = {.lex_state = 43, .external_lex_state = 4}, - [926] = {.lex_state = 43, .external_lex_state = 4}, - [927] = {.lex_state = 43, .external_lex_state = 4}, - [928] = {.lex_state = 43, .external_lex_state = 4}, - [929] = {.lex_state = 43, .external_lex_state = 4}, - [930] = {.lex_state = 43, .external_lex_state = 4}, - [931] = {.lex_state = 43, .external_lex_state = 4}, - [932] = {.lex_state = 43, .external_lex_state = 4}, - [933] = {.lex_state = 43, .external_lex_state = 4}, - [934] = {.lex_state = 43, .external_lex_state = 4}, - [935] = {.lex_state = 43, .external_lex_state = 4}, - [936] = {.lex_state = 43, .external_lex_state = 4}, - [937] = {.lex_state = 43, .external_lex_state = 4}, - [938] = {.lex_state = 43, .external_lex_state = 4}, - [939] = {.lex_state = 43, .external_lex_state = 4}, - [940] = {.lex_state = 43, .external_lex_state = 4}, - [941] = {.lex_state = 43, .external_lex_state = 4}, - [942] = {.lex_state = 43, .external_lex_state = 4}, - [943] = {.lex_state = 43, .external_lex_state = 4}, - [944] = {.lex_state = 43, .external_lex_state = 2}, - [945] = {.lex_state = 43, .external_lex_state = 4}, - [946] = {.lex_state = 43, .external_lex_state = 4}, - [947] = {.lex_state = 43, .external_lex_state = 4}, - [948] = {.lex_state = 43, .external_lex_state = 4}, - [949] = {.lex_state = 43, .external_lex_state = 4}, - [950] = {.lex_state = 43, .external_lex_state = 2}, - [951] = {.lex_state = 43, .external_lex_state = 4}, - [952] = {.lex_state = 43, .external_lex_state = 2}, - [953] = {.lex_state = 43, .external_lex_state = 4}, - [954] = {.lex_state = 43, .external_lex_state = 4}, - [955] = {.lex_state = 43, .external_lex_state = 4}, - [956] = {.lex_state = 43, .external_lex_state = 4}, - [957] = {.lex_state = 43, .external_lex_state = 4}, - [958] = {.lex_state = 43, .external_lex_state = 4}, - [959] = {.lex_state = 43, .external_lex_state = 4}, - [960] = {.lex_state = 43, .external_lex_state = 4}, - [961] = {.lex_state = 43, .external_lex_state = 2}, - [962] = {.lex_state = 43, .external_lex_state = 4}, - [963] = {.lex_state = 43, .external_lex_state = 2}, - [964] = {.lex_state = 43, .external_lex_state = 4}, - [965] = {.lex_state = 43, .external_lex_state = 2}, - [966] = {.lex_state = 43, .external_lex_state = 2}, - [967] = {.lex_state = 43, .external_lex_state = 4}, - [968] = {.lex_state = 43, .external_lex_state = 4}, - [969] = {.lex_state = 43, .external_lex_state = 2}, - [970] = {.lex_state = 43, .external_lex_state = 4}, - [971] = {.lex_state = 43, .external_lex_state = 4}, - [972] = {.lex_state = 43, .external_lex_state = 4}, - [973] = {.lex_state = 43, .external_lex_state = 4}, - [974] = {.lex_state = 43, .external_lex_state = 4}, - [975] = {.lex_state = 43, .external_lex_state = 4}, - [976] = {.lex_state = 43, .external_lex_state = 2}, - [977] = {.lex_state = 43, .external_lex_state = 4}, - [978] = {.lex_state = 43, .external_lex_state = 2}, - [979] = {.lex_state = 43, .external_lex_state = 4}, - [980] = {.lex_state = 43, .external_lex_state = 4}, - [981] = {.lex_state = 43, .external_lex_state = 4}, - [982] = {.lex_state = 43, .external_lex_state = 4}, - [983] = {.lex_state = 43, .external_lex_state = 4}, - [984] = {.lex_state = 43, .external_lex_state = 4}, - [985] = {.lex_state = 43, .external_lex_state = 4}, - [986] = {.lex_state = 43, .external_lex_state = 4}, - [987] = {.lex_state = 43, .external_lex_state = 4}, - [988] = {.lex_state = 43, .external_lex_state = 4}, - [989] = {.lex_state = 43, .external_lex_state = 4}, - [990] = {.lex_state = 43, .external_lex_state = 4}, - [991] = {.lex_state = 43, .external_lex_state = 4}, - [992] = {.lex_state = 43, .external_lex_state = 4}, - [993] = {.lex_state = 43, .external_lex_state = 4}, - [994] = {.lex_state = 43, .external_lex_state = 4}, - [995] = {.lex_state = 43, .external_lex_state = 4}, - [996] = {.lex_state = 43, .external_lex_state = 4}, - [997] = {.lex_state = 43, .external_lex_state = 4}, - [998] = {.lex_state = 43, .external_lex_state = 4}, - [999] = {.lex_state = 43, .external_lex_state = 4}, - [1000] = {.lex_state = 43, .external_lex_state = 4}, - [1001] = {.lex_state = 43, .external_lex_state = 2}, - [1002] = {.lex_state = 43, .external_lex_state = 4}, - [1003] = {.lex_state = 43, .external_lex_state = 4}, - [1004] = {.lex_state = 43, .external_lex_state = 4}, - [1005] = {.lex_state = 43, .external_lex_state = 4}, - [1006] = {.lex_state = 43, .external_lex_state = 4}, - [1007] = {.lex_state = 43, .external_lex_state = 4}, - [1008] = {.lex_state = 43, .external_lex_state = 4}, - [1009] = {.lex_state = 43, .external_lex_state = 4}, - [1010] = {.lex_state = 43, .external_lex_state = 4}, - [1011] = {.lex_state = 43, .external_lex_state = 4}, - [1012] = {.lex_state = 43, .external_lex_state = 2}, - [1013] = {.lex_state = 43, .external_lex_state = 4}, - [1014] = {.lex_state = 43, .external_lex_state = 4}, - [1015] = {.lex_state = 43, .external_lex_state = 4}, - [1016] = {.lex_state = 43, .external_lex_state = 4}, - [1017] = {.lex_state = 43, .external_lex_state = 4}, - [1018] = {.lex_state = 43, .external_lex_state = 4}, - [1019] = {.lex_state = 43, .external_lex_state = 4}, - [1020] = {.lex_state = 43, .external_lex_state = 4}, - [1021] = {.lex_state = 43, .external_lex_state = 4}, - [1022] = {.lex_state = 43, .external_lex_state = 4}, - [1023] = {.lex_state = 43, .external_lex_state = 4}, - [1024] = {.lex_state = 43, .external_lex_state = 4}, - [1025] = {.lex_state = 43, .external_lex_state = 4}, - [1026] = {.lex_state = 43, .external_lex_state = 4}, - [1027] = {.lex_state = 43, .external_lex_state = 4}, - [1028] = {.lex_state = 43, .external_lex_state = 4}, - [1029] = {.lex_state = 43, .external_lex_state = 4}, - [1030] = {.lex_state = 43, .external_lex_state = 4}, - [1031] = {.lex_state = 43, .external_lex_state = 4}, - [1032] = {.lex_state = 43, .external_lex_state = 4}, - [1033] = {.lex_state = 43, .external_lex_state = 4}, - [1034] = {.lex_state = 43, .external_lex_state = 4}, - [1035] = {.lex_state = 43, .external_lex_state = 2}, - [1036] = {.lex_state = 43, .external_lex_state = 4}, - [1037] = {.lex_state = 43, .external_lex_state = 2}, - [1038] = {.lex_state = 43, .external_lex_state = 2}, - [1039] = {.lex_state = 43, .external_lex_state = 2}, - [1040] = {.lex_state = 43, .external_lex_state = 2}, - [1041] = {.lex_state = 43, .external_lex_state = 2}, - [1042] = {.lex_state = 43, .external_lex_state = 2}, - [1043] = {.lex_state = 3, .external_lex_state = 3}, - [1044] = {.lex_state = 43, .external_lex_state = 2}, - [1045] = {.lex_state = 5, .external_lex_state = 2}, - [1046] = {.lex_state = 5, .external_lex_state = 2}, - [1047] = {.lex_state = 43, .external_lex_state = 2}, - [1048] = {.lex_state = 5, .external_lex_state = 2}, - [1049] = {.lex_state = 43, .external_lex_state = 3}, - [1050] = {.lex_state = 43, .external_lex_state = 2}, - [1051] = {.lex_state = 43, .external_lex_state = 2}, - [1052] = {.lex_state = 5, .external_lex_state = 2}, - [1053] = {.lex_state = 3, .external_lex_state = 3}, - [1054] = {.lex_state = 5, .external_lex_state = 2}, - [1055] = {.lex_state = 43, .external_lex_state = 2}, - [1056] = {.lex_state = 43, .external_lex_state = 2}, - [1057] = {.lex_state = 3, .external_lex_state = 2}, - [1058] = {.lex_state = 3, .external_lex_state = 2}, - [1059] = {.lex_state = 3, .external_lex_state = 2}, - [1060] = {.lex_state = 2, .external_lex_state = 2}, - [1061] = {.lex_state = 43, .external_lex_state = 2}, - [1062] = {.lex_state = 3, .external_lex_state = 1}, - [1063] = {.lex_state = 2, .external_lex_state = 3}, - [1064] = {.lex_state = 43, .external_lex_state = 2}, - [1065] = {.lex_state = 43, .external_lex_state = 2}, - [1066] = {.lex_state = 43, .external_lex_state = 2}, - [1067] = {.lex_state = 3, .external_lex_state = 2}, - [1068] = {.lex_state = 4, .external_lex_state = 3}, - [1069] = {.lex_state = 4, .external_lex_state = 2}, - [1070] = {.lex_state = 3, .external_lex_state = 3}, - [1071] = {.lex_state = 3, .external_lex_state = 3}, - [1072] = {.lex_state = 43, .external_lex_state = 2}, - [1073] = {.lex_state = 43, .external_lex_state = 2}, - [1074] = {.lex_state = 43, .external_lex_state = 2}, - [1075] = {.lex_state = 43, .external_lex_state = 2}, - [1076] = {.lex_state = 43, .external_lex_state = 2}, - [1077] = {.lex_state = 43, .external_lex_state = 2}, - [1078] = {.lex_state = 43, .external_lex_state = 2}, - [1079] = {.lex_state = 43, .external_lex_state = 2}, - [1080] = {.lex_state = 43, .external_lex_state = 2}, - [1081] = {.lex_state = 43, .external_lex_state = 2}, - [1082] = {.lex_state = 43, .external_lex_state = 2}, - [1083] = {.lex_state = 43, .external_lex_state = 2}, - [1084] = {.lex_state = 43, .external_lex_state = 2}, - [1085] = {.lex_state = 43, .external_lex_state = 2}, - [1086] = {.lex_state = 43, .external_lex_state = 2}, - [1087] = {.lex_state = 43, .external_lex_state = 2}, - [1088] = {.lex_state = 43, .external_lex_state = 2}, - [1089] = {.lex_state = 43, .external_lex_state = 2}, - [1090] = {.lex_state = 43, .external_lex_state = 2}, - [1091] = {.lex_state = 43, .external_lex_state = 3}, - [1092] = {.lex_state = 43, .external_lex_state = 2}, - [1093] = {.lex_state = 43, .external_lex_state = 2}, - [1094] = {.lex_state = 43, .external_lex_state = 2}, - [1095] = {.lex_state = 4, .external_lex_state = 3}, - [1096] = {.lex_state = 43, .external_lex_state = 2}, - [1097] = {.lex_state = 43, .external_lex_state = 2}, - [1098] = {.lex_state = 4, .external_lex_state = 3}, - [1099] = {.lex_state = 43, .external_lex_state = 2}, - [1100] = {.lex_state = 4, .external_lex_state = 3}, - [1101] = {.lex_state = 43, .external_lex_state = 2}, - [1102] = {.lex_state = 4, .external_lex_state = 3}, - [1103] = {.lex_state = 4, .external_lex_state = 2}, - [1104] = {.lex_state = 43, .external_lex_state = 2}, - [1105] = {.lex_state = 43, .external_lex_state = 2}, - [1106] = {.lex_state = 43, .external_lex_state = 2}, - [1107] = {.lex_state = 4, .external_lex_state = 2}, - [1108] = {.lex_state = 4, .external_lex_state = 2}, - [1109] = {.lex_state = 4, .external_lex_state = 2}, - [1110] = {.lex_state = 43, .external_lex_state = 2}, - [1111] = {.lex_state = 43, .external_lex_state = 2}, - [1112] = {.lex_state = 43, .external_lex_state = 2}, - [1113] = {.lex_state = 43, .external_lex_state = 2}, - [1114] = {.lex_state = 43, .external_lex_state = 2}, - [1115] = {.lex_state = 43, .external_lex_state = 2}, - [1116] = {.lex_state = 43, .external_lex_state = 2}, - [1117] = {.lex_state = 43, .external_lex_state = 2}, - [1118] = {.lex_state = 43, .external_lex_state = 2}, - [1119] = {.lex_state = 43, .external_lex_state = 2}, - [1120] = {.lex_state = 43, .external_lex_state = 2}, - [1121] = {.lex_state = 43, .external_lex_state = 2}, - [1122] = {.lex_state = 3, .external_lex_state = 2}, - [1123] = {.lex_state = 43, .external_lex_state = 2}, - [1124] = {.lex_state = 43, .external_lex_state = 2}, - [1125] = {.lex_state = 43, .external_lex_state = 2}, - [1126] = {.lex_state = 43, .external_lex_state = 2}, - [1127] = {.lex_state = 43, .external_lex_state = 2}, - [1128] = {.lex_state = 43, .external_lex_state = 2}, - [1129] = {.lex_state = 43, .external_lex_state = 2}, - [1130] = {.lex_state = 43, .external_lex_state = 2}, - [1131] = {.lex_state = 43, .external_lex_state = 2}, - [1132] = {.lex_state = 43, .external_lex_state = 1}, - [1133] = {.lex_state = 43, .external_lex_state = 2}, - [1134] = {.lex_state = 43, .external_lex_state = 2}, - [1135] = {.lex_state = 43, .external_lex_state = 1}, - [1136] = {.lex_state = 3, .external_lex_state = 2}, - [1137] = {.lex_state = 43, .external_lex_state = 2}, - [1138] = {.lex_state = 43, .external_lex_state = 2}, - [1139] = {.lex_state = 43, .external_lex_state = 2}, - [1140] = {.lex_state = 43, .external_lex_state = 2}, - [1141] = {.lex_state = 3, .external_lex_state = 4}, - [1142] = {.lex_state = 43, .external_lex_state = 2}, - [1143] = {.lex_state = 43, .external_lex_state = 2}, - [1144] = {.lex_state = 43, .external_lex_state = 2}, - [1145] = {.lex_state = 43, .external_lex_state = 2}, - [1146] = {.lex_state = 43, .external_lex_state = 2}, - [1147] = {.lex_state = 3, .external_lex_state = 4}, - [1148] = {.lex_state = 3, .external_lex_state = 2}, - [1149] = {.lex_state = 43, .external_lex_state = 2}, - [1150] = {.lex_state = 43, .external_lex_state = 2}, - [1151] = {.lex_state = 43, .external_lex_state = 2}, - [1152] = {.lex_state = 43, .external_lex_state = 2}, - [1153] = {.lex_state = 43, .external_lex_state = 2}, - [1154] = {.lex_state = 43, .external_lex_state = 2}, - [1155] = {.lex_state = 43, .external_lex_state = 2}, - [1156] = {.lex_state = 43, .external_lex_state = 2}, - [1157] = {.lex_state = 43, .external_lex_state = 2}, - [1158] = {.lex_state = 43, .external_lex_state = 2}, - [1159] = {.lex_state = 43, .external_lex_state = 2}, - [1160] = {.lex_state = 43, .external_lex_state = 2}, - [1161] = {.lex_state = 43, .external_lex_state = 4}, - [1162] = {.lex_state = 43, .external_lex_state = 1}, - [1163] = {.lex_state = 43, .external_lex_state = 2}, - [1164] = {.lex_state = 43, .external_lex_state = 2}, - [1165] = {.lex_state = 43, .external_lex_state = 2}, - [1166] = {.lex_state = 43, .external_lex_state = 2}, - [1167] = {.lex_state = 43, .external_lex_state = 2}, - [1168] = {.lex_state = 43, .external_lex_state = 2}, - [1169] = {.lex_state = 43, .external_lex_state = 2}, - [1170] = {.lex_state = 43, .external_lex_state = 2}, - [1171] = {.lex_state = 43, .external_lex_state = 2}, - [1172] = {.lex_state = 43, .external_lex_state = 2}, - [1173] = {.lex_state = 43, .external_lex_state = 2}, - [1174] = {.lex_state = 43, .external_lex_state = 1}, - [1175] = {.lex_state = 3, .external_lex_state = 3}, - [1176] = {.lex_state = 3, .external_lex_state = 2}, - [1177] = {.lex_state = 3, .external_lex_state = 2}, - [1178] = {.lex_state = 43, .external_lex_state = 2}, - [1179] = {.lex_state = 43, .external_lex_state = 2}, - [1180] = {.lex_state = 43, .external_lex_state = 2}, - [1181] = {.lex_state = 3, .external_lex_state = 4}, - [1182] = {.lex_state = 43, .external_lex_state = 2}, - [1183] = {.lex_state = 43, .external_lex_state = 2}, - [1184] = {.lex_state = 43, .external_lex_state = 1}, - [1185] = {.lex_state = 43, .external_lex_state = 1}, - [1186] = {.lex_state = 43, .external_lex_state = 2}, - [1187] = {.lex_state = 3, .external_lex_state = 2}, - [1188] = {.lex_state = 43, .external_lex_state = 2}, - [1189] = {.lex_state = 43, .external_lex_state = 2}, - [1190] = {.lex_state = 43, .external_lex_state = 2}, - [1191] = {.lex_state = 3, .external_lex_state = 2}, - [1192] = {.lex_state = 43, .external_lex_state = 2}, - [1193] = {.lex_state = 3, .external_lex_state = 2}, - [1194] = {.lex_state = 43, .external_lex_state = 2}, - [1195] = {.lex_state = 43, .external_lex_state = 2}, - [1196] = {.lex_state = 3, .external_lex_state = 2}, - [1197] = {.lex_state = 43, .external_lex_state = 3}, - [1198] = {.lex_state = 3, .external_lex_state = 3}, - [1199] = {.lex_state = 43, .external_lex_state = 2}, - [1200] = {.lex_state = 3, .external_lex_state = 2}, - [1201] = {.lex_state = 43, .external_lex_state = 1}, - [1202] = {.lex_state = 3, .external_lex_state = 2}, - [1203] = {.lex_state = 43, .external_lex_state = 2}, - [1204] = {.lex_state = 43, .external_lex_state = 2}, - [1205] = {.lex_state = 3, .external_lex_state = 2}, - [1206] = {.lex_state = 3, .external_lex_state = 2}, - [1207] = {.lex_state = 43, .external_lex_state = 1}, - [1208] = {.lex_state = 3, .external_lex_state = 2}, - [1209] = {.lex_state = 43, .external_lex_state = 3}, - [1210] = {.lex_state = 3, .external_lex_state = 2}, - [1211] = {.lex_state = 5, .external_lex_state = 3}, - [1212] = {.lex_state = 43, .external_lex_state = 1}, - [1213] = {.lex_state = 5, .external_lex_state = 3}, - [1214] = {.lex_state = 3, .external_lex_state = 3}, - [1215] = {.lex_state = 43, .external_lex_state = 2}, - [1216] = {.lex_state = 3, .external_lex_state = 2}, - [1217] = {.lex_state = 3, .external_lex_state = 2}, - [1218] = {.lex_state = 5, .external_lex_state = 3}, - [1219] = {.lex_state = 43, .external_lex_state = 2}, - [1220] = {.lex_state = 43, .external_lex_state = 1}, - [1221] = {.lex_state = 43, .external_lex_state = 2}, - [1222] = {.lex_state = 5, .external_lex_state = 3}, - [1223] = {.lex_state = 5, .external_lex_state = 3}, - [1224] = {.lex_state = 43, .external_lex_state = 1}, - [1225] = {.lex_state = 3, .external_lex_state = 2}, - [1226] = {.lex_state = 0, .external_lex_state = 3}, - [1227] = {.lex_state = 43, .external_lex_state = 1}, - [1228] = {.lex_state = 3, .external_lex_state = 2}, - [1229] = {.lex_state = 43, .external_lex_state = 1}, - [1230] = {.lex_state = 43, .external_lex_state = 1}, - [1231] = {.lex_state = 43, .external_lex_state = 1}, - [1232] = {.lex_state = 3, .external_lex_state = 2}, - [1233] = {.lex_state = 43, .external_lex_state = 1}, - [1234] = {.lex_state = 43, .external_lex_state = 1}, - [1235] = {.lex_state = 3, .external_lex_state = 2}, - [1236] = {.lex_state = 43, .external_lex_state = 4}, - [1237] = {.lex_state = 43, .external_lex_state = 1}, - [1238] = {.lex_state = 43, .external_lex_state = 1}, - [1239] = {.lex_state = 43, .external_lex_state = 1}, - [1240] = {.lex_state = 43, .external_lex_state = 1}, - [1241] = {.lex_state = 43, .external_lex_state = 2}, - [1242] = {.lex_state = 43, .external_lex_state = 1}, - [1243] = {.lex_state = 43, .external_lex_state = 1}, - [1244] = {.lex_state = 43, .external_lex_state = 1}, - [1245] = {.lex_state = 4, .external_lex_state = 4}, - [1246] = {.lex_state = 43, .external_lex_state = 1}, - [1247] = {.lex_state = 3, .external_lex_state = 2}, - [1248] = {.lex_state = 4, .external_lex_state = 4}, - [1249] = {.lex_state = 43, .external_lex_state = 1}, - [1250] = {.lex_state = 43, .external_lex_state = 1}, - [1251] = {.lex_state = 43, .external_lex_state = 1}, - [1252] = {.lex_state = 4, .external_lex_state = 4}, - [1253] = {.lex_state = 4, .external_lex_state = 4}, - [1254] = {.lex_state = 43, .external_lex_state = 1}, - [1255] = {.lex_state = 43, .external_lex_state = 1}, - [1256] = {.lex_state = 4, .external_lex_state = 4}, - [1257] = {.lex_state = 3, .external_lex_state = 2}, - [1258] = {.lex_state = 43, .external_lex_state = 1}, - [1259] = {.lex_state = 3, .external_lex_state = 2}, - [1260] = {.lex_state = 3, .external_lex_state = 2}, - [1261] = {.lex_state = 3, .external_lex_state = 2}, - [1262] = {.lex_state = 3, .external_lex_state = 2}, - [1263] = {.lex_state = 43, .external_lex_state = 1}, - [1264] = {.lex_state = 4, .external_lex_state = 2}, - [1265] = {.lex_state = 3, .external_lex_state = 2}, - [1266] = {.lex_state = 3, .external_lex_state = 2}, - [1267] = {.lex_state = 43, .external_lex_state = 1}, - [1268] = {.lex_state = 4, .external_lex_state = 2}, - [1269] = {.lex_state = 3, .external_lex_state = 2}, - [1270] = {.lex_state = 43, .external_lex_state = 1}, - [1271] = {.lex_state = 43, .external_lex_state = 1}, - [1272] = {.lex_state = 43, .external_lex_state = 1}, - [1273] = {.lex_state = 3, .external_lex_state = 2}, - [1274] = {.lex_state = 4, .external_lex_state = 2}, - [1275] = {.lex_state = 3, .external_lex_state = 2}, - [1276] = {.lex_state = 43, .external_lex_state = 1}, - [1277] = {.lex_state = 43, .external_lex_state = 1}, - [1278] = {.lex_state = 3, .external_lex_state = 2}, - [1279] = {.lex_state = 43, .external_lex_state = 1}, - [1280] = {.lex_state = 4, .external_lex_state = 2}, - [1281] = {.lex_state = 43, .external_lex_state = 2}, - [1282] = {.lex_state = 3, .external_lex_state = 2}, - [1283] = {.lex_state = 3, .external_lex_state = 2}, - [1284] = {.lex_state = 43, .external_lex_state = 1}, - [1285] = {.lex_state = 3, .external_lex_state = 2}, - [1286] = {.lex_state = 3, .external_lex_state = 2}, - [1287] = {.lex_state = 43, .external_lex_state = 1}, - [1288] = {.lex_state = 43, .external_lex_state = 1}, - [1289] = {.lex_state = 43, .external_lex_state = 1}, - [1290] = {.lex_state = 3, .external_lex_state = 2}, - [1291] = {.lex_state = 43, .external_lex_state = 1}, - [1292] = {.lex_state = 3, .external_lex_state = 2}, - [1293] = {.lex_state = 3, .external_lex_state = 2}, - [1294] = {.lex_state = 4, .external_lex_state = 2}, - [1295] = {.lex_state = 4, .external_lex_state = 2}, - [1296] = {.lex_state = 3, .external_lex_state = 2}, - [1297] = {.lex_state = 43, .external_lex_state = 2}, - [1298] = {.lex_state = 3, .external_lex_state = 2}, - [1299] = {.lex_state = 3, .external_lex_state = 2}, - [1300] = {.lex_state = 43, .external_lex_state = 1}, - [1301] = {.lex_state = 43, .external_lex_state = 2}, - [1302] = {.lex_state = 4, .external_lex_state = 2}, - [1303] = {.lex_state = 3, .external_lex_state = 2}, - [1304] = {.lex_state = 3, .external_lex_state = 2}, - [1305] = {.lex_state = 4, .external_lex_state = 2}, - [1306] = {.lex_state = 3, .external_lex_state = 2}, - [1307] = {.lex_state = 43, .external_lex_state = 2}, - [1308] = {.lex_state = 3, .external_lex_state = 2}, - [1309] = {.lex_state = 3, .external_lex_state = 2}, - [1310] = {.lex_state = 4, .external_lex_state = 2}, - [1311] = {.lex_state = 3, .external_lex_state = 2}, - [1312] = {.lex_state = 43, .external_lex_state = 4}, - [1313] = {.lex_state = 43, .external_lex_state = 2}, - [1314] = {.lex_state = 3, .external_lex_state = 2}, - [1315] = {.lex_state = 3, .external_lex_state = 2}, - [1316] = {.lex_state = 3, .external_lex_state = 2}, - [1317] = {.lex_state = 3, .external_lex_state = 2}, - [1318] = {.lex_state = 3, .external_lex_state = 2}, - [1319] = {.lex_state = 43, .external_lex_state = 4}, - [1320] = {.lex_state = 43, .external_lex_state = 2}, - [1321] = {.lex_state = 4, .external_lex_state = 2}, - [1322] = {.lex_state = 3, .external_lex_state = 2}, - [1323] = {.lex_state = 43, .external_lex_state = 1}, - [1324] = {.lex_state = 3, .external_lex_state = 2}, - [1325] = {.lex_state = 43, .external_lex_state = 2}, - [1326] = {.lex_state = 3, .external_lex_state = 2}, - [1327] = {.lex_state = 3, .external_lex_state = 2}, - [1328] = {.lex_state = 43, .external_lex_state = 4}, - [1329] = {.lex_state = 43, .external_lex_state = 4}, - [1330] = {.lex_state = 43, .external_lex_state = 2}, - [1331] = {.lex_state = 43, .external_lex_state = 2}, - [1332] = {.lex_state = 43, .external_lex_state = 2}, - [1333] = {.lex_state = 43, .external_lex_state = 4}, - [1334] = {.lex_state = 43, .external_lex_state = 2}, - [1335] = {.lex_state = 43, .external_lex_state = 2}, - [1336] = {.lex_state = 43, .external_lex_state = 4}, - [1337] = {.lex_state = 43, .external_lex_state = 4}, - [1338] = {.lex_state = 43, .external_lex_state = 2}, - [1339] = {.lex_state = 43, .external_lex_state = 4}, - [1340] = {.lex_state = 1, .external_lex_state = 4}, - [1341] = {.lex_state = 43, .external_lex_state = 2}, - [1342] = {.lex_state = 43, .external_lex_state = 2}, - [1343] = {.lex_state = 43, .external_lex_state = 2}, - [1344] = {.lex_state = 43, .external_lex_state = 4}, - [1345] = {.lex_state = 43, .external_lex_state = 4}, - [1346] = {.lex_state = 43, .external_lex_state = 2}, - [1347] = {.lex_state = 43, .external_lex_state = 2}, - [1348] = {.lex_state = 43, .external_lex_state = 2}, - [1349] = {.lex_state = 43, .external_lex_state = 2}, - [1350] = {.lex_state = 43, .external_lex_state = 4}, - [1351] = {.lex_state = 43, .external_lex_state = 4}, - [1352] = {.lex_state = 43, .external_lex_state = 4}, - [1353] = {.lex_state = 43, .external_lex_state = 2}, - [1354] = {.lex_state = 43, .external_lex_state = 4}, - [1355] = {.lex_state = 43, .external_lex_state = 4}, - [1356] = {.lex_state = 43, .external_lex_state = 4}, - [1357] = {.lex_state = 43, .external_lex_state = 4}, - [1358] = {.lex_state = 43, .external_lex_state = 4}, - [1359] = {.lex_state = 43, .external_lex_state = 4}, - [1360] = {.lex_state = 43, .external_lex_state = 2}, - [1361] = {.lex_state = 43, .external_lex_state = 2}, - [1362] = {.lex_state = 43, .external_lex_state = 4}, - [1363] = {.lex_state = 1, .external_lex_state = 4}, - [1364] = {.lex_state = 43, .external_lex_state = 2}, - [1365] = {.lex_state = 43, .external_lex_state = 4}, - [1366] = {.lex_state = 43, .external_lex_state = 4}, - [1367] = {.lex_state = 43, .external_lex_state = 4}, - [1368] = {.lex_state = 43, .external_lex_state = 2}, - [1369] = {.lex_state = 43, .external_lex_state = 4}, - [1370] = {.lex_state = 43, .external_lex_state = 4}, - [1371] = {.lex_state = 43, .external_lex_state = 2}, - [1372] = {.lex_state = 43, .external_lex_state = 4}, - [1373] = {.lex_state = 43, .external_lex_state = 2}, - [1374] = {.lex_state = 43, .external_lex_state = 4}, - [1375] = {.lex_state = 43, .external_lex_state = 4}, - [1376] = {.lex_state = 43, .external_lex_state = 2}, - [1377] = {.lex_state = 4, .external_lex_state = 3}, - [1378] = {.lex_state = 4, .external_lex_state = 3}, - [1379] = {.lex_state = 4, .external_lex_state = 3}, - [1380] = {.lex_state = 4, .external_lex_state = 3}, - [1381] = {.lex_state = 4, .external_lex_state = 3}, - [1382] = {.lex_state = 5, .external_lex_state = 2}, - [1383] = {.lex_state = 5, .external_lex_state = 2}, - [1384] = {.lex_state = 43, .external_lex_state = 4}, - [1385] = {.lex_state = 43, .external_lex_state = 4}, - [1386] = {.lex_state = 5, .external_lex_state = 2}, - [1387] = {.lex_state = 5, .external_lex_state = 2}, - [1388] = {.lex_state = 5, .external_lex_state = 2}, - [1389] = {.lex_state = 43, .external_lex_state = 4}, - [1390] = {.lex_state = 43, .external_lex_state = 2}, - [1391] = {.lex_state = 43, .external_lex_state = 4}, - [1392] = {.lex_state = 43, .external_lex_state = 4}, - [1393] = {.lex_state = 1, .external_lex_state = 4}, - [1394] = {.lex_state = 43, .external_lex_state = 4}, - [1395] = {.lex_state = 43, .external_lex_state = 2}, - [1396] = {.lex_state = 43, .external_lex_state = 4}, - [1397] = {.lex_state = 43, .external_lex_state = 2}, - [1398] = {.lex_state = 43, .external_lex_state = 2}, - [1399] = {.lex_state = 1, .external_lex_state = 4}, - [1400] = {.lex_state = 43, .external_lex_state = 4}, - [1401] = {.lex_state = 43, .external_lex_state = 4}, - [1402] = {.lex_state = 43, .external_lex_state = 2}, - [1403] = {.lex_state = 43, .external_lex_state = 4}, - [1404] = {.lex_state = 1, .external_lex_state = 4}, - [1405] = {.lex_state = 43, .external_lex_state = 4}, - [1406] = {.lex_state = 43, .external_lex_state = 4}, - [1407] = {.lex_state = 0, .external_lex_state = 4}, - [1408] = {.lex_state = 0, .external_lex_state = 4}, - [1409] = {.lex_state = 43, .external_lex_state = 4}, - [1410] = {.lex_state = 43, .external_lex_state = 4}, - [1411] = {.lex_state = 43, .external_lex_state = 4}, - [1412] = {.lex_state = 43, .external_lex_state = 4}, - [1413] = {.lex_state = 43, .external_lex_state = 4}, - [1414] = {.lex_state = 43, .external_lex_state = 4}, - [1415] = {.lex_state = 43, .external_lex_state = 2}, - [1416] = {.lex_state = 43, .external_lex_state = 4}, - [1417] = {.lex_state = 43, .external_lex_state = 2}, - [1418] = {.lex_state = 43, .external_lex_state = 4}, - [1419] = {.lex_state = 43, .external_lex_state = 4}, - [1420] = {.lex_state = 43, .external_lex_state = 4}, - [1421] = {.lex_state = 43, .external_lex_state = 4}, - [1422] = {.lex_state = 43, .external_lex_state = 4}, - [1423] = {.lex_state = 43, .external_lex_state = 2}, - [1424] = {.lex_state = 43, .external_lex_state = 4}, - [1425] = {.lex_state = 43, .external_lex_state = 2}, - [1426] = {.lex_state = 43, .external_lex_state = 4}, - [1427] = {.lex_state = 43, .external_lex_state = 2}, - [1428] = {.lex_state = 43, .external_lex_state = 2}, - [1429] = {.lex_state = 43, .external_lex_state = 2}, - [1430] = {.lex_state = 43, .external_lex_state = 4}, - [1431] = {.lex_state = 43, .external_lex_state = 2}, - [1432] = {.lex_state = 43, .external_lex_state = 4}, - [1433] = {.lex_state = 43, .external_lex_state = 4}, - [1434] = {.lex_state = 43, .external_lex_state = 4}, - [1435] = {.lex_state = 43, .external_lex_state = 2}, - [1436] = {.lex_state = 43, .external_lex_state = 4}, - [1437] = {.lex_state = 43, .external_lex_state = 4}, - [1438] = {.lex_state = 43, .external_lex_state = 4}, - [1439] = {.lex_state = 43, .external_lex_state = 4}, - [1440] = {.lex_state = 43, .external_lex_state = 2}, - [1441] = {.lex_state = 43, .external_lex_state = 4}, - [1442] = {.lex_state = 43, .external_lex_state = 2}, - [1443] = {.lex_state = 43, .external_lex_state = 3}, - [1444] = {.lex_state = 43, .external_lex_state = 4}, - [1445] = {.lex_state = 1, .external_lex_state = 4}, - [1446] = {.lex_state = 43, .external_lex_state = 2}, - [1447] = {.lex_state = 43, .external_lex_state = 4}, - [1448] = {.lex_state = 43, .external_lex_state = 2}, - [1449] = {.lex_state = 43, .external_lex_state = 2}, - [1450] = {.lex_state = 43, .external_lex_state = 2}, - [1451] = {.lex_state = 43, .external_lex_state = 2}, - [1452] = {.lex_state = 5, .external_lex_state = 4}, - [1453] = {.lex_state = 43, .external_lex_state = 2}, - [1454] = {.lex_state = 43, .external_lex_state = 2}, - [1455] = {.lex_state = 43, .external_lex_state = 2}, - [1456] = {.lex_state = 43, .external_lex_state = 2}, - [1457] = {.lex_state = 43, .external_lex_state = 2}, - [1458] = {.lex_state = 43, .external_lex_state = 2}, - [1459] = {.lex_state = 43, .external_lex_state = 4}, - [1460] = {.lex_state = 43, .external_lex_state = 2}, - [1461] = {.lex_state = 43, .external_lex_state = 4}, - [1462] = {.lex_state = 8, .external_lex_state = 2}, - [1463] = {.lex_state = 43, .external_lex_state = 4}, - [1464] = {.lex_state = 43, .external_lex_state = 2}, - [1465] = {.lex_state = 43, .external_lex_state = 2}, - [1466] = {.lex_state = 43, .external_lex_state = 2}, - [1467] = {.lex_state = 43, .external_lex_state = 4}, - [1468] = {.lex_state = 43, .external_lex_state = 2}, - [1469] = {.lex_state = 43, .external_lex_state = 2}, - [1470] = {.lex_state = 43, .external_lex_state = 2}, - [1471] = {.lex_state = 43, .external_lex_state = 2}, - [1472] = {.lex_state = 43, .external_lex_state = 2}, - [1473] = {.lex_state = 43, .external_lex_state = 4}, - [1474] = {.lex_state = 43, .external_lex_state = 4}, - [1475] = {.lex_state = 8, .external_lex_state = 2}, - [1476] = {.lex_state = 43, .external_lex_state = 2}, - [1477] = {.lex_state = 43, .external_lex_state = 2}, - [1478] = {.lex_state = 43, .external_lex_state = 2}, - [1479] = {.lex_state = 43, .external_lex_state = 2}, - [1480] = {.lex_state = 43, .external_lex_state = 2}, - [1481] = {.lex_state = 43, .external_lex_state = 2}, - [1482] = {.lex_state = 8, .external_lex_state = 2}, - [1483] = {.lex_state = 8, .external_lex_state = 2}, - [1484] = {.lex_state = 43, .external_lex_state = 2}, - [1485] = {.lex_state = 43, .external_lex_state = 2}, - [1486] = {.lex_state = 43, .external_lex_state = 2}, - [1487] = {.lex_state = 43, .external_lex_state = 2}, - [1488] = {.lex_state = 43, .external_lex_state = 2}, - [1489] = {.lex_state = 43, .external_lex_state = 4}, - [1490] = {.lex_state = 8, .external_lex_state = 2}, - [1491] = {.lex_state = 43, .external_lex_state = 2}, - [1492] = {.lex_state = 43, .external_lex_state = 2}, - [1493] = {.lex_state = 43, .external_lex_state = 2}, - [1494] = {.lex_state = 43, .external_lex_state = 2}, - [1495] = {.lex_state = 43, .external_lex_state = 2}, - [1496] = {.lex_state = 43, .external_lex_state = 2}, - [1497] = {.lex_state = 5, .external_lex_state = 4}, - [1498] = {.lex_state = 43, .external_lex_state = 2}, - [1499] = {.lex_state = 43, .external_lex_state = 2}, - [1500] = {.lex_state = 43, .external_lex_state = 2}, - [1501] = {.lex_state = 43, .external_lex_state = 2}, - [1502] = {.lex_state = 43, .external_lex_state = 4}, - [1503] = {.lex_state = 43, .external_lex_state = 4}, - [1504] = {.lex_state = 43, .external_lex_state = 4}, - [1505] = {.lex_state = 43, .external_lex_state = 2}, - [1506] = {.lex_state = 43, .external_lex_state = 4}, - [1507] = {.lex_state = 43, .external_lex_state = 2}, - [1508] = {.lex_state = 43, .external_lex_state = 2}, - [1509] = {.lex_state = 43, .external_lex_state = 4}, - [1510] = {.lex_state = 43, .external_lex_state = 2}, - [1511] = {.lex_state = 43, .external_lex_state = 4}, - [1512] = {.lex_state = 43, .external_lex_state = 2}, - [1513] = {.lex_state = 43, .external_lex_state = 2}, - [1514] = {.lex_state = 43, .external_lex_state = 2}, - [1515] = {.lex_state = 43, .external_lex_state = 2}, - [1516] = {.lex_state = 43, .external_lex_state = 2}, - [1517] = {.lex_state = 43, .external_lex_state = 2}, - [1518] = {.lex_state = 43, .external_lex_state = 4}, - [1519] = {.lex_state = 43, .external_lex_state = 2}, - [1520] = {.lex_state = 43, .external_lex_state = 2}, - [1521] = {.lex_state = 43, .external_lex_state = 2}, - [1522] = {.lex_state = 43, .external_lex_state = 2}, - [1523] = {.lex_state = 43, .external_lex_state = 2}, - [1524] = {.lex_state = 43, .external_lex_state = 2}, - [1525] = {.lex_state = 43, .external_lex_state = 2}, - [1526] = {.lex_state = 43, .external_lex_state = 2}, - [1527] = {.lex_state = 43, .external_lex_state = 2}, - [1528] = {.lex_state = 43, .external_lex_state = 2}, - [1529] = {.lex_state = 43, .external_lex_state = 2}, - [1530] = {.lex_state = 43, .external_lex_state = 2}, - [1531] = {.lex_state = 43, .external_lex_state = 2}, - [1532] = {.lex_state = 43, .external_lex_state = 2}, - [1533] = {.lex_state = 43, .external_lex_state = 2}, - [1534] = {.lex_state = 43, .external_lex_state = 2}, - [1535] = {.lex_state = 0, .external_lex_state = 4}, - [1536] = {.lex_state = 43, .external_lex_state = 2}, - [1537] = {.lex_state = 43, .external_lex_state = 2}, - [1538] = {.lex_state = 43, .external_lex_state = 2}, - [1539] = {.lex_state = 43, .external_lex_state = 2}, - [1540] = {.lex_state = 43, .external_lex_state = 4}, - [1541] = {.lex_state = 43, .external_lex_state = 2}, - [1542] = {.lex_state = 43, .external_lex_state = 2}, - [1543] = {.lex_state = 43, .external_lex_state = 2}, - [1544] = {.lex_state = 43, .external_lex_state = 4}, - [1545] = {.lex_state = 43, .external_lex_state = 2}, - [1546] = {.lex_state = 43, .external_lex_state = 2}, - [1547] = {.lex_state = 43, .external_lex_state = 2}, - [1548] = {.lex_state = 43, .external_lex_state = 2}, - [1549] = {.lex_state = 43, .external_lex_state = 2}, - [1550] = {.lex_state = 43, .external_lex_state = 2}, - [1551] = {.lex_state = 43, .external_lex_state = 4}, - [1552] = {.lex_state = 43, .external_lex_state = 2}, - [1553] = {.lex_state = 43, .external_lex_state = 2}, - [1554] = {.lex_state = 43, .external_lex_state = 2}, - [1555] = {.lex_state = 43, .external_lex_state = 2}, - [1556] = {.lex_state = 43, .external_lex_state = 2}, - [1557] = {.lex_state = 5, .external_lex_state = 4}, - [1558] = {.lex_state = 43, .external_lex_state = 2}, - [1559] = {.lex_state = 43, .external_lex_state = 2}, - [1560] = {.lex_state = 43, .external_lex_state = 2}, - [1561] = {.lex_state = 43, .external_lex_state = 2}, - [1562] = {.lex_state = 43, .external_lex_state = 2}, - [1563] = {.lex_state = 43, .external_lex_state = 2}, - [1564] = {.lex_state = 43, .external_lex_state = 2}, - [1565] = {.lex_state = 43, .external_lex_state = 4}, - [1566] = {.lex_state = 43, .external_lex_state = 2}, - [1567] = {.lex_state = 43, .external_lex_state = 4}, - [1568] = {.lex_state = 43, .external_lex_state = 2}, - [1569] = {.lex_state = 43, .external_lex_state = 2}, - [1570] = {.lex_state = 43, .external_lex_state = 2}, - [1571] = {.lex_state = 43, .external_lex_state = 2}, - [1572] = {.lex_state = 43, .external_lex_state = 2}, - [1573] = {.lex_state = 43, .external_lex_state = 2}, - [1574] = {.lex_state = 43, .external_lex_state = 4}, - [1575] = {.lex_state = 43, .external_lex_state = 2}, - [1576] = {.lex_state = 43, .external_lex_state = 4}, - [1577] = {.lex_state = 43, .external_lex_state = 2}, - [1578] = {.lex_state = 43, .external_lex_state = 2}, - [1579] = {.lex_state = 0, .external_lex_state = 4}, - [1580] = {.lex_state = 43, .external_lex_state = 2}, - [1581] = {.lex_state = 43, .external_lex_state = 4}, - [1582] = {.lex_state = 43, .external_lex_state = 2}, - [1583] = {.lex_state = 43, .external_lex_state = 2}, - [1584] = {.lex_state = 43, .external_lex_state = 2}, - [1585] = {.lex_state = 43, .external_lex_state = 4}, - [1586] = {.lex_state = 43, .external_lex_state = 2}, - [1587] = {.lex_state = 43, .external_lex_state = 2}, - [1588] = {.lex_state = 43, .external_lex_state = 2}, - [1589] = {.lex_state = 43, .external_lex_state = 4}, - [1590] = {.lex_state = 43, .external_lex_state = 2}, - [1591] = {.lex_state = 43, .external_lex_state = 2}, - [1592] = {.lex_state = 43, .external_lex_state = 2}, - [1593] = {.lex_state = 43, .external_lex_state = 2}, - [1594] = {.lex_state = 43, .external_lex_state = 2}, - [1595] = {.lex_state = 43, .external_lex_state = 2}, - [1596] = {.lex_state = 43, .external_lex_state = 4}, - [1597] = {.lex_state = 43, .external_lex_state = 2}, - [1598] = {.lex_state = 43, .external_lex_state = 4}, - [1599] = {.lex_state = 43, .external_lex_state = 2}, - [1600] = {.lex_state = 43, .external_lex_state = 4}, - [1601] = {.lex_state = 5, .external_lex_state = 4}, - [1602] = {.lex_state = 43, .external_lex_state = 2}, - [1603] = {.lex_state = 43, .external_lex_state = 2}, - [1604] = {.lex_state = 43, .external_lex_state = 2}, - [1605] = {.lex_state = 43, .external_lex_state = 2}, - [1606] = {.lex_state = 43, .external_lex_state = 2}, - [1607] = {.lex_state = 43, .external_lex_state = 2}, - [1608] = {.lex_state = 43, .external_lex_state = 2}, - [1609] = {.lex_state = 43, .external_lex_state = 2}, - [1610] = {.lex_state = 43, .external_lex_state = 4}, - [1611] = {.lex_state = 43, .external_lex_state = 2}, - [1612] = {.lex_state = 43, .external_lex_state = 2}, - [1613] = {.lex_state = 43, .external_lex_state = 2}, - [1614] = {.lex_state = 43, .external_lex_state = 4}, - [1615] = {.lex_state = 0, .external_lex_state = 4}, - [1616] = {.lex_state = 43, .external_lex_state = 2}, - [1617] = {.lex_state = 43, .external_lex_state = 4}, - [1618] = {.lex_state = 43, .external_lex_state = 2}, - [1619] = {.lex_state = 43, .external_lex_state = 2}, - [1620] = {.lex_state = 43, .external_lex_state = 4}, - [1621] = {.lex_state = 43, .external_lex_state = 2}, - [1622] = {.lex_state = 43, .external_lex_state = 2}, - [1623] = {.lex_state = 43, .external_lex_state = 2}, - [1624] = {.lex_state = 43, .external_lex_state = 2}, - [1625] = {.lex_state = 43, .external_lex_state = 2}, - [1626] = {.lex_state = 43, .external_lex_state = 2}, - [1627] = {.lex_state = 43, .external_lex_state = 4}, - [1628] = {.lex_state = 43, .external_lex_state = 2}, - [1629] = {.lex_state = 43, .external_lex_state = 2}, - [1630] = {.lex_state = 5, .external_lex_state = 4}, - [1631] = {.lex_state = 43, .external_lex_state = 2}, - [1632] = {.lex_state = 43, .external_lex_state = 2}, - [1633] = {.lex_state = 43, .external_lex_state = 4}, - [1634] = {.lex_state = 43, .external_lex_state = 2}, - [1635] = {.lex_state = 43, .external_lex_state = 4}, - [1636] = {.lex_state = 43, .external_lex_state = 4}, - [1637] = {.lex_state = 43, .external_lex_state = 2}, - [1638] = {.lex_state = 43, .external_lex_state = 2}, - [1639] = {.lex_state = 43, .external_lex_state = 2}, - [1640] = {.lex_state = 43, .external_lex_state = 2}, - [1641] = {.lex_state = 43, .external_lex_state = 2}, - [1642] = {.lex_state = 43, .external_lex_state = 2}, - [1643] = {.lex_state = 43, .external_lex_state = 2}, - [1644] = {.lex_state = 43, .external_lex_state = 4}, - [1645] = {.lex_state = 43, .external_lex_state = 2}, - [1646] = {.lex_state = 43, .external_lex_state = 2}, - [1647] = {.lex_state = 43, .external_lex_state = 2}, - [1648] = {.lex_state = 43, .external_lex_state = 2}, - [1649] = {.lex_state = 43, .external_lex_state = 4}, - [1650] = {.lex_state = 43, .external_lex_state = 2}, - [1651] = {.lex_state = 43, .external_lex_state = 2}, - [1652] = {.lex_state = 0, .external_lex_state = 4}, - [1653] = {.lex_state = 43, .external_lex_state = 4}, - [1654] = {.lex_state = 5, .external_lex_state = 2}, - [1655] = {.lex_state = 43, .external_lex_state = 2}, - [1656] = {.lex_state = 43, .external_lex_state = 4}, - [1657] = {.lex_state = 5, .external_lex_state = 2}, - [1658] = {.lex_state = 43, .external_lex_state = 4}, - [1659] = {.lex_state = 5, .external_lex_state = 2}, - [1660] = {.lex_state = 5, .external_lex_state = 2}, - [1661] = {.lex_state = 5, .external_lex_state = 2}, - [1662] = {.lex_state = 4, .external_lex_state = 2}, - [1663] = {.lex_state = 43, .external_lex_state = 2}, - [1664] = {.lex_state = 43, .external_lex_state = 2}, - [1665] = {.lex_state = 43, .external_lex_state = 2}, - [1666] = {.lex_state = 43, .external_lex_state = 2}, - [1667] = {.lex_state = 43, .external_lex_state = 2}, - [1668] = {.lex_state = 43, .external_lex_state = 2}, - [1669] = {.lex_state = 43, .external_lex_state = 2}, - [1670] = {.lex_state = 43, .external_lex_state = 2}, - [1671] = {.lex_state = 43, .external_lex_state = 2}, - [1672] = {.lex_state = 43, .external_lex_state = 2}, - [1673] = {.lex_state = 43, .external_lex_state = 2}, - [1674] = {.lex_state = 43, .external_lex_state = 2}, - [1675] = {.lex_state = 43, .external_lex_state = 2}, - [1676] = {.lex_state = 43, .external_lex_state = 2}, - [1677] = {.lex_state = 43, .external_lex_state = 2}, - [1678] = {.lex_state = 43, .external_lex_state = 2}, - [1679] = {.lex_state = 43, .external_lex_state = 2}, - [1680] = {.lex_state = 43, .external_lex_state = 2}, - [1681] = {.lex_state = 43, .external_lex_state = 2}, - [1682] = {.lex_state = 43, .external_lex_state = 2}, - [1683] = {.lex_state = 43, .external_lex_state = 2}, - [1684] = {.lex_state = 43, .external_lex_state = 2}, - [1685] = {.lex_state = 43, .external_lex_state = 2}, - [1686] = {.lex_state = 43, .external_lex_state = 2}, - [1687] = {.lex_state = 43, .external_lex_state = 2}, - [1688] = {.lex_state = 43, .external_lex_state = 2}, - [1689] = {.lex_state = 5, .external_lex_state = 2}, - [1690] = {.lex_state = 43, .external_lex_state = 2}, - [1691] = {.lex_state = 43, .external_lex_state = 2}, - [1692] = {.lex_state = 43, .external_lex_state = 2}, - [1693] = {.lex_state = 43, .external_lex_state = 2}, - [1694] = {.lex_state = 43, .external_lex_state = 2}, - [1695] = {.lex_state = 43, .external_lex_state = 2}, - [1696] = {.lex_state = 43, .external_lex_state = 2}, - [1697] = {.lex_state = 43, .external_lex_state = 2}, - [1698] = {.lex_state = 43, .external_lex_state = 2}, - [1699] = {.lex_state = 43, .external_lex_state = 2}, - [1700] = {.lex_state = 43, .external_lex_state = 2}, - [1701] = {.lex_state = 43, .external_lex_state = 2}, - [1702] = {.lex_state = 43, .external_lex_state = 2}, - [1703] = {.lex_state = 43, .external_lex_state = 2}, - [1704] = {.lex_state = 43, .external_lex_state = 2}, - [1705] = {.lex_state = 43, .external_lex_state = 2}, - [1706] = {.lex_state = 43, .external_lex_state = 2}, - [1707] = {.lex_state = 43, .external_lex_state = 2}, - [1708] = {.lex_state = 43, .external_lex_state = 2}, - [1709] = {.lex_state = 43, .external_lex_state = 2}, - [1710] = {.lex_state = 43, .external_lex_state = 2}, - [1711] = {.lex_state = 43, .external_lex_state = 2}, - [1712] = {.lex_state = 43, .external_lex_state = 2}, - [1713] = {.lex_state = 43, .external_lex_state = 2}, - [1714] = {.lex_state = 43, .external_lex_state = 2}, - [1715] = {.lex_state = 43, .external_lex_state = 2}, - [1716] = {.lex_state = 43, .external_lex_state = 2}, - [1717] = {.lex_state = 43, .external_lex_state = 2}, - [1718] = {.lex_state = 43, .external_lex_state = 2}, - [1719] = {.lex_state = 43, .external_lex_state = 2}, - [1720] = {.lex_state = 43, .external_lex_state = 2}, - [1721] = {.lex_state = 43, .external_lex_state = 2}, - [1722] = {.lex_state = 43, .external_lex_state = 2}, - [1723] = {.lex_state = 43, .external_lex_state = 2}, - [1724] = {.lex_state = 43, .external_lex_state = 2}, - [1725] = {.lex_state = 43, .external_lex_state = 2}, - [1726] = {.lex_state = 43, .external_lex_state = 2}, - [1727] = {.lex_state = 43, .external_lex_state = 2}, - [1728] = {.lex_state = 43, .external_lex_state = 2}, - [1729] = {.lex_state = 43, .external_lex_state = 2}, - [1730] = {.lex_state = 43, .external_lex_state = 2}, - [1731] = {.lex_state = 43, .external_lex_state = 2}, - [1732] = {.lex_state = 43, .external_lex_state = 2}, - [1733] = {.lex_state = 43, .external_lex_state = 2}, - [1734] = {.lex_state = 43, .external_lex_state = 2}, - [1735] = {.lex_state = 43, .external_lex_state = 2}, - [1736] = {.lex_state = 43, .external_lex_state = 2}, - [1737] = {.lex_state = 43, .external_lex_state = 2}, - [1738] = {.lex_state = 43, .external_lex_state = 2}, - [1739] = {.lex_state = 43, .external_lex_state = 2}, - [1740] = {.lex_state = 43, .external_lex_state = 2}, - [1741] = {.lex_state = 43, .external_lex_state = 2}, - [1742] = {.lex_state = 43, .external_lex_state = 2}, - [1743] = {.lex_state = 43, .external_lex_state = 2}, - [1744] = {.lex_state = 43, .external_lex_state = 2}, - [1745] = {.lex_state = 43, .external_lex_state = 2}, - [1746] = {.lex_state = 43, .external_lex_state = 2}, - [1747] = {.lex_state = 43, .external_lex_state = 2}, - [1748] = {.lex_state = 43, .external_lex_state = 2}, - [1749] = {.lex_state = 43, .external_lex_state = 2}, - [1750] = {.lex_state = 43, .external_lex_state = 2}, - [1751] = {.lex_state = 43, .external_lex_state = 2}, - [1752] = {.lex_state = 43, .external_lex_state = 2}, - [1753] = {.lex_state = 43, .external_lex_state = 2}, - [1754] = {.lex_state = 43, .external_lex_state = 2}, - [1755] = {.lex_state = 43, .external_lex_state = 2}, - [1756] = {.lex_state = 43, .external_lex_state = 2}, - [1757] = {.lex_state = 43, .external_lex_state = 2}, - [1758] = {.lex_state = 43, .external_lex_state = 2}, - [1759] = {.lex_state = 43, .external_lex_state = 2}, - [1760] = {.lex_state = 43, .external_lex_state = 2}, - [1761] = {.lex_state = 43, .external_lex_state = 2}, - [1762] = {.lex_state = 43, .external_lex_state = 2}, - [1763] = {.lex_state = 43, .external_lex_state = 2}, - [1764] = {.lex_state = 43, .external_lex_state = 2}, - [1765] = {.lex_state = 43, .external_lex_state = 2}, - [1766] = {.lex_state = 43, .external_lex_state = 2}, - [1767] = {.lex_state = 43, .external_lex_state = 2}, - [1768] = {.lex_state = 43, .external_lex_state = 2}, - [1769] = {.lex_state = 43, .external_lex_state = 2}, - [1770] = {.lex_state = 43, .external_lex_state = 2}, - [1771] = {.lex_state = 43, .external_lex_state = 2}, - [1772] = {.lex_state = 43, .external_lex_state = 2}, - [1773] = {.lex_state = 43, .external_lex_state = 2}, - [1774] = {.lex_state = 43, .external_lex_state = 2}, - [1775] = {.lex_state = 43, .external_lex_state = 2}, - [1776] = {.lex_state = 43, .external_lex_state = 2}, - [1777] = {.lex_state = 43, .external_lex_state = 2}, - [1778] = {.lex_state = 43, .external_lex_state = 2}, - [1779] = {.lex_state = 43, .external_lex_state = 2}, - [1780] = {.lex_state = 43, .external_lex_state = 2}, - [1781] = {.lex_state = 43, .external_lex_state = 2}, - [1782] = {.lex_state = 43, .external_lex_state = 2}, - [1783] = {.lex_state = 43, .external_lex_state = 2}, - [1784] = {.lex_state = 43, .external_lex_state = 2}, - [1785] = {.lex_state = 43, .external_lex_state = 2}, - [1786] = {.lex_state = 43, .external_lex_state = 2}, - [1787] = {.lex_state = 43, .external_lex_state = 2}, - [1788] = {.lex_state = 43, .external_lex_state = 2}, - [1789] = {.lex_state = 43, .external_lex_state = 2}, - [1790] = {.lex_state = 43, .external_lex_state = 2}, - [1791] = {.lex_state = 43, .external_lex_state = 2}, - [1792] = {.lex_state = 43, .external_lex_state = 2}, - [1793] = {.lex_state = 43, .external_lex_state = 2}, - [1794] = {.lex_state = 43, .external_lex_state = 2}, - [1795] = {.lex_state = 43, .external_lex_state = 2}, - [1796] = {.lex_state = 43, .external_lex_state = 2}, - [1797] = {.lex_state = 43, .external_lex_state = 2}, - [1798] = {.lex_state = 43, .external_lex_state = 2}, - [1799] = {.lex_state = 43, .external_lex_state = 2}, - [1800] = {.lex_state = 43, .external_lex_state = 2}, - [1801] = {.lex_state = 43, .external_lex_state = 2}, - [1802] = {.lex_state = 43, .external_lex_state = 2}, - [1803] = {.lex_state = 43, .external_lex_state = 2}, - [1804] = {.lex_state = 43, .external_lex_state = 2}, - [1805] = {.lex_state = 43, .external_lex_state = 2}, - [1806] = {.lex_state = 43, .external_lex_state = 2}, - [1807] = {.lex_state = 43, .external_lex_state = 2}, - [1808] = {.lex_state = 43, .external_lex_state = 2}, - [1809] = {.lex_state = 43, .external_lex_state = 2}, - [1810] = {.lex_state = 43, .external_lex_state = 2}, - [1811] = {.lex_state = 43, .external_lex_state = 2}, - [1812] = {.lex_state = 43, .external_lex_state = 2}, - [1813] = {.lex_state = 43, .external_lex_state = 3}, - [1814] = {.lex_state = 43, .external_lex_state = 2}, - [1815] = {.lex_state = 43, .external_lex_state = 2}, - [1816] = {.lex_state = 43, .external_lex_state = 2}, - [1817] = {.lex_state = 43, .external_lex_state = 2}, - [1818] = {.lex_state = 43, .external_lex_state = 2}, - [1819] = {.lex_state = 43, .external_lex_state = 2}, - [1820] = {.lex_state = 43, .external_lex_state = 2}, - [1821] = {.lex_state = 43, .external_lex_state = 2}, - [1822] = {.lex_state = 43, .external_lex_state = 2}, - [1823] = {.lex_state = 43, .external_lex_state = 2}, - [1824] = {.lex_state = 43, .external_lex_state = 2}, - [1825] = {.lex_state = 43, .external_lex_state = 2}, - [1826] = {.lex_state = 43, .external_lex_state = 2}, - [1827] = {.lex_state = 43, .external_lex_state = 2}, - [1828] = {.lex_state = 43, .external_lex_state = 2}, - [1829] = {.lex_state = 43, .external_lex_state = 2}, - [1830] = {.lex_state = 43, .external_lex_state = 2}, - [1831] = {.lex_state = 4, .external_lex_state = 3}, - [1832] = {.lex_state = 43, .external_lex_state = 3}, - [1833] = {.lex_state = 43, .external_lex_state = 3}, - [1834] = {.lex_state = 43, .external_lex_state = 3}, - [1835] = {.lex_state = 43, .external_lex_state = 3}, - [1836] = {.lex_state = 43, .external_lex_state = 3}, - [1837] = {.lex_state = 4, .external_lex_state = 2}, - [1838] = {.lex_state = 4, .external_lex_state = 3}, - [1839] = {.lex_state = 4, .external_lex_state = 2}, - [1840] = {.lex_state = 4, .external_lex_state = 2}, - [1841] = {.lex_state = 4, .external_lex_state = 2}, - [1842] = {.lex_state = 4, .external_lex_state = 3}, - [1843] = {.lex_state = 4, .external_lex_state = 3}, - [1844] = {.lex_state = 4, .external_lex_state = 3}, - [1845] = {.lex_state = 4, .external_lex_state = 2}, - [1846] = {.lex_state = 43, .external_lex_state = 2}, - [1847] = {.lex_state = 43, .external_lex_state = 2}, - [1848] = {.lex_state = 4, .external_lex_state = 3}, - [1849] = {.lex_state = 4, .external_lex_state = 2}, - [1850] = {.lex_state = 43, .external_lex_state = 2}, - [1851] = {.lex_state = 43, .external_lex_state = 2}, - [1852] = {.lex_state = 43, .external_lex_state = 2}, - [1853] = {.lex_state = 43, .external_lex_state = 2}, - [1854] = {.lex_state = 4, .external_lex_state = 3}, - [1855] = {.lex_state = 4, .external_lex_state = 4}, - [1856] = {.lex_state = 7, .external_lex_state = 2}, - [1857] = {.lex_state = 5, .external_lex_state = 2}, - [1858] = {.lex_state = 43, .external_lex_state = 2}, - [1859] = {.lex_state = 3, .external_lex_state = 2}, - [1860] = {.lex_state = 4, .external_lex_state = 2}, - [1861] = {.lex_state = 3, .external_lex_state = 2}, - [1862] = {.lex_state = 4, .external_lex_state = 4}, - [1863] = {.lex_state = 4, .external_lex_state = 4}, - [1864] = {.lex_state = 4, .external_lex_state = 4}, - [1865] = {.lex_state = 4, .external_lex_state = 4}, - [1866] = {.lex_state = 3, .external_lex_state = 2}, - [1867] = {.lex_state = 4, .external_lex_state = 4}, - [1868] = {.lex_state = 5, .external_lex_state = 2}, - [1869] = {.lex_state = 5, .external_lex_state = 3}, - [1870] = {.lex_state = 4, .external_lex_state = 2}, - [1871] = {.lex_state = 4, .external_lex_state = 2}, - [1872] = {.lex_state = 3, .external_lex_state = 2}, - [1873] = {.lex_state = 5, .external_lex_state = 3}, - [1874] = {.lex_state = 3, .external_lex_state = 2}, - [1875] = {.lex_state = 5, .external_lex_state = 4}, - [1876] = {.lex_state = 8, .external_lex_state = 2}, - [1877] = {.lex_state = 8, .external_lex_state = 2}, - [1878] = {.lex_state = 5, .external_lex_state = 4}, - [1879] = {.lex_state = 3, .external_lex_state = 2}, - [1880] = {.lex_state = 3, .external_lex_state = 2}, - [1881] = {.lex_state = 3, .external_lex_state = 2}, - [1882] = {.lex_state = 3, .external_lex_state = 2}, - [1883] = {.lex_state = 3, .external_lex_state = 2}, - [1884] = {.lex_state = 3, .external_lex_state = 2}, - [1885] = {.lex_state = 3, .external_lex_state = 2}, - [1886] = {.lex_state = 3, .external_lex_state = 2}, - [1887] = {.lex_state = 3, .external_lex_state = 2}, - [1888] = {.lex_state = 3, .external_lex_state = 2}, - [1889] = {.lex_state = 3, .external_lex_state = 2}, - [1890] = {.lex_state = 3, .external_lex_state = 2}, - [1891] = {.lex_state = 3, .external_lex_state = 2}, - [1892] = {.lex_state = 12, .external_lex_state = 2}, - [1893] = {.lex_state = 12, .external_lex_state = 3}, - [1894] = {.lex_state = 10, .external_lex_state = 2}, - [1895] = {.lex_state = 10, .external_lex_state = 2}, - [1896] = {.lex_state = 12, .external_lex_state = 2}, - [1897] = {.lex_state = 4, .external_lex_state = 2}, - [1898] = {.lex_state = 10, .external_lex_state = 2}, - [1899] = {.lex_state = 12, .external_lex_state = 3}, - [1900] = {.lex_state = 10, .external_lex_state = 2}, - [1901] = {.lex_state = 4, .external_lex_state = 2}, - [1902] = {.lex_state = 9, .external_lex_state = 2}, - [1903] = {.lex_state = 12, .external_lex_state = 2}, - [1904] = {.lex_state = 11, .external_lex_state = 2}, - [1905] = {.lex_state = 4, .external_lex_state = 2}, - [1906] = {.lex_state = 11, .external_lex_state = 2}, - [1907] = {.lex_state = 10, .external_lex_state = 2}, - [1908] = {.lex_state = 12, .external_lex_state = 2}, - [1909] = {.lex_state = 12, .external_lex_state = 2}, - [1910] = {.lex_state = 12, .external_lex_state = 3}, - [1911] = {.lex_state = 10, .external_lex_state = 2}, - [1912] = {.lex_state = 10, .external_lex_state = 2}, - [1913] = {.lex_state = 10, .external_lex_state = 2}, - [1914] = {.lex_state = 10, .external_lex_state = 2}, - [1915] = {.lex_state = 12, .external_lex_state = 2}, - [1916] = {.lex_state = 10, .external_lex_state = 2}, - [1917] = {.lex_state = 12, .external_lex_state = 2}, - [1918] = {.lex_state = 10, .external_lex_state = 2}, - [1919] = {.lex_state = 12, .external_lex_state = 2}, - [1920] = {.lex_state = 4, .external_lex_state = 2}, - [1921] = {.lex_state = 4, .external_lex_state = 2}, - [1922] = {.lex_state = 3, .external_lex_state = 3}, - [1923] = {.lex_state = 4, .external_lex_state = 3}, - [1924] = {.lex_state = 4, .external_lex_state = 4}, - [1925] = {.lex_state = 4, .external_lex_state = 4}, - [1926] = {.lex_state = 0, .external_lex_state = 2}, - [1927] = {.lex_state = 12, .external_lex_state = 2}, - [1928] = {.lex_state = 5, .external_lex_state = 2}, - [1929] = {.lex_state = 12, .external_lex_state = 2}, - [1930] = {.lex_state = 3, .external_lex_state = 2}, - [1931] = {.lex_state = 5, .external_lex_state = 2}, - [1932] = {.lex_state = 3, .external_lex_state = 2}, - [1933] = {.lex_state = 12, .external_lex_state = 2}, - [1934] = {.lex_state = 5, .external_lex_state = 3}, - [1935] = {.lex_state = 12, .external_lex_state = 2}, - [1936] = {.lex_state = 5, .external_lex_state = 2}, - [1937] = {.lex_state = 3, .external_lex_state = 3}, - [1938] = {.lex_state = 4, .external_lex_state = 2}, - [1939] = {.lex_state = 3, .external_lex_state = 2}, - [1940] = {.lex_state = 4, .external_lex_state = 2}, - [1941] = {.lex_state = 12, .external_lex_state = 2}, - [1942] = {.lex_state = 5, .external_lex_state = 2}, - [1943] = {.lex_state = 12, .external_lex_state = 2}, - [1944] = {.lex_state = 12, .external_lex_state = 2}, - [1945] = {.lex_state = 5, .external_lex_state = 2}, - [1946] = {.lex_state = 12, .external_lex_state = 2}, - [1947] = {.lex_state = 12, .external_lex_state = 2}, - [1948] = {.lex_state = 20, .external_lex_state = 3}, - [1949] = {.lex_state = 5, .external_lex_state = 2}, - [1950] = {.lex_state = 12, .external_lex_state = 2}, - [1951] = {.lex_state = 12, .external_lex_state = 2}, - [1952] = {.lex_state = 12, .external_lex_state = 2}, - [1953] = {.lex_state = 12, .external_lex_state = 2}, - [1954] = {.lex_state = 12, .external_lex_state = 2}, - [1955] = {.lex_state = 4, .external_lex_state = 2}, - [1956] = {.lex_state = 12, .external_lex_state = 2}, - [1957] = {.lex_state = 4, .external_lex_state = 2}, - [1958] = {.lex_state = 21, .external_lex_state = 2}, - [1959] = {.lex_state = 4, .external_lex_state = 2}, - [1960] = {.lex_state = 3, .external_lex_state = 2}, - [1961] = {.lex_state = 0, .external_lex_state = 2}, - [1962] = {.lex_state = 12, .external_lex_state = 2}, - [1963] = {.lex_state = 3, .external_lex_state = 3}, - [1964] = {.lex_state = 12, .external_lex_state = 2}, - [1965] = {.lex_state = 4, .external_lex_state = 2}, - [1966] = {.lex_state = 12, .external_lex_state = 2}, - [1967] = {.lex_state = 12, .external_lex_state = 2}, - [1968] = {.lex_state = 12, .external_lex_state = 2}, - [1969] = {.lex_state = 5, .external_lex_state = 2}, - [1970] = {.lex_state = 12, .external_lex_state = 2}, - [1971] = {.lex_state = 12, .external_lex_state = 2}, - [1972] = {.lex_state = 3, .external_lex_state = 3}, - [1973] = {.lex_state = 3, .external_lex_state = 3}, - [1974] = {.lex_state = 3, .external_lex_state = 3}, - [1975] = {.lex_state = 12, .external_lex_state = 2}, - [1976] = {.lex_state = 12, .external_lex_state = 2}, - [1977] = {.lex_state = 12, .external_lex_state = 2}, - [1978] = {.lex_state = 12, .external_lex_state = 2}, - [1979] = {.lex_state = 3, .external_lex_state = 3}, - [1980] = {.lex_state = 0, .external_lex_state = 2}, - [1981] = {.lex_state = 3, .external_lex_state = 3}, - [1982] = {.lex_state = 12, .external_lex_state = 2}, - [1983] = {.lex_state = 12, .external_lex_state = 2}, - [1984] = {.lex_state = 21, .external_lex_state = 2}, - [1985] = {.lex_state = 3, .external_lex_state = 3}, - [1986] = {.lex_state = 5, .external_lex_state = 2}, - [1987] = {.lex_state = 21, .external_lex_state = 2}, - [1988] = {.lex_state = 21, .external_lex_state = 2}, - [1989] = {.lex_state = 4, .external_lex_state = 4}, - [1990] = {.lex_state = 3, .external_lex_state = 3}, - [1991] = {.lex_state = 3, .external_lex_state = 3}, - [1992] = {.lex_state = 3, .external_lex_state = 2}, - [1993] = {.lex_state = 21, .external_lex_state = 2}, - [1994] = {.lex_state = 12, .external_lex_state = 2}, - [1995] = {.lex_state = 12, .external_lex_state = 2}, - [1996] = {.lex_state = 12, .external_lex_state = 2}, - [1997] = {.lex_state = 21, .external_lex_state = 2}, - [1998] = {.lex_state = 0, .external_lex_state = 2}, - [1999] = {.lex_state = 12, .external_lex_state = 2}, - [2000] = {.lex_state = 3, .external_lex_state = 3}, - [2001] = {.lex_state = 21, .external_lex_state = 2}, - [2002] = {.lex_state = 3, .external_lex_state = 3}, - [2003] = {.lex_state = 21, .external_lex_state = 2}, - [2004] = {.lex_state = 12, .external_lex_state = 2}, - [2005] = {.lex_state = 5, .external_lex_state = 2}, - [2006] = {.lex_state = 10, .external_lex_state = 2}, - [2007] = {.lex_state = 0, .external_lex_state = 2}, - [2008] = {.lex_state = 0, .external_lex_state = 3}, - [2009] = {.lex_state = 10, .external_lex_state = 2}, - [2010] = {.lex_state = 0, .external_lex_state = 3}, - [2011] = {.lex_state = 5, .external_lex_state = 4}, - [2012] = {.lex_state = 5, .external_lex_state = 4}, - [2013] = {.lex_state = 0, .external_lex_state = 3}, - [2014] = {.lex_state = 3, .external_lex_state = 2}, - [2015] = {.lex_state = 10, .external_lex_state = 2}, - [2016] = {.lex_state = 10, .external_lex_state = 2}, - [2017] = {.lex_state = 21, .external_lex_state = 4}, - [2018] = {.lex_state = 5, .external_lex_state = 3}, - [2019] = {.lex_state = 0, .external_lex_state = 3}, - [2020] = {.lex_state = 3, .external_lex_state = 2}, - [2021] = {.lex_state = 3, .external_lex_state = 2}, - [2022] = {.lex_state = 10, .external_lex_state = 2}, - [2023] = {.lex_state = 5, .external_lex_state = 2}, - [2024] = {.lex_state = 5, .external_lex_state = 3}, - [2025] = {.lex_state = 0, .external_lex_state = 3}, - [2026] = {.lex_state = 5, .external_lex_state = 2}, - [2027] = {.lex_state = 5, .external_lex_state = 2}, - [2028] = {.lex_state = 5, .external_lex_state = 2}, - [2029] = {.lex_state = 3, .external_lex_state = 2}, - [2030] = {.lex_state = 3, .external_lex_state = 2}, - [2031] = {.lex_state = 5, .external_lex_state = 2}, - [2032] = {.lex_state = 3, .external_lex_state = 2}, - [2033] = {.lex_state = 20, .external_lex_state = 3}, - [2034] = {.lex_state = 5, .external_lex_state = 2}, - [2035] = {.lex_state = 0, .external_lex_state = 4}, - [2036] = {.lex_state = 3, .external_lex_state = 2}, - [2037] = {.lex_state = 5, .external_lex_state = 2}, - [2038] = {.lex_state = 3, .external_lex_state = 2}, - [2039] = {.lex_state = 0, .external_lex_state = 2}, - [2040] = {.lex_state = 10, .external_lex_state = 2}, - [2041] = {.lex_state = 5, .external_lex_state = 2}, - [2042] = {.lex_state = 0, .external_lex_state = 3}, - [2043] = {.lex_state = 0, .external_lex_state = 3}, - [2044] = {.lex_state = 3, .external_lex_state = 2}, - [2045] = {.lex_state = 3, .external_lex_state = 2}, - [2046] = {.lex_state = 5, .external_lex_state = 2}, - [2047] = {.lex_state = 0, .external_lex_state = 2}, - [2048] = {.lex_state = 3, .external_lex_state = 2}, - [2049] = {.lex_state = 3, .external_lex_state = 2}, - [2050] = {.lex_state = 5, .external_lex_state = 2}, - [2051] = {.lex_state = 3, .external_lex_state = 2}, + [1] = {.lex_state = 37, .external_lex_state = 2}, + [2] = {.lex_state = 37, .external_lex_state = 3}, + [3] = {.lex_state = 37, .external_lex_state = 3}, + [4] = {.lex_state = 37, .external_lex_state = 3}, + [5] = {.lex_state = 37, .external_lex_state = 3}, + [6] = {.lex_state = 37, .external_lex_state = 3}, + [7] = {.lex_state = 37, .external_lex_state = 3}, + [8] = {.lex_state = 37, .external_lex_state = 3}, + [9] = {.lex_state = 37, .external_lex_state = 3}, + [10] = {.lex_state = 37, .external_lex_state = 3}, + [11] = {.lex_state = 37, .external_lex_state = 3}, + [12] = {.lex_state = 37, .external_lex_state = 3}, + [13] = {.lex_state = 37, .external_lex_state = 3}, + [14] = {.lex_state = 37, .external_lex_state = 3}, + [15] = {.lex_state = 37, .external_lex_state = 3}, + [16] = {.lex_state = 37, .external_lex_state = 3}, + [17] = {.lex_state = 37, .external_lex_state = 3}, + [18] = {.lex_state = 37, .external_lex_state = 3}, + [19] = {.lex_state = 37, .external_lex_state = 2}, + [20] = {.lex_state = 37, .external_lex_state = 3}, + [21] = {.lex_state = 37, .external_lex_state = 2}, + [22] = {.lex_state = 37, .external_lex_state = 3}, + [23] = {.lex_state = 37, .external_lex_state = 3}, + [24] = {.lex_state = 37, .external_lex_state = 2}, + [25] = {.lex_state = 37, .external_lex_state = 3}, + [26] = {.lex_state = 37, .external_lex_state = 2}, + [27] = {.lex_state = 37, .external_lex_state = 2}, + [28] = {.lex_state = 37, .external_lex_state = 2}, + [29] = {.lex_state = 37, .external_lex_state = 2}, + [30] = {.lex_state = 37, .external_lex_state = 2}, + [31] = {.lex_state = 37, .external_lex_state = 3}, + [32] = {.lex_state = 37, .external_lex_state = 3}, + [33] = {.lex_state = 37, .external_lex_state = 2}, + [34] = {.lex_state = 37, .external_lex_state = 3}, + [35] = {.lex_state = 37, .external_lex_state = 2}, + [36] = {.lex_state = 37, .external_lex_state = 2}, + [37] = {.lex_state = 37, .external_lex_state = 2}, + [38] = {.lex_state = 37, .external_lex_state = 3}, + [39] = {.lex_state = 37, .external_lex_state = 2}, + [40] = {.lex_state = 37, .external_lex_state = 2}, + [41] = {.lex_state = 37, .external_lex_state = 2}, + [42] = {.lex_state = 37, .external_lex_state = 3}, + [43] = {.lex_state = 37, .external_lex_state = 2}, + [44] = {.lex_state = 37, .external_lex_state = 2}, + [45] = {.lex_state = 37, .external_lex_state = 2}, + [46] = {.lex_state = 37, .external_lex_state = 2}, + [47] = {.lex_state = 37, .external_lex_state = 2}, + [48] = {.lex_state = 37, .external_lex_state = 3}, + [49] = {.lex_state = 37, .external_lex_state = 2}, + [50] = {.lex_state = 37, .external_lex_state = 2}, + [51] = {.lex_state = 37, .external_lex_state = 2}, + [52] = {.lex_state = 37, .external_lex_state = 2}, + [53] = {.lex_state = 37, .external_lex_state = 2}, + [54] = {.lex_state = 37, .external_lex_state = 2}, + [55] = {.lex_state = 37, .external_lex_state = 2}, + [56] = {.lex_state = 37, .external_lex_state = 2}, + [57] = {.lex_state = 37, .external_lex_state = 2}, + [58] = {.lex_state = 37, .external_lex_state = 2}, + [59] = {.lex_state = 37, .external_lex_state = 2}, + [60] = {.lex_state = 37, .external_lex_state = 2}, + [61] = {.lex_state = 37, .external_lex_state = 2}, + [62] = {.lex_state = 37, .external_lex_state = 2}, + [63] = {.lex_state = 37, .external_lex_state = 2}, + [64] = {.lex_state = 37, .external_lex_state = 2}, + [65] = {.lex_state = 37, .external_lex_state = 2}, + [66] = {.lex_state = 37, .external_lex_state = 2}, + [67] = {.lex_state = 37, .external_lex_state = 2}, + [68] = {.lex_state = 37, .external_lex_state = 2}, + [69] = {.lex_state = 37, .external_lex_state = 2}, + [70] = {.lex_state = 37, .external_lex_state = 2}, + [71] = {.lex_state = 37, .external_lex_state = 2}, + [72] = {.lex_state = 37, .external_lex_state = 2}, + [73] = {.lex_state = 37, .external_lex_state = 2}, + [74] = {.lex_state = 37, .external_lex_state = 2}, + [75] = {.lex_state = 37, .external_lex_state = 2}, + [76] = {.lex_state = 37, .external_lex_state = 2}, + [77] = {.lex_state = 37, .external_lex_state = 2}, + [78] = {.lex_state = 37, .external_lex_state = 2}, + [79] = {.lex_state = 37, .external_lex_state = 2}, + [80] = {.lex_state = 37, .external_lex_state = 2}, + [81] = {.lex_state = 37, .external_lex_state = 2}, + [82] = {.lex_state = 37, .external_lex_state = 2}, + [83] = {.lex_state = 37, .external_lex_state = 2}, + [84] = {.lex_state = 37, .external_lex_state = 2}, + [85] = {.lex_state = 37, .external_lex_state = 2}, + [86] = {.lex_state = 37, .external_lex_state = 2}, + [87] = {.lex_state = 37, .external_lex_state = 2}, + [88] = {.lex_state = 37, .external_lex_state = 2}, + [89] = {.lex_state = 37, .external_lex_state = 2}, + [90] = {.lex_state = 37, .external_lex_state = 2}, + [91] = {.lex_state = 37, .external_lex_state = 2}, + [92] = {.lex_state = 37, .external_lex_state = 2}, + [93] = {.lex_state = 37, .external_lex_state = 2}, + [94] = {.lex_state = 37, .external_lex_state = 2}, + [95] = {.lex_state = 37, .external_lex_state = 2}, + [96] = {.lex_state = 37, .external_lex_state = 2}, + [97] = {.lex_state = 37, .external_lex_state = 2}, + [98] = {.lex_state = 37, .external_lex_state = 2}, + [99] = {.lex_state = 37, .external_lex_state = 2}, + [100] = {.lex_state = 37, .external_lex_state = 2}, + [101] = {.lex_state = 37, .external_lex_state = 2}, + [102] = {.lex_state = 37, .external_lex_state = 2}, + [103] = {.lex_state = 37, .external_lex_state = 2}, + [104] = {.lex_state = 37, .external_lex_state = 2}, + [105] = {.lex_state = 37, .external_lex_state = 2}, + [106] = {.lex_state = 37, .external_lex_state = 2}, + [107] = {.lex_state = 37, .external_lex_state = 2}, + [108] = {.lex_state = 37, .external_lex_state = 3}, + [109] = {.lex_state = 37, .external_lex_state = 3}, + [110] = {.lex_state = 37, .external_lex_state = 2}, + [111] = {.lex_state = 37, .external_lex_state = 2}, + [112] = {.lex_state = 37, .external_lex_state = 2}, + [113] = {.lex_state = 37, .external_lex_state = 3}, + [114] = {.lex_state = 37, .external_lex_state = 3}, + [115] = {.lex_state = 37, .external_lex_state = 3}, + [116] = {.lex_state = 37, .external_lex_state = 3}, + [117] = {.lex_state = 37, .external_lex_state = 3}, + [118] = {.lex_state = 37, .external_lex_state = 2}, + [119] = {.lex_state = 37, .external_lex_state = 2}, + [120] = {.lex_state = 37, .external_lex_state = 2}, + [121] = {.lex_state = 37, .external_lex_state = 3}, + [122] = {.lex_state = 37, .external_lex_state = 3}, + [123] = {.lex_state = 37, .external_lex_state = 3}, + [124] = {.lex_state = 37, .external_lex_state = 3}, + [125] = {.lex_state = 37, .external_lex_state = 2}, + [126] = {.lex_state = 37, .external_lex_state = 3}, + [127] = {.lex_state = 37, .external_lex_state = 3}, + [128] = {.lex_state = 37, .external_lex_state = 3}, + [129] = {.lex_state = 37, .external_lex_state = 3}, + [130] = {.lex_state = 37, .external_lex_state = 2}, + [131] = {.lex_state = 37, .external_lex_state = 2}, + [132] = {.lex_state = 37, .external_lex_state = 3}, + [133] = {.lex_state = 37, .external_lex_state = 3}, + [134] = {.lex_state = 37, .external_lex_state = 2}, + [135] = {.lex_state = 37, .external_lex_state = 2}, + [136] = {.lex_state = 37, .external_lex_state = 2}, + [137] = {.lex_state = 37, .external_lex_state = 2}, + [138] = {.lex_state = 37, .external_lex_state = 2}, + [139] = {.lex_state = 37, .external_lex_state = 2}, + [140] = {.lex_state = 37, .external_lex_state = 2}, + [141] = {.lex_state = 37, .external_lex_state = 3}, + [142] = {.lex_state = 37, .external_lex_state = 3}, + [143] = {.lex_state = 37, .external_lex_state = 2}, + [144] = {.lex_state = 37, .external_lex_state = 2}, + [145] = {.lex_state = 37, .external_lex_state = 2}, + [146] = {.lex_state = 37, .external_lex_state = 2}, + [147] = {.lex_state = 37, .external_lex_state = 3}, + [148] = {.lex_state = 37, .external_lex_state = 2}, + [149] = {.lex_state = 37, .external_lex_state = 2}, + [150] = {.lex_state = 37, .external_lex_state = 2}, + [151] = {.lex_state = 37, .external_lex_state = 2}, + [152] = {.lex_state = 37, .external_lex_state = 2}, + [153] = {.lex_state = 37, .external_lex_state = 2}, + [154] = {.lex_state = 37, .external_lex_state = 2}, + [155] = {.lex_state = 37, .external_lex_state = 2}, + [156] = {.lex_state = 37, .external_lex_state = 2}, + [157] = {.lex_state = 37, .external_lex_state = 2}, + [158] = {.lex_state = 37, .external_lex_state = 2}, + [159] = {.lex_state = 37, .external_lex_state = 2}, + [160] = {.lex_state = 37, .external_lex_state = 2}, + [161] = {.lex_state = 37, .external_lex_state = 2}, + [162] = {.lex_state = 37, .external_lex_state = 2}, + [163] = {.lex_state = 37, .external_lex_state = 2}, + [164] = {.lex_state = 37, .external_lex_state = 2}, + [165] = {.lex_state = 37, .external_lex_state = 2}, + [166] = {.lex_state = 37, .external_lex_state = 2}, + [167] = {.lex_state = 37, .external_lex_state = 2}, + [168] = {.lex_state = 37, .external_lex_state = 2}, + [169] = {.lex_state = 37, .external_lex_state = 2}, + [170] = {.lex_state = 37, .external_lex_state = 2}, + [171] = {.lex_state = 37, .external_lex_state = 2}, + [172] = {.lex_state = 37, .external_lex_state = 2}, + [173] = {.lex_state = 37, .external_lex_state = 2}, + [174] = {.lex_state = 37, .external_lex_state = 2}, + [175] = {.lex_state = 37, .external_lex_state = 2}, + [176] = {.lex_state = 37, .external_lex_state = 2}, + [177] = {.lex_state = 37, .external_lex_state = 2}, + [178] = {.lex_state = 37, .external_lex_state = 2}, + [179] = {.lex_state = 37, .external_lex_state = 2}, + [180] = {.lex_state = 37, .external_lex_state = 2}, + [181] = {.lex_state = 37, .external_lex_state = 2}, + [182] = {.lex_state = 37, .external_lex_state = 2}, + [183] = {.lex_state = 37, .external_lex_state = 2}, + [184] = {.lex_state = 37, .external_lex_state = 2}, + [185] = {.lex_state = 37, .external_lex_state = 2}, + [186] = {.lex_state = 37, .external_lex_state = 2}, + [187] = {.lex_state = 37, .external_lex_state = 2}, + [188] = {.lex_state = 37, .external_lex_state = 2}, + [189] = {.lex_state = 37, .external_lex_state = 2}, + [190] = {.lex_state = 37, .external_lex_state = 2}, + [191] = {.lex_state = 37, .external_lex_state = 2}, + [192] = {.lex_state = 37, .external_lex_state = 2}, + [193] = {.lex_state = 37, .external_lex_state = 2}, + [194] = {.lex_state = 37, .external_lex_state = 2}, + [195] = {.lex_state = 37, .external_lex_state = 2}, + [196] = {.lex_state = 37, .external_lex_state = 2}, + [197] = {.lex_state = 37, .external_lex_state = 2}, + [198] = {.lex_state = 37, .external_lex_state = 2}, + [199] = {.lex_state = 37, .external_lex_state = 2}, + [200] = {.lex_state = 37, .external_lex_state = 2}, + [201] = {.lex_state = 37, .external_lex_state = 2}, + [202] = {.lex_state = 37, .external_lex_state = 2}, + [203] = {.lex_state = 37, .external_lex_state = 2}, + [204] = {.lex_state = 37, .external_lex_state = 2}, + [205] = {.lex_state = 37, .external_lex_state = 2}, + [206] = {.lex_state = 37, .external_lex_state = 2}, + [207] = {.lex_state = 37, .external_lex_state = 2}, + [208] = {.lex_state = 37, .external_lex_state = 2}, + [209] = {.lex_state = 37, .external_lex_state = 2}, + [210] = {.lex_state = 37, .external_lex_state = 2}, + [211] = {.lex_state = 37, .external_lex_state = 2}, + [212] = {.lex_state = 37, .external_lex_state = 2}, + [213] = {.lex_state = 37, .external_lex_state = 2}, + [214] = {.lex_state = 37, .external_lex_state = 2}, + [215] = {.lex_state = 37, .external_lex_state = 2}, + [216] = {.lex_state = 37, .external_lex_state = 2}, + [217] = {.lex_state = 37, .external_lex_state = 2}, + [218] = {.lex_state = 37, .external_lex_state = 2}, + [219] = {.lex_state = 37, .external_lex_state = 2}, + [220] = {.lex_state = 37, .external_lex_state = 2}, + [221] = {.lex_state = 37, .external_lex_state = 2}, + [222] = {.lex_state = 37, .external_lex_state = 2}, + [223] = {.lex_state = 37, .external_lex_state = 2}, + [224] = {.lex_state = 37, .external_lex_state = 2}, + [225] = {.lex_state = 37, .external_lex_state = 2}, + [226] = {.lex_state = 37, .external_lex_state = 2}, + [227] = {.lex_state = 37, .external_lex_state = 2}, + [228] = {.lex_state = 37, .external_lex_state = 2}, + [229] = {.lex_state = 37, .external_lex_state = 2}, + [230] = {.lex_state = 37, .external_lex_state = 2}, + [231] = {.lex_state = 37, .external_lex_state = 2}, + [232] = {.lex_state = 37, .external_lex_state = 2}, + [233] = {.lex_state = 37, .external_lex_state = 2}, + [234] = {.lex_state = 37, .external_lex_state = 2}, + [235] = {.lex_state = 37, .external_lex_state = 2}, + [236] = {.lex_state = 37, .external_lex_state = 2}, + [237] = {.lex_state = 37, .external_lex_state = 2}, + [238] = {.lex_state = 37, .external_lex_state = 2}, + [239] = {.lex_state = 37, .external_lex_state = 2}, + [240] = {.lex_state = 37, .external_lex_state = 2}, + [241] = {.lex_state = 37, .external_lex_state = 2}, + [242] = {.lex_state = 37, .external_lex_state = 2}, + [243] = {.lex_state = 37, .external_lex_state = 2}, + [244] = {.lex_state = 37, .external_lex_state = 2}, + [245] = {.lex_state = 37, .external_lex_state = 2}, + [246] = {.lex_state = 37, .external_lex_state = 2}, + [247] = {.lex_state = 37, .external_lex_state = 2}, + [248] = {.lex_state = 37, .external_lex_state = 2}, + [249] = {.lex_state = 37, .external_lex_state = 2}, + [250] = {.lex_state = 37, .external_lex_state = 2}, + [251] = {.lex_state = 37, .external_lex_state = 2}, + [252] = {.lex_state = 37, .external_lex_state = 2}, + [253] = {.lex_state = 37, .external_lex_state = 2}, + [254] = {.lex_state = 37, .external_lex_state = 2}, + [255] = {.lex_state = 37, .external_lex_state = 2}, + [256] = {.lex_state = 37, .external_lex_state = 2}, + [257] = {.lex_state = 37, .external_lex_state = 2}, + [258] = {.lex_state = 37, .external_lex_state = 2}, + [259] = {.lex_state = 37, .external_lex_state = 3}, + [260] = {.lex_state = 37, .external_lex_state = 2}, + [261] = {.lex_state = 37, .external_lex_state = 2}, + [262] = {.lex_state = 37, .external_lex_state = 2}, + [263] = {.lex_state = 37, .external_lex_state = 2}, + [264] = {.lex_state = 37, .external_lex_state = 2}, + [265] = {.lex_state = 37, .external_lex_state = 2}, + [266] = {.lex_state = 37, .external_lex_state = 2}, + [267] = {.lex_state = 37, .external_lex_state = 2}, + [268] = {.lex_state = 37, .external_lex_state = 2}, + [269] = {.lex_state = 37, .external_lex_state = 2}, + [270] = {.lex_state = 37, .external_lex_state = 2}, + [271] = {.lex_state = 37, .external_lex_state = 2}, + [272] = {.lex_state = 37, .external_lex_state = 2}, + [273] = {.lex_state = 37, .external_lex_state = 2}, + [274] = {.lex_state = 37, .external_lex_state = 2}, + [275] = {.lex_state = 37, .external_lex_state = 2}, + [276] = {.lex_state = 37, .external_lex_state = 2}, + [277] = {.lex_state = 37, .external_lex_state = 2}, + [278] = {.lex_state = 37, .external_lex_state = 2}, + [279] = {.lex_state = 37, .external_lex_state = 2}, + [280] = {.lex_state = 37, .external_lex_state = 2}, + [281] = {.lex_state = 37, .external_lex_state = 2}, + [282] = {.lex_state = 37, .external_lex_state = 2}, + [283] = {.lex_state = 37, .external_lex_state = 2}, + [284] = {.lex_state = 37, .external_lex_state = 2}, + [285] = {.lex_state = 37, .external_lex_state = 2}, + [286] = {.lex_state = 37, .external_lex_state = 2}, + [287] = {.lex_state = 37, .external_lex_state = 2}, + [288] = {.lex_state = 37, .external_lex_state = 2}, + [289] = {.lex_state = 37, .external_lex_state = 2}, + [290] = {.lex_state = 37, .external_lex_state = 2}, + [291] = {.lex_state = 37, .external_lex_state = 2}, + [292] = {.lex_state = 37, .external_lex_state = 2}, + [293] = {.lex_state = 37, .external_lex_state = 2}, + [294] = {.lex_state = 37, .external_lex_state = 2}, + [295] = {.lex_state = 37, .external_lex_state = 2}, + [296] = {.lex_state = 37, .external_lex_state = 2}, + [297] = {.lex_state = 37, .external_lex_state = 2}, + [298] = {.lex_state = 37, .external_lex_state = 2}, + [299] = {.lex_state = 37, .external_lex_state = 2}, + [300] = {.lex_state = 37, .external_lex_state = 2}, + [301] = {.lex_state = 37, .external_lex_state = 2}, + [302] = {.lex_state = 37, .external_lex_state = 1}, + [303] = {.lex_state = 37, .external_lex_state = 3}, + [304] = {.lex_state = 37, .external_lex_state = 3}, + [305] = {.lex_state = 37, .external_lex_state = 2}, + [306] = {.lex_state = 37, .external_lex_state = 2}, + [307] = {.lex_state = 37, .external_lex_state = 2}, + [308] = {.lex_state = 37, .external_lex_state = 2}, + [309] = {.lex_state = 37, .external_lex_state = 2}, + [310] = {.lex_state = 37, .external_lex_state = 2}, + [311] = {.lex_state = 37, .external_lex_state = 2}, + [312] = {.lex_state = 37, .external_lex_state = 2}, + [313] = {.lex_state = 37, .external_lex_state = 2}, + [314] = {.lex_state = 37, .external_lex_state = 2}, + [315] = {.lex_state = 37, .external_lex_state = 2}, + [316] = {.lex_state = 37, .external_lex_state = 2}, + [317] = {.lex_state = 37, .external_lex_state = 2}, + [318] = {.lex_state = 37, .external_lex_state = 2}, + [319] = {.lex_state = 37, .external_lex_state = 2}, + [320] = {.lex_state = 37, .external_lex_state = 2}, + [321] = {.lex_state = 37, .external_lex_state = 2}, + [322] = {.lex_state = 37, .external_lex_state = 2}, + [323] = {.lex_state = 37, .external_lex_state = 2}, + [324] = {.lex_state = 37, .external_lex_state = 2}, + [325] = {.lex_state = 37, .external_lex_state = 2}, + [326] = {.lex_state = 37, .external_lex_state = 2}, + [327] = {.lex_state = 37, .external_lex_state = 3}, + [328] = {.lex_state = 37, .external_lex_state = 2}, + [329] = {.lex_state = 37, .external_lex_state = 3}, + [330] = {.lex_state = 37, .external_lex_state = 2}, + [331] = {.lex_state = 37, .external_lex_state = 1}, + [332] = {.lex_state = 37, .external_lex_state = 1}, + [333] = {.lex_state = 37, .external_lex_state = 3}, + [334] = {.lex_state = 37, .external_lex_state = 2}, + [335] = {.lex_state = 37, .external_lex_state = 2}, + [336] = {.lex_state = 37, .external_lex_state = 1}, + [337] = {.lex_state = 37, .external_lex_state = 2}, + [338] = {.lex_state = 37, .external_lex_state = 3}, + [339] = {.lex_state = 37, .external_lex_state = 3}, + [340] = {.lex_state = 37, .external_lex_state = 3}, + [341] = {.lex_state = 37, .external_lex_state = 3}, + [342] = {.lex_state = 37, .external_lex_state = 3}, + [343] = {.lex_state = 37, .external_lex_state = 3}, + [344] = {.lex_state = 37, .external_lex_state = 3}, + [345] = {.lex_state = 37, .external_lex_state = 3}, + [346] = {.lex_state = 37, .external_lex_state = 3}, + [347] = {.lex_state = 37, .external_lex_state = 3}, + [348] = {.lex_state = 37, .external_lex_state = 3}, + [349] = {.lex_state = 37, .external_lex_state = 3}, + [350] = {.lex_state = 37, .external_lex_state = 3}, + [351] = {.lex_state = 37, .external_lex_state = 3}, + [352] = {.lex_state = 37, .external_lex_state = 1}, + [353] = {.lex_state = 37, .external_lex_state = 3}, + [354] = {.lex_state = 37, .external_lex_state = 3}, + [355] = {.lex_state = 37, .external_lex_state = 3}, + [356] = {.lex_state = 37, .external_lex_state = 3}, + [357] = {.lex_state = 37, .external_lex_state = 3}, + [358] = {.lex_state = 37, .external_lex_state = 3}, + [359] = {.lex_state = 37, .external_lex_state = 3}, + [360] = {.lex_state = 37, .external_lex_state = 3}, + [361] = {.lex_state = 37, .external_lex_state = 3}, + [362] = {.lex_state = 37, .external_lex_state = 3}, + [363] = {.lex_state = 37, .external_lex_state = 3}, + [364] = {.lex_state = 37, .external_lex_state = 3}, + [365] = {.lex_state = 37, .external_lex_state = 3}, + [366] = {.lex_state = 37, .external_lex_state = 3}, + [367] = {.lex_state = 37, .external_lex_state = 3}, + [368] = {.lex_state = 37, .external_lex_state = 3}, + [369] = {.lex_state = 37, .external_lex_state = 3}, + [370] = {.lex_state = 37, .external_lex_state = 3}, + [371] = {.lex_state = 37, .external_lex_state = 3}, + [372] = {.lex_state = 37, .external_lex_state = 3}, + [373] = {.lex_state = 37, .external_lex_state = 3}, + [374] = {.lex_state = 37, .external_lex_state = 3}, + [375] = {.lex_state = 37, .external_lex_state = 3}, + [376] = {.lex_state = 37, .external_lex_state = 3}, + [377] = {.lex_state = 37, .external_lex_state = 3}, + [378] = {.lex_state = 37, .external_lex_state = 3}, + [379] = {.lex_state = 37, .external_lex_state = 3}, + [380] = {.lex_state = 37, .external_lex_state = 3}, + [381] = {.lex_state = 37, .external_lex_state = 3}, + [382] = {.lex_state = 37, .external_lex_state = 3}, + [383] = {.lex_state = 37, .external_lex_state = 3}, + [384] = {.lex_state = 37, .external_lex_state = 3}, + [385] = {.lex_state = 37, .external_lex_state = 3}, + [386] = {.lex_state = 37, .external_lex_state = 3}, + [387] = {.lex_state = 37, .external_lex_state = 3}, + [388] = {.lex_state = 37, .external_lex_state = 3}, + [389] = {.lex_state = 37, .external_lex_state = 3}, + [390] = {.lex_state = 37, .external_lex_state = 3}, + [391] = {.lex_state = 37, .external_lex_state = 3}, + [392] = {.lex_state = 37, .external_lex_state = 1}, + [393] = {.lex_state = 37, .external_lex_state = 1}, + [394] = {.lex_state = 37, .external_lex_state = 1}, + [395] = {.lex_state = 37, .external_lex_state = 4}, + [396] = {.lex_state = 37, .external_lex_state = 2}, + [397] = {.lex_state = 37, .external_lex_state = 2}, + [398] = {.lex_state = 37, .external_lex_state = 3}, + [399] = {.lex_state = 37, .external_lex_state = 2}, + [400] = {.lex_state = 37, .external_lex_state = 2}, + [401] = {.lex_state = 37, .external_lex_state = 1}, + [402] = {.lex_state = 37, .external_lex_state = 3}, + [403] = {.lex_state = 37, .external_lex_state = 4}, + [404] = {.lex_state = 37, .external_lex_state = 3}, + [405] = {.lex_state = 37, .external_lex_state = 1}, + [406] = {.lex_state = 37, .external_lex_state = 2}, + [407] = {.lex_state = 37, .external_lex_state = 3}, + [408] = {.lex_state = 37, .external_lex_state = 3}, + [409] = {.lex_state = 37, .external_lex_state = 2}, + [410] = {.lex_state = 37, .external_lex_state = 4}, + [411] = {.lex_state = 37, .external_lex_state = 3}, + [412] = {.lex_state = 37, .external_lex_state = 3}, + [413] = {.lex_state = 37, .external_lex_state = 3}, + [414] = {.lex_state = 37, .external_lex_state = 3}, + [415] = {.lex_state = 37, .external_lex_state = 4}, + [416] = {.lex_state = 37, .external_lex_state = 4}, + [417] = {.lex_state = 37, .external_lex_state = 2}, + [418] = {.lex_state = 37, .external_lex_state = 3}, + [419] = {.lex_state = 37, .external_lex_state = 3}, + [420] = {.lex_state = 37, .external_lex_state = 3}, + [421] = {.lex_state = 37, .external_lex_state = 3}, + [422] = {.lex_state = 37, .external_lex_state = 3}, + [423] = {.lex_state = 37, .external_lex_state = 3}, + [424] = {.lex_state = 37, .external_lex_state = 3}, + [425] = {.lex_state = 37, .external_lex_state = 3}, + [426] = {.lex_state = 37, .external_lex_state = 3}, + [427] = {.lex_state = 37, .external_lex_state = 3}, + [428] = {.lex_state = 37, .external_lex_state = 3}, + [429] = {.lex_state = 37, .external_lex_state = 3}, + [430] = {.lex_state = 37, .external_lex_state = 3}, + [431] = {.lex_state = 37, .external_lex_state = 3}, + [432] = {.lex_state = 37, .external_lex_state = 3}, + [433] = {.lex_state = 37, .external_lex_state = 3}, + [434] = {.lex_state = 37, .external_lex_state = 3}, + [435] = {.lex_state = 37, .external_lex_state = 3}, + [436] = {.lex_state = 37, .external_lex_state = 3}, + [437] = {.lex_state = 37, .external_lex_state = 3}, + [438] = {.lex_state = 37, .external_lex_state = 3}, + [439] = {.lex_state = 37, .external_lex_state = 3}, + [440] = {.lex_state = 37, .external_lex_state = 3}, + [441] = {.lex_state = 37, .external_lex_state = 3}, + [442] = {.lex_state = 37, .external_lex_state = 3}, + [443] = {.lex_state = 37, .external_lex_state = 3}, + [444] = {.lex_state = 37, .external_lex_state = 3}, + [445] = {.lex_state = 37, .external_lex_state = 3}, + [446] = {.lex_state = 37, .external_lex_state = 3}, + [447] = {.lex_state = 37, .external_lex_state = 3}, + [448] = {.lex_state = 37, .external_lex_state = 3}, + [449] = {.lex_state = 37, .external_lex_state = 3}, + [450] = {.lex_state = 37, .external_lex_state = 3}, + [451] = {.lex_state = 37, .external_lex_state = 3}, + [452] = {.lex_state = 37, .external_lex_state = 3}, + [453] = {.lex_state = 37, .external_lex_state = 3}, + [454] = {.lex_state = 37, .external_lex_state = 3}, + [455] = {.lex_state = 37, .external_lex_state = 3}, + [456] = {.lex_state = 37, .external_lex_state = 3}, + [457] = {.lex_state = 37, .external_lex_state = 3}, + [458] = {.lex_state = 37, .external_lex_state = 3}, + [459] = {.lex_state = 37, .external_lex_state = 3}, + [460] = {.lex_state = 37, .external_lex_state = 3}, + [461] = {.lex_state = 37, .external_lex_state = 3}, + [462] = {.lex_state = 37, .external_lex_state = 3}, + [463] = {.lex_state = 37, .external_lex_state = 3}, + [464] = {.lex_state = 37, .external_lex_state = 3}, + [465] = {.lex_state = 37, .external_lex_state = 3}, + [466] = {.lex_state = 37, .external_lex_state = 3}, + [467] = {.lex_state = 37, .external_lex_state = 3}, + [468] = {.lex_state = 37, .external_lex_state = 3}, + [469] = {.lex_state = 37, .external_lex_state = 3}, + [470] = {.lex_state = 37, .external_lex_state = 3}, + [471] = {.lex_state = 37, .external_lex_state = 3}, + [472] = {.lex_state = 37, .external_lex_state = 3}, + [473] = {.lex_state = 37, .external_lex_state = 3}, + [474] = {.lex_state = 37, .external_lex_state = 3}, + [475] = {.lex_state = 37, .external_lex_state = 3}, + [476] = {.lex_state = 37, .external_lex_state = 3}, + [477] = {.lex_state = 37, .external_lex_state = 3}, + [478] = {.lex_state = 37, .external_lex_state = 3}, + [479] = {.lex_state = 37, .external_lex_state = 3}, + [480] = {.lex_state = 37, .external_lex_state = 3}, + [481] = {.lex_state = 37, .external_lex_state = 3}, + [482] = {.lex_state = 37, .external_lex_state = 3}, + [483] = {.lex_state = 37, .external_lex_state = 3}, + [484] = {.lex_state = 37, .external_lex_state = 3}, + [485] = {.lex_state = 37, .external_lex_state = 3}, + [486] = {.lex_state = 37, .external_lex_state = 3}, + [487] = {.lex_state = 37, .external_lex_state = 3}, + [488] = {.lex_state = 37, .external_lex_state = 3}, + [489] = {.lex_state = 37, .external_lex_state = 3}, + [490] = {.lex_state = 37, .external_lex_state = 3}, + [491] = {.lex_state = 37, .external_lex_state = 3}, + [492] = {.lex_state = 37, .external_lex_state = 3}, + [493] = {.lex_state = 37, .external_lex_state = 3}, + [494] = {.lex_state = 37, .external_lex_state = 3}, + [495] = {.lex_state = 37, .external_lex_state = 3}, + [496] = {.lex_state = 37, .external_lex_state = 3}, + [497] = {.lex_state = 37, .external_lex_state = 3}, + [498] = {.lex_state = 37, .external_lex_state = 3}, + [499] = {.lex_state = 37, .external_lex_state = 3}, + [500] = {.lex_state = 37, .external_lex_state = 3}, + [501] = {.lex_state = 37, .external_lex_state = 3}, + [502] = {.lex_state = 37, .external_lex_state = 3}, + [503] = {.lex_state = 37, .external_lex_state = 3}, + [504] = {.lex_state = 37, .external_lex_state = 3}, + [505] = {.lex_state = 37, .external_lex_state = 3}, + [506] = {.lex_state = 37, .external_lex_state = 3}, + [507] = {.lex_state = 37, .external_lex_state = 3}, + [508] = {.lex_state = 37, .external_lex_state = 3}, + [509] = {.lex_state = 37, .external_lex_state = 3}, + [510] = {.lex_state = 37, .external_lex_state = 3}, + [511] = {.lex_state = 37, .external_lex_state = 3}, + [512] = {.lex_state = 37, .external_lex_state = 3}, + [513] = {.lex_state = 37, .external_lex_state = 3}, + [514] = {.lex_state = 37, .external_lex_state = 3}, + [515] = {.lex_state = 37, .external_lex_state = 3}, + [516] = {.lex_state = 37, .external_lex_state = 3}, + [517] = {.lex_state = 37, .external_lex_state = 3}, + [518] = {.lex_state = 37, .external_lex_state = 3}, + [519] = {.lex_state = 37, .external_lex_state = 3}, + [520] = {.lex_state = 37, .external_lex_state = 3}, + [521] = {.lex_state = 37, .external_lex_state = 3}, + [522] = {.lex_state = 37, .external_lex_state = 3}, + [523] = {.lex_state = 37, .external_lex_state = 3}, + [524] = {.lex_state = 37, .external_lex_state = 3}, + [525] = {.lex_state = 37, .external_lex_state = 3}, + [526] = {.lex_state = 37, .external_lex_state = 3}, + [527] = {.lex_state = 37, .external_lex_state = 3}, + [528] = {.lex_state = 37, .external_lex_state = 3}, + [529] = {.lex_state = 37, .external_lex_state = 3}, + [530] = {.lex_state = 37, .external_lex_state = 3}, + [531] = {.lex_state = 37, .external_lex_state = 3}, + [532] = {.lex_state = 37, .external_lex_state = 3}, + [533] = {.lex_state = 37, .external_lex_state = 3}, + [534] = {.lex_state = 37, .external_lex_state = 3}, + [535] = {.lex_state = 37, .external_lex_state = 3}, + [536] = {.lex_state = 37, .external_lex_state = 3}, + [537] = {.lex_state = 37, .external_lex_state = 3}, + [538] = {.lex_state = 37, .external_lex_state = 3}, + [539] = {.lex_state = 37, .external_lex_state = 3}, + [540] = {.lex_state = 37, .external_lex_state = 3}, + [541] = {.lex_state = 37, .external_lex_state = 3}, + [542] = {.lex_state = 37, .external_lex_state = 3}, + [543] = {.lex_state = 37, .external_lex_state = 3}, + [544] = {.lex_state = 37, .external_lex_state = 3}, + [545] = {.lex_state = 37, .external_lex_state = 3}, + [546] = {.lex_state = 37, .external_lex_state = 4}, + [547] = {.lex_state = 37, .external_lex_state = 3}, + [548] = {.lex_state = 37, .external_lex_state = 2}, + [549] = {.lex_state = 37, .external_lex_state = 3}, + [550] = {.lex_state = 37, .external_lex_state = 3}, + [551] = {.lex_state = 37, .external_lex_state = 3}, + [552] = {.lex_state = 37, .external_lex_state = 3}, + [553] = {.lex_state = 37, .external_lex_state = 3}, + [554] = {.lex_state = 37, .external_lex_state = 3}, + [555] = {.lex_state = 37, .external_lex_state = 3}, + [556] = {.lex_state = 37, .external_lex_state = 3}, + [557] = {.lex_state = 37, .external_lex_state = 2}, + [558] = {.lex_state = 37, .external_lex_state = 3}, + [559] = {.lex_state = 37, .external_lex_state = 3}, + [560] = {.lex_state = 37, .external_lex_state = 3}, + [561] = {.lex_state = 37, .external_lex_state = 3}, + [562] = {.lex_state = 37, .external_lex_state = 3}, + [563] = {.lex_state = 37, .external_lex_state = 3}, + [564] = {.lex_state = 37, .external_lex_state = 3}, + [565] = {.lex_state = 37, .external_lex_state = 3}, + [566] = {.lex_state = 37, .external_lex_state = 3}, + [567] = {.lex_state = 37, .external_lex_state = 3}, + [568] = {.lex_state = 37, .external_lex_state = 3}, + [569] = {.lex_state = 37, .external_lex_state = 3}, + [570] = {.lex_state = 37, .external_lex_state = 2}, + [571] = {.lex_state = 37, .external_lex_state = 4}, + [572] = {.lex_state = 37, .external_lex_state = 3}, + [573] = {.lex_state = 37, .external_lex_state = 3}, + [574] = {.lex_state = 37, .external_lex_state = 3}, + [575] = {.lex_state = 37, .external_lex_state = 3}, + [576] = {.lex_state = 37, .external_lex_state = 3}, + [577] = {.lex_state = 37, .external_lex_state = 3}, + [578] = {.lex_state = 37, .external_lex_state = 3}, + [579] = {.lex_state = 37, .external_lex_state = 3}, + [580] = {.lex_state = 37, .external_lex_state = 3}, + [581] = {.lex_state = 37, .external_lex_state = 3}, + [582] = {.lex_state = 37, .external_lex_state = 3}, + [583] = {.lex_state = 37, .external_lex_state = 3}, + [584] = {.lex_state = 37, .external_lex_state = 3}, + [585] = {.lex_state = 37, .external_lex_state = 3}, + [586] = {.lex_state = 37, .external_lex_state = 3}, + [587] = {.lex_state = 37, .external_lex_state = 3}, + [588] = {.lex_state = 37, .external_lex_state = 3}, + [589] = {.lex_state = 37, .external_lex_state = 3}, + [590] = {.lex_state = 37, .external_lex_state = 3}, + [591] = {.lex_state = 37, .external_lex_state = 1}, + [592] = {.lex_state = 37, .external_lex_state = 3}, + [593] = {.lex_state = 37, .external_lex_state = 3}, + [594] = {.lex_state = 37, .external_lex_state = 2}, + [595] = {.lex_state = 37, .external_lex_state = 2}, + [596] = {.lex_state = 37, .external_lex_state = 2}, + [597] = {.lex_state = 37, .external_lex_state = 2}, + [598] = {.lex_state = 37, .external_lex_state = 3}, + [599] = {.lex_state = 37, .external_lex_state = 3}, + [600] = {.lex_state = 37, .external_lex_state = 3}, + [601] = {.lex_state = 37, .external_lex_state = 3}, + [602] = {.lex_state = 37, .external_lex_state = 3}, + [603] = {.lex_state = 37, .external_lex_state = 3}, + [604] = {.lex_state = 37, .external_lex_state = 3}, + [605] = {.lex_state = 37, .external_lex_state = 3}, + [606] = {.lex_state = 37, .external_lex_state = 3}, + [607] = {.lex_state = 37, .external_lex_state = 3}, + [608] = {.lex_state = 37, .external_lex_state = 3}, + [609] = {.lex_state = 37, .external_lex_state = 2}, + [610] = {.lex_state = 37, .external_lex_state = 2}, + [611] = {.lex_state = 37, .external_lex_state = 3}, + [612] = {.lex_state = 37, .external_lex_state = 3}, + [613] = {.lex_state = 37, .external_lex_state = 3}, + [614] = {.lex_state = 37, .external_lex_state = 3}, + [615] = {.lex_state = 37, .external_lex_state = 3}, + [616] = {.lex_state = 37, .external_lex_state = 3}, + [617] = {.lex_state = 37, .external_lex_state = 3}, + [618] = {.lex_state = 37, .external_lex_state = 3}, + [619] = {.lex_state = 37, .external_lex_state = 3}, + [620] = {.lex_state = 37, .external_lex_state = 4}, + [621] = {.lex_state = 37, .external_lex_state = 3}, + [622] = {.lex_state = 37, .external_lex_state = 3}, + [623] = {.lex_state = 37, .external_lex_state = 3}, + [624] = {.lex_state = 37, .external_lex_state = 2}, + [625] = {.lex_state = 37, .external_lex_state = 2}, + [626] = {.lex_state = 37, .external_lex_state = 2}, + [627] = {.lex_state = 37, .external_lex_state = 2}, + [628] = {.lex_state = 37, .external_lex_state = 3}, + [629] = {.lex_state = 37, .external_lex_state = 1}, + [630] = {.lex_state = 37, .external_lex_state = 2}, + [631] = {.lex_state = 37, .external_lex_state = 4}, + [632] = {.lex_state = 37, .external_lex_state = 2}, + [633] = {.lex_state = 37, .external_lex_state = 2}, + [634] = {.lex_state = 37, .external_lex_state = 3}, + [635] = {.lex_state = 37, .external_lex_state = 3}, + [636] = {.lex_state = 37, .external_lex_state = 2}, + [637] = {.lex_state = 37, .external_lex_state = 2}, + [638] = {.lex_state = 37, .external_lex_state = 3}, + [639] = {.lex_state = 37, .external_lex_state = 3}, + [640] = {.lex_state = 37, .external_lex_state = 3}, + [641] = {.lex_state = 37, .external_lex_state = 3}, + [642] = {.lex_state = 37, .external_lex_state = 2}, + [643] = {.lex_state = 37, .external_lex_state = 2}, + [644] = {.lex_state = 37, .external_lex_state = 2}, + [645] = {.lex_state = 37, .external_lex_state = 4}, + [646] = {.lex_state = 37, .external_lex_state = 4}, + [647] = {.lex_state = 37, .external_lex_state = 2}, + [648] = {.lex_state = 37, .external_lex_state = 4}, + [649] = {.lex_state = 37, .external_lex_state = 2}, + [650] = {.lex_state = 37, .external_lex_state = 2}, + [651] = {.lex_state = 37, .external_lex_state = 2}, + [652] = {.lex_state = 37, .external_lex_state = 2}, + [653] = {.lex_state = 37, .external_lex_state = 2}, + [654] = {.lex_state = 37, .external_lex_state = 2}, + [655] = {.lex_state = 37, .external_lex_state = 2}, + [656] = {.lex_state = 37, .external_lex_state = 2}, + [657] = {.lex_state = 37, .external_lex_state = 2}, + [658] = {.lex_state = 37, .external_lex_state = 2}, + [659] = {.lex_state = 37, .external_lex_state = 2}, + [660] = {.lex_state = 37, .external_lex_state = 2}, + [661] = {.lex_state = 37, .external_lex_state = 2}, + [662] = {.lex_state = 37, .external_lex_state = 2}, + [663] = {.lex_state = 37, .external_lex_state = 2}, + [664] = {.lex_state = 37, .external_lex_state = 2}, + [665] = {.lex_state = 37, .external_lex_state = 2}, + [666] = {.lex_state = 37, .external_lex_state = 2}, + [667] = {.lex_state = 37, .external_lex_state = 2}, + [668] = {.lex_state = 37, .external_lex_state = 2}, + [669] = {.lex_state = 37, .external_lex_state = 2}, + [670] = {.lex_state = 37, .external_lex_state = 2}, + [671] = {.lex_state = 37, .external_lex_state = 2}, + [672] = {.lex_state = 37, .external_lex_state = 2}, + [673] = {.lex_state = 37, .external_lex_state = 2}, + [674] = {.lex_state = 37, .external_lex_state = 2}, + [675] = {.lex_state = 37, .external_lex_state = 2}, + [676] = {.lex_state = 37, .external_lex_state = 2}, + [677] = {.lex_state = 37, .external_lex_state = 2}, + [678] = {.lex_state = 37, .external_lex_state = 2}, + [679] = {.lex_state = 37, .external_lex_state = 2}, + [680] = {.lex_state = 37, .external_lex_state = 2}, + [681] = {.lex_state = 37, .external_lex_state = 2}, + [682] = {.lex_state = 37, .external_lex_state = 2}, + [683] = {.lex_state = 37, .external_lex_state = 2}, + [684] = {.lex_state = 37, .external_lex_state = 2}, + [685] = {.lex_state = 37, .external_lex_state = 2}, + [686] = {.lex_state = 37, .external_lex_state = 2}, + [687] = {.lex_state = 37, .external_lex_state = 2}, + [688] = {.lex_state = 37, .external_lex_state = 2}, + [689] = {.lex_state = 37, .external_lex_state = 2}, + [690] = {.lex_state = 37, .external_lex_state = 2}, + [691] = {.lex_state = 37, .external_lex_state = 2}, + [692] = {.lex_state = 37, .external_lex_state = 2}, + [693] = {.lex_state = 37, .external_lex_state = 2}, + [694] = {.lex_state = 37, .external_lex_state = 2}, + [695] = {.lex_state = 37, .external_lex_state = 2}, + [696] = {.lex_state = 37, .external_lex_state = 2}, + [697] = {.lex_state = 37, .external_lex_state = 2}, + [698] = {.lex_state = 37, .external_lex_state = 2}, + [699] = {.lex_state = 37, .external_lex_state = 2}, + [700] = {.lex_state = 37, .external_lex_state = 2}, + [701] = {.lex_state = 37, .external_lex_state = 2}, + [702] = {.lex_state = 37, .external_lex_state = 2}, + [703] = {.lex_state = 37, .external_lex_state = 2}, + [704] = {.lex_state = 37, .external_lex_state = 2}, + [705] = {.lex_state = 37, .external_lex_state = 2}, + [706] = {.lex_state = 37, .external_lex_state = 2}, + [707] = {.lex_state = 37, .external_lex_state = 2}, + [708] = {.lex_state = 37, .external_lex_state = 2}, + [709] = {.lex_state = 37, .external_lex_state = 2}, + [710] = {.lex_state = 37, .external_lex_state = 2}, + [711] = {.lex_state = 37, .external_lex_state = 2}, + [712] = {.lex_state = 37, .external_lex_state = 2}, + [713] = {.lex_state = 37, .external_lex_state = 2}, + [714] = {.lex_state = 37, .external_lex_state = 2}, + [715] = {.lex_state = 37, .external_lex_state = 2}, + [716] = {.lex_state = 37, .external_lex_state = 2}, + [717] = {.lex_state = 37, .external_lex_state = 2}, + [718] = {.lex_state = 37, .external_lex_state = 2}, + [719] = {.lex_state = 37, .external_lex_state = 2}, + [720] = {.lex_state = 37, .external_lex_state = 2}, + [721] = {.lex_state = 37, .external_lex_state = 2}, + [722] = {.lex_state = 37, .external_lex_state = 2}, + [723] = {.lex_state = 37, .external_lex_state = 2}, + [724] = {.lex_state = 37, .external_lex_state = 2}, + [725] = {.lex_state = 37, .external_lex_state = 2}, + [726] = {.lex_state = 37, .external_lex_state = 2}, + [727] = {.lex_state = 37, .external_lex_state = 2}, + [728] = {.lex_state = 37, .external_lex_state = 2}, + [729] = {.lex_state = 37, .external_lex_state = 2}, + [730] = {.lex_state = 37, .external_lex_state = 2}, + [731] = {.lex_state = 37, .external_lex_state = 2}, + [732] = {.lex_state = 37, .external_lex_state = 2}, + [733] = {.lex_state = 37, .external_lex_state = 2}, + [734] = {.lex_state = 37, .external_lex_state = 2}, + [735] = {.lex_state = 37, .external_lex_state = 2}, + [736] = {.lex_state = 37, .external_lex_state = 2}, + [737] = {.lex_state = 37, .external_lex_state = 2}, + [738] = {.lex_state = 37, .external_lex_state = 2}, + [739] = {.lex_state = 37, .external_lex_state = 2}, + [740] = {.lex_state = 37, .external_lex_state = 2}, + [741] = {.lex_state = 37, .external_lex_state = 2}, + [742] = {.lex_state = 37, .external_lex_state = 2}, + [743] = {.lex_state = 37, .external_lex_state = 2}, + [744] = {.lex_state = 37, .external_lex_state = 2}, + [745] = {.lex_state = 37, .external_lex_state = 2}, + [746] = {.lex_state = 37, .external_lex_state = 2}, + [747] = {.lex_state = 37, .external_lex_state = 2}, + [748] = {.lex_state = 37, .external_lex_state = 2}, + [749] = {.lex_state = 37, .external_lex_state = 2}, + [750] = {.lex_state = 37, .external_lex_state = 2}, + [751] = {.lex_state = 37, .external_lex_state = 2}, + [752] = {.lex_state = 37, .external_lex_state = 3}, + [753] = {.lex_state = 37, .external_lex_state = 2}, + [754] = {.lex_state = 37, .external_lex_state = 2}, + [755] = {.lex_state = 37, .external_lex_state = 2}, + [756] = {.lex_state = 37, .external_lex_state = 2}, + [757] = {.lex_state = 37, .external_lex_state = 2}, + [758] = {.lex_state = 37, .external_lex_state = 2}, + [759] = {.lex_state = 37, .external_lex_state = 2}, + [760] = {.lex_state = 37, .external_lex_state = 2}, + [761] = {.lex_state = 37, .external_lex_state = 2}, + [762] = {.lex_state = 37, .external_lex_state = 2}, + [763] = {.lex_state = 37, .external_lex_state = 2}, + [764] = {.lex_state = 37, .external_lex_state = 2}, + [765] = {.lex_state = 37, .external_lex_state = 2}, + [766] = {.lex_state = 37, .external_lex_state = 2}, + [767] = {.lex_state = 37, .external_lex_state = 2}, + [768] = {.lex_state = 37, .external_lex_state = 2}, + [769] = {.lex_state = 37, .external_lex_state = 2}, + [770] = {.lex_state = 37, .external_lex_state = 2}, + [771] = {.lex_state = 37, .external_lex_state = 2}, + [772] = {.lex_state = 37, .external_lex_state = 2}, + [773] = {.lex_state = 37, .external_lex_state = 2}, + [774] = {.lex_state = 37, .external_lex_state = 2}, + [775] = {.lex_state = 37, .external_lex_state = 2}, + [776] = {.lex_state = 37, .external_lex_state = 2}, + [777] = {.lex_state = 37, .external_lex_state = 2}, + [778] = {.lex_state = 37, .external_lex_state = 2}, + [779] = {.lex_state = 37, .external_lex_state = 3}, + [780] = {.lex_state = 37, .external_lex_state = 2}, + [781] = {.lex_state = 37, .external_lex_state = 2}, + [782] = {.lex_state = 37, .external_lex_state = 2}, + [783] = {.lex_state = 37, .external_lex_state = 2}, + [784] = {.lex_state = 37, .external_lex_state = 2}, + [785] = {.lex_state = 37, .external_lex_state = 2}, + [786] = {.lex_state = 37, .external_lex_state = 2}, + [787] = {.lex_state = 37, .external_lex_state = 2}, + [788] = {.lex_state = 37, .external_lex_state = 2}, + [789] = {.lex_state = 37, .external_lex_state = 2}, + [790] = {.lex_state = 37, .external_lex_state = 2}, + [791] = {.lex_state = 37, .external_lex_state = 2}, + [792] = {.lex_state = 37, .external_lex_state = 2}, + [793] = {.lex_state = 37, .external_lex_state = 2}, + [794] = {.lex_state = 37, .external_lex_state = 2}, + [795] = {.lex_state = 37, .external_lex_state = 2}, + [796] = {.lex_state = 37, .external_lex_state = 2}, + [797] = {.lex_state = 37, .external_lex_state = 2}, + [798] = {.lex_state = 37, .external_lex_state = 2}, + [799] = {.lex_state = 37, .external_lex_state = 2}, + [800] = {.lex_state = 37, .external_lex_state = 3}, + [801] = {.lex_state = 37, .external_lex_state = 2}, + [802] = {.lex_state = 37, .external_lex_state = 2}, + [803] = {.lex_state = 37, .external_lex_state = 2}, + [804] = {.lex_state = 37, .external_lex_state = 2}, + [805] = {.lex_state = 37, .external_lex_state = 2}, + [806] = {.lex_state = 37, .external_lex_state = 2}, + [807] = {.lex_state = 37, .external_lex_state = 2}, + [808] = {.lex_state = 37, .external_lex_state = 2}, + [809] = {.lex_state = 37, .external_lex_state = 2}, + [810] = {.lex_state = 37, .external_lex_state = 2}, + [811] = {.lex_state = 37, .external_lex_state = 2}, + [812] = {.lex_state = 37, .external_lex_state = 2}, + [813] = {.lex_state = 37, .external_lex_state = 2}, + [814] = {.lex_state = 37, .external_lex_state = 2}, + [815] = {.lex_state = 37, .external_lex_state = 2}, + [816] = {.lex_state = 37, .external_lex_state = 2}, + [817] = {.lex_state = 37, .external_lex_state = 2}, + [818] = {.lex_state = 37, .external_lex_state = 2}, + [819] = {.lex_state = 37, .external_lex_state = 2}, + [820] = {.lex_state = 37, .external_lex_state = 2}, + [821] = {.lex_state = 37, .external_lex_state = 2}, + [822] = {.lex_state = 37, .external_lex_state = 2}, + [823] = {.lex_state = 37, .external_lex_state = 2}, + [824] = {.lex_state = 37, .external_lex_state = 2}, + [825] = {.lex_state = 37, .external_lex_state = 2}, + [826] = {.lex_state = 37, .external_lex_state = 2}, + [827] = {.lex_state = 37, .external_lex_state = 2}, + [828] = {.lex_state = 37, .external_lex_state = 2}, + [829] = {.lex_state = 37, .external_lex_state = 2}, + [830] = {.lex_state = 37, .external_lex_state = 2}, + [831] = {.lex_state = 37, .external_lex_state = 2}, + [832] = {.lex_state = 37, .external_lex_state = 2}, + [833] = {.lex_state = 37, .external_lex_state = 2}, + [834] = {.lex_state = 37, .external_lex_state = 2}, + [835] = {.lex_state = 37, .external_lex_state = 2}, + [836] = {.lex_state = 37, .external_lex_state = 2}, + [837] = {.lex_state = 37, .external_lex_state = 1}, + [838] = {.lex_state = 37, .external_lex_state = 4}, + [839] = {.lex_state = 37, .external_lex_state = 3}, + [840] = {.lex_state = 37, .external_lex_state = 2}, + [841] = {.lex_state = 37, .external_lex_state = 3}, + [842] = {.lex_state = 37, .external_lex_state = 2}, + [843] = {.lex_state = 37, .external_lex_state = 2}, + [844] = {.lex_state = 37, .external_lex_state = 2}, + [845] = {.lex_state = 37, .external_lex_state = 2}, + [846] = {.lex_state = 37, .external_lex_state = 2}, + [847] = {.lex_state = 37, .external_lex_state = 2}, + [848] = {.lex_state = 37, .external_lex_state = 2}, + [849] = {.lex_state = 37, .external_lex_state = 2}, + [850] = {.lex_state = 37, .external_lex_state = 2}, + [851] = {.lex_state = 37, .external_lex_state = 2}, + [852] = {.lex_state = 37, .external_lex_state = 2}, + [853] = {.lex_state = 37, .external_lex_state = 2}, + [854] = {.lex_state = 37, .external_lex_state = 2}, + [855] = {.lex_state = 37, .external_lex_state = 2}, + [856] = {.lex_state = 37, .external_lex_state = 2}, + [857] = {.lex_state = 37, .external_lex_state = 2}, + [858] = {.lex_state = 37, .external_lex_state = 2}, + [859] = {.lex_state = 1, .external_lex_state = 2}, + [860] = {.lex_state = 1, .external_lex_state = 2}, + [861] = {.lex_state = 37, .external_lex_state = 2}, + [862] = {.lex_state = 1, .external_lex_state = 2}, + [863] = {.lex_state = 1, .external_lex_state = 2}, + [864] = {.lex_state = 1, .external_lex_state = 2}, + [865] = {.lex_state = 37, .external_lex_state = 2}, + [866] = {.lex_state = 37, .external_lex_state = 2}, + [867] = {.lex_state = 1, .external_lex_state = 2}, + [868] = {.lex_state = 37, .external_lex_state = 2}, + [869] = {.lex_state = 37, .external_lex_state = 3}, + [870] = {.lex_state = 37, .external_lex_state = 2}, + [871] = {.lex_state = 37, .external_lex_state = 2}, + [872] = {.lex_state = 37, .external_lex_state = 2}, + [873] = {.lex_state = 1, .external_lex_state = 2}, + [874] = {.lex_state = 1, .external_lex_state = 2}, + [875] = {.lex_state = 1, .external_lex_state = 2}, + [876] = {.lex_state = 37, .external_lex_state = 3}, + [877] = {.lex_state = 1, .external_lex_state = 2}, + [878] = {.lex_state = 37, .external_lex_state = 2}, + [879] = {.lex_state = 37, .external_lex_state = 2}, + [880] = {.lex_state = 37, .external_lex_state = 1}, + [881] = {.lex_state = 37, .external_lex_state = 1}, + [882] = {.lex_state = 37, .external_lex_state = 2}, + [883] = {.lex_state = 37, .external_lex_state = 2}, + [884] = {.lex_state = 37, .external_lex_state = 2}, + [885] = {.lex_state = 37, .external_lex_state = 2}, + [886] = {.lex_state = 37, .external_lex_state = 2}, + [887] = {.lex_state = 37, .external_lex_state = 2}, + [888] = {.lex_state = 37, .external_lex_state = 4}, + [889] = {.lex_state = 37, .external_lex_state = 4}, + [890] = {.lex_state = 37, .external_lex_state = 2}, + [891] = {.lex_state = 37, .external_lex_state = 1}, + [892] = {.lex_state = 37, .external_lex_state = 1}, + [893] = {.lex_state = 37, .external_lex_state = 1}, + [894] = {.lex_state = 37, .external_lex_state = 1}, + [895] = {.lex_state = 37, .external_lex_state = 1}, + [896] = {.lex_state = 37, .external_lex_state = 2}, + [897] = {.lex_state = 1, .external_lex_state = 3}, + [898] = {.lex_state = 37, .external_lex_state = 2}, + [899] = {.lex_state = 37, .external_lex_state = 2}, + [900] = {.lex_state = 1, .external_lex_state = 3}, + [901] = {.lex_state = 37, .external_lex_state = 2}, + [902] = {.lex_state = 37, .external_lex_state = 4}, + [903] = {.lex_state = 37, .external_lex_state = 2}, + [904] = {.lex_state = 37, .external_lex_state = 4}, + [905] = {.lex_state = 37, .external_lex_state = 4}, + [906] = {.lex_state = 37, .external_lex_state = 2}, + [907] = {.lex_state = 37, .external_lex_state = 2}, + [908] = {.lex_state = 37, .external_lex_state = 2}, + [909] = {.lex_state = 37, .external_lex_state = 2}, + [910] = {.lex_state = 37, .external_lex_state = 4}, + [911] = {.lex_state = 37, .external_lex_state = 2}, + [912] = {.lex_state = 1, .external_lex_state = 3}, + [913] = {.lex_state = 37, .external_lex_state = 2}, + [914] = {.lex_state = 1, .external_lex_state = 3}, + [915] = {.lex_state = 37, .external_lex_state = 4}, + [916] = {.lex_state = 1, .external_lex_state = 3}, + [917] = {.lex_state = 37, .external_lex_state = 4}, + [918] = {.lex_state = 37, .external_lex_state = 4}, + [919] = {.lex_state = 37, .external_lex_state = 4}, + [920] = {.lex_state = 1, .external_lex_state = 4}, + [921] = {.lex_state = 1, .external_lex_state = 4}, + [922] = {.lex_state = 1, .external_lex_state = 4}, + [923] = {.lex_state = 1, .external_lex_state = 4}, + [924] = {.lex_state = 1, .external_lex_state = 4}, + [925] = {.lex_state = 37, .external_lex_state = 4}, + [926] = {.lex_state = 37, .external_lex_state = 4}, + [927] = {.lex_state = 37, .external_lex_state = 2}, + [928] = {.lex_state = 1, .external_lex_state = 2}, + [929] = {.lex_state = 37, .external_lex_state = 4}, + [930] = {.lex_state = 37, .external_lex_state = 4}, + [931] = {.lex_state = 37, .external_lex_state = 4}, + [932] = {.lex_state = 37, .external_lex_state = 2}, + [933] = {.lex_state = 37, .external_lex_state = 2}, + [934] = {.lex_state = 37, .external_lex_state = 2}, + [935] = {.lex_state = 37, .external_lex_state = 2}, + [936] = {.lex_state = 37, .external_lex_state = 2}, + [937] = {.lex_state = 37, .external_lex_state = 2}, + [938] = {.lex_state = 37, .external_lex_state = 4}, + [939] = {.lex_state = 37, .external_lex_state = 2}, + [940] = {.lex_state = 1, .external_lex_state = 2}, + [941] = {.lex_state = 37, .external_lex_state = 2}, + [942] = {.lex_state = 1, .external_lex_state = 2}, + [943] = {.lex_state = 1, .external_lex_state = 2}, + [944] = {.lex_state = 37, .external_lex_state = 2}, + [945] = {.lex_state = 37, .external_lex_state = 4}, + [946] = {.lex_state = 37, .external_lex_state = 2}, + [947] = {.lex_state = 37, .external_lex_state = 2}, + [948] = {.lex_state = 1, .external_lex_state = 2}, + [949] = {.lex_state = 1, .external_lex_state = 2}, + [950] = {.lex_state = 1, .external_lex_state = 2}, + [951] = {.lex_state = 37, .external_lex_state = 2}, + [952] = {.lex_state = 37, .external_lex_state = 2}, + [953] = {.lex_state = 37, .external_lex_state = 2}, + [954] = {.lex_state = 37, .external_lex_state = 4}, + [955] = {.lex_state = 37, .external_lex_state = 2}, + [956] = {.lex_state = 37, .external_lex_state = 2}, + [957] = {.lex_state = 37, .external_lex_state = 2}, + [958] = {.lex_state = 37, .external_lex_state = 2}, + [959] = {.lex_state = 37, .external_lex_state = 2}, + [960] = {.lex_state = 37, .external_lex_state = 2}, + [961] = {.lex_state = 37, .external_lex_state = 2}, + [962] = {.lex_state = 37, .external_lex_state = 2}, + [963] = {.lex_state = 37, .external_lex_state = 2}, + [964] = {.lex_state = 37, .external_lex_state = 2}, + [965] = {.lex_state = 37, .external_lex_state = 2}, + [966] = {.lex_state = 37, .external_lex_state = 2}, + [967] = {.lex_state = 37, .external_lex_state = 4}, + [968] = {.lex_state = 37, .external_lex_state = 2}, + [969] = {.lex_state = 37, .external_lex_state = 2}, + [970] = {.lex_state = 37, .external_lex_state = 2}, + [971] = {.lex_state = 37, .external_lex_state = 2}, + [972] = {.lex_state = 37, .external_lex_state = 2}, + [973] = {.lex_state = 37, .external_lex_state = 2}, + [974] = {.lex_state = 37, .external_lex_state = 2}, + [975] = {.lex_state = 37, .external_lex_state = 2}, + [976] = {.lex_state = 37, .external_lex_state = 2}, + [977] = {.lex_state = 37, .external_lex_state = 2}, + [978] = {.lex_state = 2, .external_lex_state = 2}, + [979] = {.lex_state = 2, .external_lex_state = 3}, + [980] = {.lex_state = 2, .external_lex_state = 2}, + [981] = {.lex_state = 2, .external_lex_state = 2}, + [982] = {.lex_state = 2, .external_lex_state = 2}, + [983] = {.lex_state = 2, .external_lex_state = 3}, + [984] = {.lex_state = 2, .external_lex_state = 3}, + [985] = {.lex_state = 2, .external_lex_state = 3}, + [986] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 1, .external_lex_state = 3}, + [988] = {.lex_state = 2, .external_lex_state = 2}, + [989] = {.lex_state = 37, .external_lex_state = 1}, + [990] = {.lex_state = 37, .external_lex_state = 1}, + [991] = {.lex_state = 1, .external_lex_state = 4}, + [992] = {.lex_state = 37, .external_lex_state = 1}, + [993] = {.lex_state = 37, .external_lex_state = 1}, + [994] = {.lex_state = 37, .external_lex_state = 1}, + [995] = {.lex_state = 37, .external_lex_state = 1}, + [996] = {.lex_state = 37, .external_lex_state = 1}, + [997] = {.lex_state = 37, .external_lex_state = 1}, + [998] = {.lex_state = 37, .external_lex_state = 1}, + [999] = {.lex_state = 37, .external_lex_state = 1}, + [1000] = {.lex_state = 2, .external_lex_state = 3}, + [1001] = {.lex_state = 37, .external_lex_state = 1}, + [1002] = {.lex_state = 2, .external_lex_state = 3}, + [1003] = {.lex_state = 37, .external_lex_state = 2}, + [1004] = {.lex_state = 37, .external_lex_state = 4}, + [1005] = {.lex_state = 37, .external_lex_state = 4}, + [1006] = {.lex_state = 37, .external_lex_state = 4}, + [1007] = {.lex_state = 37, .external_lex_state = 4}, + [1008] = {.lex_state = 37, .external_lex_state = 2}, + [1009] = {.lex_state = 37, .external_lex_state = 4}, + [1010] = {.lex_state = 3, .external_lex_state = 2}, + [1011] = {.lex_state = 37, .external_lex_state = 2}, + [1012] = {.lex_state = 37, .external_lex_state = 4}, + [1013] = {.lex_state = 37, .external_lex_state = 4}, + [1014] = {.lex_state = 0, .external_lex_state = 4}, + [1015] = {.lex_state = 37, .external_lex_state = 2}, + [1016] = {.lex_state = 37, .external_lex_state = 2}, + [1017] = {.lex_state = 37, .external_lex_state = 2}, + [1018] = {.lex_state = 37, .external_lex_state = 4}, + [1019] = {.lex_state = 37, .external_lex_state = 2}, + [1020] = {.lex_state = 0, .external_lex_state = 4}, + [1021] = {.lex_state = 37, .external_lex_state = 2}, + [1022] = {.lex_state = 37, .external_lex_state = 2}, + [1023] = {.lex_state = 0, .external_lex_state = 4}, + [1024] = {.lex_state = 37, .external_lex_state = 2}, + [1025] = {.lex_state = 37, .external_lex_state = 2}, + [1026] = {.lex_state = 37, .external_lex_state = 2}, + [1027] = {.lex_state = 37, .external_lex_state = 2}, + [1028] = {.lex_state = 0, .external_lex_state = 4}, + [1029] = {.lex_state = 37, .external_lex_state = 2}, + [1030] = {.lex_state = 37, .external_lex_state = 2}, + [1031] = {.lex_state = 37, .external_lex_state = 2}, + [1032] = {.lex_state = 37, .external_lex_state = 2}, + [1033] = {.lex_state = 37, .external_lex_state = 2}, + [1034] = {.lex_state = 37, .external_lex_state = 2}, + [1035] = {.lex_state = 37, .external_lex_state = 2}, + [1036] = {.lex_state = 37, .external_lex_state = 2}, + [1037] = {.lex_state = 37, .external_lex_state = 2}, + [1038] = {.lex_state = 37, .external_lex_state = 2}, + [1039] = {.lex_state = 37, .external_lex_state = 2}, + [1040] = {.lex_state = 0, .external_lex_state = 4}, + [1041] = {.lex_state = 37, .external_lex_state = 2}, + [1042] = {.lex_state = 37, .external_lex_state = 2}, + [1043] = {.lex_state = 37, .external_lex_state = 2}, + [1044] = {.lex_state = 37, .external_lex_state = 4}, + [1045] = {.lex_state = 0, .external_lex_state = 4}, + [1046] = {.lex_state = 0, .external_lex_state = 4}, + [1047] = {.lex_state = 37, .external_lex_state = 2}, + [1048] = {.lex_state = 37, .external_lex_state = 2}, + [1049] = {.lex_state = 1, .external_lex_state = 3}, + [1050] = {.lex_state = 1, .external_lex_state = 3}, + [1051] = {.lex_state = 37, .external_lex_state = 2}, + [1052] = {.lex_state = 37, .external_lex_state = 4}, + [1053] = {.lex_state = 37, .external_lex_state = 4}, + [1054] = {.lex_state = 37, .external_lex_state = 2}, + [1055] = {.lex_state = 37, .external_lex_state = 2}, + [1056] = {.lex_state = 37, .external_lex_state = 2}, + [1057] = {.lex_state = 37, .external_lex_state = 2}, + [1058] = {.lex_state = 37, .external_lex_state = 4}, + [1059] = {.lex_state = 37, .external_lex_state = 4}, + [1060] = {.lex_state = 0, .external_lex_state = 4}, + [1061] = {.lex_state = 37, .external_lex_state = 4}, + [1062] = {.lex_state = 37, .external_lex_state = 2}, + [1063] = {.lex_state = 37, .external_lex_state = 4}, + [1064] = {.lex_state = 37, .external_lex_state = 4}, + [1065] = {.lex_state = 37, .external_lex_state = 2}, + [1066] = {.lex_state = 37, .external_lex_state = 4}, + [1067] = {.lex_state = 37, .external_lex_state = 4}, + [1068] = {.lex_state = 0, .external_lex_state = 4}, + [1069] = {.lex_state = 37, .external_lex_state = 2}, + [1070] = {.lex_state = 37, .external_lex_state = 2}, + [1071] = {.lex_state = 37, .external_lex_state = 4}, + [1072] = {.lex_state = 0, .external_lex_state = 4}, + [1073] = {.lex_state = 0, .external_lex_state = 4}, + [1074] = {.lex_state = 2, .external_lex_state = 2}, + [1075] = {.lex_state = 2, .external_lex_state = 2}, + [1076] = {.lex_state = 2, .external_lex_state = 2}, + [1077] = {.lex_state = 0, .external_lex_state = 4}, + [1078] = {.lex_state = 0, .external_lex_state = 4}, + [1079] = {.lex_state = 0, .external_lex_state = 4}, + [1080] = {.lex_state = 0, .external_lex_state = 4}, + [1081] = {.lex_state = 0, .external_lex_state = 4}, + [1082] = {.lex_state = 0, .external_lex_state = 4}, + [1083] = {.lex_state = 0, .external_lex_state = 4}, + [1084] = {.lex_state = 37, .external_lex_state = 4}, + [1085] = {.lex_state = 37, .external_lex_state = 2}, + [1086] = {.lex_state = 2, .external_lex_state = 2}, + [1087] = {.lex_state = 37, .external_lex_state = 4}, + [1088] = {.lex_state = 37, .external_lex_state = 4}, + [1089] = {.lex_state = 37, .external_lex_state = 4}, + [1090] = {.lex_state = 2, .external_lex_state = 2}, + [1091] = {.lex_state = 37, .external_lex_state = 4}, + [1092] = {.lex_state = 37, .external_lex_state = 4}, + [1093] = {.lex_state = 2, .external_lex_state = 2}, + [1094] = {.lex_state = 37, .external_lex_state = 2}, + [1095] = {.lex_state = 37, .external_lex_state = 4}, + [1096] = {.lex_state = 37, .external_lex_state = 4}, + [1097] = {.lex_state = 37, .external_lex_state = 2}, + [1098] = {.lex_state = 37, .external_lex_state = 2}, + [1099] = {.lex_state = 37, .external_lex_state = 4}, + [1100] = {.lex_state = 1, .external_lex_state = 4}, + [1101] = {.lex_state = 37, .external_lex_state = 2}, + [1102] = {.lex_state = 37, .external_lex_state = 2}, + [1103] = {.lex_state = 37, .external_lex_state = 3}, + [1104] = {.lex_state = 37, .external_lex_state = 4}, + [1105] = {.lex_state = 37, .external_lex_state = 4}, + [1106] = {.lex_state = 37, .external_lex_state = 2}, + [1107] = {.lex_state = 37, .external_lex_state = 4}, + [1108] = {.lex_state = 37, .external_lex_state = 4}, + [1109] = {.lex_state = 37, .external_lex_state = 2}, + [1110] = {.lex_state = 37, .external_lex_state = 4}, + [1111] = {.lex_state = 37, .external_lex_state = 3}, + [1112] = {.lex_state = 37, .external_lex_state = 4}, + [1113] = {.lex_state = 37, .external_lex_state = 4}, + [1114] = {.lex_state = 37, .external_lex_state = 4}, + [1115] = {.lex_state = 37, .external_lex_state = 4}, + [1116] = {.lex_state = 37, .external_lex_state = 4}, + [1117] = {.lex_state = 37, .external_lex_state = 2}, + [1118] = {.lex_state = 37, .external_lex_state = 2}, + [1119] = {.lex_state = 1, .external_lex_state = 4}, + [1120] = {.lex_state = 37, .external_lex_state = 4}, + [1121] = {.lex_state = 37, .external_lex_state = 4}, + [1122] = {.lex_state = 37, .external_lex_state = 4}, + [1123] = {.lex_state = 37, .external_lex_state = 4}, + [1124] = {.lex_state = 37, .external_lex_state = 4}, + [1125] = {.lex_state = 37, .external_lex_state = 2}, + [1126] = {.lex_state = 37, .external_lex_state = 2}, + [1127] = {.lex_state = 37, .external_lex_state = 4}, + [1128] = {.lex_state = 37, .external_lex_state = 4}, + [1129] = {.lex_state = 37, .external_lex_state = 2}, + [1130] = {.lex_state = 2, .external_lex_state = 2}, + [1131] = {.lex_state = 2, .external_lex_state = 2}, + [1132] = {.lex_state = 2, .external_lex_state = 2}, + [1133] = {.lex_state = 37, .external_lex_state = 4}, + [1134] = {.lex_state = 37, .external_lex_state = 4}, + [1135] = {.lex_state = 37, .external_lex_state = 4}, + [1136] = {.lex_state = 2, .external_lex_state = 2}, + [1137] = {.lex_state = 37, .external_lex_state = 4}, + [1138] = {.lex_state = 37, .external_lex_state = 4}, + [1139] = {.lex_state = 2, .external_lex_state = 2}, + [1140] = {.lex_state = 37, .external_lex_state = 4}, + [1141] = {.lex_state = 37, .external_lex_state = 4}, + [1142] = {.lex_state = 37, .external_lex_state = 4}, + [1143] = {.lex_state = 37, .external_lex_state = 4}, + [1144] = {.lex_state = 37, .external_lex_state = 4}, + [1145] = {.lex_state = 37, .external_lex_state = 4}, + [1146] = {.lex_state = 37, .external_lex_state = 4}, + [1147] = {.lex_state = 37, .external_lex_state = 4}, + [1148] = {.lex_state = 37, .external_lex_state = 4}, + [1149] = {.lex_state = 37, .external_lex_state = 4}, + [1150] = {.lex_state = 37, .external_lex_state = 4}, + [1151] = {.lex_state = 37, .external_lex_state = 4}, + [1152] = {.lex_state = 37, .external_lex_state = 4}, + [1153] = {.lex_state = 37, .external_lex_state = 4}, + [1154] = {.lex_state = 37, .external_lex_state = 4}, + [1155] = {.lex_state = 37, .external_lex_state = 4}, + [1156] = {.lex_state = 37, .external_lex_state = 4}, + [1157] = {.lex_state = 37, .external_lex_state = 4}, + [1158] = {.lex_state = 37, .external_lex_state = 4}, + [1159] = {.lex_state = 37, .external_lex_state = 4}, + [1160] = {.lex_state = 37, .external_lex_state = 4}, + [1161] = {.lex_state = 37, .external_lex_state = 4}, + [1162] = {.lex_state = 37, .external_lex_state = 4}, + [1163] = {.lex_state = 37, .external_lex_state = 4}, + [1164] = {.lex_state = 37, .external_lex_state = 4}, + [1165] = {.lex_state = 37, .external_lex_state = 4}, + [1166] = {.lex_state = 37, .external_lex_state = 4}, + [1167] = {.lex_state = 37, .external_lex_state = 4}, + [1168] = {.lex_state = 37, .external_lex_state = 4}, + [1169] = {.lex_state = 37, .external_lex_state = 4}, + [1170] = {.lex_state = 37, .external_lex_state = 2}, + [1171] = {.lex_state = 37, .external_lex_state = 4}, + [1172] = {.lex_state = 37, .external_lex_state = 4}, + [1173] = {.lex_state = 37, .external_lex_state = 4}, + [1174] = {.lex_state = 37, .external_lex_state = 2}, + [1175] = {.lex_state = 37, .external_lex_state = 4}, + [1176] = {.lex_state = 37, .external_lex_state = 4}, + [1177] = {.lex_state = 37, .external_lex_state = 4}, + [1178] = {.lex_state = 37, .external_lex_state = 4}, + [1179] = {.lex_state = 37, .external_lex_state = 4}, + [1180] = {.lex_state = 37, .external_lex_state = 4}, + [1181] = {.lex_state = 37, .external_lex_state = 4}, + [1182] = {.lex_state = 37, .external_lex_state = 2}, + [1183] = {.lex_state = 37, .external_lex_state = 4}, + [1184] = {.lex_state = 37, .external_lex_state = 4}, + [1185] = {.lex_state = 37, .external_lex_state = 4}, + [1186] = {.lex_state = 37, .external_lex_state = 4}, + [1187] = {.lex_state = 37, .external_lex_state = 4}, + [1188] = {.lex_state = 37, .external_lex_state = 4}, + [1189] = {.lex_state = 37, .external_lex_state = 4}, + [1190] = {.lex_state = 37, .external_lex_state = 4}, + [1191] = {.lex_state = 37, .external_lex_state = 4}, + [1192] = {.lex_state = 2, .external_lex_state = 2}, + [1193] = {.lex_state = 37, .external_lex_state = 4}, + [1194] = {.lex_state = 37, .external_lex_state = 4}, + [1195] = {.lex_state = 37, .external_lex_state = 4}, + [1196] = {.lex_state = 37, .external_lex_state = 4}, + [1197] = {.lex_state = 37, .external_lex_state = 2}, + [1198] = {.lex_state = 37, .external_lex_state = 4}, + [1199] = {.lex_state = 37, .external_lex_state = 4}, + [1200] = {.lex_state = 37, .external_lex_state = 2}, + [1201] = {.lex_state = 37, .external_lex_state = 4}, + [1202] = {.lex_state = 37, .external_lex_state = 4}, + [1203] = {.lex_state = 37, .external_lex_state = 4}, + [1204] = {.lex_state = 37, .external_lex_state = 4}, + [1205] = {.lex_state = 37, .external_lex_state = 2}, + [1206] = {.lex_state = 37, .external_lex_state = 4}, + [1207] = {.lex_state = 37, .external_lex_state = 2}, + [1208] = {.lex_state = 37, .external_lex_state = 2}, + [1209] = {.lex_state = 37, .external_lex_state = 2}, + [1210] = {.lex_state = 37, .external_lex_state = 4}, + [1211] = {.lex_state = 37, .external_lex_state = 2}, + [1212] = {.lex_state = 37, .external_lex_state = 2}, + [1213] = {.lex_state = 37, .external_lex_state = 4}, + [1214] = {.lex_state = 37, .external_lex_state = 4}, + [1215] = {.lex_state = 37, .external_lex_state = 4}, + [1216] = {.lex_state = 37, .external_lex_state = 4}, + [1217] = {.lex_state = 37, .external_lex_state = 4}, + [1218] = {.lex_state = 37, .external_lex_state = 4}, + [1219] = {.lex_state = 37, .external_lex_state = 2}, + [1220] = {.lex_state = 37, .external_lex_state = 4}, + [1221] = {.lex_state = 37, .external_lex_state = 2}, + [1222] = {.lex_state = 37, .external_lex_state = 4}, + [1223] = {.lex_state = 37, .external_lex_state = 4}, + [1224] = {.lex_state = 37, .external_lex_state = 4}, + [1225] = {.lex_state = 37, .external_lex_state = 4}, + [1226] = {.lex_state = 37, .external_lex_state = 4}, + [1227] = {.lex_state = 37, .external_lex_state = 4}, + [1228] = {.lex_state = 37, .external_lex_state = 4}, + [1229] = {.lex_state = 2, .external_lex_state = 2}, + [1230] = {.lex_state = 37, .external_lex_state = 4}, + [1231] = {.lex_state = 37, .external_lex_state = 4}, + [1232] = {.lex_state = 37, .external_lex_state = 4}, + [1233] = {.lex_state = 37, .external_lex_state = 4}, + [1234] = {.lex_state = 37, .external_lex_state = 4}, + [1235] = {.lex_state = 37, .external_lex_state = 4}, + [1236] = {.lex_state = 37, .external_lex_state = 4}, + [1237] = {.lex_state = 37, .external_lex_state = 4}, + [1238] = {.lex_state = 37, .external_lex_state = 4}, + [1239] = {.lex_state = 37, .external_lex_state = 2}, + [1240] = {.lex_state = 37, .external_lex_state = 4}, + [1241] = {.lex_state = 37, .external_lex_state = 4}, + [1242] = {.lex_state = 37, .external_lex_state = 2}, + [1243] = {.lex_state = 37, .external_lex_state = 4}, + [1244] = {.lex_state = 37, .external_lex_state = 4}, + [1245] = {.lex_state = 37, .external_lex_state = 4}, + [1246] = {.lex_state = 37, .external_lex_state = 4}, + [1247] = {.lex_state = 37, .external_lex_state = 4}, + [1248] = {.lex_state = 37, .external_lex_state = 4}, + [1249] = {.lex_state = 37, .external_lex_state = 4}, + [1250] = {.lex_state = 37, .external_lex_state = 4}, + [1251] = {.lex_state = 37, .external_lex_state = 4}, + [1252] = {.lex_state = 37, .external_lex_state = 4}, + [1253] = {.lex_state = 37, .external_lex_state = 4}, + [1254] = {.lex_state = 37, .external_lex_state = 4}, + [1255] = {.lex_state = 37, .external_lex_state = 4}, + [1256] = {.lex_state = 37, .external_lex_state = 4}, + [1257] = {.lex_state = 37, .external_lex_state = 2}, + [1258] = {.lex_state = 37, .external_lex_state = 4}, + [1259] = {.lex_state = 37, .external_lex_state = 2}, + [1260] = {.lex_state = 37, .external_lex_state = 2}, + [1261] = {.lex_state = 37, .external_lex_state = 4}, + [1262] = {.lex_state = 37, .external_lex_state = 4}, + [1263] = {.lex_state = 37, .external_lex_state = 4}, + [1264] = {.lex_state = 37, .external_lex_state = 4}, + [1265] = {.lex_state = 37, .external_lex_state = 4}, + [1266] = {.lex_state = 37, .external_lex_state = 4}, + [1267] = {.lex_state = 37, .external_lex_state = 4}, + [1268] = {.lex_state = 37, .external_lex_state = 4}, + [1269] = {.lex_state = 37, .external_lex_state = 4}, + [1270] = {.lex_state = 37, .external_lex_state = 4}, + [1271] = {.lex_state = 37, .external_lex_state = 4}, + [1272] = {.lex_state = 37, .external_lex_state = 4}, + [1273] = {.lex_state = 37, .external_lex_state = 4}, + [1274] = {.lex_state = 37, .external_lex_state = 4}, + [1275] = {.lex_state = 37, .external_lex_state = 2}, + [1276] = {.lex_state = 37, .external_lex_state = 4}, + [1277] = {.lex_state = 37, .external_lex_state = 4}, + [1278] = {.lex_state = 37, .external_lex_state = 4}, + [1279] = {.lex_state = 37, .external_lex_state = 4}, + [1280] = {.lex_state = 37, .external_lex_state = 4}, + [1281] = {.lex_state = 37, .external_lex_state = 4}, + [1282] = {.lex_state = 37, .external_lex_state = 4}, + [1283] = {.lex_state = 37, .external_lex_state = 4}, + [1284] = {.lex_state = 37, .external_lex_state = 4}, + [1285] = {.lex_state = 37, .external_lex_state = 4}, + [1286] = {.lex_state = 37, .external_lex_state = 4}, + [1287] = {.lex_state = 37, .external_lex_state = 4}, + [1288] = {.lex_state = 37, .external_lex_state = 4}, + [1289] = {.lex_state = 37, .external_lex_state = 4}, + [1290] = {.lex_state = 37, .external_lex_state = 4}, + [1291] = {.lex_state = 37, .external_lex_state = 4}, + [1292] = {.lex_state = 37, .external_lex_state = 4}, + [1293] = {.lex_state = 37, .external_lex_state = 2}, + [1294] = {.lex_state = 37, .external_lex_state = 4}, + [1295] = {.lex_state = 37, .external_lex_state = 4}, + [1296] = {.lex_state = 37, .external_lex_state = 4}, + [1297] = {.lex_state = 37, .external_lex_state = 4}, + [1298] = {.lex_state = 37, .external_lex_state = 4}, + [1299] = {.lex_state = 37, .external_lex_state = 4}, + [1300] = {.lex_state = 37, .external_lex_state = 4}, + [1301] = {.lex_state = 37, .external_lex_state = 4}, + [1302] = {.lex_state = 37, .external_lex_state = 4}, + [1303] = {.lex_state = 37, .external_lex_state = 4}, + [1304] = {.lex_state = 37, .external_lex_state = 4}, + [1305] = {.lex_state = 37, .external_lex_state = 4}, + [1306] = {.lex_state = 37, .external_lex_state = 4}, + [1307] = {.lex_state = 37, .external_lex_state = 4}, + [1308] = {.lex_state = 37, .external_lex_state = 4}, + [1309] = {.lex_state = 37, .external_lex_state = 4}, + [1310] = {.lex_state = 37, .external_lex_state = 4}, + [1311] = {.lex_state = 37, .external_lex_state = 4}, + [1312] = {.lex_state = 37, .external_lex_state = 4}, + [1313] = {.lex_state = 37, .external_lex_state = 2}, + [1314] = {.lex_state = 37, .external_lex_state = 4}, + [1315] = {.lex_state = 37, .external_lex_state = 2}, + [1316] = {.lex_state = 37, .external_lex_state = 4}, + [1317] = {.lex_state = 37, .external_lex_state = 4}, + [1318] = {.lex_state = 37, .external_lex_state = 4}, + [1319] = {.lex_state = 37, .external_lex_state = 4}, + [1320] = {.lex_state = 37, .external_lex_state = 4}, + [1321] = {.lex_state = 37, .external_lex_state = 4}, + [1322] = {.lex_state = 37, .external_lex_state = 4}, + [1323] = {.lex_state = 37, .external_lex_state = 4}, + [1324] = {.lex_state = 37, .external_lex_state = 4}, + [1325] = {.lex_state = 37, .external_lex_state = 4}, + [1326] = {.lex_state = 37, .external_lex_state = 4}, + [1327] = {.lex_state = 37, .external_lex_state = 4}, + [1328] = {.lex_state = 37, .external_lex_state = 4}, + [1329] = {.lex_state = 37, .external_lex_state = 4}, + [1330] = {.lex_state = 37, .external_lex_state = 4}, + [1331] = {.lex_state = 37, .external_lex_state = 4}, + [1332] = {.lex_state = 37, .external_lex_state = 4}, + [1333] = {.lex_state = 37, .external_lex_state = 4}, + [1334] = {.lex_state = 37, .external_lex_state = 4}, + [1335] = {.lex_state = 37, .external_lex_state = 4}, + [1336] = {.lex_state = 37, .external_lex_state = 4}, + [1337] = {.lex_state = 37, .external_lex_state = 4}, + [1338] = {.lex_state = 37, .external_lex_state = 4}, + [1339] = {.lex_state = 37, .external_lex_state = 4}, + [1340] = {.lex_state = 37, .external_lex_state = 4}, + [1341] = {.lex_state = 37, .external_lex_state = 2}, + [1342] = {.lex_state = 37, .external_lex_state = 2}, + [1343] = {.lex_state = 37, .external_lex_state = 2}, + [1344] = {.lex_state = 37, .external_lex_state = 2}, + [1345] = {.lex_state = 3, .external_lex_state = 2}, + [1346] = {.lex_state = 3, .external_lex_state = 2}, + [1347] = {.lex_state = 3, .external_lex_state = 2}, + [1348] = {.lex_state = 3, .external_lex_state = 2}, + [1349] = {.lex_state = 3, .external_lex_state = 2}, + [1350] = {.lex_state = 4, .external_lex_state = 2}, + [1351] = {.lex_state = 37, .external_lex_state = 2}, + [1352] = {.lex_state = 37, .external_lex_state = 2}, + [1353] = {.lex_state = 4, .external_lex_state = 2}, + [1354] = {.lex_state = 37, .external_lex_state = 2}, + [1355] = {.lex_state = 4, .external_lex_state = 2}, + [1356] = {.lex_state = 37, .external_lex_state = 3}, + [1357] = {.lex_state = 4, .external_lex_state = 2}, + [1358] = {.lex_state = 4, .external_lex_state = 2}, + [1359] = {.lex_state = 2, .external_lex_state = 3}, + [1360] = {.lex_state = 2, .external_lex_state = 2}, + [1361] = {.lex_state = 2, .external_lex_state = 3}, + [1362] = {.lex_state = 2, .external_lex_state = 2}, + [1363] = {.lex_state = 2, .external_lex_state = 2}, + [1364] = {.lex_state = 4, .external_lex_state = 3}, + [1365] = {.lex_state = 2, .external_lex_state = 3}, + [1366] = {.lex_state = 2, .external_lex_state = 2}, + [1367] = {.lex_state = 4, .external_lex_state = 3}, + [1368] = {.lex_state = 4, .external_lex_state = 3}, + [1369] = {.lex_state = 37, .external_lex_state = 2}, + [1370] = {.lex_state = 2, .external_lex_state = 3}, + [1371] = {.lex_state = 4, .external_lex_state = 3}, + [1372] = {.lex_state = 37, .external_lex_state = 3}, + [1373] = {.lex_state = 4, .external_lex_state = 3}, + [1374] = {.lex_state = 37, .external_lex_state = 2}, + [1375] = {.lex_state = 2, .external_lex_state = 2}, + [1376] = {.lex_state = 37, .external_lex_state = 2}, + [1377] = {.lex_state = 37, .external_lex_state = 2}, + [1378] = {.lex_state = 2, .external_lex_state = 3}, + [1379] = {.lex_state = 37, .external_lex_state = 2}, + [1380] = {.lex_state = 37, .external_lex_state = 2}, + [1381] = {.lex_state = 0, .external_lex_state = 2}, + [1382] = {.lex_state = 3, .external_lex_state = 3}, + [1383] = {.lex_state = 37, .external_lex_state = 2}, + [1384] = {.lex_state = 0, .external_lex_state = 3}, + [1385] = {.lex_state = 37, .external_lex_state = 2}, + [1386] = {.lex_state = 37, .external_lex_state = 2}, + [1387] = {.lex_state = 37, .external_lex_state = 2}, + [1388] = {.lex_state = 37, .external_lex_state = 2}, + [1389] = {.lex_state = 37, .external_lex_state = 2}, + [1390] = {.lex_state = 37, .external_lex_state = 3}, + [1391] = {.lex_state = 3, .external_lex_state = 3}, + [1392] = {.lex_state = 37, .external_lex_state = 2}, + [1393] = {.lex_state = 37, .external_lex_state = 2}, + [1394] = {.lex_state = 37, .external_lex_state = 2}, + [1395] = {.lex_state = 37, .external_lex_state = 2}, + [1396] = {.lex_state = 37, .external_lex_state = 2}, + [1397] = {.lex_state = 37, .external_lex_state = 2}, + [1398] = {.lex_state = 37, .external_lex_state = 2}, + [1399] = {.lex_state = 37, .external_lex_state = 2}, + [1400] = {.lex_state = 2, .external_lex_state = 3}, + [1401] = {.lex_state = 37, .external_lex_state = 2}, + [1402] = {.lex_state = 3, .external_lex_state = 3}, + [1403] = {.lex_state = 37, .external_lex_state = 2}, + [1404] = {.lex_state = 37, .external_lex_state = 2}, + [1405] = {.lex_state = 3, .external_lex_state = 3}, + [1406] = {.lex_state = 37, .external_lex_state = 2}, + [1407] = {.lex_state = 2, .external_lex_state = 2}, + [1408] = {.lex_state = 2, .external_lex_state = 2}, + [1409] = {.lex_state = 37, .external_lex_state = 2}, + [1410] = {.lex_state = 37, .external_lex_state = 2}, + [1411] = {.lex_state = 37, .external_lex_state = 2}, + [1412] = {.lex_state = 37, .external_lex_state = 2}, + [1413] = {.lex_state = 37, .external_lex_state = 2}, + [1414] = {.lex_state = 37, .external_lex_state = 2}, + [1415] = {.lex_state = 37, .external_lex_state = 2}, + [1416] = {.lex_state = 37, .external_lex_state = 2}, + [1417] = {.lex_state = 37, .external_lex_state = 2}, + [1418] = {.lex_state = 37, .external_lex_state = 2}, + [1419] = {.lex_state = 37, .external_lex_state = 2}, + [1420] = {.lex_state = 37, .external_lex_state = 2}, + [1421] = {.lex_state = 37, .external_lex_state = 2}, + [1422] = {.lex_state = 37, .external_lex_state = 2}, + [1423] = {.lex_state = 37, .external_lex_state = 2}, + [1424] = {.lex_state = 37, .external_lex_state = 2}, + [1425] = {.lex_state = 37, .external_lex_state = 2}, + [1426] = {.lex_state = 3, .external_lex_state = 3}, + [1427] = {.lex_state = 37, .external_lex_state = 1}, + [1428] = {.lex_state = 2, .external_lex_state = 3}, + [1429] = {.lex_state = 37, .external_lex_state = 2}, + [1430] = {.lex_state = 37, .external_lex_state = 2}, + [1431] = {.lex_state = 37, .external_lex_state = 2}, + [1432] = {.lex_state = 37, .external_lex_state = 2}, + [1433] = {.lex_state = 37, .external_lex_state = 1}, + [1434] = {.lex_state = 37, .external_lex_state = 2}, + [1435] = {.lex_state = 37, .external_lex_state = 2}, + [1436] = {.lex_state = 37, .external_lex_state = 2}, + [1437] = {.lex_state = 37, .external_lex_state = 4}, + [1438] = {.lex_state = 37, .external_lex_state = 2}, + [1439] = {.lex_state = 37, .external_lex_state = 2}, + [1440] = {.lex_state = 37, .external_lex_state = 2}, + [1441] = {.lex_state = 37, .external_lex_state = 1}, + [1442] = {.lex_state = 37, .external_lex_state = 1}, + [1443] = {.lex_state = 37, .external_lex_state = 1}, + [1444] = {.lex_state = 37, .external_lex_state = 2}, + [1445] = {.lex_state = 37, .external_lex_state = 2}, + [1446] = {.lex_state = 37, .external_lex_state = 1}, + [1447] = {.lex_state = 37, .external_lex_state = 2}, + [1448] = {.lex_state = 37, .external_lex_state = 2}, + [1449] = {.lex_state = 37, .external_lex_state = 2}, + [1450] = {.lex_state = 37, .external_lex_state = 2}, + [1451] = {.lex_state = 37, .external_lex_state = 2}, + [1452] = {.lex_state = 37, .external_lex_state = 2}, + [1453] = {.lex_state = 37, .external_lex_state = 2}, + [1454] = {.lex_state = 37, .external_lex_state = 2}, + [1455] = {.lex_state = 37, .external_lex_state = 2}, + [1456] = {.lex_state = 37, .external_lex_state = 2}, + [1457] = {.lex_state = 37, .external_lex_state = 2}, + [1458] = {.lex_state = 37, .external_lex_state = 2}, + [1459] = {.lex_state = 37, .external_lex_state = 2}, + [1460] = {.lex_state = 37, .external_lex_state = 2}, + [1461] = {.lex_state = 37, .external_lex_state = 2}, + [1462] = {.lex_state = 37, .external_lex_state = 2}, + [1463] = {.lex_state = 37, .external_lex_state = 2}, + [1464] = {.lex_state = 37, .external_lex_state = 2}, + [1465] = {.lex_state = 37, .external_lex_state = 2}, + [1466] = {.lex_state = 37, .external_lex_state = 2}, + [1467] = {.lex_state = 37, .external_lex_state = 2}, + [1468] = {.lex_state = 37, .external_lex_state = 2}, + [1469] = {.lex_state = 37, .external_lex_state = 2}, + [1470] = {.lex_state = 37, .external_lex_state = 2}, + [1471] = {.lex_state = 37, .external_lex_state = 2}, + [1472] = {.lex_state = 37, .external_lex_state = 2}, + [1473] = {.lex_state = 37, .external_lex_state = 2}, + [1474] = {.lex_state = 37, .external_lex_state = 2}, + [1475] = {.lex_state = 37, .external_lex_state = 2}, + [1476] = {.lex_state = 37, .external_lex_state = 2}, + [1477] = {.lex_state = 37, .external_lex_state = 2}, + [1478] = {.lex_state = 37, .external_lex_state = 1}, + [1479] = {.lex_state = 37, .external_lex_state = 2}, + [1480] = {.lex_state = 37, .external_lex_state = 2}, + [1481] = {.lex_state = 37, .external_lex_state = 4}, + [1482] = {.lex_state = 37, .external_lex_state = 4}, + [1483] = {.lex_state = 37, .external_lex_state = 1}, + [1484] = {.lex_state = 37, .external_lex_state = 1}, + [1485] = {.lex_state = 37, .external_lex_state = 4}, + [1486] = {.lex_state = 37, .external_lex_state = 1}, + [1487] = {.lex_state = 37, .external_lex_state = 2}, + [1488] = {.lex_state = 37, .external_lex_state = 2}, + [1489] = {.lex_state = 37, .external_lex_state = 2}, + [1490] = {.lex_state = 37, .external_lex_state = 1}, + [1491] = {.lex_state = 37, .external_lex_state = 3}, + [1492] = {.lex_state = 37, .external_lex_state = 2}, + [1493] = {.lex_state = 2, .external_lex_state = 2}, + [1494] = {.lex_state = 2, .external_lex_state = 2}, + [1495] = {.lex_state = 37, .external_lex_state = 1}, + [1496] = {.lex_state = 37, .external_lex_state = 2}, + [1497] = {.lex_state = 37, .external_lex_state = 2}, + [1498] = {.lex_state = 37, .external_lex_state = 2}, + [1499] = {.lex_state = 4, .external_lex_state = 2}, + [1500] = {.lex_state = 4, .external_lex_state = 2}, + [1501] = {.lex_state = 4, .external_lex_state = 2}, + [1502] = {.lex_state = 4, .external_lex_state = 2}, + [1503] = {.lex_state = 4, .external_lex_state = 2}, + [1504] = {.lex_state = 37, .external_lex_state = 2}, + [1505] = {.lex_state = 37, .external_lex_state = 2}, + [1506] = {.lex_state = 37, .external_lex_state = 2}, + [1507] = {.lex_state = 37, .external_lex_state = 2}, + [1508] = {.lex_state = 37, .external_lex_state = 2}, + [1509] = {.lex_state = 37, .external_lex_state = 1}, + [1510] = {.lex_state = 37, .external_lex_state = 1}, + [1511] = {.lex_state = 37, .external_lex_state = 1}, + [1512] = {.lex_state = 37, .external_lex_state = 2}, + [1513] = {.lex_state = 37, .external_lex_state = 2}, + [1514] = {.lex_state = 37, .external_lex_state = 1}, + [1515] = {.lex_state = 37, .external_lex_state = 1}, + [1516] = {.lex_state = 37, .external_lex_state = 2}, + [1517] = {.lex_state = 4, .external_lex_state = 4}, + [1518] = {.lex_state = 4, .external_lex_state = 4}, + [1519] = {.lex_state = 4, .external_lex_state = 4}, + [1520] = {.lex_state = 4, .external_lex_state = 4}, + [1521] = {.lex_state = 4, .external_lex_state = 4}, + [1522] = {.lex_state = 37, .external_lex_state = 4}, + [1523] = {.lex_state = 37, .external_lex_state = 1}, + [1524] = {.lex_state = 37, .external_lex_state = 1}, + [1525] = {.lex_state = 37, .external_lex_state = 1}, + [1526] = {.lex_state = 37, .external_lex_state = 2}, + [1527] = {.lex_state = 37, .external_lex_state = 1}, + [1528] = {.lex_state = 37, .external_lex_state = 2}, + [1529] = {.lex_state = 37, .external_lex_state = 1}, + [1530] = {.lex_state = 37, .external_lex_state = 1}, + [1531] = {.lex_state = 37, .external_lex_state = 1}, + [1532] = {.lex_state = 37, .external_lex_state = 1}, + [1533] = {.lex_state = 37, .external_lex_state = 1}, + [1534] = {.lex_state = 37, .external_lex_state = 1}, + [1535] = {.lex_state = 37, .external_lex_state = 1}, + [1536] = {.lex_state = 37, .external_lex_state = 2}, + [1537] = {.lex_state = 37, .external_lex_state = 1}, + [1538] = {.lex_state = 37, .external_lex_state = 1}, + [1539] = {.lex_state = 37, .external_lex_state = 1}, + [1540] = {.lex_state = 4, .external_lex_state = 2}, + [1541] = {.lex_state = 4, .external_lex_state = 2}, + [1542] = {.lex_state = 4, .external_lex_state = 2}, + [1543] = {.lex_state = 4, .external_lex_state = 2}, + [1544] = {.lex_state = 4, .external_lex_state = 2}, + [1545] = {.lex_state = 37, .external_lex_state = 1}, + [1546] = {.lex_state = 37, .external_lex_state = 2}, + [1547] = {.lex_state = 37, .external_lex_state = 1}, + [1548] = {.lex_state = 37, .external_lex_state = 1}, + [1549] = {.lex_state = 37, .external_lex_state = 1}, + [1550] = {.lex_state = 37, .external_lex_state = 1}, + [1551] = {.lex_state = 37, .external_lex_state = 1}, + [1552] = {.lex_state = 37, .external_lex_state = 1}, + [1553] = {.lex_state = 37, .external_lex_state = 4}, + [1554] = {.lex_state = 37, .external_lex_state = 1}, + [1555] = {.lex_state = 2, .external_lex_state = 2}, + [1556] = {.lex_state = 0, .external_lex_state = 3}, + [1557] = {.lex_state = 37, .external_lex_state = 1}, + [1558] = {.lex_state = 37, .external_lex_state = 4}, + [1559] = {.lex_state = 37, .external_lex_state = 4}, + [1560] = {.lex_state = 37, .external_lex_state = 1}, + [1561] = {.lex_state = 37, .external_lex_state = 1}, + [1562] = {.lex_state = 2, .external_lex_state = 2}, + [1563] = {.lex_state = 2, .external_lex_state = 2}, + [1564] = {.lex_state = 37, .external_lex_state = 1}, + [1565] = {.lex_state = 37, .external_lex_state = 2}, + [1566] = {.lex_state = 37, .external_lex_state = 2}, + [1567] = {.lex_state = 37, .external_lex_state = 2}, + [1568] = {.lex_state = 37, .external_lex_state = 1}, + [1569] = {.lex_state = 37, .external_lex_state = 1}, + [1570] = {.lex_state = 37, .external_lex_state = 1}, + [1571] = {.lex_state = 37, .external_lex_state = 1}, + [1572] = {.lex_state = 2, .external_lex_state = 2}, + [1573] = {.lex_state = 37, .external_lex_state = 1}, + [1574] = {.lex_state = 37, .external_lex_state = 1}, + [1575] = {.lex_state = 37, .external_lex_state = 1}, + [1576] = {.lex_state = 37, .external_lex_state = 2}, + [1577] = {.lex_state = 37, .external_lex_state = 1}, + [1578] = {.lex_state = 37, .external_lex_state = 2}, + [1579] = {.lex_state = 37, .external_lex_state = 1}, + [1580] = {.lex_state = 37, .external_lex_state = 4}, + [1581] = {.lex_state = 37, .external_lex_state = 4}, + [1582] = {.lex_state = 37, .external_lex_state = 4}, + [1583] = {.lex_state = 2, .external_lex_state = 2}, + [1584] = {.lex_state = 37, .external_lex_state = 4}, + [1585] = {.lex_state = 37, .external_lex_state = 4}, + [1586] = {.lex_state = 37, .external_lex_state = 4}, + [1587] = {.lex_state = 2, .external_lex_state = 2}, + [1588] = {.lex_state = 37, .external_lex_state = 4}, + [1589] = {.lex_state = 37, .external_lex_state = 4}, + [1590] = {.lex_state = 2, .external_lex_state = 2}, + [1591] = {.lex_state = 37, .external_lex_state = 4}, + [1592] = {.lex_state = 37, .external_lex_state = 4}, + [1593] = {.lex_state = 37, .external_lex_state = 4}, + [1594] = {.lex_state = 37, .external_lex_state = 2}, + [1595] = {.lex_state = 37, .external_lex_state = 4}, + [1596] = {.lex_state = 37, .external_lex_state = 4}, + [1597] = {.lex_state = 37, .external_lex_state = 4}, + [1598] = {.lex_state = 3, .external_lex_state = 2}, + [1599] = {.lex_state = 3, .external_lex_state = 2}, + [1600] = {.lex_state = 3, .external_lex_state = 2}, + [1601] = {.lex_state = 3, .external_lex_state = 2}, + [1602] = {.lex_state = 3, .external_lex_state = 2}, + [1603] = {.lex_state = 37, .external_lex_state = 4}, + [1604] = {.lex_state = 37, .external_lex_state = 4}, + [1605] = {.lex_state = 37, .external_lex_state = 2}, + [1606] = {.lex_state = 37, .external_lex_state = 4}, + [1607] = {.lex_state = 37, .external_lex_state = 4}, + [1608] = {.lex_state = 37, .external_lex_state = 2}, + [1609] = {.lex_state = 2, .external_lex_state = 2}, + [1610] = {.lex_state = 4, .external_lex_state = 3}, + [1611] = {.lex_state = 37, .external_lex_state = 2}, + [1612] = {.lex_state = 37, .external_lex_state = 4}, + [1613] = {.lex_state = 37, .external_lex_state = 2}, + [1614] = {.lex_state = 4, .external_lex_state = 3}, + [1615] = {.lex_state = 37, .external_lex_state = 4}, + [1616] = {.lex_state = 4, .external_lex_state = 3}, + [1617] = {.lex_state = 4, .external_lex_state = 3}, + [1618] = {.lex_state = 4, .external_lex_state = 3}, + [1619] = {.lex_state = 37, .external_lex_state = 4}, + [1620] = {.lex_state = 37, .external_lex_state = 2}, + [1621] = {.lex_state = 37, .external_lex_state = 4}, + [1622] = {.lex_state = 37, .external_lex_state = 4}, + [1623] = {.lex_state = 37, .external_lex_state = 2}, + [1624] = {.lex_state = 37, .external_lex_state = 4}, + [1625] = {.lex_state = 37, .external_lex_state = 4}, + [1626] = {.lex_state = 37, .external_lex_state = 2}, + [1627] = {.lex_state = 37, .external_lex_state = 4}, + [1628] = {.lex_state = 37, .external_lex_state = 2}, + [1629] = {.lex_state = 37, .external_lex_state = 4}, + [1630] = {.lex_state = 37, .external_lex_state = 2}, + [1631] = {.lex_state = 37, .external_lex_state = 2}, + [1632] = {.lex_state = 37, .external_lex_state = 2}, + [1633] = {.lex_state = 37, .external_lex_state = 4}, + [1634] = {.lex_state = 37, .external_lex_state = 4}, + [1635] = {.lex_state = 37, .external_lex_state = 2}, + [1636] = {.lex_state = 37, .external_lex_state = 4}, + [1637] = {.lex_state = 37, .external_lex_state = 4}, + [1638] = {.lex_state = 37, .external_lex_state = 2}, + [1639] = {.lex_state = 37, .external_lex_state = 4}, + [1640] = {.lex_state = 37, .external_lex_state = 4}, + [1641] = {.lex_state = 37, .external_lex_state = 4}, + [1642] = {.lex_state = 37, .external_lex_state = 2}, + [1643] = {.lex_state = 37, .external_lex_state = 2}, + [1644] = {.lex_state = 37, .external_lex_state = 2}, + [1645] = {.lex_state = 37, .external_lex_state = 2}, + [1646] = {.lex_state = 37, .external_lex_state = 2}, + [1647] = {.lex_state = 37, .external_lex_state = 2}, + [1648] = {.lex_state = 37, .external_lex_state = 2}, + [1649] = {.lex_state = 37, .external_lex_state = 4}, + [1650] = {.lex_state = 37, .external_lex_state = 2}, + [1651] = {.lex_state = 37, .external_lex_state = 2}, + [1652] = {.lex_state = 37, .external_lex_state = 2}, + [1653] = {.lex_state = 37, .external_lex_state = 2}, + [1654] = {.lex_state = 37, .external_lex_state = 2}, + [1655] = {.lex_state = 37, .external_lex_state = 2}, + [1656] = {.lex_state = 37, .external_lex_state = 4}, + [1657] = {.lex_state = 4, .external_lex_state = 2}, + [1658] = {.lex_state = 37, .external_lex_state = 4}, + [1659] = {.lex_state = 37, .external_lex_state = 2}, + [1660] = {.lex_state = 37, .external_lex_state = 2}, + [1661] = {.lex_state = 37, .external_lex_state = 4}, + [1662] = {.lex_state = 2, .external_lex_state = 2}, + [1663] = {.lex_state = 37, .external_lex_state = 4}, + [1664] = {.lex_state = 0, .external_lex_state = 4}, + [1665] = {.lex_state = 0, .external_lex_state = 4}, + [1666] = {.lex_state = 37, .external_lex_state = 4}, + [1667] = {.lex_state = 0, .external_lex_state = 4}, + [1668] = {.lex_state = 37, .external_lex_state = 4}, + [1669] = {.lex_state = 37, .external_lex_state = 4}, + [1670] = {.lex_state = 37, .external_lex_state = 4}, + [1671] = {.lex_state = 37, .external_lex_state = 2}, + [1672] = {.lex_state = 37, .external_lex_state = 4}, + [1673] = {.lex_state = 37, .external_lex_state = 4}, + [1674] = {.lex_state = 37, .external_lex_state = 4}, + [1675] = {.lex_state = 37, .external_lex_state = 4}, + [1676] = {.lex_state = 0, .external_lex_state = 4}, + [1677] = {.lex_state = 0, .external_lex_state = 4}, + [1678] = {.lex_state = 37, .external_lex_state = 4}, + [1679] = {.lex_state = 0, .external_lex_state = 4}, + [1680] = {.lex_state = 37, .external_lex_state = 4}, + [1681] = {.lex_state = 37, .external_lex_state = 4}, + [1682] = {.lex_state = 37, .external_lex_state = 2}, + [1683] = {.lex_state = 37, .external_lex_state = 4}, + [1684] = {.lex_state = 37, .external_lex_state = 2}, + [1685] = {.lex_state = 37, .external_lex_state = 2}, + [1686] = {.lex_state = 37, .external_lex_state = 2}, + [1687] = {.lex_state = 37, .external_lex_state = 2}, + [1688] = {.lex_state = 37, .external_lex_state = 4}, + [1689] = {.lex_state = 37, .external_lex_state = 4}, + [1690] = {.lex_state = 2, .external_lex_state = 2}, + [1691] = {.lex_state = 37, .external_lex_state = 4}, + [1692] = {.lex_state = 37, .external_lex_state = 4}, + [1693] = {.lex_state = 37, .external_lex_state = 4}, + [1694] = {.lex_state = 0, .external_lex_state = 4}, + [1695] = {.lex_state = 0, .external_lex_state = 4}, + [1696] = {.lex_state = 37, .external_lex_state = 2}, + [1697] = {.lex_state = 37, .external_lex_state = 2}, + [1698] = {.lex_state = 37, .external_lex_state = 2}, + [1699] = {.lex_state = 37, .external_lex_state = 4}, + [1700] = {.lex_state = 37, .external_lex_state = 4}, + [1701] = {.lex_state = 37, .external_lex_state = 4}, + [1702] = {.lex_state = 37, .external_lex_state = 4}, + [1703] = {.lex_state = 37, .external_lex_state = 4}, + [1704] = {.lex_state = 37, .external_lex_state = 2}, + [1705] = {.lex_state = 37, .external_lex_state = 4}, + [1706] = {.lex_state = 37, .external_lex_state = 4}, + [1707] = {.lex_state = 37, .external_lex_state = 2}, + [1708] = {.lex_state = 37, .external_lex_state = 4}, + [1709] = {.lex_state = 37, .external_lex_state = 2}, + [1710] = {.lex_state = 37, .external_lex_state = 3}, + [1711] = {.lex_state = 37, .external_lex_state = 2}, + [1712] = {.lex_state = 37, .external_lex_state = 4}, + [1713] = {.lex_state = 37, .external_lex_state = 4}, + [1714] = {.lex_state = 37, .external_lex_state = 2}, + [1715] = {.lex_state = 37, .external_lex_state = 4}, + [1716] = {.lex_state = 37, .external_lex_state = 4}, + [1717] = {.lex_state = 37, .external_lex_state = 4}, + [1718] = {.lex_state = 37, .external_lex_state = 4}, + [1719] = {.lex_state = 37, .external_lex_state = 4}, + [1720] = {.lex_state = 37, .external_lex_state = 4}, + [1721] = {.lex_state = 37, .external_lex_state = 4}, + [1722] = {.lex_state = 37, .external_lex_state = 4}, + [1723] = {.lex_state = 37, .external_lex_state = 4}, + [1724] = {.lex_state = 37, .external_lex_state = 4}, + [1725] = {.lex_state = 37, .external_lex_state = 4}, + [1726] = {.lex_state = 37, .external_lex_state = 2}, + [1727] = {.lex_state = 37, .external_lex_state = 4}, + [1728] = {.lex_state = 37, .external_lex_state = 4}, + [1729] = {.lex_state = 37, .external_lex_state = 4}, + [1730] = {.lex_state = 37, .external_lex_state = 4}, + [1731] = {.lex_state = 37, .external_lex_state = 4}, + [1732] = {.lex_state = 37, .external_lex_state = 4}, + [1733] = {.lex_state = 37, .external_lex_state = 4}, + [1734] = {.lex_state = 37, .external_lex_state = 4}, + [1735] = {.lex_state = 37, .external_lex_state = 4}, + [1736] = {.lex_state = 37, .external_lex_state = 4}, + [1737] = {.lex_state = 37, .external_lex_state = 4}, + [1738] = {.lex_state = 37, .external_lex_state = 4}, + [1739] = {.lex_state = 37, .external_lex_state = 4}, + [1740] = {.lex_state = 37, .external_lex_state = 4}, + [1741] = {.lex_state = 37, .external_lex_state = 4}, + [1742] = {.lex_state = 37, .external_lex_state = 4}, + [1743] = {.lex_state = 37, .external_lex_state = 4}, + [1744] = {.lex_state = 37, .external_lex_state = 4}, + [1745] = {.lex_state = 37, .external_lex_state = 4}, + [1746] = {.lex_state = 37, .external_lex_state = 4}, + [1747] = {.lex_state = 37, .external_lex_state = 4}, + [1748] = {.lex_state = 37, .external_lex_state = 4}, + [1749] = {.lex_state = 2, .external_lex_state = 2}, + [1750] = {.lex_state = 37, .external_lex_state = 2}, + [1751] = {.lex_state = 2, .external_lex_state = 2}, + [1752] = {.lex_state = 37, .external_lex_state = 2}, + [1753] = {.lex_state = 37, .external_lex_state = 2}, + [1754] = {.lex_state = 37, .external_lex_state = 2}, + [1755] = {.lex_state = 37, .external_lex_state = 2}, + [1756] = {.lex_state = 2, .external_lex_state = 2}, + [1757] = {.lex_state = 2, .external_lex_state = 2}, + [1758] = {.lex_state = 37, .external_lex_state = 4}, + [1759] = {.lex_state = 37, .external_lex_state = 4}, + [1760] = {.lex_state = 2, .external_lex_state = 2}, + [1761] = {.lex_state = 2, .external_lex_state = 2}, + [1762] = {.lex_state = 37, .external_lex_state = 4}, + [1763] = {.lex_state = 2, .external_lex_state = 2}, + [1764] = {.lex_state = 2, .external_lex_state = 2}, + [1765] = {.lex_state = 2, .external_lex_state = 2}, + [1766] = {.lex_state = 37, .external_lex_state = 2}, + [1767] = {.lex_state = 7, .external_lex_state = 2}, + [1768] = {.lex_state = 37, .external_lex_state = 4}, + [1769] = {.lex_state = 37, .external_lex_state = 4}, + [1770] = {.lex_state = 2, .external_lex_state = 2}, + [1771] = {.lex_state = 37, .external_lex_state = 2}, + [1772] = {.lex_state = 37, .external_lex_state = 2}, + [1773] = {.lex_state = 37, .external_lex_state = 2}, + [1774] = {.lex_state = 2, .external_lex_state = 2}, + [1775] = {.lex_state = 37, .external_lex_state = 2}, + [1776] = {.lex_state = 2, .external_lex_state = 2}, + [1777] = {.lex_state = 37, .external_lex_state = 2}, + [1778] = {.lex_state = 37, .external_lex_state = 2}, + [1779] = {.lex_state = 2, .external_lex_state = 2}, + [1780] = {.lex_state = 37, .external_lex_state = 2}, + [1781] = {.lex_state = 2, .external_lex_state = 2}, + [1782] = {.lex_state = 2, .external_lex_state = 2}, + [1783] = {.lex_state = 7, .external_lex_state = 2}, + [1784] = {.lex_state = 2, .external_lex_state = 2}, + [1785] = {.lex_state = 37, .external_lex_state = 2}, + [1786] = {.lex_state = 2, .external_lex_state = 2}, + [1787] = {.lex_state = 2, .external_lex_state = 2}, + [1788] = {.lex_state = 2, .external_lex_state = 2}, + [1789] = {.lex_state = 2, .external_lex_state = 2}, + [1790] = {.lex_state = 2, .external_lex_state = 2}, + [1791] = {.lex_state = 7, .external_lex_state = 2}, + [1792] = {.lex_state = 37, .external_lex_state = 2}, + [1793] = {.lex_state = 7, .external_lex_state = 2}, + [1794] = {.lex_state = 2, .external_lex_state = 2}, + [1795] = {.lex_state = 37, .external_lex_state = 2}, + [1796] = {.lex_state = 37, .external_lex_state = 2}, + [1797] = {.lex_state = 2, .external_lex_state = 2}, + [1798] = {.lex_state = 2, .external_lex_state = 2}, + [1799] = {.lex_state = 37, .external_lex_state = 2}, + [1800] = {.lex_state = 37, .external_lex_state = 2}, + [1801] = {.lex_state = 37, .external_lex_state = 2}, + [1802] = {.lex_state = 2, .external_lex_state = 2}, + [1803] = {.lex_state = 37, .external_lex_state = 2}, + [1804] = {.lex_state = 37, .external_lex_state = 2}, + [1805] = {.lex_state = 37, .external_lex_state = 4}, + [1806] = {.lex_state = 2, .external_lex_state = 2}, + [1807] = {.lex_state = 7, .external_lex_state = 2}, + [1808] = {.lex_state = 37, .external_lex_state = 2}, + [1809] = {.lex_state = 2, .external_lex_state = 2}, + [1810] = {.lex_state = 2, .external_lex_state = 2}, + [1811] = {.lex_state = 2, .external_lex_state = 2}, + [1812] = {.lex_state = 2, .external_lex_state = 2}, + [1813] = {.lex_state = 2, .external_lex_state = 2}, + [1814] = {.lex_state = 37, .external_lex_state = 4}, + [1815] = {.lex_state = 37, .external_lex_state = 2}, + [1816] = {.lex_state = 2, .external_lex_state = 2}, + [1817] = {.lex_state = 37, .external_lex_state = 2}, + [1818] = {.lex_state = 2, .external_lex_state = 2}, + [1819] = {.lex_state = 2, .external_lex_state = 2}, + [1820] = {.lex_state = 37, .external_lex_state = 2}, + [1821] = {.lex_state = 2, .external_lex_state = 2}, + [1822] = {.lex_state = 37, .external_lex_state = 2}, + [1823] = {.lex_state = 37, .external_lex_state = 2}, + [1824] = {.lex_state = 37, .external_lex_state = 4}, + [1825] = {.lex_state = 37, .external_lex_state = 2}, + [1826] = {.lex_state = 37, .external_lex_state = 2}, + [1827] = {.lex_state = 37, .external_lex_state = 2}, + [1828] = {.lex_state = 3, .external_lex_state = 4}, + [1829] = {.lex_state = 37, .external_lex_state = 2}, + [1830] = {.lex_state = 37, .external_lex_state = 2}, + [1831] = {.lex_state = 37, .external_lex_state = 2}, + [1832] = {.lex_state = 37, .external_lex_state = 4}, + [1833] = {.lex_state = 3, .external_lex_state = 4}, + [1834] = {.lex_state = 37, .external_lex_state = 2}, + [1835] = {.lex_state = 37, .external_lex_state = 2}, + [1836] = {.lex_state = 37, .external_lex_state = 2}, + [1837] = {.lex_state = 37, .external_lex_state = 2}, + [1838] = {.lex_state = 37, .external_lex_state = 2}, + [1839] = {.lex_state = 37, .external_lex_state = 2}, + [1840] = {.lex_state = 37, .external_lex_state = 2}, + [1841] = {.lex_state = 37, .external_lex_state = 2}, + [1842] = {.lex_state = 3, .external_lex_state = 4}, + [1843] = {.lex_state = 2, .external_lex_state = 2}, + [1844] = {.lex_state = 37, .external_lex_state = 2}, + [1845] = {.lex_state = 37, .external_lex_state = 4}, + [1846] = {.lex_state = 37, .external_lex_state = 4}, + [1847] = {.lex_state = 37, .external_lex_state = 2}, + [1848] = {.lex_state = 37, .external_lex_state = 4}, + [1849] = {.lex_state = 37, .external_lex_state = 4}, + [1850] = {.lex_state = 37, .external_lex_state = 2}, + [1851] = {.lex_state = 2, .external_lex_state = 2}, + [1852] = {.lex_state = 37, .external_lex_state = 2}, + [1853] = {.lex_state = 37, .external_lex_state = 4}, + [1854] = {.lex_state = 37, .external_lex_state = 2}, + [1855] = {.lex_state = 37, .external_lex_state = 2}, + [1856] = {.lex_state = 37, .external_lex_state = 2}, + [1857] = {.lex_state = 37, .external_lex_state = 2}, + [1858] = {.lex_state = 37, .external_lex_state = 4}, + [1859] = {.lex_state = 3, .external_lex_state = 4}, + [1860] = {.lex_state = 37, .external_lex_state = 4}, + [1861] = {.lex_state = 37, .external_lex_state = 4}, + [1862] = {.lex_state = 37, .external_lex_state = 2}, + [1863] = {.lex_state = 37, .external_lex_state = 2}, + [1864] = {.lex_state = 37, .external_lex_state = 2}, + [1865] = {.lex_state = 37, .external_lex_state = 2}, + [1866] = {.lex_state = 37, .external_lex_state = 2}, + [1867] = {.lex_state = 37, .external_lex_state = 2}, + [1868] = {.lex_state = 37, .external_lex_state = 4}, + [1869] = {.lex_state = 37, .external_lex_state = 2}, + [1870] = {.lex_state = 37, .external_lex_state = 4}, + [1871] = {.lex_state = 37, .external_lex_state = 2}, + [1872] = {.lex_state = 37, .external_lex_state = 2}, + [1873] = {.lex_state = 37, .external_lex_state = 2}, + [1874] = {.lex_state = 37, .external_lex_state = 2}, + [1875] = {.lex_state = 37, .external_lex_state = 2}, + [1876] = {.lex_state = 37, .external_lex_state = 2}, + [1877] = {.lex_state = 37, .external_lex_state = 2}, + [1878] = {.lex_state = 37, .external_lex_state = 2}, + [1879] = {.lex_state = 37, .external_lex_state = 2}, + [1880] = {.lex_state = 37, .external_lex_state = 2}, + [1881] = {.lex_state = 37, .external_lex_state = 2}, + [1882] = {.lex_state = 37, .external_lex_state = 2}, + [1883] = {.lex_state = 37, .external_lex_state = 4}, + [1884] = {.lex_state = 37, .external_lex_state = 2}, + [1885] = {.lex_state = 37, .external_lex_state = 4}, + [1886] = {.lex_state = 37, .external_lex_state = 2}, + [1887] = {.lex_state = 37, .external_lex_state = 2}, + [1888] = {.lex_state = 0, .external_lex_state = 4}, + [1889] = {.lex_state = 37, .external_lex_state = 4}, + [1890] = {.lex_state = 37, .external_lex_state = 2}, + [1891] = {.lex_state = 37, .external_lex_state = 2}, + [1892] = {.lex_state = 37, .external_lex_state = 2}, + [1893] = {.lex_state = 37, .external_lex_state = 2}, + [1894] = {.lex_state = 37, .external_lex_state = 2}, + [1895] = {.lex_state = 37, .external_lex_state = 2}, + [1896] = {.lex_state = 37, .external_lex_state = 2}, + [1897] = {.lex_state = 37, .external_lex_state = 2}, + [1898] = {.lex_state = 37, .external_lex_state = 2}, + [1899] = {.lex_state = 37, .external_lex_state = 2}, + [1900] = {.lex_state = 37, .external_lex_state = 2}, + [1901] = {.lex_state = 37, .external_lex_state = 2}, + [1902] = {.lex_state = 37, .external_lex_state = 4}, + [1903] = {.lex_state = 37, .external_lex_state = 4}, + [1904] = {.lex_state = 37, .external_lex_state = 2}, + [1905] = {.lex_state = 37, .external_lex_state = 2}, + [1906] = {.lex_state = 37, .external_lex_state = 2}, + [1907] = {.lex_state = 37, .external_lex_state = 2}, + [1908] = {.lex_state = 37, .external_lex_state = 2}, + [1909] = {.lex_state = 37, .external_lex_state = 2}, + [1910] = {.lex_state = 37, .external_lex_state = 2}, + [1911] = {.lex_state = 37, .external_lex_state = 2}, + [1912] = {.lex_state = 37, .external_lex_state = 2}, + [1913] = {.lex_state = 37, .external_lex_state = 2}, + [1914] = {.lex_state = 37, .external_lex_state = 2}, + [1915] = {.lex_state = 37, .external_lex_state = 2}, + [1916] = {.lex_state = 37, .external_lex_state = 2}, + [1917] = {.lex_state = 37, .external_lex_state = 2}, + [1918] = {.lex_state = 37, .external_lex_state = 2}, + [1919] = {.lex_state = 37, .external_lex_state = 2}, + [1920] = {.lex_state = 37, .external_lex_state = 2}, + [1921] = {.lex_state = 37, .external_lex_state = 2}, + [1922] = {.lex_state = 37, .external_lex_state = 2}, + [1923] = {.lex_state = 37, .external_lex_state = 2}, + [1924] = {.lex_state = 37, .external_lex_state = 2}, + [1925] = {.lex_state = 37, .external_lex_state = 2}, + [1926] = {.lex_state = 37, .external_lex_state = 4}, + [1927] = {.lex_state = 37, .external_lex_state = 2}, + [1928] = {.lex_state = 37, .external_lex_state = 4}, + [1929] = {.lex_state = 37, .external_lex_state = 2}, + [1930] = {.lex_state = 37, .external_lex_state = 2}, + [1931] = {.lex_state = 37, .external_lex_state = 4}, + [1932] = {.lex_state = 37, .external_lex_state = 2}, + [1933] = {.lex_state = 37, .external_lex_state = 2}, + [1934] = {.lex_state = 37, .external_lex_state = 4}, + [1935] = {.lex_state = 37, .external_lex_state = 2}, + [1936] = {.lex_state = 37, .external_lex_state = 2}, + [1937] = {.lex_state = 37, .external_lex_state = 2}, + [1938] = {.lex_state = 37, .external_lex_state = 2}, + [1939] = {.lex_state = 37, .external_lex_state = 2}, + [1940] = {.lex_state = 37, .external_lex_state = 2}, + [1941] = {.lex_state = 37, .external_lex_state = 2}, + [1942] = {.lex_state = 37, .external_lex_state = 4}, + [1943] = {.lex_state = 37, .external_lex_state = 2}, + [1944] = {.lex_state = 37, .external_lex_state = 2}, + [1945] = {.lex_state = 0, .external_lex_state = 4}, + [1946] = {.lex_state = 37, .external_lex_state = 2}, + [1947] = {.lex_state = 37, .external_lex_state = 2}, + [1948] = {.lex_state = 2, .external_lex_state = 2}, + [1949] = {.lex_state = 37, .external_lex_state = 4}, + [1950] = {.lex_state = 37, .external_lex_state = 4}, + [1951] = {.lex_state = 37, .external_lex_state = 2}, + [1952] = {.lex_state = 37, .external_lex_state = 2}, + [1953] = {.lex_state = 37, .external_lex_state = 2}, + [1954] = {.lex_state = 37, .external_lex_state = 2}, + [1955] = {.lex_state = 37, .external_lex_state = 2}, + [1956] = {.lex_state = 37, .external_lex_state = 2}, + [1957] = {.lex_state = 37, .external_lex_state = 2}, + [1958] = {.lex_state = 37, .external_lex_state = 2}, + [1959] = {.lex_state = 37, .external_lex_state = 2}, + [1960] = {.lex_state = 37, .external_lex_state = 2}, + [1961] = {.lex_state = 2, .external_lex_state = 2}, + [1962] = {.lex_state = 37, .external_lex_state = 2}, + [1963] = {.lex_state = 37, .external_lex_state = 2}, + [1964] = {.lex_state = 37, .external_lex_state = 2}, + [1965] = {.lex_state = 37, .external_lex_state = 2}, + [1966] = {.lex_state = 37, .external_lex_state = 2}, + [1967] = {.lex_state = 37, .external_lex_state = 2}, + [1968] = {.lex_state = 37, .external_lex_state = 2}, + [1969] = {.lex_state = 37, .external_lex_state = 2}, + [1970] = {.lex_state = 37, .external_lex_state = 2}, + [1971] = {.lex_state = 37, .external_lex_state = 2}, + [1972] = {.lex_state = 37, .external_lex_state = 2}, + [1973] = {.lex_state = 37, .external_lex_state = 4}, + [1974] = {.lex_state = 2, .external_lex_state = 2}, + [1975] = {.lex_state = 0, .external_lex_state = 4}, + [1976] = {.lex_state = 37, .external_lex_state = 2}, + [1977] = {.lex_state = 2, .external_lex_state = 2}, + [1978] = {.lex_state = 37, .external_lex_state = 2}, + [1979] = {.lex_state = 37, .external_lex_state = 2}, + [1980] = {.lex_state = 37, .external_lex_state = 2}, + [1981] = {.lex_state = 37, .external_lex_state = 2}, + [1982] = {.lex_state = 37, .external_lex_state = 2}, + [1983] = {.lex_state = 37, .external_lex_state = 2}, + [1984] = {.lex_state = 37, .external_lex_state = 4}, + [1985] = {.lex_state = 37, .external_lex_state = 2}, + [1986] = {.lex_state = 37, .external_lex_state = 2}, + [1987] = {.lex_state = 37, .external_lex_state = 2}, + [1988] = {.lex_state = 37, .external_lex_state = 2}, + [1989] = {.lex_state = 37, .external_lex_state = 4}, + [1990] = {.lex_state = 37, .external_lex_state = 2}, + [1991] = {.lex_state = 2, .external_lex_state = 2}, + [1992] = {.lex_state = 37, .external_lex_state = 2}, + [1993] = {.lex_state = 3, .external_lex_state = 4}, + [1994] = {.lex_state = 37, .external_lex_state = 2}, + [1995] = {.lex_state = 37, .external_lex_state = 2}, + [1996] = {.lex_state = 37, .external_lex_state = 4}, + [1997] = {.lex_state = 0, .external_lex_state = 4}, + [1998] = {.lex_state = 37, .external_lex_state = 2}, + [1999] = {.lex_state = 37, .external_lex_state = 2}, + [2000] = {.lex_state = 2, .external_lex_state = 2}, + [2001] = {.lex_state = 37, .external_lex_state = 2}, + [2002] = {.lex_state = 37, .external_lex_state = 4}, + [2003] = {.lex_state = 37, .external_lex_state = 2}, + [2004] = {.lex_state = 37, .external_lex_state = 2}, + [2005] = {.lex_state = 37, .external_lex_state = 2}, + [2006] = {.lex_state = 37, .external_lex_state = 2}, + [2007] = {.lex_state = 37, .external_lex_state = 2}, + [2008] = {.lex_state = 37, .external_lex_state = 4}, + [2009] = {.lex_state = 37, .external_lex_state = 2}, + [2010] = {.lex_state = 37, .external_lex_state = 2}, + [2011] = {.lex_state = 37, .external_lex_state = 4}, + [2012] = {.lex_state = 37, .external_lex_state = 2}, + [2013] = {.lex_state = 37, .external_lex_state = 2}, + [2014] = {.lex_state = 37, .external_lex_state = 2}, + [2015] = {.lex_state = 37, .external_lex_state = 2}, + [2016] = {.lex_state = 37, .external_lex_state = 2}, + [2017] = {.lex_state = 37, .external_lex_state = 2}, + [2018] = {.lex_state = 37, .external_lex_state = 2}, + [2019] = {.lex_state = 37, .external_lex_state = 4}, + [2020] = {.lex_state = 37, .external_lex_state = 4}, + [2021] = {.lex_state = 37, .external_lex_state = 2}, + [2022] = {.lex_state = 37, .external_lex_state = 2}, + [2023] = {.lex_state = 2, .external_lex_state = 2}, + [2024] = {.lex_state = 37, .external_lex_state = 2}, + [2025] = {.lex_state = 37, .external_lex_state = 4}, + [2026] = {.lex_state = 37, .external_lex_state = 4}, + [2027] = {.lex_state = 37, .external_lex_state = 2}, + [2028] = {.lex_state = 37, .external_lex_state = 2}, + [2029] = {.lex_state = 37, .external_lex_state = 2}, + [2030] = {.lex_state = 37, .external_lex_state = 2}, + [2031] = {.lex_state = 37, .external_lex_state = 2}, + [2032] = {.lex_state = 37, .external_lex_state = 2}, + [2033] = {.lex_state = 37, .external_lex_state = 2}, + [2034] = {.lex_state = 37, .external_lex_state = 2}, + [2035] = {.lex_state = 37, .external_lex_state = 2}, + [2036] = {.lex_state = 37, .external_lex_state = 2}, + [2037] = {.lex_state = 37, .external_lex_state = 2}, + [2038] = {.lex_state = 37, .external_lex_state = 2}, + [2039] = {.lex_state = 37, .external_lex_state = 2}, + [2040] = {.lex_state = 37, .external_lex_state = 2}, + [2041] = {.lex_state = 2, .external_lex_state = 2}, + [2042] = {.lex_state = 37, .external_lex_state = 2}, + [2043] = {.lex_state = 37, .external_lex_state = 2}, + [2044] = {.lex_state = 37, .external_lex_state = 2}, + [2045] = {.lex_state = 37, .external_lex_state = 2}, + [2046] = {.lex_state = 2, .external_lex_state = 2}, + [2047] = {.lex_state = 37, .external_lex_state = 2}, + [2048] = {.lex_state = 37, .external_lex_state = 2}, + [2049] = {.lex_state = 37, .external_lex_state = 2}, + [2050] = {.lex_state = 37, .external_lex_state = 2}, + [2051] = {.lex_state = 37, .external_lex_state = 4}, [2052] = {.lex_state = 3, .external_lex_state = 2}, - [2053] = {.lex_state = 3, .external_lex_state = 3}, - [2054] = {.lex_state = 21, .external_lex_state = 4}, + [2053] = {.lex_state = 3, .external_lex_state = 2}, + [2054] = {.lex_state = 3, .external_lex_state = 2}, [2055] = {.lex_state = 3, .external_lex_state = 2}, - [2056] = {.lex_state = 0, .external_lex_state = 3}, + [2056] = {.lex_state = 3, .external_lex_state = 2}, [2057] = {.lex_state = 3, .external_lex_state = 2}, - [2058] = {.lex_state = 5, .external_lex_state = 4}, - [2059] = {.lex_state = 3, .external_lex_state = 2}, - [2060] = {.lex_state = 3, .external_lex_state = 2}, - [2061] = {.lex_state = 12, .external_lex_state = 2}, - [2062] = {.lex_state = 43, .external_lex_state = 4}, - [2063] = {.lex_state = 43, .external_lex_state = 4}, - [2064] = {.lex_state = 12, .external_lex_state = 2}, - [2065] = {.lex_state = 0, .external_lex_state = 4}, - [2066] = {.lex_state = 3, .external_lex_state = 2}, - [2067] = {.lex_state = 0, .external_lex_state = 2}, - [2068] = {.lex_state = 3, .external_lex_state = 2}, - [2069] = {.lex_state = 3, .external_lex_state = 2}, - [2070] = {.lex_state = 3, .external_lex_state = 2}, - [2071] = {.lex_state = 6, .external_lex_state = 2}, - [2072] = {.lex_state = 5, .external_lex_state = 2}, - [2073] = {.lex_state = 5, .external_lex_state = 2}, - [2074] = {.lex_state = 5, .external_lex_state = 2}, - [2075] = {.lex_state = 3, .external_lex_state = 2}, - [2076] = {.lex_state = 3, .external_lex_state = 2}, - [2077] = {.lex_state = 3, .external_lex_state = 2}, - [2078] = {.lex_state = 3, .external_lex_state = 2}, - [2079] = {.lex_state = 5, .external_lex_state = 4}, - [2080] = {.lex_state = 3, .external_lex_state = 2}, - [2081] = {.lex_state = 6, .external_lex_state = 2}, - [2082] = {.lex_state = 5, .external_lex_state = 2}, - [2083] = {.lex_state = 3, .external_lex_state = 2}, - [2084] = {.lex_state = 5, .external_lex_state = 4}, - [2085] = {.lex_state = 0, .external_lex_state = 3}, - [2086] = {.lex_state = 43, .external_lex_state = 4}, - [2087] = {.lex_state = 3, .external_lex_state = 2}, - [2088] = {.lex_state = 3, .external_lex_state = 2}, - [2089] = {.lex_state = 43, .external_lex_state = 4}, - [2090] = {.lex_state = 0, .external_lex_state = 3}, - [2091] = {.lex_state = 5, .external_lex_state = 2}, - [2092] = {.lex_state = 5, .external_lex_state = 2}, - [2093] = {.lex_state = 6, .external_lex_state = 2}, - [2094] = {.lex_state = 17, .external_lex_state = 2}, - [2095] = {.lex_state = 0, .external_lex_state = 2}, - [2096] = {.lex_state = 43, .external_lex_state = 4}, - [2097] = {.lex_state = 43, .external_lex_state = 4}, - [2098] = {.lex_state = 43, .external_lex_state = 4}, - [2099] = {.lex_state = 3, .external_lex_state = 2}, - [2100] = {.lex_state = 0, .external_lex_state = 3}, - [2101] = {.lex_state = 3, .external_lex_state = 2}, - [2102] = {.lex_state = 1, .external_lex_state = 4}, - [2103] = {.lex_state = 43, .external_lex_state = 4}, - [2104] = {.lex_state = 3, .external_lex_state = 2}, - [2105] = {.lex_state = 1, .external_lex_state = 4}, - [2106] = {.lex_state = 5, .external_lex_state = 2}, - [2107] = {.lex_state = 3, .external_lex_state = 2}, - [2108] = {.lex_state = 3, .external_lex_state = 2}, - [2109] = {.lex_state = 5, .external_lex_state = 4}, - [2110] = {.lex_state = 5, .external_lex_state = 2}, - [2111] = {.lex_state = 43, .external_lex_state = 4}, - [2112] = {.lex_state = 1, .external_lex_state = 4}, - [2113] = {.lex_state = 21, .external_lex_state = 2}, - [2114] = {.lex_state = 0, .external_lex_state = 2}, - [2115] = {.lex_state = 1, .external_lex_state = 4}, - [2116] = {.lex_state = 3, .external_lex_state = 2}, - [2117] = {.lex_state = 17, .external_lex_state = 2}, - [2118] = {.lex_state = 5, .external_lex_state = 4}, - [2119] = {.lex_state = 3, .external_lex_state = 2}, - [2120] = {.lex_state = 43, .external_lex_state = 4}, - [2121] = {.lex_state = 5, .external_lex_state = 2}, - [2122] = {.lex_state = 0, .external_lex_state = 2}, - [2123] = {.lex_state = 43, .external_lex_state = 4}, - [2124] = {.lex_state = 43, .external_lex_state = 4}, - [2125] = {.lex_state = 0, .external_lex_state = 4}, - [2126] = {.lex_state = 43, .external_lex_state = 4}, - [2127] = {.lex_state = 43, .external_lex_state = 4}, - [2128] = {.lex_state = 3, .external_lex_state = 2}, - [2129] = {.lex_state = 3, .external_lex_state = 2}, - [2130] = {.lex_state = 3, .external_lex_state = 2}, - [2131] = {.lex_state = 3, .external_lex_state = 2}, - [2132] = {.lex_state = 5, .external_lex_state = 4}, - [2133] = {.lex_state = 43, .external_lex_state = 4}, - [2134] = {.lex_state = 43, .external_lex_state = 4}, - [2135] = {.lex_state = 0, .external_lex_state = 2}, - [2136] = {.lex_state = 17, .external_lex_state = 2}, - [2137] = {.lex_state = 6, .external_lex_state = 2}, - [2138] = {.lex_state = 3, .external_lex_state = 2}, - [2139] = {.lex_state = 3, .external_lex_state = 2}, - [2140] = {.lex_state = 3, .external_lex_state = 2}, - [2141] = {.lex_state = 5, .external_lex_state = 2}, - [2142] = {.lex_state = 1, .external_lex_state = 4}, - [2143] = {.lex_state = 1, .external_lex_state = 4}, - [2144] = {.lex_state = 3, .external_lex_state = 2}, - [2145] = {.lex_state = 0, .external_lex_state = 3}, - [2146] = {.lex_state = 5, .external_lex_state = 2}, - [2147] = {.lex_state = 5, .external_lex_state = 4}, - [2148] = {.lex_state = 5, .external_lex_state = 2}, - [2149] = {.lex_state = 5, .external_lex_state = 2}, - [2150] = {.lex_state = 0, .external_lex_state = 3}, - [2151] = {.lex_state = 0, .external_lex_state = 2}, - [2152] = {.lex_state = 3, .external_lex_state = 2}, - [2153] = {.lex_state = 5, .external_lex_state = 2}, - [2154] = {.lex_state = 5, .external_lex_state = 2}, - [2155] = {.lex_state = 43, .external_lex_state = 4}, - [2156] = {.lex_state = 6, .external_lex_state = 2}, - [2157] = {.lex_state = 0, .external_lex_state = 2}, - [2158] = {.lex_state = 6, .external_lex_state = 2}, - [2159] = {.lex_state = 0, .external_lex_state = 2}, - [2160] = {.lex_state = 1, .external_lex_state = 4}, - [2161] = {.lex_state = 5, .external_lex_state = 2}, - [2162] = {.lex_state = 1, .external_lex_state = 4}, - [2163] = {.lex_state = 0, .external_lex_state = 4}, - [2164] = {.lex_state = 5, .external_lex_state = 4}, - [2165] = {.lex_state = 3, .external_lex_state = 1}, - [2166] = {.lex_state = 3, .external_lex_state = 2}, - [2167] = {.lex_state = 43, .external_lex_state = 4}, - [2168] = {.lex_state = 3, .external_lex_state = 2}, - [2169] = {.lex_state = 3, .external_lex_state = 2}, - [2170] = {.lex_state = 3, .external_lex_state = 2}, - [2171] = {.lex_state = 3, .external_lex_state = 2}, - [2172] = {.lex_state = 3, .external_lex_state = 2}, - [2173] = {.lex_state = 43, .external_lex_state = 4}, - [2174] = {.lex_state = 5, .external_lex_state = 2}, - [2175] = {.lex_state = 3, .external_lex_state = 2}, - [2176] = {.lex_state = 5, .external_lex_state = 3}, - [2177] = {.lex_state = 5, .external_lex_state = 2}, - [2178] = {.lex_state = 6, .external_lex_state = 2}, - [2179] = {.lex_state = 5, .external_lex_state = 2}, - [2180] = {.lex_state = 3, .external_lex_state = 2}, - [2181] = {.lex_state = 5, .external_lex_state = 2}, - [2182] = {.lex_state = 3, .external_lex_state = 2}, - [2183] = {.lex_state = 1, .external_lex_state = 4}, - [2184] = {.lex_state = 1, .external_lex_state = 4}, - [2185] = {.lex_state = 1, .external_lex_state = 4}, - [2186] = {.lex_state = 5, .external_lex_state = 2}, - [2187] = {.lex_state = 3, .external_lex_state = 2}, - [2188] = {.lex_state = 1, .external_lex_state = 4}, - [2189] = {.lex_state = 1, .external_lex_state = 4}, - [2190] = {.lex_state = 1, .external_lex_state = 4}, - [2191] = {.lex_state = 3, .external_lex_state = 2}, - [2192] = {.lex_state = 3, .external_lex_state = 2}, - [2193] = {.lex_state = 1, .external_lex_state = 4}, - [2194] = {.lex_state = 6, .external_lex_state = 2}, - [2195] = {.lex_state = 17, .external_lex_state = 2}, - [2196] = {.lex_state = 0, .external_lex_state = 2}, - [2197] = {.lex_state = 43, .external_lex_state = 4}, - [2198] = {.lex_state = 1, .external_lex_state = 4}, - [2199] = {.lex_state = 0, .external_lex_state = 3}, - [2200] = {.lex_state = 3, .external_lex_state = 2}, - [2201] = {.lex_state = 3, .external_lex_state = 2}, - [2202] = {.lex_state = 43, .external_lex_state = 4}, - [2203] = {.lex_state = 3, .external_lex_state = 2}, - [2204] = {.lex_state = 1, .external_lex_state = 4}, - [2205] = {.lex_state = 0, .external_lex_state = 2}, - [2206] = {.lex_state = 3, .external_lex_state = 2}, - [2207] = {.lex_state = 3, .external_lex_state = 2}, - [2208] = {.lex_state = 5, .external_lex_state = 2}, - [2209] = {.lex_state = 3, .external_lex_state = 2}, - [2210] = {.lex_state = 0, .external_lex_state = 2}, - [2211] = {.lex_state = 3, .external_lex_state = 2}, - [2212] = {.lex_state = 0, .external_lex_state = 2}, - [2213] = {.lex_state = 0, .external_lex_state = 2}, - [2214] = {.lex_state = 3, .external_lex_state = 2}, - [2215] = {.lex_state = 3, .external_lex_state = 2}, - [2216] = {.lex_state = 3, .external_lex_state = 2}, - [2217] = {.lex_state = 6, .external_lex_state = 2}, - [2218] = {.lex_state = 3, .external_lex_state = 2}, - [2219] = {.lex_state = 3, .external_lex_state = 2}, - [2220] = {.lex_state = 0, .external_lex_state = 3}, - [2221] = {.lex_state = 3, .external_lex_state = 2}, - [2222] = {.lex_state = 3, .external_lex_state = 2}, - [2223] = {.lex_state = 43, .external_lex_state = 4}, - [2224] = {.lex_state = 3, .external_lex_state = 2}, - [2225] = {.lex_state = 3, .external_lex_state = 2}, - [2226] = {.lex_state = 3, .external_lex_state = 2}, - [2227] = {.lex_state = 3, .external_lex_state = 2}, - [2228] = {.lex_state = 3, .external_lex_state = 2}, - [2229] = {.lex_state = 3, .external_lex_state = 2}, - [2230] = {.lex_state = 1, .external_lex_state = 4}, - [2231] = {.lex_state = 3, .external_lex_state = 2}, - [2232] = {.lex_state = 3, .external_lex_state = 2}, - [2233] = {.lex_state = 3, .external_lex_state = 2}, - [2234] = {.lex_state = 0, .external_lex_state = 2}, - [2235] = {.lex_state = 3, .external_lex_state = 2}, - [2236] = {.lex_state = 3, .external_lex_state = 2}, - [2237] = {.lex_state = 3, .external_lex_state = 2}, - [2238] = {.lex_state = 3, .external_lex_state = 2}, - [2239] = {.lex_state = 3, .external_lex_state = 2}, - [2240] = {.lex_state = 3, .external_lex_state = 2}, - [2241] = {.lex_state = 3, .external_lex_state = 2}, - [2242] = {.lex_state = 3, .external_lex_state = 2}, - [2243] = {.lex_state = 3, .external_lex_state = 2}, - [2244] = {.lex_state = 43, .external_lex_state = 4}, - [2245] = {.lex_state = 3, .external_lex_state = 2}, - [2246] = {.lex_state = 0, .external_lex_state = 2}, - [2247] = {.lex_state = 3, .external_lex_state = 2}, - [2248] = {.lex_state = 3, .external_lex_state = 2}, - [2249] = {.lex_state = 1, .external_lex_state = 4}, - [2250] = {.lex_state = 1, .external_lex_state = 4}, - [2251] = {.lex_state = 1, .external_lex_state = 4}, - [2252] = {.lex_state = 3, .external_lex_state = 2}, - [2253] = {.lex_state = 6, .external_lex_state = 2}, - [2254] = {.lex_state = 5, .external_lex_state = 2}, + [2058] = {.lex_state = 37, .external_lex_state = 4}, + [2059] = {.lex_state = 37, .external_lex_state = 4}, + [2060] = {.lex_state = 37, .external_lex_state = 2}, + [2061] = {.lex_state = 4, .external_lex_state = 2}, + [2062] = {.lex_state = 4, .external_lex_state = 2}, + [2063] = {.lex_state = 4, .external_lex_state = 2}, + [2064] = {.lex_state = 37, .external_lex_state = 2}, + [2065] = {.lex_state = 4, .external_lex_state = 2}, + [2066] = {.lex_state = 4, .external_lex_state = 2}, + [2067] = {.lex_state = 37, .external_lex_state = 2}, + [2068] = {.lex_state = 37, .external_lex_state = 2}, + [2069] = {.lex_state = 37, .external_lex_state = 2}, + [2070] = {.lex_state = 37, .external_lex_state = 2}, + [2071] = {.lex_state = 37, .external_lex_state = 2}, + [2072] = {.lex_state = 37, .external_lex_state = 2}, + [2073] = {.lex_state = 37, .external_lex_state = 2}, + [2074] = {.lex_state = 37, .external_lex_state = 2}, + [2075] = {.lex_state = 37, .external_lex_state = 2}, + [2076] = {.lex_state = 37, .external_lex_state = 2}, + [2077] = {.lex_state = 37, .external_lex_state = 2}, + [2078] = {.lex_state = 37, .external_lex_state = 2}, + [2079] = {.lex_state = 37, .external_lex_state = 2}, + [2080] = {.lex_state = 37, .external_lex_state = 2}, + [2081] = {.lex_state = 37, .external_lex_state = 2}, + [2082] = {.lex_state = 37, .external_lex_state = 2}, + [2083] = {.lex_state = 37, .external_lex_state = 2}, + [2084] = {.lex_state = 37, .external_lex_state = 2}, + [2085] = {.lex_state = 37, .external_lex_state = 2}, + [2086] = {.lex_state = 37, .external_lex_state = 2}, + [2087] = {.lex_state = 37, .external_lex_state = 2}, + [2088] = {.lex_state = 37, .external_lex_state = 2}, + [2089] = {.lex_state = 37, .external_lex_state = 2}, + [2090] = {.lex_state = 37, .external_lex_state = 2}, + [2091] = {.lex_state = 37, .external_lex_state = 2}, + [2092] = {.lex_state = 37, .external_lex_state = 2}, + [2093] = {.lex_state = 37, .external_lex_state = 2}, + [2094] = {.lex_state = 37, .external_lex_state = 2}, + [2095] = {.lex_state = 37, .external_lex_state = 2}, + [2096] = {.lex_state = 37, .external_lex_state = 2}, + [2097] = {.lex_state = 37, .external_lex_state = 2}, + [2098] = {.lex_state = 37, .external_lex_state = 2}, + [2099] = {.lex_state = 37, .external_lex_state = 2}, + [2100] = {.lex_state = 37, .external_lex_state = 2}, + [2101] = {.lex_state = 37, .external_lex_state = 2}, + [2102] = {.lex_state = 37, .external_lex_state = 2}, + [2103] = {.lex_state = 37, .external_lex_state = 2}, + [2104] = {.lex_state = 37, .external_lex_state = 2}, + [2105] = {.lex_state = 37, .external_lex_state = 2}, + [2106] = {.lex_state = 37, .external_lex_state = 2}, + [2107] = {.lex_state = 37, .external_lex_state = 2}, + [2108] = {.lex_state = 37, .external_lex_state = 2}, + [2109] = {.lex_state = 37, .external_lex_state = 2}, + [2110] = {.lex_state = 37, .external_lex_state = 2}, + [2111] = {.lex_state = 37, .external_lex_state = 2}, + [2112] = {.lex_state = 37, .external_lex_state = 2}, + [2113] = {.lex_state = 37, .external_lex_state = 2}, + [2114] = {.lex_state = 37, .external_lex_state = 2}, + [2115] = {.lex_state = 37, .external_lex_state = 2}, + [2116] = {.lex_state = 37, .external_lex_state = 2}, + [2117] = {.lex_state = 37, .external_lex_state = 2}, + [2118] = {.lex_state = 37, .external_lex_state = 2}, + [2119] = {.lex_state = 37, .external_lex_state = 2}, + [2120] = {.lex_state = 37, .external_lex_state = 2}, + [2121] = {.lex_state = 37, .external_lex_state = 2}, + [2122] = {.lex_state = 37, .external_lex_state = 2}, + [2123] = {.lex_state = 37, .external_lex_state = 2}, + [2124] = {.lex_state = 37, .external_lex_state = 2}, + [2125] = {.lex_state = 37, .external_lex_state = 2}, + [2126] = {.lex_state = 37, .external_lex_state = 2}, + [2127] = {.lex_state = 37, .external_lex_state = 2}, + [2128] = {.lex_state = 37, .external_lex_state = 2}, + [2129] = {.lex_state = 37, .external_lex_state = 2}, + [2130] = {.lex_state = 37, .external_lex_state = 2}, + [2131] = {.lex_state = 37, .external_lex_state = 2}, + [2132] = {.lex_state = 37, .external_lex_state = 2}, + [2133] = {.lex_state = 37, .external_lex_state = 2}, + [2134] = {.lex_state = 37, .external_lex_state = 2}, + [2135] = {.lex_state = 37, .external_lex_state = 2}, + [2136] = {.lex_state = 37, .external_lex_state = 2}, + [2137] = {.lex_state = 37, .external_lex_state = 2}, + [2138] = {.lex_state = 37, .external_lex_state = 2}, + [2139] = {.lex_state = 4, .external_lex_state = 3}, + [2140] = {.lex_state = 37, .external_lex_state = 2}, + [2141] = {.lex_state = 37, .external_lex_state = 2}, + [2142] = {.lex_state = 37, .external_lex_state = 2}, + [2143] = {.lex_state = 37, .external_lex_state = 2}, + [2144] = {.lex_state = 37, .external_lex_state = 2}, + [2145] = {.lex_state = 37, .external_lex_state = 2}, + [2146] = {.lex_state = 37, .external_lex_state = 2}, + [2147] = {.lex_state = 37, .external_lex_state = 2}, + [2148] = {.lex_state = 37, .external_lex_state = 2}, + [2149] = {.lex_state = 37, .external_lex_state = 2}, + [2150] = {.lex_state = 37, .external_lex_state = 2}, + [2151] = {.lex_state = 37, .external_lex_state = 2}, + [2152] = {.lex_state = 37, .external_lex_state = 2}, + [2153] = {.lex_state = 37, .external_lex_state = 2}, + [2154] = {.lex_state = 37, .external_lex_state = 2}, + [2155] = {.lex_state = 37, .external_lex_state = 2}, + [2156] = {.lex_state = 37, .external_lex_state = 2}, + [2157] = {.lex_state = 37, .external_lex_state = 2}, + [2158] = {.lex_state = 37, .external_lex_state = 2}, + [2159] = {.lex_state = 37, .external_lex_state = 2}, + [2160] = {.lex_state = 37, .external_lex_state = 2}, + [2161] = {.lex_state = 37, .external_lex_state = 2}, + [2162] = {.lex_state = 37, .external_lex_state = 2}, + [2163] = {.lex_state = 37, .external_lex_state = 2}, + [2164] = {.lex_state = 37, .external_lex_state = 2}, + [2165] = {.lex_state = 37, .external_lex_state = 2}, + [2166] = {.lex_state = 37, .external_lex_state = 2}, + [2167] = {.lex_state = 37, .external_lex_state = 2}, + [2168] = {.lex_state = 37, .external_lex_state = 2}, + [2169] = {.lex_state = 37, .external_lex_state = 2}, + [2170] = {.lex_state = 37, .external_lex_state = 2}, + [2171] = {.lex_state = 37, .external_lex_state = 2}, + [2172] = {.lex_state = 37, .external_lex_state = 2}, + [2173] = {.lex_state = 37, .external_lex_state = 2}, + [2174] = {.lex_state = 37, .external_lex_state = 2}, + [2175] = {.lex_state = 37, .external_lex_state = 2}, + [2176] = {.lex_state = 37, .external_lex_state = 2}, + [2177] = {.lex_state = 37, .external_lex_state = 2}, + [2178] = {.lex_state = 37, .external_lex_state = 2}, + [2179] = {.lex_state = 37, .external_lex_state = 2}, + [2180] = {.lex_state = 37, .external_lex_state = 2}, + [2181] = {.lex_state = 37, .external_lex_state = 2}, + [2182] = {.lex_state = 37, .external_lex_state = 2}, + [2183] = {.lex_state = 37, .external_lex_state = 2}, + [2184] = {.lex_state = 37, .external_lex_state = 2}, + [2185] = {.lex_state = 37, .external_lex_state = 2}, + [2186] = {.lex_state = 37, .external_lex_state = 2}, + [2187] = {.lex_state = 37, .external_lex_state = 2}, + [2188] = {.lex_state = 37, .external_lex_state = 2}, + [2189] = {.lex_state = 37, .external_lex_state = 2}, + [2190] = {.lex_state = 37, .external_lex_state = 2}, + [2191] = {.lex_state = 37, .external_lex_state = 2}, + [2192] = {.lex_state = 37, .external_lex_state = 2}, + [2193] = {.lex_state = 37, .external_lex_state = 2}, + [2194] = {.lex_state = 37, .external_lex_state = 2}, + [2195] = {.lex_state = 37, .external_lex_state = 2}, + [2196] = {.lex_state = 37, .external_lex_state = 2}, + [2197] = {.lex_state = 37, .external_lex_state = 2}, + [2198] = {.lex_state = 37, .external_lex_state = 2}, + [2199] = {.lex_state = 37, .external_lex_state = 2}, + [2200] = {.lex_state = 37, .external_lex_state = 2}, + [2201] = {.lex_state = 37, .external_lex_state = 2}, + [2202] = {.lex_state = 37, .external_lex_state = 2}, + [2203] = {.lex_state = 37, .external_lex_state = 2}, + [2204] = {.lex_state = 37, .external_lex_state = 2}, + [2205] = {.lex_state = 37, .external_lex_state = 2}, + [2206] = {.lex_state = 37, .external_lex_state = 2}, + [2207] = {.lex_state = 37, .external_lex_state = 2}, + [2208] = {.lex_state = 4, .external_lex_state = 3}, + [2209] = {.lex_state = 4, .external_lex_state = 3}, + [2210] = {.lex_state = 37, .external_lex_state = 2}, + [2211] = {.lex_state = 37, .external_lex_state = 2}, + [2212] = {.lex_state = 37, .external_lex_state = 2}, + [2213] = {.lex_state = 37, .external_lex_state = 2}, + [2214] = {.lex_state = 37, .external_lex_state = 2}, + [2215] = {.lex_state = 37, .external_lex_state = 2}, + [2216] = {.lex_state = 37, .external_lex_state = 2}, + [2217] = {.lex_state = 37, .external_lex_state = 2}, + [2218] = {.lex_state = 37, .external_lex_state = 3}, + [2219] = {.lex_state = 37, .external_lex_state = 2}, + [2220] = {.lex_state = 37, .external_lex_state = 2}, + [2221] = {.lex_state = 37, .external_lex_state = 2}, + [2222] = {.lex_state = 37, .external_lex_state = 2}, + [2223] = {.lex_state = 4, .external_lex_state = 3}, + [2224] = {.lex_state = 4, .external_lex_state = 3}, + [2225] = {.lex_state = 37, .external_lex_state = 2}, + [2226] = {.lex_state = 37, .external_lex_state = 3}, + [2227] = {.lex_state = 37, .external_lex_state = 3}, + [2228] = {.lex_state = 37, .external_lex_state = 3}, + [2229] = {.lex_state = 37, .external_lex_state = 3}, + [2230] = {.lex_state = 4, .external_lex_state = 3}, + [2231] = {.lex_state = 37, .external_lex_state = 3}, + [2232] = {.lex_state = 37, .external_lex_state = 3}, + [2233] = {.lex_state = 4, .external_lex_state = 2}, + [2234] = {.lex_state = 3, .external_lex_state = 2}, + [2235] = {.lex_state = 37, .external_lex_state = 2}, + [2236] = {.lex_state = 37, .external_lex_state = 2}, + [2237] = {.lex_state = 37, .external_lex_state = 2}, + [2238] = {.lex_state = 37, .external_lex_state = 2}, + [2239] = {.lex_state = 37, .external_lex_state = 2}, + [2240] = {.lex_state = 37, .external_lex_state = 2}, + [2241] = {.lex_state = 37, .external_lex_state = 2}, + [2242] = {.lex_state = 37, .external_lex_state = 2}, + [2243] = {.lex_state = 37, .external_lex_state = 2}, + [2244] = {.lex_state = 37, .external_lex_state = 2}, + [2245] = {.lex_state = 37, .external_lex_state = 2}, + [2246] = {.lex_state = 37, .external_lex_state = 2}, + [2247] = {.lex_state = 37, .external_lex_state = 2}, + [2248] = {.lex_state = 37, .external_lex_state = 2}, + [2249] = {.lex_state = 37, .external_lex_state = 2}, + [2250] = {.lex_state = 37, .external_lex_state = 2}, + [2251] = {.lex_state = 37, .external_lex_state = 2}, + [2252] = {.lex_state = 37, .external_lex_state = 2}, + [2253] = {.lex_state = 37, .external_lex_state = 2}, + [2254] = {.lex_state = 37, .external_lex_state = 2}, [2255] = {.lex_state = 3, .external_lex_state = 2}, - [2256] = {.lex_state = 0, .external_lex_state = 2}, - [2257] = {.lex_state = 3, .external_lex_state = 2}, - [2258] = {.lex_state = 3, .external_lex_state = 2}, - [2259] = {.lex_state = 3, .external_lex_state = 2}, - [2260] = {.lex_state = 3, .external_lex_state = 2}, - [2261] = {.lex_state = 3, .external_lex_state = 2}, - [2262] = {.lex_state = 3, .external_lex_state = 2}, - [2263] = {.lex_state = 43, .external_lex_state = 4}, - [2264] = {.lex_state = 3, .external_lex_state = 2}, - [2265] = {.lex_state = 3, .external_lex_state = 2}, - [2266] = {.lex_state = 1, .external_lex_state = 4}, - [2267] = {.lex_state = 3, .external_lex_state = 2}, - [2268] = {.lex_state = 3, .external_lex_state = 2}, - [2269] = {.lex_state = 6, .external_lex_state = 2}, - [2270] = {.lex_state = 17, .external_lex_state = 2}, - [2271] = {.lex_state = 3, .external_lex_state = 2}, - [2272] = {.lex_state = 1, .external_lex_state = 4}, - [2273] = {.lex_state = 3, .external_lex_state = 2}, - [2274] = {.lex_state = 0, .external_lex_state = 3}, - [2275] = {.lex_state = 3, .external_lex_state = 2}, - [2276] = {.lex_state = 3, .external_lex_state = 1}, - [2277] = {.lex_state = 3, .external_lex_state = 2}, - [2278] = {.lex_state = 3, .external_lex_state = 2}, - [2279] = {.lex_state = 5, .external_lex_state = 2}, - [2280] = {.lex_state = 3, .external_lex_state = 2}, - [2281] = {.lex_state = 0, .external_lex_state = 2}, - [2282] = {.lex_state = 1, .external_lex_state = 4}, - [2283] = {.lex_state = 3, .external_lex_state = 2}, - [2284] = {.lex_state = 3, .external_lex_state = 2}, - [2285] = {.lex_state = 5, .external_lex_state = 4}, - [2286] = {.lex_state = 3, .external_lex_state = 2}, - [2287] = {.lex_state = 0, .external_lex_state = 2}, - [2288] = {.lex_state = 3, .external_lex_state = 2}, - [2289] = {.lex_state = 0, .external_lex_state = 2}, - [2290] = {.lex_state = 0, .external_lex_state = 2}, - [2291] = {.lex_state = 0, .external_lex_state = 2}, - [2292] = {.lex_state = 0, .external_lex_state = 2}, - [2293] = {.lex_state = 0, .external_lex_state = 2}, - [2294] = {.lex_state = 0, .external_lex_state = 2}, - [2295] = {.lex_state = 0, .external_lex_state = 2}, - [2296] = {.lex_state = 18, .external_lex_state = 2}, - [2297] = {.lex_state = 0, .external_lex_state = 2}, - [2298] = {.lex_state = 3, .external_lex_state = 3}, - [2299] = {.lex_state = 0, .external_lex_state = 2}, - [2300] = {.lex_state = 0, .external_lex_state = 2}, - [2301] = {.lex_state = 0, .external_lex_state = 2}, - [2302] = {.lex_state = 21, .external_lex_state = 2}, - [2303] = {.lex_state = 0, .external_lex_state = 2}, - [2304] = {.lex_state = 0, .external_lex_state = 4}, - [2305] = {.lex_state = 21, .external_lex_state = 2}, - [2306] = {.lex_state = 0, .external_lex_state = 2}, - [2307] = {.lex_state = 0, .external_lex_state = 2}, - [2308] = {.lex_state = 0, .external_lex_state = 2}, - [2309] = {.lex_state = 0, .external_lex_state = 2}, - [2310] = {.lex_state = 5, .external_lex_state = 2}, - [2311] = {.lex_state = 0, .external_lex_state = 2}, - [2312] = {.lex_state = 0, .external_lex_state = 2}, - [2313] = {.lex_state = 0, .external_lex_state = 2}, - [2314] = {.lex_state = 0, .external_lex_state = 4}, - [2315] = {.lex_state = 0, .external_lex_state = 2}, - [2316] = {.lex_state = 5, .external_lex_state = 2}, - [2317] = {.lex_state = 0, .external_lex_state = 2}, - [2318] = {.lex_state = 0, .external_lex_state = 2}, - [2319] = {.lex_state = 0, .external_lex_state = 2}, - [2320] = {.lex_state = 0, .external_lex_state = 2}, - [2321] = {.lex_state = 18, .external_lex_state = 2}, - [2322] = {.lex_state = 0, .external_lex_state = 3}, - [2323] = {.lex_state = 43, .external_lex_state = 4}, - [2324] = {.lex_state = 3, .external_lex_state = 2}, - [2325] = {.lex_state = 0, .external_lex_state = 2}, - [2326] = {.lex_state = 0, .external_lex_state = 2}, - [2327] = {.lex_state = 0, .external_lex_state = 2}, - [2328] = {.lex_state = 0, .external_lex_state = 2}, - [2329] = {.lex_state = 0, .external_lex_state = 3}, - [2330] = {.lex_state = 0, .external_lex_state = 3}, - [2331] = {.lex_state = 21, .external_lex_state = 2}, - [2332] = {.lex_state = 0, .external_lex_state = 4}, - [2333] = {.lex_state = 18, .external_lex_state = 2}, - [2334] = {.lex_state = 3, .external_lex_state = 3}, - [2335] = {.lex_state = 5, .external_lex_state = 2}, - [2336] = {.lex_state = 0, .external_lex_state = 2}, - [2337] = {.lex_state = 0, .external_lex_state = 2}, - [2338] = {.lex_state = 0, .external_lex_state = 2}, - [2339] = {.lex_state = 3, .external_lex_state = 3}, - [2340] = {.lex_state = 0, .external_lex_state = 2}, - [2341] = {.lex_state = 0, .external_lex_state = 2}, - [2342] = {.lex_state = 3, .external_lex_state = 2}, - [2343] = {.lex_state = 3, .external_lex_state = 3}, - [2344] = {.lex_state = 1, .external_lex_state = 4}, - [2345] = {.lex_state = 0, .external_lex_state = 2}, - [2346] = {.lex_state = 0, .external_lex_state = 2}, - [2347] = {.lex_state = 0, .external_lex_state = 2}, - [2348] = {.lex_state = 0, .external_lex_state = 2}, - [2349] = {.lex_state = 5, .external_lex_state = 2}, - [2350] = {.lex_state = 1, .external_lex_state = 4}, - [2351] = {.lex_state = 0, .external_lex_state = 2}, - [2352] = {.lex_state = 1, .external_lex_state = 4}, - [2353] = {.lex_state = 0, .external_lex_state = 3}, - [2354] = {.lex_state = 5, .external_lex_state = 2}, - [2355] = {.lex_state = 21, .external_lex_state = 2}, - [2356] = {.lex_state = 0, .external_lex_state = 3}, - [2357] = {.lex_state = 21, .external_lex_state = 2}, - [2358] = {.lex_state = 21, .external_lex_state = 2}, - [2359] = {.lex_state = 0, .external_lex_state = 3}, - [2360] = {.lex_state = 18, .external_lex_state = 2}, - [2361] = {.lex_state = 5, .external_lex_state = 2}, - [2362] = {.lex_state = 0, .external_lex_state = 2}, - [2363] = {.lex_state = 0, .external_lex_state = 3}, - [2364] = {.lex_state = 0, .external_lex_state = 2}, - [2365] = {.lex_state = 5, .external_lex_state = 2}, - [2366] = {.lex_state = 0, .external_lex_state = 2}, - [2367] = {.lex_state = 0, .external_lex_state = 3}, - [2368] = {.lex_state = 0, .external_lex_state = 2}, - [2369] = {.lex_state = 0, .external_lex_state = 2}, - [2370] = {.lex_state = 0, .external_lex_state = 2}, - [2371] = {.lex_state = 0, .external_lex_state = 2}, - [2372] = {.lex_state = 43, .external_lex_state = 4}, - [2373] = {.lex_state = 0, .external_lex_state = 2}, - [2374] = {.lex_state = 0, .external_lex_state = 2}, - [2375] = {.lex_state = 0, .external_lex_state = 2}, - [2376] = {.lex_state = 18, .external_lex_state = 2}, - [2377] = {.lex_state = 0, .external_lex_state = 2}, - [2378] = {.lex_state = 5, .external_lex_state = 2}, - [2379] = {.lex_state = 0, .external_lex_state = 4}, - [2380] = {.lex_state = 0, .external_lex_state = 2}, - [2381] = {.lex_state = 0, .external_lex_state = 2}, - [2382] = {.lex_state = 0, .external_lex_state = 2}, - [2383] = {.lex_state = 0, .external_lex_state = 4}, - [2384] = {.lex_state = 0, .external_lex_state = 4}, - [2385] = {.lex_state = 0, .external_lex_state = 2}, - [2386] = {.lex_state = 0, .external_lex_state = 2}, - [2387] = {.lex_state = 0, .external_lex_state = 2}, - [2388] = {.lex_state = 0, .external_lex_state = 2}, - [2389] = {.lex_state = 0, .external_lex_state = 4}, - [2390] = {.lex_state = 0, .external_lex_state = 2}, - [2391] = {.lex_state = 0, .external_lex_state = 2}, - [2392] = {.lex_state = 0, .external_lex_state = 2}, - [2393] = {.lex_state = 0, .external_lex_state = 2}, - [2394] = {.lex_state = 0, .external_lex_state = 2}, - [2395] = {.lex_state = 21, .external_lex_state = 2}, - [2396] = {.lex_state = 0, .external_lex_state = 2}, - [2397] = {.lex_state = 21, .external_lex_state = 2}, - [2398] = {.lex_state = 0, .external_lex_state = 4}, - [2399] = {.lex_state = 0, .external_lex_state = 2}, - [2400] = {.lex_state = 0, .external_lex_state = 2}, - [2401] = {.lex_state = 0, .external_lex_state = 2}, + [2256] = {.lex_state = 37, .external_lex_state = 2}, + [2257] = {.lex_state = 37, .external_lex_state = 2}, + [2258] = {.lex_state = 37, .external_lex_state = 2}, + [2259] = {.lex_state = 37, .external_lex_state = 2}, + [2260] = {.lex_state = 4, .external_lex_state = 3}, + [2261] = {.lex_state = 3, .external_lex_state = 3}, + [2262] = {.lex_state = 6, .external_lex_state = 2}, + [2263] = {.lex_state = 4, .external_lex_state = 4}, + [2264] = {.lex_state = 4, .external_lex_state = 4}, + [2265] = {.lex_state = 4, .external_lex_state = 4}, + [2266] = {.lex_state = 2, .external_lex_state = 2}, + [2267] = {.lex_state = 2, .external_lex_state = 2}, + [2268] = {.lex_state = 4, .external_lex_state = 4}, + [2269] = {.lex_state = 4, .external_lex_state = 4}, + [2270] = {.lex_state = 4, .external_lex_state = 2}, + [2271] = {.lex_state = 3, .external_lex_state = 3}, + [2272] = {.lex_state = 4, .external_lex_state = 2}, + [2273] = {.lex_state = 37, .external_lex_state = 2}, + [2274] = {.lex_state = 4, .external_lex_state = 2}, + [2275] = {.lex_state = 4, .external_lex_state = 4}, + [2276] = {.lex_state = 4, .external_lex_state = 2}, + [2277] = {.lex_state = 2, .external_lex_state = 2}, + [2278] = {.lex_state = 3, .external_lex_state = 4}, + [2279] = {.lex_state = 2, .external_lex_state = 2}, + [2280] = {.lex_state = 2, .external_lex_state = 2}, + [2281] = {.lex_state = 7, .external_lex_state = 2}, + [2282] = {.lex_state = 2, .external_lex_state = 2}, + [2283] = {.lex_state = 7, .external_lex_state = 2}, + [2284] = {.lex_state = 2, .external_lex_state = 2}, + [2285] = {.lex_state = 3, .external_lex_state = 4}, + [2286] = {.lex_state = 2, .external_lex_state = 2}, + [2287] = {.lex_state = 2, .external_lex_state = 2}, + [2288] = {.lex_state = 2, .external_lex_state = 2}, + [2289] = {.lex_state = 2, .external_lex_state = 2}, + [2290] = {.lex_state = 11, .external_lex_state = 2}, + [2291] = {.lex_state = 11, .external_lex_state = 3}, + [2292] = {.lex_state = 11, .external_lex_state = 2}, + [2293] = {.lex_state = 11, .external_lex_state = 2}, + [2294] = {.lex_state = 11, .external_lex_state = 3}, + [2295] = {.lex_state = 11, .external_lex_state = 3}, + [2296] = {.lex_state = 2, .external_lex_state = 2}, + [2297] = {.lex_state = 2, .external_lex_state = 3}, + [2298] = {.lex_state = 9, .external_lex_state = 2}, + [2299] = {.lex_state = 9, .external_lex_state = 2}, + [2300] = {.lex_state = 9, .external_lex_state = 2}, + [2301] = {.lex_state = 9, .external_lex_state = 2}, + [2302] = {.lex_state = 2, .external_lex_state = 2}, + [2303] = {.lex_state = 9, .external_lex_state = 2}, + [2304] = {.lex_state = 9, .external_lex_state = 2}, + [2305] = {.lex_state = 4, .external_lex_state = 2}, + [2306] = {.lex_state = 10, .external_lex_state = 2}, + [2307] = {.lex_state = 10, .external_lex_state = 2}, + [2308] = {.lex_state = 9, .external_lex_state = 2}, + [2309] = {.lex_state = 2, .external_lex_state = 2}, + [2310] = {.lex_state = 8, .external_lex_state = 2}, + [2311] = {.lex_state = 9, .external_lex_state = 2}, + [2312] = {.lex_state = 9, .external_lex_state = 2}, + [2313] = {.lex_state = 9, .external_lex_state = 2}, + [2314] = {.lex_state = 2, .external_lex_state = 3}, + [2315] = {.lex_state = 9, .external_lex_state = 2}, + [2316] = {.lex_state = 4, .external_lex_state = 3}, + [2317] = {.lex_state = 4, .external_lex_state = 2}, + [2318] = {.lex_state = 4, .external_lex_state = 2}, + [2319] = {.lex_state = 2, .external_lex_state = 3}, + [2320] = {.lex_state = 2, .external_lex_state = 3}, + [2321] = {.lex_state = 2, .external_lex_state = 2}, + [2322] = {.lex_state = 12, .external_lex_state = 2}, + [2323] = {.lex_state = 12, .external_lex_state = 2}, + [2324] = {.lex_state = 12, .external_lex_state = 2}, + [2325] = {.lex_state = 11, .external_lex_state = 2}, + [2326] = {.lex_state = 3, .external_lex_state = 2}, + [2327] = {.lex_state = 12, .external_lex_state = 2}, + [2328] = {.lex_state = 15, .external_lex_state = 2}, + [2329] = {.lex_state = 15, .external_lex_state = 2}, + [2330] = {.lex_state = 2, .external_lex_state = 2}, + [2331] = {.lex_state = 15, .external_lex_state = 2}, + [2332] = {.lex_state = 15, .external_lex_state = 2}, + [2333] = {.lex_state = 15, .external_lex_state = 2}, + [2334] = {.lex_state = 15, .external_lex_state = 2}, + [2335] = {.lex_state = 15, .external_lex_state = 2}, + [2336] = {.lex_state = 15, .external_lex_state = 2}, + [2337] = {.lex_state = 12, .external_lex_state = 2}, + [2338] = {.lex_state = 2, .external_lex_state = 1}, + [2339] = {.lex_state = 12, .external_lex_state = 2}, + [2340] = {.lex_state = 12, .external_lex_state = 2}, + [2341] = {.lex_state = 12, .external_lex_state = 2}, + [2342] = {.lex_state = 12, .external_lex_state = 2}, + [2343] = {.lex_state = 11, .external_lex_state = 2}, + [2344] = {.lex_state = 11, .external_lex_state = 2}, + [2345] = {.lex_state = 15, .external_lex_state = 2}, + [2346] = {.lex_state = 4, .external_lex_state = 4}, + [2347] = {.lex_state = 15, .external_lex_state = 2}, + [2348] = {.lex_state = 12, .external_lex_state = 2}, + [2349] = {.lex_state = 12, .external_lex_state = 2}, + [2350] = {.lex_state = 11, .external_lex_state = 2}, + [2351] = {.lex_state = 11, .external_lex_state = 2}, + [2352] = {.lex_state = 11, .external_lex_state = 2}, + [2353] = {.lex_state = 12, .external_lex_state = 2}, + [2354] = {.lex_state = 12, .external_lex_state = 2}, + [2355] = {.lex_state = 4, .external_lex_state = 4}, + [2356] = {.lex_state = 11, .external_lex_state = 2}, + [2357] = {.lex_state = 3, .external_lex_state = 3}, + [2358] = {.lex_state = 12, .external_lex_state = 2}, + [2359] = {.lex_state = 15, .external_lex_state = 2}, + [2360] = {.lex_state = 15, .external_lex_state = 2}, + [2361] = {.lex_state = 3, .external_lex_state = 2}, + [2362] = {.lex_state = 3, .external_lex_state = 2}, + [2363] = {.lex_state = 12, .external_lex_state = 2}, + [2364] = {.lex_state = 12, .external_lex_state = 2}, + [2365] = {.lex_state = 15, .external_lex_state = 2}, + [2366] = {.lex_state = 11, .external_lex_state = 2}, + [2367] = {.lex_state = 12, .external_lex_state = 2}, + [2368] = {.lex_state = 11, .external_lex_state = 2}, + [2369] = {.lex_state = 15, .external_lex_state = 2}, + [2370] = {.lex_state = 3, .external_lex_state = 2}, + [2371] = {.lex_state = 15, .external_lex_state = 2}, + [2372] = {.lex_state = 15, .external_lex_state = 2}, + [2373] = {.lex_state = 2, .external_lex_state = 3}, + [2374] = {.lex_state = 2, .external_lex_state = 3}, + [2375] = {.lex_state = 2, .external_lex_state = 3}, + [2376] = {.lex_state = 2, .external_lex_state = 3}, + [2377] = {.lex_state = 2, .external_lex_state = 3}, + [2378] = {.lex_state = 2, .external_lex_state = 3}, + [2379] = {.lex_state = 15, .external_lex_state = 2}, + [2380] = {.lex_state = 15, .external_lex_state = 2}, + [2381] = {.lex_state = 4, .external_lex_state = 2}, + [2382] = {.lex_state = 12, .external_lex_state = 2}, + [2383] = {.lex_state = 4, .external_lex_state = 2}, + [2384] = {.lex_state = 3, .external_lex_state = 2}, + [2385] = {.lex_state = 2, .external_lex_state = 3}, + [2386] = {.lex_state = 2, .external_lex_state = 3}, + [2387] = {.lex_state = 2, .external_lex_state = 3}, + [2388] = {.lex_state = 15, .external_lex_state = 2}, + [2389] = {.lex_state = 2, .external_lex_state = 3}, + [2390] = {.lex_state = 2, .external_lex_state = 3}, + [2391] = {.lex_state = 15, .external_lex_state = 2}, + [2392] = {.lex_state = 15, .external_lex_state = 2}, + [2393] = {.lex_state = 15, .external_lex_state = 2}, + [2394] = {.lex_state = 15, .external_lex_state = 2}, + [2395] = {.lex_state = 0, .external_lex_state = 2}, + [2396] = {.lex_state = 2, .external_lex_state = 3}, + [2397] = {.lex_state = 11, .external_lex_state = 2}, + [2398] = {.lex_state = 2, .external_lex_state = 3}, + [2399] = {.lex_state = 11, .external_lex_state = 2}, + [2400] = {.lex_state = 15, .external_lex_state = 2}, + [2401] = {.lex_state = 2, .external_lex_state = 3}, [2402] = {.lex_state = 0, .external_lex_state = 2}, - [2403] = {.lex_state = 21, .external_lex_state = 2}, - [2404] = {.lex_state = 21, .external_lex_state = 2}, - [2405] = {.lex_state = 0, .external_lex_state = 2}, - [2406] = {.lex_state = 0, .external_lex_state = 2}, - [2407] = {.lex_state = 5, .external_lex_state = 2}, + [2403] = {.lex_state = 4, .external_lex_state = 2}, + [2404] = {.lex_state = 2, .external_lex_state = 3}, + [2405] = {.lex_state = 11, .external_lex_state = 2}, + [2406] = {.lex_state = 11, .external_lex_state = 2}, + [2407] = {.lex_state = 11, .external_lex_state = 2}, [2408] = {.lex_state = 0, .external_lex_state = 2}, - [2409] = {.lex_state = 21, .external_lex_state = 2}, - [2410] = {.lex_state = 0, .external_lex_state = 2}, - [2411] = {.lex_state = 43, .external_lex_state = 4}, - [2412] = {.lex_state = 5, .external_lex_state = 2}, - [2413] = {.lex_state = 0, .external_lex_state = 2}, - [2414] = {.lex_state = 5, .external_lex_state = 2}, - [2415] = {.lex_state = 0, .external_lex_state = 3}, - [2416] = {.lex_state = 0, .external_lex_state = 4}, + [2409] = {.lex_state = 4, .external_lex_state = 2}, + [2410] = {.lex_state = 3, .external_lex_state = 2}, + [2411] = {.lex_state = 15, .external_lex_state = 2}, + [2412] = {.lex_state = 11, .external_lex_state = 2}, + [2413] = {.lex_state = 2, .external_lex_state = 1}, + [2414] = {.lex_state = 0, .external_lex_state = 2}, + [2415] = {.lex_state = 11, .external_lex_state = 2}, + [2416] = {.lex_state = 0, .external_lex_state = 2}, [2417] = {.lex_state = 0, .external_lex_state = 2}, - [2418] = {.lex_state = 0, .external_lex_state = 4}, - [2419] = {.lex_state = 0, .external_lex_state = 3}, - [2420] = {.lex_state = 0, .external_lex_state = 4}, - [2421] = {.lex_state = 3, .external_lex_state = 2}, - [2422] = {.lex_state = 0, .external_lex_state = 2}, - [2423] = {.lex_state = 0, .external_lex_state = 2}, - [2424] = {.lex_state = 0, .external_lex_state = 2}, - [2425] = {.lex_state = 0, .external_lex_state = 4}, - [2426] = {.lex_state = 0, .external_lex_state = 2}, - [2427] = {.lex_state = 0, .external_lex_state = 2}, - [2428] = {.lex_state = 0, .external_lex_state = 2}, - [2429] = {.lex_state = 0, .external_lex_state = 2}, - [2430] = {.lex_state = 0, .external_lex_state = 2}, - [2431] = {.lex_state = 0, .external_lex_state = 2}, - [2432] = {.lex_state = 0, .external_lex_state = 4}, - [2433] = {.lex_state = 0, .external_lex_state = 4}, - [2434] = {.lex_state = 5, .external_lex_state = 2}, - [2435] = {.lex_state = 3, .external_lex_state = 2}, - [2436] = {.lex_state = 0, .external_lex_state = 2}, - [2437] = {.lex_state = 0, .external_lex_state = 2}, - [2438] = {.lex_state = 0, .external_lex_state = 2}, - [2439] = {.lex_state = 0, .external_lex_state = 2}, - [2440] = {.lex_state = 0, .external_lex_state = 4}, - [2441] = {.lex_state = 0, .external_lex_state = 4}, - [2442] = {.lex_state = 0, .external_lex_state = 3}, + [2418] = {.lex_state = 15, .external_lex_state = 2}, + [2419] = {.lex_state = 11, .external_lex_state = 2}, + [2420] = {.lex_state = 2, .external_lex_state = 3}, + [2421] = {.lex_state = 2, .external_lex_state = 3}, + [2422] = {.lex_state = 2, .external_lex_state = 3}, + [2423] = {.lex_state = 11, .external_lex_state = 2}, + [2424] = {.lex_state = 11, .external_lex_state = 2}, + [2425] = {.lex_state = 15, .external_lex_state = 2}, + [2426] = {.lex_state = 11, .external_lex_state = 2}, + [2427] = {.lex_state = 11, .external_lex_state = 2}, + [2428] = {.lex_state = 11, .external_lex_state = 2}, + [2429] = {.lex_state = 2, .external_lex_state = 3}, + [2430] = {.lex_state = 4, .external_lex_state = 2}, + [2431] = {.lex_state = 11, .external_lex_state = 2}, + [2432] = {.lex_state = 4, .external_lex_state = 4}, + [2433] = {.lex_state = 11, .external_lex_state = 2}, + [2434] = {.lex_state = 11, .external_lex_state = 2}, + [2435] = {.lex_state = 2, .external_lex_state = 3}, + [2436] = {.lex_state = 2, .external_lex_state = 3}, + [2437] = {.lex_state = 2, .external_lex_state = 3}, + [2438] = {.lex_state = 2, .external_lex_state = 3}, + [2439] = {.lex_state = 2, .external_lex_state = 3}, + [2440] = {.lex_state = 2, .external_lex_state = 3}, + [2441] = {.lex_state = 2, .external_lex_state = 3}, + [2442] = {.lex_state = 11, .external_lex_state = 2}, [2443] = {.lex_state = 0, .external_lex_state = 2}, [2444] = {.lex_state = 0, .external_lex_state = 2}, - [2445] = {.lex_state = 3, .external_lex_state = 2}, - [2446] = {.lex_state = 3, .external_lex_state = 2}, + [2445] = {.lex_state = 15, .external_lex_state = 2}, + [2446] = {.lex_state = 15, .external_lex_state = 2}, [2447] = {.lex_state = 0, .external_lex_state = 2}, - [2448] = {.lex_state = 0, .external_lex_state = 2}, - [2449] = {.lex_state = 43, .external_lex_state = 2}, - [2450] = {.lex_state = 0, .external_lex_state = 4}, - [2451] = {.lex_state = 0, .external_lex_state = 4}, - [2452] = {.lex_state = 0, .external_lex_state = 4}, - [2453] = {.lex_state = 0, .external_lex_state = 2}, + [2448] = {.lex_state = 15, .external_lex_state = 2}, + [2449] = {.lex_state = 2, .external_lex_state = 3}, + [2450] = {.lex_state = 15, .external_lex_state = 2}, + [2451] = {.lex_state = 15, .external_lex_state = 2}, + [2452] = {.lex_state = 2, .external_lex_state = 3}, + [2453] = {.lex_state = 3, .external_lex_state = 2}, [2454] = {.lex_state = 0, .external_lex_state = 2}, - [2455] = {.lex_state = 0, .external_lex_state = 2}, - [2456] = {.lex_state = 21, .external_lex_state = 2}, - [2457] = {.lex_state = 43, .external_lex_state = 2}, - [2458] = {.lex_state = 0, .external_lex_state = 2}, - [2459] = {.lex_state = 0, .external_lex_state = 4}, - [2460] = {.lex_state = 0, .external_lex_state = 2}, - [2461] = {.lex_state = 0, .external_lex_state = 4}, - [2462] = {.lex_state = 43, .external_lex_state = 2}, - [2463] = {.lex_state = 43, .external_lex_state = 2}, - [2464] = {.lex_state = 0, .external_lex_state = 2}, - [2465] = {.lex_state = 0, .external_lex_state = 2}, - [2466] = {.lex_state = 0, .external_lex_state = 2}, - [2467] = {.lex_state = 0, .external_lex_state = 4}, - [2468] = {.lex_state = 0, .external_lex_state = 4}, - [2469] = {.lex_state = 0, .external_lex_state = 2}, - [2470] = {.lex_state = 0, .external_lex_state = 2}, - [2471] = {.lex_state = 0, .external_lex_state = 4}, - [2472] = {.lex_state = 0, .external_lex_state = 2}, - [2473] = {.lex_state = 0, .external_lex_state = 4}, - [2474] = {.lex_state = 0, .external_lex_state = 4}, - [2475] = {.lex_state = 0, .external_lex_state = 4}, - [2476] = {.lex_state = 0, .external_lex_state = 4}, - [2477] = {.lex_state = 0, .external_lex_state = 2}, - [2478] = {.lex_state = 0, .external_lex_state = 4}, - [2479] = {.lex_state = 0, .external_lex_state = 4}, - [2480] = {.lex_state = 0, .external_lex_state = 2}, - [2481] = {.lex_state = 0, .external_lex_state = 2}, - [2482] = {.lex_state = 0, .external_lex_state = 2}, - [2483] = {.lex_state = 0, .external_lex_state = 2}, - [2484] = {.lex_state = 0, .external_lex_state = 2}, - [2485] = {.lex_state = 0, .external_lex_state = 2}, - [2486] = {.lex_state = 21, .external_lex_state = 2}, - [2487] = {.lex_state = 0, .external_lex_state = 2}, - [2488] = {.lex_state = 0, .external_lex_state = 2}, - [2489] = {.lex_state = 21, .external_lex_state = 2}, - [2490] = {.lex_state = 0, .external_lex_state = 2}, - [2491] = {.lex_state = 0, .external_lex_state = 2}, - [2492] = {.lex_state = 0, .external_lex_state = 2}, - [2493] = {.lex_state = 0, .external_lex_state = 2}, - [2494] = {.lex_state = 0, .external_lex_state = 2}, + [2455] = {.lex_state = 15, .external_lex_state = 2}, + [2456] = {.lex_state = 0, .external_lex_state = 2}, + [2457] = {.lex_state = 2, .external_lex_state = 2}, + [2458] = {.lex_state = 15, .external_lex_state = 2}, + [2459] = {.lex_state = 9, .external_lex_state = 2}, + [2460] = {.lex_state = 2, .external_lex_state = 4}, + [2461] = {.lex_state = 3, .external_lex_state = 2}, + [2462] = {.lex_state = 2, .external_lex_state = 2}, + [2463] = {.lex_state = 9, .external_lex_state = 2}, + [2464] = {.lex_state = 3, .external_lex_state = 2}, + [2465] = {.lex_state = 3, .external_lex_state = 2}, + [2466] = {.lex_state = 2, .external_lex_state = 3}, + [2467] = {.lex_state = 2, .external_lex_state = 4}, + [2468] = {.lex_state = 3, .external_lex_state = 2}, + [2469] = {.lex_state = 0, .external_lex_state = 3}, + [2470] = {.lex_state = 3, .external_lex_state = 2}, + [2471] = {.lex_state = 3, .external_lex_state = 2}, + [2472] = {.lex_state = 3, .external_lex_state = 3}, + [2473] = {.lex_state = 0, .external_lex_state = 2}, + [2474] = {.lex_state = 2, .external_lex_state = 4}, + [2475] = {.lex_state = 2, .external_lex_state = 3}, + [2476] = {.lex_state = 0, .external_lex_state = 3}, + [2477] = {.lex_state = 3, .external_lex_state = 2}, + [2478] = {.lex_state = 13, .external_lex_state = 2}, + [2479] = {.lex_state = 9, .external_lex_state = 2}, + [2480] = {.lex_state = 3, .external_lex_state = 2}, + [2481] = {.lex_state = 9, .external_lex_state = 2}, + [2482] = {.lex_state = 13, .external_lex_state = 2}, + [2483] = {.lex_state = 11, .external_lex_state = 2}, + [2484] = {.lex_state = 3, .external_lex_state = 3}, + [2485] = {.lex_state = 2, .external_lex_state = 4}, + [2486] = {.lex_state = 3, .external_lex_state = 2}, + [2487] = {.lex_state = 3, .external_lex_state = 2}, + [2488] = {.lex_state = 13, .external_lex_state = 2}, + [2489] = {.lex_state = 2, .external_lex_state = 4}, + [2490] = {.lex_state = 9, .external_lex_state = 2}, + [2491] = {.lex_state = 3, .external_lex_state = 2}, + [2492] = {.lex_state = 3, .external_lex_state = 2}, + [2493] = {.lex_state = 15, .external_lex_state = 4}, + [2494] = {.lex_state = 2, .external_lex_state = 2}, [2495] = {.lex_state = 0, .external_lex_state = 2}, - [2496] = {.lex_state = 0, .external_lex_state = 2}, - [2497] = {.lex_state = 0, .external_lex_state = 2}, - [2498] = {.lex_state = 0, .external_lex_state = 4}, - [2499] = {.lex_state = 0, .external_lex_state = 2}, - [2500] = {.lex_state = 0, .external_lex_state = 4}, - [2501] = {.lex_state = 21, .external_lex_state = 2}, - [2502] = {.lex_state = 0, .external_lex_state = 2}, - [2503] = {.lex_state = 0, .external_lex_state = 2}, - [2504] = {.lex_state = 0, .external_lex_state = 2}, - [2505] = {.lex_state = 0, .external_lex_state = 2}, - [2506] = {.lex_state = 21, .external_lex_state = 2}, - [2507] = {.lex_state = 0, .external_lex_state = 4}, - [2508] = {.lex_state = 0, .external_lex_state = 2}, - [2509] = {.lex_state = 0, .external_lex_state = 2}, - [2510] = {.lex_state = 0, .external_lex_state = 2}, - [2511] = {.lex_state = 0, .external_lex_state = 2}, - [2512] = {.lex_state = 0, .external_lex_state = 2}, - [2513] = {.lex_state = 0, .external_lex_state = 2}, - [2514] = {.lex_state = 0, .external_lex_state = 2}, - [2515] = {.lex_state = 0, .external_lex_state = 2}, - [2516] = {.lex_state = 0, .external_lex_state = 2}, - [2517] = {.lex_state = 0, .external_lex_state = 2}, - [2518] = {.lex_state = 0, .external_lex_state = 2}, - [2519] = {.lex_state = 0, .external_lex_state = 4}, - [2520] = {.lex_state = 0, .external_lex_state = 4}, - [2521] = {.lex_state = 0, .external_lex_state = 2}, - [2522] = {.lex_state = 18, .external_lex_state = 2}, - [2523] = {.lex_state = 43, .external_lex_state = 2}, - [2524] = {.lex_state = 0, .external_lex_state = 4}, - [2525] = {.lex_state = 0, .external_lex_state = 4}, - [2526] = {.lex_state = 0, .external_lex_state = 4}, - [2527] = {.lex_state = 0, .external_lex_state = 4}, - [2528] = {.lex_state = 0, .external_lex_state = 2}, - [2529] = {.lex_state = 0, .external_lex_state = 4}, + [2496] = {.lex_state = 0, .external_lex_state = 3}, + [2497] = {.lex_state = 11, .external_lex_state = 2}, + [2498] = {.lex_state = 3, .external_lex_state = 4}, + [2499] = {.lex_state = 2, .external_lex_state = 3}, + [2500] = {.lex_state = 3, .external_lex_state = 2}, + [2501] = {.lex_state = 2, .external_lex_state = 2}, + [2502] = {.lex_state = 0, .external_lex_state = 3}, + [2503] = {.lex_state = 2, .external_lex_state = 4}, + [2504] = {.lex_state = 15, .external_lex_state = 4}, + [2505] = {.lex_state = 0, .external_lex_state = 3}, + [2506] = {.lex_state = 2, .external_lex_state = 3}, + [2507] = {.lex_state = 3, .external_lex_state = 2}, + [2508] = {.lex_state = 0, .external_lex_state = 3}, + [2509] = {.lex_state = 3, .external_lex_state = 4}, + [2510] = {.lex_state = 3, .external_lex_state = 2}, + [2511] = {.lex_state = 3, .external_lex_state = 2}, + [2512] = {.lex_state = 3, .external_lex_state = 2}, + [2513] = {.lex_state = 3, .external_lex_state = 2}, + [2514] = {.lex_state = 0, .external_lex_state = 3}, + [2515] = {.lex_state = 3, .external_lex_state = 2}, + [2516] = {.lex_state = 11, .external_lex_state = 2}, + [2517] = {.lex_state = 2, .external_lex_state = 2}, + [2518] = {.lex_state = 3, .external_lex_state = 2}, + [2519] = {.lex_state = 0, .external_lex_state = 3}, + [2520] = {.lex_state = 2, .external_lex_state = 2}, + [2521] = {.lex_state = 9, .external_lex_state = 2}, + [2522] = {.lex_state = 2, .external_lex_state = 2}, + [2523] = {.lex_state = 3, .external_lex_state = 2}, + [2524] = {.lex_state = 3, .external_lex_state = 2}, + [2525] = {.lex_state = 3, .external_lex_state = 2}, + [2526] = {.lex_state = 3, .external_lex_state = 2}, + [2527] = {.lex_state = 3, .external_lex_state = 2}, + [2528] = {.lex_state = 13, .external_lex_state = 2}, + [2529] = {.lex_state = 0, .external_lex_state = 2}, [2530] = {.lex_state = 0, .external_lex_state = 4}, - [2531] = {.lex_state = 0, .external_lex_state = 4}, + [2531] = {.lex_state = 13, .external_lex_state = 2}, [2532] = {.lex_state = 0, .external_lex_state = 2}, - [2533] = {.lex_state = 0, .external_lex_state = 2}, - [2534] = {.lex_state = 0, .external_lex_state = 4}, - [2535] = {.lex_state = 0, .external_lex_state = 4}, + [2533] = {.lex_state = 3, .external_lex_state = 2}, + [2534] = {.lex_state = 2, .external_lex_state = 2}, + [2535] = {.lex_state = 0, .external_lex_state = 3}, [2536] = {.lex_state = 0, .external_lex_state = 2}, [2537] = {.lex_state = 0, .external_lex_state = 4}, [2538] = {.lex_state = 0, .external_lex_state = 4}, - [2539] = {.lex_state = 0, .external_lex_state = 4}, - [2540] = {.lex_state = 3, .external_lex_state = 2}, + [2539] = {.lex_state = 2, .external_lex_state = 2}, + [2540] = {.lex_state = 2, .external_lex_state = 2}, [2541] = {.lex_state = 0, .external_lex_state = 2}, [2542] = {.lex_state = 0, .external_lex_state = 4}, - [2543] = {.lex_state = 0, .external_lex_state = 2}, - [2544] = {.lex_state = 0, .external_lex_state = 4}, - [2545] = {.lex_state = 18, .external_lex_state = 2}, - [2546] = {.lex_state = 0, .external_lex_state = 4}, - [2547] = {.lex_state = 0, .external_lex_state = 2}, - [2548] = {.lex_state = 0, .external_lex_state = 4}, + [2543] = {.lex_state = 2, .external_lex_state = 2}, + [2544] = {.lex_state = 3, .external_lex_state = 4}, + [2545] = {.lex_state = 0, .external_lex_state = 4}, + [2546] = {.lex_state = 2, .external_lex_state = 4}, + [2547] = {.lex_state = 0, .external_lex_state = 4}, + [2548] = {.lex_state = 5, .external_lex_state = 2}, [2549] = {.lex_state = 0, .external_lex_state = 4}, - [2550] = {.lex_state = 0, .external_lex_state = 2}, + [2550] = {.lex_state = 3, .external_lex_state = 2}, [2551] = {.lex_state = 0, .external_lex_state = 4}, - [2552] = {.lex_state = 0, .external_lex_state = 2}, - [2553] = {.lex_state = 0, .external_lex_state = 4}, - [2554] = {.lex_state = 0, .external_lex_state = 4}, - [2555] = {.lex_state = 0, .external_lex_state = 2}, - [2556] = {.lex_state = 43, .external_lex_state = 2}, - [2557] = {.lex_state = 0, .external_lex_state = 4}, - [2558] = {.lex_state = 0, .external_lex_state = 4}, + [2552] = {.lex_state = 2, .external_lex_state = 2}, + [2553] = {.lex_state = 0, .external_lex_state = 3}, + [2554] = {.lex_state = 3, .external_lex_state = 4}, + [2555] = {.lex_state = 0, .external_lex_state = 4}, + [2556] = {.lex_state = 3, .external_lex_state = 4}, + [2557] = {.lex_state = 2, .external_lex_state = 2}, + [2558] = {.lex_state = 2, .external_lex_state = 2}, [2559] = {.lex_state = 0, .external_lex_state = 4}, - [2560] = {.lex_state = 0, .external_lex_state = 4}, - [2561] = {.lex_state = 0, .external_lex_state = 2}, - [2562] = {.lex_state = 0, .external_lex_state = 2}, + [2560] = {.lex_state = 2, .external_lex_state = 2}, + [2561] = {.lex_state = 2, .external_lex_state = 2}, + [2562] = {.lex_state = 5, .external_lex_state = 2}, [2563] = {.lex_state = 0, .external_lex_state = 4}, [2564] = {.lex_state = 0, .external_lex_state = 4}, - [2565] = {.lex_state = 0, .external_lex_state = 2}, - [2566] = {.lex_state = 0, .external_lex_state = 4}, - [2567] = {.lex_state = 0, .external_lex_state = 2}, - [2568] = {.lex_state = 3, .external_lex_state = 2}, - [2569] = {.lex_state = 0, .external_lex_state = 4}, + [2565] = {.lex_state = 2, .external_lex_state = 2}, + [2566] = {.lex_state = 2, .external_lex_state = 2}, + [2567] = {.lex_state = 2, .external_lex_state = 2}, + [2568] = {.lex_state = 0, .external_lex_state = 4}, + [2569] = {.lex_state = 2, .external_lex_state = 2}, [2570] = {.lex_state = 0, .external_lex_state = 4}, - [2571] = {.lex_state = 43, .external_lex_state = 2}, - [2572] = {.lex_state = 0, .external_lex_state = 4}, - [2573] = {.lex_state = 0, .external_lex_state = 4}, - [2574] = {.lex_state = 21, .external_lex_state = 2}, - [2575] = {.lex_state = 0, .external_lex_state = 4}, - [2576] = {.lex_state = 0, .external_lex_state = 4}, + [2571] = {.lex_state = 2, .external_lex_state = 2}, + [2572] = {.lex_state = 2, .external_lex_state = 2}, + [2573] = {.lex_state = 3, .external_lex_state = 4}, + [2574] = {.lex_state = 0, .external_lex_state = 4}, + [2575] = {.lex_state = 2, .external_lex_state = 2}, + [2576] = {.lex_state = 2, .external_lex_state = 2}, [2577] = {.lex_state = 0, .external_lex_state = 4}, - [2578] = {.lex_state = 0, .external_lex_state = 4}, - [2579] = {.lex_state = 0, .external_lex_state = 4}, - [2580] = {.lex_state = 0, .external_lex_state = 4}, - [2581] = {.lex_state = 0, .external_lex_state = 2}, - [2582] = {.lex_state = 21, .external_lex_state = 2}, - [2583] = {.lex_state = 43, .external_lex_state = 2}, + [2578] = {.lex_state = 3, .external_lex_state = 2}, + [2579] = {.lex_state = 2, .external_lex_state = 2}, + [2580] = {.lex_state = 3, .external_lex_state = 4}, + [2581] = {.lex_state = 0, .external_lex_state = 4}, + [2582] = {.lex_state = 0, .external_lex_state = 4}, + [2583] = {.lex_state = 0, .external_lex_state = 2}, [2584] = {.lex_state = 0, .external_lex_state = 4}, - [2585] = {.lex_state = 0, .external_lex_state = 2}, - [2586] = {.lex_state = 0, .external_lex_state = 2}, + [2585] = {.lex_state = 0, .external_lex_state = 4}, + [2586] = {.lex_state = 0, .external_lex_state = 4}, [2587] = {.lex_state = 0, .external_lex_state = 4}, - [2588] = {.lex_state = 0, .external_lex_state = 4}, - [2589] = {.lex_state = 0, .external_lex_state = 2}, - [2590] = {.lex_state = 0, .external_lex_state = 2}, - [2591] = {.lex_state = 0, .external_lex_state = 4}, - [2592] = {.lex_state = 0, .external_lex_state = 4}, - [2593] = {.lex_state = 0, .external_lex_state = 3}, - [2594] = {.lex_state = 0, .external_lex_state = 2}, - [2595] = {.lex_state = 0, .external_lex_state = 2}, - [2596] = {.lex_state = 0, .external_lex_state = 2}, - [2597] = {.lex_state = 0, .external_lex_state = 2}, - [2598] = {.lex_state = 0, .external_lex_state = 4}, - [2599] = {.lex_state = 18, .external_lex_state = 2}, - [2600] = {.lex_state = 0, .external_lex_state = 4}, - [2601] = {.lex_state = 0, .external_lex_state = 2}, - [2602] = {.lex_state = 0, .external_lex_state = 4}, - [2603] = {.lex_state = 0, .external_lex_state = 4}, - [2604] = {.lex_state = 0, .external_lex_state = 4}, - [2605] = {.lex_state = 43, .external_lex_state = 2}, + [2588] = {.lex_state = 0, .external_lex_state = 3}, + [2589] = {.lex_state = 2, .external_lex_state = 2}, + [2590] = {.lex_state = 0, .external_lex_state = 4}, + [2591] = {.lex_state = 2, .external_lex_state = 2}, + [2592] = {.lex_state = 2, .external_lex_state = 2}, + [2593] = {.lex_state = 2, .external_lex_state = 2}, + [2594] = {.lex_state = 0, .external_lex_state = 4}, + [2595] = {.lex_state = 2, .external_lex_state = 2}, + [2596] = {.lex_state = 0, .external_lex_state = 4}, + [2597] = {.lex_state = 0, .external_lex_state = 4}, + [2598] = {.lex_state = 2, .external_lex_state = 2}, + [2599] = {.lex_state = 2, .external_lex_state = 2}, + [2600] = {.lex_state = 3, .external_lex_state = 4}, + [2601] = {.lex_state = 0, .external_lex_state = 4}, + [2602] = {.lex_state = 2, .external_lex_state = 4}, + [2603] = {.lex_state = 3, .external_lex_state = 2}, + [2604] = {.lex_state = 2, .external_lex_state = 2}, + [2605] = {.lex_state = 2, .external_lex_state = 2}, [2606] = {.lex_state = 0, .external_lex_state = 4}, - [2607] = {.lex_state = 0, .external_lex_state = 4}, - [2608] = {.lex_state = 0, .external_lex_state = 2}, - [2609] = {.lex_state = 0, .external_lex_state = 2}, - [2610] = {.lex_state = 3, .external_lex_state = 2}, - [2611] = {.lex_state = 0, .external_lex_state = 2}, - [2612] = {.lex_state = 43, .external_lex_state = 2}, - [2613] = {.lex_state = 0, .external_lex_state = 2}, + [2607] = {.lex_state = 0, .external_lex_state = 2}, + [2608] = {.lex_state = 0, .external_lex_state = 4}, + [2609] = {.lex_state = 0, .external_lex_state = 4}, + [2610] = {.lex_state = 0, .external_lex_state = 4}, + [2611] = {.lex_state = 2, .external_lex_state = 2}, + [2612] = {.lex_state = 0, .external_lex_state = 4}, + [2613] = {.lex_state = 0, .external_lex_state = 4}, [2614] = {.lex_state = 0, .external_lex_state = 4}, - [2615] = {.lex_state = 0, .external_lex_state = 2}, - [2616] = {.lex_state = 0, .external_lex_state = 4}, - [2617] = {.lex_state = 43, .external_lex_state = 2}, + [2615] = {.lex_state = 2, .external_lex_state = 2}, + [2616] = {.lex_state = 3, .external_lex_state = 2}, + [2617] = {.lex_state = 2, .external_lex_state = 2}, [2618] = {.lex_state = 0, .external_lex_state = 4}, - [2619] = {.lex_state = 0, .external_lex_state = 2}, - [2620] = {.lex_state = 0, .external_lex_state = 2}, - [2621] = {.lex_state = 0, .external_lex_state = 4}, - [2622] = {.lex_state = 0, .external_lex_state = 4}, - [2623] = {.lex_state = 0, .external_lex_state = 4}, - [2624] = {.lex_state = 0, .external_lex_state = 2}, - [2625] = {.lex_state = 0, .external_lex_state = 2}, + [2619] = {.lex_state = 0, .external_lex_state = 4}, + [2620] = {.lex_state = 2, .external_lex_state = 4}, + [2621] = {.lex_state = 2, .external_lex_state = 2}, + [2622] = {.lex_state = 2, .external_lex_state = 2}, + [2623] = {.lex_state = 2, .external_lex_state = 2}, + [2624] = {.lex_state = 0, .external_lex_state = 4}, + [2625] = {.lex_state = 3, .external_lex_state = 2}, [2626] = {.lex_state = 0, .external_lex_state = 4}, [2627] = {.lex_state = 0, .external_lex_state = 4}, - [2628] = {.lex_state = 0, .external_lex_state = 4}, + [2628] = {.lex_state = 2, .external_lex_state = 2}, [2629] = {.lex_state = 0, .external_lex_state = 4}, - [2630] = {.lex_state = 0, .external_lex_state = 4}, - [2631] = {.lex_state = 0, .external_lex_state = 2}, + [2630] = {.lex_state = 3, .external_lex_state = 2}, + [2631] = {.lex_state = 0, .external_lex_state = 4}, [2632] = {.lex_state = 0, .external_lex_state = 4}, - [2633] = {.lex_state = 0, .external_lex_state = 4}, + [2633] = {.lex_state = 5, .external_lex_state = 2}, [2634] = {.lex_state = 0, .external_lex_state = 4}, - [2635] = {.lex_state = 0, .external_lex_state = 4}, - [2636] = {.lex_state = 0, .external_lex_state = 4}, + [2635] = {.lex_state = 2, .external_lex_state = 4}, + [2636] = {.lex_state = 2, .external_lex_state = 4}, [2637] = {.lex_state = 0, .external_lex_state = 2}, - [2638] = {.lex_state = 0, .external_lex_state = 2}, - [2639] = {.lex_state = 0, .external_lex_state = 2}, + [2638] = {.lex_state = 0, .external_lex_state = 4}, + [2639] = {.lex_state = 2, .external_lex_state = 2}, [2640] = {.lex_state = 0, .external_lex_state = 4}, - [2641] = {.lex_state = 0, .external_lex_state = 2}, + [2641] = {.lex_state = 0, .external_lex_state = 4}, [2642] = {.lex_state = 0, .external_lex_state = 4}, [2643] = {.lex_state = 0, .external_lex_state = 2}, - [2644] = {.lex_state = 0, .external_lex_state = 4}, + [2644] = {.lex_state = 3, .external_lex_state = 2}, [2645] = {.lex_state = 0, .external_lex_state = 4}, - [2646] = {.lex_state = 5, .external_lex_state = 2}, - [2647] = {.lex_state = 0, .external_lex_state = 2}, + [2646] = {.lex_state = 0, .external_lex_state = 4}, + [2647] = {.lex_state = 0, .external_lex_state = 4}, [2648] = {.lex_state = 0, .external_lex_state = 4}, - [2649] = {.lex_state = 0, .external_lex_state = 2}, - [2650] = {.lex_state = 0, .external_lex_state = 4}, - [2651] = {.lex_state = 0, .external_lex_state = 2}, - [2652] = {.lex_state = 0, .external_lex_state = 2}, + [2649] = {.lex_state = 0, .external_lex_state = 4}, + [2650] = {.lex_state = 15, .external_lex_state = 2}, + [2651] = {.lex_state = 0, .external_lex_state = 4}, + [2652] = {.lex_state = 0, .external_lex_state = 4}, [2653] = {.lex_state = 0, .external_lex_state = 2}, [2654] = {.lex_state = 0, .external_lex_state = 4}, [2655] = {.lex_state = 0, .external_lex_state = 4}, [2656] = {.lex_state = 0, .external_lex_state = 4}, [2657] = {.lex_state = 0, .external_lex_state = 4}, - [2658] = {.lex_state = 0, .external_lex_state = 4}, - [2659] = {.lex_state = 0, .external_lex_state = 4}, + [2658] = {.lex_state = 3, .external_lex_state = 3}, + [2659] = {.lex_state = 0, .external_lex_state = 2}, [2660] = {.lex_state = 0, .external_lex_state = 4}, - [2661] = {.lex_state = 0, .external_lex_state = 2}, - [2662] = {.lex_state = 0, .external_lex_state = 2}, - [2663] = {.lex_state = 0, .external_lex_state = 2}, - [2664] = {.lex_state = 0, .external_lex_state = 4}, - [2665] = {.lex_state = 0, .external_lex_state = 4}, - [2666] = {.lex_state = 0, .external_lex_state = 4}, - [2667] = {.lex_state = 0, .external_lex_state = 2}, - [2668] = {.lex_state = 0, .external_lex_state = 2}, - [2669] = {.lex_state = 0, .external_lex_state = 2}, - [2670] = {.lex_state = 0, .external_lex_state = 4}, - [2671] = {.lex_state = 0, .external_lex_state = 2}, - [2672] = {.lex_state = 0, .external_lex_state = 4}, - [2673] = {.lex_state = 0, .external_lex_state = 4}, - [2674] = {.lex_state = 0, .external_lex_state = 2}, + [2661] = {.lex_state = 3, .external_lex_state = 2}, + [2662] = {.lex_state = 2, .external_lex_state = 2}, + [2663] = {.lex_state = 2, .external_lex_state = 2}, + [2664] = {.lex_state = 2, .external_lex_state = 2}, + [2665] = {.lex_state = 2, .external_lex_state = 4}, + [2666] = {.lex_state = 2, .external_lex_state = 2}, + [2667] = {.lex_state = 0, .external_lex_state = 4}, + [2668] = {.lex_state = 2, .external_lex_state = 4}, + [2669] = {.lex_state = 0, .external_lex_state = 4}, + [2670] = {.lex_state = 3, .external_lex_state = 4}, + [2671] = {.lex_state = 5, .external_lex_state = 2}, + [2672] = {.lex_state = 0, .external_lex_state = 3}, + [2673] = {.lex_state = 2, .external_lex_state = 4}, + [2674] = {.lex_state = 0, .external_lex_state = 4}, [2675] = {.lex_state = 0, .external_lex_state = 4}, [2676] = {.lex_state = 0, .external_lex_state = 4}, [2677] = {.lex_state = 0, .external_lex_state = 4}, - [2678] = {.lex_state = 0, .external_lex_state = 2}, - [2679] = {.lex_state = 0, .external_lex_state = 2}, + [2678] = {.lex_state = 0, .external_lex_state = 4}, + [2679] = {.lex_state = 2, .external_lex_state = 2}, [2680] = {.lex_state = 0, .external_lex_state = 4}, - [2681] = {.lex_state = 0, .external_lex_state = 4}, - [2682] = {.lex_state = 0, .external_lex_state = 2}, - [2683] = {.lex_state = 0, .external_lex_state = 4}, + [2681] = {.lex_state = 15, .external_lex_state = 2}, + [2682] = {.lex_state = 0, .external_lex_state = 4}, + [2683] = {.lex_state = 0, .external_lex_state = 2}, [2684] = {.lex_state = 0, .external_lex_state = 4}, [2685] = {.lex_state = 0, .external_lex_state = 4}, - [2686] = {.lex_state = 0, .external_lex_state = 4}, - [2687] = {.lex_state = 0, .external_lex_state = 4}, - [2688] = {.lex_state = 0, .external_lex_state = 2}, - [2689] = {.lex_state = 0, .external_lex_state = 2}, + [2686] = {.lex_state = 5, .external_lex_state = 2}, + [2687] = {.lex_state = 3, .external_lex_state = 2}, + [2688] = {.lex_state = 2, .external_lex_state = 2}, + [2689] = {.lex_state = 11, .external_lex_state = 2}, [2690] = {.lex_state = 0, .external_lex_state = 4}, - [2691] = {.lex_state = 0, .external_lex_state = 4}, - [2692] = {.lex_state = 0, .external_lex_state = 2}, - [2693] = {.lex_state = 0, .external_lex_state = 4}, - [2694] = {.lex_state = 0, .external_lex_state = 4}, - [2695] = {.lex_state = 0, .external_lex_state = 4}, - [2696] = {.lex_state = 0, .external_lex_state = 4}, - [2697] = {.lex_state = 0, .external_lex_state = 4}, + [2691] = {.lex_state = 0, .external_lex_state = 3}, + [2692] = {.lex_state = 0, .external_lex_state = 4}, + [2693] = {.lex_state = 2, .external_lex_state = 4}, + [2694] = {.lex_state = 2, .external_lex_state = 2}, + [2695] = {.lex_state = 2, .external_lex_state = 4}, + [2696] = {.lex_state = 5, .external_lex_state = 2}, + [2697] = {.lex_state = 2, .external_lex_state = 2}, [2698] = {.lex_state = 0, .external_lex_state = 4}, - [2699] = {.lex_state = 0, .external_lex_state = 4}, + [2699] = {.lex_state = 2, .external_lex_state = 2}, [2700] = {.lex_state = 0, .external_lex_state = 2}, - [2701] = {.lex_state = 0, .external_lex_state = 2}, - [2702] = {.lex_state = 0, .external_lex_state = 4}, - [2703] = {.lex_state = 0, .external_lex_state = 4}, + [2701] = {.lex_state = 0, .external_lex_state = 3}, + [2702] = {.lex_state = 2, .external_lex_state = 1}, + [2703] = {.lex_state = 0, .external_lex_state = 2}, [2704] = {.lex_state = 0, .external_lex_state = 4}, - [2705] = {.lex_state = 0, .external_lex_state = 4}, + [2705] = {.lex_state = 15, .external_lex_state = 2}, [2706] = {.lex_state = 0, .external_lex_state = 4}, - [2707] = {.lex_state = 0, .external_lex_state = 4}, - [2708] = {.lex_state = 0, .external_lex_state = 4}, + [2707] = {.lex_state = 15, .external_lex_state = 2}, + [2708] = {.lex_state = 11, .external_lex_state = 2}, [2709] = {.lex_state = 0, .external_lex_state = 4}, - [2710] = {.lex_state = 0, .external_lex_state = 4}, + [2710] = {.lex_state = 2, .external_lex_state = 2}, [2711] = {.lex_state = 0, .external_lex_state = 2}, - [2712] = {.lex_state = 0, .external_lex_state = 4}, - [2713] = {.lex_state = 0, .external_lex_state = 4}, - [2714] = {.lex_state = 0, .external_lex_state = 4}, + [2712] = {.lex_state = 0, .external_lex_state = 3}, + [2713] = {.lex_state = 0, .external_lex_state = 2}, + [2714] = {.lex_state = 0, .external_lex_state = 2}, [2715] = {.lex_state = 0, .external_lex_state = 4}, - [2716] = {.lex_state = 0, .external_lex_state = 4}, - [2717] = {.lex_state = 0, .external_lex_state = 2}, - [2718] = {.lex_state = 0, .external_lex_state = 4}, - [2719] = {.lex_state = 0, .external_lex_state = 2}, + [2716] = {.lex_state = 2, .external_lex_state = 2}, + [2717] = {.lex_state = 0, .external_lex_state = 4}, + [2718] = {.lex_state = 3, .external_lex_state = 2}, + [2719] = {.lex_state = 2, .external_lex_state = 2}, [2720] = {.lex_state = 0, .external_lex_state = 4}, - [2721] = {.lex_state = 0, .external_lex_state = 2}, - [2722] = {.lex_state = 5, .external_lex_state = 2}, + [2721] = {.lex_state = 2, .external_lex_state = 2}, + [2722] = {.lex_state = 3, .external_lex_state = 4}, [2723] = {.lex_state = 0, .external_lex_state = 4}, - [2724] = {.lex_state = 0, .external_lex_state = 2}, + [2724] = {.lex_state = 3, .external_lex_state = 4}, [2725] = {.lex_state = 0, .external_lex_state = 4}, - [2726] = {.lex_state = 0, .external_lex_state = 2}, - [2727] = {.lex_state = 0, .external_lex_state = 4}, - [2728] = {.lex_state = 0, .external_lex_state = 2}, + [2726] = {.lex_state = 0, .external_lex_state = 4}, + [2727] = {.lex_state = 0, .external_lex_state = 2}, + [2728] = {.lex_state = 2, .external_lex_state = 2}, [2729] = {.lex_state = 0, .external_lex_state = 4}, - [2730] = {.lex_state = 0, .external_lex_state = 4}, - [2731] = {.lex_state = 0, .external_lex_state = 4}, - [2732] = {.lex_state = 0, .external_lex_state = 4}, + [2730] = {.lex_state = 2, .external_lex_state = 2}, + [2731] = {.lex_state = 2, .external_lex_state = 2}, + [2732] = {.lex_state = 3, .external_lex_state = 4}, [2733] = {.lex_state = 0, .external_lex_state = 4}, - [2734] = {.lex_state = 0, .external_lex_state = 4}, - [2735] = {.lex_state = 0, .external_lex_state = 4}, - [2736] = {.lex_state = 0, .external_lex_state = 4}, - [2737] = {.lex_state = 0, .external_lex_state = 4}, + [2734] = {.lex_state = 2, .external_lex_state = 2}, + [2735] = {.lex_state = 2, .external_lex_state = 4}, + [2736] = {.lex_state = 2, .external_lex_state = 2}, + [2737] = {.lex_state = 2, .external_lex_state = 2}, [2738] = {.lex_state = 0, .external_lex_state = 4}, [2739] = {.lex_state = 0, .external_lex_state = 4}, - [2740] = {.lex_state = 0, .external_lex_state = 2}, - [2741] = {.lex_state = 0, .external_lex_state = 2}, + [2740] = {.lex_state = 2, .external_lex_state = 1}, + [2741] = {.lex_state = 0, .external_lex_state = 4}, [2742] = {.lex_state = 0, .external_lex_state = 4}, - [2743] = {.lex_state = 0, .external_lex_state = 2}, - [2744] = {.lex_state = 0, .external_lex_state = 4}, - [2745] = {.lex_state = 0, .external_lex_state = 2}, - [2746] = {.lex_state = 0, .external_lex_state = 4}, - [2747] = {.lex_state = 0, .external_lex_state = 2}, - [2748] = {.lex_state = 0, .external_lex_state = 2}, - [2749] = {.lex_state = 0, .external_lex_state = 4}, - [2750] = {.lex_state = 0, .external_lex_state = 4}, - [2751] = {.lex_state = 0, .external_lex_state = 2}, - [2752] = {.lex_state = 0, .external_lex_state = 4}, + [2743] = {.lex_state = 3, .external_lex_state = 4}, + [2744] = {.lex_state = 0, .external_lex_state = 2}, + [2745] = {.lex_state = 3, .external_lex_state = 2}, + [2746] = {.lex_state = 3, .external_lex_state = 2}, + [2747] = {.lex_state = 0, .external_lex_state = 4}, + [2748] = {.lex_state = 0, .external_lex_state = 4}, + [2749] = {.lex_state = 0, .external_lex_state = 3}, + [2750] = {.lex_state = 0, .external_lex_state = 3}, + [2751] = {.lex_state = 5, .external_lex_state = 2}, + [2752] = {.lex_state = 3, .external_lex_state = 2}, [2753] = {.lex_state = 0, .external_lex_state = 4}, - [2754] = {.lex_state = 0, .external_lex_state = 4}, + [2754] = {.lex_state = 2, .external_lex_state = 4}, [2755] = {.lex_state = 0, .external_lex_state = 4}, - [2756] = {.lex_state = 0, .external_lex_state = 2}, - [2757] = {.lex_state = 0, .external_lex_state = 2}, - [2758] = {.lex_state = 0, .external_lex_state = 2}, - [2759] = {.lex_state = 0, .external_lex_state = 2}, - [2760] = {.lex_state = 0, .external_lex_state = 4}, - [2761] = {.lex_state = 0, .external_lex_state = 4}, - [2762] = {.lex_state = 0, .external_lex_state = 2}, + [2756] = {.lex_state = 2, .external_lex_state = 4}, + [2757] = {.lex_state = 0, .external_lex_state = 4}, + [2758] = {.lex_state = 2, .external_lex_state = 4}, + [2759] = {.lex_state = 5, .external_lex_state = 2}, + [2760] = {.lex_state = 2, .external_lex_state = 2}, + [2761] = {.lex_state = 2, .external_lex_state = 2}, + [2762] = {.lex_state = 2, .external_lex_state = 2}, [2763] = {.lex_state = 0, .external_lex_state = 4}, - [2764] = {.lex_state = 0, .external_lex_state = 2}, - [2765] = {.lex_state = 0, .external_lex_state = 2}, - [2766] = {.lex_state = 0, .external_lex_state = 2}, - [2767] = {.lex_state = 0, .external_lex_state = 4}, + [2764] = {.lex_state = 2, .external_lex_state = 4}, + [2765] = {.lex_state = 0, .external_lex_state = 3}, + [2766] = {.lex_state = 0, .external_lex_state = 4}, + [2767] = {.lex_state = 3, .external_lex_state = 2}, [2768] = {.lex_state = 0, .external_lex_state = 2}, - [2769] = {.lex_state = 0, .external_lex_state = 2}, + [2769] = {.lex_state = 2, .external_lex_state = 4}, [2770] = {.lex_state = 0, .external_lex_state = 4}, - [2771] = {.lex_state = 0, .external_lex_state = 2}, - [2772] = {.lex_state = 0, .external_lex_state = 2}, + [2771] = {.lex_state = 0, .external_lex_state = 4}, + [2772] = {.lex_state = 2, .external_lex_state = 4}, [2773] = {.lex_state = 0, .external_lex_state = 2}, [2774] = {.lex_state = 0, .external_lex_state = 4}, - [2775] = {.lex_state = 0, .external_lex_state = 4}, - [2776] = {.lex_state = 0, .external_lex_state = 2}, - [2777] = {.lex_state = 0, .external_lex_state = 4}, - [2778] = {.lex_state = 0, .external_lex_state = 2}, - [2779] = {.lex_state = 0, .external_lex_state = 2}, - [2780] = {.lex_state = 0, .external_lex_state = 4}, - [2781] = {.lex_state = 0, .external_lex_state = 2}, + [2775] = {.lex_state = 5, .external_lex_state = 2}, + [2776] = {.lex_state = 2, .external_lex_state = 4}, + [2777] = {.lex_state = 2, .external_lex_state = 4}, + [2778] = {.lex_state = 2, .external_lex_state = 4}, + [2779] = {.lex_state = 2, .external_lex_state = 4}, + [2780] = {.lex_state = 0, .external_lex_state = 2}, + [2781] = {.lex_state = 2, .external_lex_state = 2}, [2782] = {.lex_state = 0, .external_lex_state = 4}, [2783] = {.lex_state = 0, .external_lex_state = 2}, - [2784] = {.lex_state = 0, .external_lex_state = 2}, - [2785] = {.lex_state = 0, .external_lex_state = 2}, + [2784] = {.lex_state = 2, .external_lex_state = 2}, + [2785] = {.lex_state = 3, .external_lex_state = 4}, [2786] = {.lex_state = 0, .external_lex_state = 4}, - [2787] = {.lex_state = 0, .external_lex_state = 2}, - [2788] = {.lex_state = 0, .external_lex_state = 2}, - [2789] = {.lex_state = 0, .external_lex_state = 2}, + [2787] = {.lex_state = 2, .external_lex_state = 4}, + [2788] = {.lex_state = 0, .external_lex_state = 4}, + [2789] = {.lex_state = 2, .external_lex_state = 4}, [2790] = {.lex_state = 0, .external_lex_state = 4}, - [2791] = {.lex_state = 0, .external_lex_state = 2}, - [2792] = {.lex_state = 0, .external_lex_state = 2}, - [2793] = {.lex_state = 0, .external_lex_state = 2}, - [2794] = {.lex_state = 0, .external_lex_state = 4}, - [2795] = {.lex_state = 0, .external_lex_state = 2}, - [2796] = {.lex_state = 0, .external_lex_state = 2}, - [2797] = {.lex_state = 0, .external_lex_state = 2}, + [2791] = {.lex_state = 0, .external_lex_state = 4}, + [2792] = {.lex_state = 0, .external_lex_state = 4}, + [2793] = {.lex_state = 2, .external_lex_state = 4}, + [2794] = {.lex_state = 2, .external_lex_state = 4}, + [2795] = {.lex_state = 2, .external_lex_state = 4}, + [2796] = {.lex_state = 2, .external_lex_state = 4}, + [2797] = {.lex_state = 2, .external_lex_state = 2}, [2798] = {.lex_state = 0, .external_lex_state = 4}, - [2799] = {.lex_state = 0, .external_lex_state = 2}, - [2800] = {.lex_state = 0, .external_lex_state = 2}, - [2801] = {.lex_state = 0, .external_lex_state = 2}, - [2802] = {.lex_state = 0, .external_lex_state = 4}, - [2803] = {.lex_state = 0, .external_lex_state = 2}, + [2799] = {.lex_state = 2, .external_lex_state = 2}, + [2800] = {.lex_state = 0, .external_lex_state = 4}, + [2801] = {.lex_state = 3, .external_lex_state = 4}, + [2802] = {.lex_state = 0, .external_lex_state = 2}, + [2803] = {.lex_state = 0, .external_lex_state = 4}, [2804] = {.lex_state = 0, .external_lex_state = 2}, - [2805] = {.lex_state = 0, .external_lex_state = 4}, - [2806] = {.lex_state = 0, .external_lex_state = 4}, - [2807] = {.lex_state = 0, .external_lex_state = 2}, - [2808] = {.lex_state = 0, .external_lex_state = 2}, - [2809] = {.lex_state = 0, .external_lex_state = 2}, - [2810] = {.lex_state = 0, .external_lex_state = 4}, - [2811] = {.lex_state = 0, .external_lex_state = 2}, - [2812] = {.lex_state = 0, .external_lex_state = 2}, + [2805] = {.lex_state = 2, .external_lex_state = 2}, + [2806] = {.lex_state = 0, .external_lex_state = 2}, + [2807] = {.lex_state = 2, .external_lex_state = 4}, + [2808] = {.lex_state = 2, .external_lex_state = 4}, + [2809] = {.lex_state = 2, .external_lex_state = 4}, + [2810] = {.lex_state = 15, .external_lex_state = 2}, + [2811] = {.lex_state = 0, .external_lex_state = 4}, + [2812] = {.lex_state = 2, .external_lex_state = 2}, [2813] = {.lex_state = 0, .external_lex_state = 4}, [2814] = {.lex_state = 0, .external_lex_state = 4}, - [2815] = {.lex_state = 0, .external_lex_state = 2}, - [2816] = {.lex_state = 0, .external_lex_state = 2}, - [2817] = {.lex_state = 0, .external_lex_state = 2}, + [2815] = {.lex_state = 0, .external_lex_state = 4}, + [2816] = {.lex_state = 0, .external_lex_state = 4}, + [2817] = {.lex_state = 2, .external_lex_state = 2}, [2818] = {.lex_state = 0, .external_lex_state = 4}, - [2819] = {.lex_state = 0, .external_lex_state = 2}, - [2820] = {.lex_state = 0, .external_lex_state = 2}, - [2821] = {.lex_state = 0, .external_lex_state = 2}, - [2822] = {.lex_state = 0, .external_lex_state = 4}, - [2823] = {.lex_state = 0, .external_lex_state = 2}, - [2824] = {.lex_state = 0, .external_lex_state = 2}, - [2825] = {.lex_state = 0, .external_lex_state = 2}, - [2826] = {.lex_state = 21, .external_lex_state = 2}, - [2827] = {.lex_state = 0, .external_lex_state = 2}, - [2828] = {.lex_state = 0, .external_lex_state = 2}, - [2829] = {.lex_state = 0, .external_lex_state = 2}, - [2830] = {.lex_state = 0, .external_lex_state = 2}, - [2831] = {.lex_state = 0, .external_lex_state = 2}, - [2832] = {.lex_state = 0, .external_lex_state = 2}, - [2833] = {.lex_state = 0, .external_lex_state = 4}, - [2834] = {.lex_state = 0, .external_lex_state = 2}, - [2835] = {.lex_state = 0, .external_lex_state = 2}, - [2836] = {.lex_state = 0, .external_lex_state = 2}, - [2837] = {.lex_state = 0, .external_lex_state = 2}, - [2838] = {.lex_state = 0, .external_lex_state = 2}, - [2839] = {.lex_state = 0, .external_lex_state = 2}, - [2840] = {.lex_state = 0, .external_lex_state = 2}, - [2841] = {.lex_state = 0, .external_lex_state = 4}, - [2842] = {.lex_state = 0, .external_lex_state = 2}, - [2843] = {.lex_state = 0, .external_lex_state = 2}, + [2819] = {.lex_state = 2, .external_lex_state = 2}, + [2820] = {.lex_state = 3, .external_lex_state = 2}, + [2821] = {.lex_state = 5, .external_lex_state = 2}, + [2822] = {.lex_state = 3, .external_lex_state = 2}, + [2823] = {.lex_state = 0, .external_lex_state = 4}, + [2824] = {.lex_state = 2, .external_lex_state = 4}, + [2825] = {.lex_state = 0, .external_lex_state = 4}, + [2826] = {.lex_state = 2, .external_lex_state = 2}, + [2827] = {.lex_state = 2, .external_lex_state = 2}, + [2828] = {.lex_state = 2, .external_lex_state = 2}, + [2829] = {.lex_state = 0, .external_lex_state = 4}, + [2830] = {.lex_state = 0, .external_lex_state = 4}, + [2831] = {.lex_state = 0, .external_lex_state = 4}, + [2832] = {.lex_state = 0, .external_lex_state = 4}, + [2833] = {.lex_state = 5, .external_lex_state = 2}, + [2834] = {.lex_state = 2, .external_lex_state = 4}, + [2835] = {.lex_state = 15, .external_lex_state = 2}, + [2836] = {.lex_state = 2, .external_lex_state = 2}, + [2837] = {.lex_state = 15, .external_lex_state = 2}, + [2838] = {.lex_state = 0, .external_lex_state = 4}, + [2839] = {.lex_state = 0, .external_lex_state = 4}, + [2840] = {.lex_state = 15, .external_lex_state = 2}, + [2841] = {.lex_state = 15, .external_lex_state = 2}, + [2842] = {.lex_state = 15, .external_lex_state = 2}, + [2843] = {.lex_state = 0, .external_lex_state = 3}, [2844] = {.lex_state = 0, .external_lex_state = 2}, - [2845] = {.lex_state = 0, .external_lex_state = 4}, - [2846] = {.lex_state = 0, .external_lex_state = 4}, + [2845] = {.lex_state = 3, .external_lex_state = 2}, + [2846] = {.lex_state = 0, .external_lex_state = 2}, [2847] = {.lex_state = 0, .external_lex_state = 4}, - [2848] = {.lex_state = 0, .external_lex_state = 4}, - [2849] = {.lex_state = 0, .external_lex_state = 4}, - [2850] = {.lex_state = 0, .external_lex_state = 4}, - [2851] = {.lex_state = 0, .external_lex_state = 4}, - [2852] = {.lex_state = 0, .external_lex_state = 4}, - [2853] = {.lex_state = 0, .external_lex_state = 2}, - [2854] = {.lex_state = 5, .external_lex_state = 2}, - [2855] = {.lex_state = 0, .external_lex_state = 4}, - [2856] = {.lex_state = 0, .external_lex_state = 4}, - [2857] = {.lex_state = 5, .external_lex_state = 2}, - [2858] = {.lex_state = 0, .external_lex_state = 4}, - [2859] = {.lex_state = 0, .external_lex_state = 4}, - [2860] = {.lex_state = 0, .external_lex_state = 4}, - [2861] = {.lex_state = 0, .external_lex_state = 4}, - [2862] = {.lex_state = 0, .external_lex_state = 4}, + [2848] = {.lex_state = 15, .external_lex_state = 2}, + [2849] = {.lex_state = 0, .external_lex_state = 2}, + [2850] = {.lex_state = 2, .external_lex_state = 2}, + [2851] = {.lex_state = 0, .external_lex_state = 2}, + [2852] = {.lex_state = 2, .external_lex_state = 3}, + [2853] = {.lex_state = 3, .external_lex_state = 2}, + [2854] = {.lex_state = 0, .external_lex_state = 2}, + [2855] = {.lex_state = 15, .external_lex_state = 2}, + [2856] = {.lex_state = 2, .external_lex_state = 2}, + [2857] = {.lex_state = 0, .external_lex_state = 2}, + [2858] = {.lex_state = 2, .external_lex_state = 2}, + [2859] = {.lex_state = 0, .external_lex_state = 2}, + [2860] = {.lex_state = 2, .external_lex_state = 2}, + [2861] = {.lex_state = 15, .external_lex_state = 2}, + [2862] = {.lex_state = 3, .external_lex_state = 2}, [2863] = {.lex_state = 0, .external_lex_state = 4}, - [2864] = {.lex_state = 0, .external_lex_state = 4}, - [2865] = {.lex_state = 0, .external_lex_state = 4}, + [2864] = {.lex_state = 2, .external_lex_state = 3}, + [2865] = {.lex_state = 15, .external_lex_state = 2}, [2866] = {.lex_state = 0, .external_lex_state = 2}, [2867] = {.lex_state = 0, .external_lex_state = 4}, - [2868] = {.lex_state = 0, .external_lex_state = 4}, - [2869] = {.lex_state = 0, .external_lex_state = 4}, - [2870] = {.lex_state = 0, .external_lex_state = 4}, + [2868] = {.lex_state = 15, .external_lex_state = 2}, + [2869] = {.lex_state = 15, .external_lex_state = 2}, + [2870] = {.lex_state = 15, .external_lex_state = 2}, [2871] = {.lex_state = 0, .external_lex_state = 2}, - [2872] = {.lex_state = 0, .external_lex_state = 2}, + [2872] = {.lex_state = 15, .external_lex_state = 2}, [2873] = {.lex_state = 0, .external_lex_state = 2}, - [2874] = {.lex_state = 0, .external_lex_state = 2}, + [2874] = {.lex_state = 15, .external_lex_state = 2}, [2875] = {.lex_state = 0, .external_lex_state = 2}, [2876] = {.lex_state = 0, .external_lex_state = 2}, [2877] = {.lex_state = 0, .external_lex_state = 2}, - [2878] = {.lex_state = 0, .external_lex_state = 2}, + [2878] = {.lex_state = 15, .external_lex_state = 2}, [2879] = {.lex_state = 0, .external_lex_state = 2}, - [2880] = {.lex_state = 0, .external_lex_state = 4}, + [2880] = {.lex_state = 2, .external_lex_state = 2}, [2881] = {.lex_state = 0, .external_lex_state = 2}, [2882] = {.lex_state = 0, .external_lex_state = 2}, [2883] = {.lex_state = 0, .external_lex_state = 2}, - [2884] = {.lex_state = 0, .external_lex_state = 4}, + [2884] = {.lex_state = 0, .external_lex_state = 2}, [2885] = {.lex_state = 0, .external_lex_state = 2}, [2886] = {.lex_state = 0, .external_lex_state = 2}, - [2887] = {.lex_state = 0, .external_lex_state = 2}, + [2887] = {.lex_state = 15, .external_lex_state = 2}, [2888] = {.lex_state = 0, .external_lex_state = 2}, - [2889] = {.lex_state = 0, .external_lex_state = 4}, - [2890] = {.lex_state = 0, .external_lex_state = 4}, - [2891] = {.lex_state = 0, .external_lex_state = 2}, + [2889] = {.lex_state = 2, .external_lex_state = 2}, + [2890] = {.lex_state = 2, .external_lex_state = 2}, + [2891] = {.lex_state = 15, .external_lex_state = 2}, + [2892] = {.lex_state = 0, .external_lex_state = 2}, + [2893] = {.lex_state = 3, .external_lex_state = 2}, + [2894] = {.lex_state = 3, .external_lex_state = 2}, + [2895] = {.lex_state = 15, .external_lex_state = 2}, + [2896] = {.lex_state = 0, .external_lex_state = 3}, + [2897] = {.lex_state = 0, .external_lex_state = 2}, + [2898] = {.lex_state = 2, .external_lex_state = 2}, + [2899] = {.lex_state = 0, .external_lex_state = 2}, + [2900] = {.lex_state = 0, .external_lex_state = 2}, + [2901] = {.lex_state = 0, .external_lex_state = 2}, + [2902] = {.lex_state = 15, .external_lex_state = 2}, + [2903] = {.lex_state = 15, .external_lex_state = 2}, + [2904] = {.lex_state = 0, .external_lex_state = 2}, + [2905] = {.lex_state = 2, .external_lex_state = 2}, + [2906] = {.lex_state = 2, .external_lex_state = 2}, + [2907] = {.lex_state = 2, .external_lex_state = 2}, + [2908] = {.lex_state = 0, .external_lex_state = 2}, + [2909] = {.lex_state = 2, .external_lex_state = 2}, + [2910] = {.lex_state = 2, .external_lex_state = 2}, + [2911] = {.lex_state = 0, .external_lex_state = 2}, + [2912] = {.lex_state = 0, .external_lex_state = 2}, + [2913] = {.lex_state = 3, .external_lex_state = 2}, + [2914] = {.lex_state = 0, .external_lex_state = 2}, + [2915] = {.lex_state = 0, .external_lex_state = 2}, + [2916] = {.lex_state = 0, .external_lex_state = 2}, + [2917] = {.lex_state = 0, .external_lex_state = 2}, + [2918] = {.lex_state = 0, .external_lex_state = 2}, + [2919] = {.lex_state = 0, .external_lex_state = 2}, + [2920] = {.lex_state = 0, .external_lex_state = 2}, + [2921] = {.lex_state = 0, .external_lex_state = 2}, + [2922] = {.lex_state = 0, .external_lex_state = 2}, + [2923] = {.lex_state = 0, .external_lex_state = 2}, + [2924] = {.lex_state = 0, .external_lex_state = 2}, + [2925] = {.lex_state = 0, .external_lex_state = 2}, + [2926] = {.lex_state = 0, .external_lex_state = 2}, + [2927] = {.lex_state = 0, .external_lex_state = 2}, + [2928] = {.lex_state = 0, .external_lex_state = 2}, + [2929] = {.lex_state = 0, .external_lex_state = 2}, + [2930] = {.lex_state = 0, .external_lex_state = 2}, + [2931] = {.lex_state = 0, .external_lex_state = 2}, + [2932] = {.lex_state = 0, .external_lex_state = 2}, + [2933] = {.lex_state = 0, .external_lex_state = 2}, + [2934] = {.lex_state = 0, .external_lex_state = 2}, + [2935] = {.lex_state = 0, .external_lex_state = 2}, + [2936] = {.lex_state = 0, .external_lex_state = 2}, + [2937] = {.lex_state = 3, .external_lex_state = 2}, + [2938] = {.lex_state = 2, .external_lex_state = 2}, + [2939] = {.lex_state = 2, .external_lex_state = 2}, + [2940] = {.lex_state = 2, .external_lex_state = 2}, + [2941] = {.lex_state = 0, .external_lex_state = 4}, + [2942] = {.lex_state = 15, .external_lex_state = 2}, + [2943] = {.lex_state = 3, .external_lex_state = 2}, + [2944] = {.lex_state = 0, .external_lex_state = 2}, + [2945] = {.lex_state = 15, .external_lex_state = 2}, + [2946] = {.lex_state = 3, .external_lex_state = 2}, + [2947] = {.lex_state = 0, .external_lex_state = 2}, + [2948] = {.lex_state = 0, .external_lex_state = 2}, + [2949] = {.lex_state = 0, .external_lex_state = 2}, + [2950] = {.lex_state = 0, .external_lex_state = 4}, + [2951] = {.lex_state = 3, .external_lex_state = 2}, + [2952] = {.lex_state = 15, .external_lex_state = 2}, + [2953] = {.lex_state = 0, .external_lex_state = 2}, + [2954] = {.lex_state = 0, .external_lex_state = 2}, + [2955] = {.lex_state = 0, .external_lex_state = 2}, + [2956] = {.lex_state = 15, .external_lex_state = 2}, + [2957] = {.lex_state = 0, .external_lex_state = 3}, + [2958] = {.lex_state = 0, .external_lex_state = 2}, + [2959] = {.lex_state = 0, .external_lex_state = 3}, + [2960] = {.lex_state = 0, .external_lex_state = 2}, + [2961] = {.lex_state = 0, .external_lex_state = 2}, + [2962] = {.lex_state = 0, .external_lex_state = 4}, + [2963] = {.lex_state = 0, .external_lex_state = 2}, + [2964] = {.lex_state = 2, .external_lex_state = 3}, + [2965] = {.lex_state = 0, .external_lex_state = 2}, + [2966] = {.lex_state = 0, .external_lex_state = 3}, + [2967] = {.lex_state = 3, .external_lex_state = 2}, + [2968] = {.lex_state = 15, .external_lex_state = 2}, + [2969] = {.lex_state = 0, .external_lex_state = 2}, + [2970] = {.lex_state = 2, .external_lex_state = 2}, + [2971] = {.lex_state = 15, .external_lex_state = 2}, + [2972] = {.lex_state = 0, .external_lex_state = 2}, + [2973] = {.lex_state = 0, .external_lex_state = 3}, + [2974] = {.lex_state = 2, .external_lex_state = 2}, + [2975] = {.lex_state = 0, .external_lex_state = 2}, + [2976] = {.lex_state = 0, .external_lex_state = 3}, + [2977] = {.lex_state = 15, .external_lex_state = 2}, + [2978] = {.lex_state = 15, .external_lex_state = 2}, + [2979] = {.lex_state = 0, .external_lex_state = 2}, + [2980] = {.lex_state = 0, .external_lex_state = 2}, + [2981] = {.lex_state = 0, .external_lex_state = 2}, + [2982] = {.lex_state = 0, .external_lex_state = 3}, + [2983] = {.lex_state = 2, .external_lex_state = 2}, + [2984] = {.lex_state = 0, .external_lex_state = 2}, + [2985] = {.lex_state = 0, .external_lex_state = 2}, + [2986] = {.lex_state = 2, .external_lex_state = 2}, + [2987] = {.lex_state = 0, .external_lex_state = 2}, + [2988] = {.lex_state = 0, .external_lex_state = 2}, + [2989] = {.lex_state = 15, .external_lex_state = 2}, + [2990] = {.lex_state = 2, .external_lex_state = 2}, + [2991] = {.lex_state = 0, .external_lex_state = 2}, + [2992] = {.lex_state = 2, .external_lex_state = 2}, + [2993] = {.lex_state = 2, .external_lex_state = 2}, + [2994] = {.lex_state = 2, .external_lex_state = 2}, + [2995] = {.lex_state = 2, .external_lex_state = 2}, + [2996] = {.lex_state = 2, .external_lex_state = 2}, + [2997] = {.lex_state = 2, .external_lex_state = 2}, + [2998] = {.lex_state = 2, .external_lex_state = 2}, + [2999] = {.lex_state = 2, .external_lex_state = 2}, + [3000] = {.lex_state = 2, .external_lex_state = 2}, + [3001] = {.lex_state = 2, .external_lex_state = 2}, + [3002] = {.lex_state = 2, .external_lex_state = 2}, + [3003] = {.lex_state = 15, .external_lex_state = 2}, + [3004] = {.lex_state = 2, .external_lex_state = 2}, + [3005] = {.lex_state = 2, .external_lex_state = 2}, + [3006] = {.lex_state = 0, .external_lex_state = 2}, + [3007] = {.lex_state = 2, .external_lex_state = 2}, + [3008] = {.lex_state = 2, .external_lex_state = 2}, + [3009] = {.lex_state = 0, .external_lex_state = 4}, + [3010] = {.lex_state = 0, .external_lex_state = 2}, + [3011] = {.lex_state = 0, .external_lex_state = 2}, + [3012] = {.lex_state = 15, .external_lex_state = 2}, + [3013] = {.lex_state = 15, .external_lex_state = 2}, + [3014] = {.lex_state = 2, .external_lex_state = 2}, + [3015] = {.lex_state = 0, .external_lex_state = 2}, + [3016] = {.lex_state = 2, .external_lex_state = 2}, + [3017] = {.lex_state = 2, .external_lex_state = 2}, + [3018] = {.lex_state = 0, .external_lex_state = 2}, + [3019] = {.lex_state = 0, .external_lex_state = 2}, + [3020] = {.lex_state = 0, .external_lex_state = 4}, + [3021] = {.lex_state = 0, .external_lex_state = 3}, + [3022] = {.lex_state = 0, .external_lex_state = 2}, + [3023] = {.lex_state = 15, .external_lex_state = 2}, + [3024] = {.lex_state = 0, .external_lex_state = 2}, + [3025] = {.lex_state = 2, .external_lex_state = 2}, + [3026] = {.lex_state = 0, .external_lex_state = 2}, + [3027] = {.lex_state = 2, .external_lex_state = 2}, + [3028] = {.lex_state = 2, .external_lex_state = 2}, + [3029] = {.lex_state = 2, .external_lex_state = 2}, + [3030] = {.lex_state = 0, .external_lex_state = 3}, + [3031] = {.lex_state = 0, .external_lex_state = 2}, + [3032] = {.lex_state = 2, .external_lex_state = 2}, + [3033] = {.lex_state = 0, .external_lex_state = 4}, + [3034] = {.lex_state = 0, .external_lex_state = 2}, + [3035] = {.lex_state = 0, .external_lex_state = 2}, + [3036] = {.lex_state = 2, .external_lex_state = 2}, + [3037] = {.lex_state = 2, .external_lex_state = 2}, + [3038] = {.lex_state = 2, .external_lex_state = 2}, + [3039] = {.lex_state = 2, .external_lex_state = 2}, + [3040] = {.lex_state = 0, .external_lex_state = 2}, + [3041] = {.lex_state = 2, .external_lex_state = 2}, + [3042] = {.lex_state = 2, .external_lex_state = 2}, + [3043] = {.lex_state = 2, .external_lex_state = 2}, + [3044] = {.lex_state = 2, .external_lex_state = 2}, + [3045] = {.lex_state = 2, .external_lex_state = 2}, + [3046] = {.lex_state = 2, .external_lex_state = 2}, + [3047] = {.lex_state = 0, .external_lex_state = 2}, + [3048] = {.lex_state = 0, .external_lex_state = 4}, + [3049] = {.lex_state = 0, .external_lex_state = 2}, + [3050] = {.lex_state = 0, .external_lex_state = 2}, + [3051] = {.lex_state = 0, .external_lex_state = 2}, + [3052] = {.lex_state = 0, .external_lex_state = 4}, + [3053] = {.lex_state = 2, .external_lex_state = 2}, + [3054] = {.lex_state = 2, .external_lex_state = 2}, + [3055] = {.lex_state = 2, .external_lex_state = 2}, + [3056] = {.lex_state = 2, .external_lex_state = 2}, + [3057] = {.lex_state = 2, .external_lex_state = 2}, + [3058] = {.lex_state = 2, .external_lex_state = 2}, + [3059] = {.lex_state = 2, .external_lex_state = 2}, + [3060] = {.lex_state = 2, .external_lex_state = 2}, + [3061] = {.lex_state = 2, .external_lex_state = 2}, + [3062] = {.lex_state = 0, .external_lex_state = 2}, + [3063] = {.lex_state = 0, .external_lex_state = 2}, + [3064] = {.lex_state = 0, .external_lex_state = 2}, + [3065] = {.lex_state = 2, .external_lex_state = 2}, + [3066] = {.lex_state = 2, .external_lex_state = 2}, + [3067] = {.lex_state = 2, .external_lex_state = 2}, + [3068] = {.lex_state = 2, .external_lex_state = 2}, + [3069] = {.lex_state = 2, .external_lex_state = 2}, + [3070] = {.lex_state = 2, .external_lex_state = 2}, + [3071] = {.lex_state = 2, .external_lex_state = 2}, + [3072] = {.lex_state = 2, .external_lex_state = 3}, + [3073] = {.lex_state = 2, .external_lex_state = 2}, + [3074] = {.lex_state = 2, .external_lex_state = 2}, + [3075] = {.lex_state = 0, .external_lex_state = 2}, + [3076] = {.lex_state = 13, .external_lex_state = 2}, + [3077] = {.lex_state = 0, .external_lex_state = 2}, + [3078] = {.lex_state = 0, .external_lex_state = 2}, + [3079] = {.lex_state = 0, .external_lex_state = 2}, + [3080] = {.lex_state = 2, .external_lex_state = 2}, + [3081] = {.lex_state = 3, .external_lex_state = 2}, + [3082] = {.lex_state = 0, .external_lex_state = 4}, + [3083] = {.lex_state = 3, .external_lex_state = 2}, + [3084] = {.lex_state = 2, .external_lex_state = 2}, + [3085] = {.lex_state = 2, .external_lex_state = 2}, + [3086] = {.lex_state = 2, .external_lex_state = 2}, + [3087] = {.lex_state = 2, .external_lex_state = 2}, + [3088] = {.lex_state = 2, .external_lex_state = 2}, + [3089] = {.lex_state = 2, .external_lex_state = 2}, + [3090] = {.lex_state = 2, .external_lex_state = 2}, + [3091] = {.lex_state = 0, .external_lex_state = 2}, + [3092] = {.lex_state = 2, .external_lex_state = 2}, + [3093] = {.lex_state = 2, .external_lex_state = 2}, + [3094] = {.lex_state = 3, .external_lex_state = 2}, + [3095] = {.lex_state = 0, .external_lex_state = 2}, + [3096] = {.lex_state = 0, .external_lex_state = 4}, + [3097] = {.lex_state = 0, .external_lex_state = 4}, + [3098] = {.lex_state = 15, .external_lex_state = 2}, + [3099] = {.lex_state = 0, .external_lex_state = 3}, + [3100] = {.lex_state = 15, .external_lex_state = 2}, + [3101] = {.lex_state = 15, .external_lex_state = 2}, + [3102] = {.lex_state = 2, .external_lex_state = 2}, + [3103] = {.lex_state = 0, .external_lex_state = 2}, + [3104] = {.lex_state = 0, .external_lex_state = 2}, + [3105] = {.lex_state = 2, .external_lex_state = 2}, + [3106] = {.lex_state = 0, .external_lex_state = 2}, + [3107] = {.lex_state = 0, .external_lex_state = 2}, + [3108] = {.lex_state = 0, .external_lex_state = 2}, + [3109] = {.lex_state = 0, .external_lex_state = 2}, + [3110] = {.lex_state = 2, .external_lex_state = 2}, + [3111] = {.lex_state = 2, .external_lex_state = 2}, + [3112] = {.lex_state = 15, .external_lex_state = 2}, + [3113] = {.lex_state = 0, .external_lex_state = 2}, + [3114] = {.lex_state = 0, .external_lex_state = 2}, + [3115] = {.lex_state = 0, .external_lex_state = 2}, + [3116] = {.lex_state = 0, .external_lex_state = 2}, + [3117] = {.lex_state = 0, .external_lex_state = 2}, + [3118] = {.lex_state = 2, .external_lex_state = 2}, + [3119] = {.lex_state = 0, .external_lex_state = 2}, + [3120] = {.lex_state = 0, .external_lex_state = 2}, + [3121] = {.lex_state = 0, .external_lex_state = 4}, + [3122] = {.lex_state = 0, .external_lex_state = 2}, + [3123] = {.lex_state = 0, .external_lex_state = 2}, + [3124] = {.lex_state = 0, .external_lex_state = 2}, + [3125] = {.lex_state = 0, .external_lex_state = 4}, + [3126] = {.lex_state = 0, .external_lex_state = 2}, + [3127] = {.lex_state = 0, .external_lex_state = 2}, + [3128] = {.lex_state = 0, .external_lex_state = 2}, + [3129] = {.lex_state = 0, .external_lex_state = 2}, + [3130] = {.lex_state = 0, .external_lex_state = 2}, + [3131] = {.lex_state = 0, .external_lex_state = 2}, + [3132] = {.lex_state = 0, .external_lex_state = 2}, + [3133] = {.lex_state = 0, .external_lex_state = 2}, + [3134] = {.lex_state = 0, .external_lex_state = 2}, + [3135] = {.lex_state = 0, .external_lex_state = 2}, + [3136] = {.lex_state = 0, .external_lex_state = 2}, + [3137] = {.lex_state = 0, .external_lex_state = 4}, + [3138] = {.lex_state = 0, .external_lex_state = 2}, + [3139] = {.lex_state = 0, .external_lex_state = 2}, + [3140] = {.lex_state = 0, .external_lex_state = 2}, + [3141] = {.lex_state = 0, .external_lex_state = 2}, + [3142] = {.lex_state = 0, .external_lex_state = 2}, + [3143] = {.lex_state = 0, .external_lex_state = 2}, + [3144] = {.lex_state = 0, .external_lex_state = 2}, + [3145] = {.lex_state = 0, .external_lex_state = 2}, + [3146] = {.lex_state = 0, .external_lex_state = 2}, + [3147] = {.lex_state = 0, .external_lex_state = 2}, + [3148] = {.lex_state = 0, .external_lex_state = 4}, + [3149] = {.lex_state = 0, .external_lex_state = 2}, + [3150] = {.lex_state = 2, .external_lex_state = 2}, + [3151] = {.lex_state = 0, .external_lex_state = 2}, + [3152] = {.lex_state = 0, .external_lex_state = 2}, + [3153] = {.lex_state = 0, .external_lex_state = 2}, + [3154] = {.lex_state = 0, .external_lex_state = 4}, + [3155] = {.lex_state = 0, .external_lex_state = 2}, + [3156] = {.lex_state = 0, .external_lex_state = 4}, + [3157] = {.lex_state = 0, .external_lex_state = 2}, + [3158] = {.lex_state = 0, .external_lex_state = 2}, + [3159] = {.lex_state = 0, .external_lex_state = 2}, + [3160] = {.lex_state = 0, .external_lex_state = 4}, + [3161] = {.lex_state = 0, .external_lex_state = 4}, + [3162] = {.lex_state = 0, .external_lex_state = 4}, + [3163] = {.lex_state = 0, .external_lex_state = 2}, + [3164] = {.lex_state = 0, .external_lex_state = 2}, + [3165] = {.lex_state = 0, .external_lex_state = 2}, + [3166] = {.lex_state = 0, .external_lex_state = 2}, + [3167] = {.lex_state = 0, .external_lex_state = 2}, + [3168] = {.lex_state = 0, .external_lex_state = 2}, + [3169] = {.lex_state = 0, .external_lex_state = 4}, + [3170] = {.lex_state = 0, .external_lex_state = 4}, + [3171] = {.lex_state = 0, .external_lex_state = 2}, + [3172] = {.lex_state = 0, .external_lex_state = 4}, + [3173] = {.lex_state = 0, .external_lex_state = 4}, + [3174] = {.lex_state = 0, .external_lex_state = 2}, + [3175] = {.lex_state = 0, .external_lex_state = 4}, + [3176] = {.lex_state = 0, .external_lex_state = 2}, + [3177] = {.lex_state = 0, .external_lex_state = 2}, + [3178] = {.lex_state = 0, .external_lex_state = 2}, + [3179] = {.lex_state = 0, .external_lex_state = 3}, + [3180] = {.lex_state = 0, .external_lex_state = 2}, + [3181] = {.lex_state = 0, .external_lex_state = 2}, + [3182] = {.lex_state = 0, .external_lex_state = 2}, + [3183] = {.lex_state = 0, .external_lex_state = 2}, + [3184] = {.lex_state = 0, .external_lex_state = 2}, + [3185] = {.lex_state = 0, .external_lex_state = 2}, + [3186] = {.lex_state = 0, .external_lex_state = 2}, + [3187] = {.lex_state = 0, .external_lex_state = 2}, + [3188] = {.lex_state = 2, .external_lex_state = 2}, + [3189] = {.lex_state = 0, .external_lex_state = 4}, + [3190] = {.lex_state = 0, .external_lex_state = 2}, + [3191] = {.lex_state = 0, .external_lex_state = 4}, + [3192] = {.lex_state = 0, .external_lex_state = 4}, + [3193] = {.lex_state = 0, .external_lex_state = 4}, + [3194] = {.lex_state = 13, .external_lex_state = 2}, + [3195] = {.lex_state = 0, .external_lex_state = 2}, + [3196] = {.lex_state = 0, .external_lex_state = 2}, + [3197] = {.lex_state = 0, .external_lex_state = 2}, + [3198] = {.lex_state = 13, .external_lex_state = 2}, + [3199] = {.lex_state = 0, .external_lex_state = 2}, + [3200] = {.lex_state = 0, .external_lex_state = 4}, + [3201] = {.lex_state = 0, .external_lex_state = 2}, + [3202] = {.lex_state = 0, .external_lex_state = 2}, + [3203] = {.lex_state = 0, .external_lex_state = 2}, + [3204] = {.lex_state = 0, .external_lex_state = 2}, + [3205] = {.lex_state = 2, .external_lex_state = 2}, + [3206] = {.lex_state = 0, .external_lex_state = 4}, + [3207] = {.lex_state = 0, .external_lex_state = 4}, + [3208] = {.lex_state = 0, .external_lex_state = 2}, + [3209] = {.lex_state = 0, .external_lex_state = 2}, + [3210] = {.lex_state = 0, .external_lex_state = 2}, + [3211] = {.lex_state = 0, .external_lex_state = 2}, + [3212] = {.lex_state = 0, .external_lex_state = 2}, + [3213] = {.lex_state = 0, .external_lex_state = 2}, + [3214] = {.lex_state = 0, .external_lex_state = 2}, + [3215] = {.lex_state = 0, .external_lex_state = 2}, + [3216] = {.lex_state = 0, .external_lex_state = 2}, + [3217] = {.lex_state = 2, .external_lex_state = 2}, + [3218] = {.lex_state = 0, .external_lex_state = 2}, + [3219] = {.lex_state = 2, .external_lex_state = 2}, + [3220] = {.lex_state = 0, .external_lex_state = 2}, + [3221] = {.lex_state = 0, .external_lex_state = 2}, + [3222] = {.lex_state = 2, .external_lex_state = 2}, + [3223] = {.lex_state = 0, .external_lex_state = 2}, + [3224] = {.lex_state = 2, .external_lex_state = 2}, + [3225] = {.lex_state = 0, .external_lex_state = 2}, + [3226] = {.lex_state = 0, .external_lex_state = 2}, + [3227] = {.lex_state = 2, .external_lex_state = 2}, + [3228] = {.lex_state = 0, .external_lex_state = 2}, + [3229] = {.lex_state = 2, .external_lex_state = 2}, + [3230] = {.lex_state = 0, .external_lex_state = 2}, + [3231] = {.lex_state = 2, .external_lex_state = 2}, + [3232] = {.lex_state = 2, .external_lex_state = 2}, + [3233] = {.lex_state = 0, .external_lex_state = 2}, + [3234] = {.lex_state = 2, .external_lex_state = 2}, + [3235] = {.lex_state = 2, .external_lex_state = 2}, + [3236] = {.lex_state = 0, .external_lex_state = 4}, + [3237] = {.lex_state = 2, .external_lex_state = 2}, + [3238] = {.lex_state = 13, .external_lex_state = 2}, + [3239] = {.lex_state = 0, .external_lex_state = 4}, + [3240] = {.lex_state = 2, .external_lex_state = 2}, + [3241] = {.lex_state = 0, .external_lex_state = 2}, + [3242] = {.lex_state = 0, .external_lex_state = 4}, + [3243] = {.lex_state = 0, .external_lex_state = 2}, + [3244] = {.lex_state = 0, .external_lex_state = 4}, + [3245] = {.lex_state = 0, .external_lex_state = 4}, + [3246] = {.lex_state = 0, .external_lex_state = 2}, + [3247] = {.lex_state = 0, .external_lex_state = 2}, + [3248] = {.lex_state = 0, .external_lex_state = 2}, + [3249] = {.lex_state = 0, .external_lex_state = 4}, + [3250] = {.lex_state = 0, .external_lex_state = 2}, + [3251] = {.lex_state = 0, .external_lex_state = 2}, + [3252] = {.lex_state = 0, .external_lex_state = 2}, + [3253] = {.lex_state = 0, .external_lex_state = 4}, + [3254] = {.lex_state = 0, .external_lex_state = 2}, + [3255] = {.lex_state = 0, .external_lex_state = 4}, + [3256] = {.lex_state = 0, .external_lex_state = 2}, + [3257] = {.lex_state = 0, .external_lex_state = 2}, + [3258] = {.lex_state = 0, .external_lex_state = 2}, + [3259] = {.lex_state = 0, .external_lex_state = 2}, + [3260] = {.lex_state = 2, .external_lex_state = 2}, + [3261] = {.lex_state = 0, .external_lex_state = 4}, + [3262] = {.lex_state = 0, .external_lex_state = 2}, + [3263] = {.lex_state = 0, .external_lex_state = 2}, + [3264] = {.lex_state = 0, .external_lex_state = 2}, + [3265] = {.lex_state = 0, .external_lex_state = 2}, + [3266] = {.lex_state = 0, .external_lex_state = 4}, + [3267] = {.lex_state = 0, .external_lex_state = 2}, + [3268] = {.lex_state = 0, .external_lex_state = 2}, + [3269] = {.lex_state = 2, .external_lex_state = 2}, + [3270] = {.lex_state = 0, .external_lex_state = 2}, + [3271] = {.lex_state = 0, .external_lex_state = 2}, + [3272] = {.lex_state = 0, .external_lex_state = 4}, + [3273] = {.lex_state = 0, .external_lex_state = 2}, + [3274] = {.lex_state = 0, .external_lex_state = 4}, + [3275] = {.lex_state = 0, .external_lex_state = 2}, + [3276] = {.lex_state = 13, .external_lex_state = 2}, + [3277] = {.lex_state = 0, .external_lex_state = 2}, + [3278] = {.lex_state = 0, .external_lex_state = 2}, + [3279] = {.lex_state = 0, .external_lex_state = 2}, + [3280] = {.lex_state = 0, .external_lex_state = 2}, + [3281] = {.lex_state = 2, .external_lex_state = 2}, + [3282] = {.lex_state = 2, .external_lex_state = 2}, + [3283] = {.lex_state = 0, .external_lex_state = 2}, + [3284] = {.lex_state = 13, .external_lex_state = 2}, + [3285] = {.lex_state = 0, .external_lex_state = 2}, + [3286] = {.lex_state = 0, .external_lex_state = 4}, + [3287] = {.lex_state = 0, .external_lex_state = 4}, + [3288] = {.lex_state = 0, .external_lex_state = 2}, + [3289] = {.lex_state = 0, .external_lex_state = 2}, + [3290] = {.lex_state = 0, .external_lex_state = 2}, + [3291] = {.lex_state = 0, .external_lex_state = 4}, + [3292] = {.lex_state = 0, .external_lex_state = 2}, + [3293] = {.lex_state = 0, .external_lex_state = 4}, + [3294] = {.lex_state = 2, .external_lex_state = 2}, + [3295] = {.lex_state = 0, .external_lex_state = 4}, + [3296] = {.lex_state = 15, .external_lex_state = 2}, + [3297] = {.lex_state = 0, .external_lex_state = 2}, + [3298] = {.lex_state = 0, .external_lex_state = 4}, + [3299] = {.lex_state = 0, .external_lex_state = 4}, + [3300] = {.lex_state = 0, .external_lex_state = 2}, + [3301] = {.lex_state = 0, .external_lex_state = 2}, + [3302] = {.lex_state = 0, .external_lex_state = 2}, + [3303] = {.lex_state = 0, .external_lex_state = 2}, + [3304] = {.lex_state = 0, .external_lex_state = 2}, + [3305] = {.lex_state = 0, .external_lex_state = 4}, + [3306] = {.lex_state = 0, .external_lex_state = 2}, + [3307] = {.lex_state = 0, .external_lex_state = 2}, + [3308] = {.lex_state = 0, .external_lex_state = 2}, + [3309] = {.lex_state = 0, .external_lex_state = 2}, + [3310] = {.lex_state = 0, .external_lex_state = 2}, + [3311] = {.lex_state = 0, .external_lex_state = 2}, + [3312] = {.lex_state = 0, .external_lex_state = 2}, + [3313] = {.lex_state = 0, .external_lex_state = 2}, + [3314] = {.lex_state = 0, .external_lex_state = 2}, + [3315] = {.lex_state = 0, .external_lex_state = 2}, + [3316] = {.lex_state = 0, .external_lex_state = 2}, + [3317] = {.lex_state = 0, .external_lex_state = 2}, + [3318] = {.lex_state = 0, .external_lex_state = 2}, + [3319] = {.lex_state = 0, .external_lex_state = 2}, + [3320] = {.lex_state = 0, .external_lex_state = 2}, + [3321] = {.lex_state = 0, .external_lex_state = 2}, + [3322] = {.lex_state = 0, .external_lex_state = 2}, + [3323] = {.lex_state = 0, .external_lex_state = 2}, + [3324] = {.lex_state = 0, .external_lex_state = 2}, + [3325] = {.lex_state = 0, .external_lex_state = 2}, + [3326] = {.lex_state = 0, .external_lex_state = 2}, + [3327] = {.lex_state = 0, .external_lex_state = 4}, + [3328] = {.lex_state = 0, .external_lex_state = 4}, + [3329] = {.lex_state = 0, .external_lex_state = 4}, + [3330] = {.lex_state = 0, .external_lex_state = 4}, + [3331] = {.lex_state = 0, .external_lex_state = 2}, + [3332] = {.lex_state = 0, .external_lex_state = 2}, + [3333] = {.lex_state = 0, .external_lex_state = 2}, + [3334] = {.lex_state = 0, .external_lex_state = 2}, + [3335] = {.lex_state = 0, .external_lex_state = 2}, + [3336] = {.lex_state = 0, .external_lex_state = 4}, + [3337] = {.lex_state = 0, .external_lex_state = 2}, + [3338] = {.lex_state = 0, .external_lex_state = 4}, + [3339] = {.lex_state = 0, .external_lex_state = 4}, + [3340] = {.lex_state = 0, .external_lex_state = 4}, + [3341] = {.lex_state = 0, .external_lex_state = 4}, + [3342] = {.lex_state = 0, .external_lex_state = 4}, + [3343] = {.lex_state = 0, .external_lex_state = 4}, + [3344] = {.lex_state = 0, .external_lex_state = 2}, + [3345] = {.lex_state = 0, .external_lex_state = 2}, + [3346] = {.lex_state = 0, .external_lex_state = 2}, + [3347] = {.lex_state = 0, .external_lex_state = 2}, + [3348] = {.lex_state = 0, .external_lex_state = 2}, + [3349] = {.lex_state = 0, .external_lex_state = 4}, + [3350] = {.lex_state = 0, .external_lex_state = 4}, + [3351] = {.lex_state = 0, .external_lex_state = 2}, + [3352] = {.lex_state = 0, .external_lex_state = 2}, + [3353] = {.lex_state = 0, .external_lex_state = 4}, + [3354] = {.lex_state = 0, .external_lex_state = 4}, + [3355] = {.lex_state = 0, .external_lex_state = 4}, + [3356] = {.lex_state = 0, .external_lex_state = 2}, + [3357] = {.lex_state = 0, .external_lex_state = 2}, + [3358] = {.lex_state = 0, .external_lex_state = 4}, + [3359] = {.lex_state = 0, .external_lex_state = 2}, + [3360] = {.lex_state = 0, .external_lex_state = 4}, + [3361] = {.lex_state = 0, .external_lex_state = 2}, + [3362] = {.lex_state = 0, .external_lex_state = 2}, + [3363] = {.lex_state = 0, .external_lex_state = 4}, + [3364] = {.lex_state = 0, .external_lex_state = 4}, + [3365] = {.lex_state = 0, .external_lex_state = 2}, + [3366] = {.lex_state = 0, .external_lex_state = 4}, + [3367] = {.lex_state = 0, .external_lex_state = 2}, + [3368] = {.lex_state = 0, .external_lex_state = 2}, + [3369] = {.lex_state = 0, .external_lex_state = 2}, + [3370] = {.lex_state = 0, .external_lex_state = 4}, + [3371] = {.lex_state = 0, .external_lex_state = 4}, + [3372] = {.lex_state = 0, .external_lex_state = 4}, + [3373] = {.lex_state = 0, .external_lex_state = 2}, + [3374] = {.lex_state = 0, .external_lex_state = 4}, + [3375] = {.lex_state = 0, .external_lex_state = 4}, + [3376] = {.lex_state = 0, .external_lex_state = 2}, + [3377] = {.lex_state = 0, .external_lex_state = 2}, + [3378] = {.lex_state = 0, .external_lex_state = 2}, + [3379] = {.lex_state = 0, .external_lex_state = 4}, + [3380] = {.lex_state = 0, .external_lex_state = 2}, + [3381] = {.lex_state = 3, .external_lex_state = 2}, + [3382] = {.lex_state = 0, .external_lex_state = 2}, + [3383] = {.lex_state = 0, .external_lex_state = 4}, + [3384] = {.lex_state = 0, .external_lex_state = 2}, + [3385] = {.lex_state = 0, .external_lex_state = 2}, + [3386] = {.lex_state = 0, .external_lex_state = 4}, + [3387] = {.lex_state = 0, .external_lex_state = 4}, + [3388] = {.lex_state = 0, .external_lex_state = 2}, + [3389] = {.lex_state = 0, .external_lex_state = 4}, + [3390] = {.lex_state = 0, .external_lex_state = 2}, + [3391] = {.lex_state = 0, .external_lex_state = 2}, + [3392] = {.lex_state = 0, .external_lex_state = 4}, + [3393] = {.lex_state = 0, .external_lex_state = 4}, + [3394] = {.lex_state = 0, .external_lex_state = 4}, + [3395] = {.lex_state = 0, .external_lex_state = 2}, + [3396] = {.lex_state = 3, .external_lex_state = 2}, + [3397] = {.lex_state = 0, .external_lex_state = 2}, + [3398] = {.lex_state = 0, .external_lex_state = 2}, + [3399] = {.lex_state = 0, .external_lex_state = 2}, + [3400] = {.lex_state = 0, .external_lex_state = 2}, + [3401] = {.lex_state = 0, .external_lex_state = 4}, + [3402] = {.lex_state = 3, .external_lex_state = 2}, + [3403] = {.lex_state = 0, .external_lex_state = 4}, + [3404] = {.lex_state = 0, .external_lex_state = 2}, + [3405] = {.lex_state = 0, .external_lex_state = 4}, + [3406] = {.lex_state = 0, .external_lex_state = 2}, + [3407] = {.lex_state = 0, .external_lex_state = 2}, + [3408] = {.lex_state = 0, .external_lex_state = 4}, + [3409] = {.lex_state = 0, .external_lex_state = 4}, + [3410] = {.lex_state = 0, .external_lex_state = 2}, + [3411] = {.lex_state = 0, .external_lex_state = 2}, + [3412] = {.lex_state = 0, .external_lex_state = 2}, + [3413] = {.lex_state = 0, .external_lex_state = 4}, + [3414] = {.lex_state = 0, .external_lex_state = 4}, + [3415] = {.lex_state = 0, .external_lex_state = 4}, + [3416] = {.lex_state = 0, .external_lex_state = 2}, + [3417] = {.lex_state = 0, .external_lex_state = 2}, + [3418] = {.lex_state = 0, .external_lex_state = 2}, + [3419] = {.lex_state = 0, .external_lex_state = 4}, + [3420] = {.lex_state = 0, .external_lex_state = 4}, + [3421] = {.lex_state = 0, .external_lex_state = 4}, + [3422] = {.lex_state = 0, .external_lex_state = 4}, + [3423] = {.lex_state = 0, .external_lex_state = 2}, + [3424] = {.lex_state = 0, .external_lex_state = 4}, + [3425] = {.lex_state = 0, .external_lex_state = 4}, + [3426] = {.lex_state = 0, .external_lex_state = 4}, + [3427] = {.lex_state = 0, .external_lex_state = 2}, + [3428] = {.lex_state = 0, .external_lex_state = 2}, + [3429] = {.lex_state = 0, .external_lex_state = 2}, + [3430] = {.lex_state = 0, .external_lex_state = 4}, + [3431] = {.lex_state = 0, .external_lex_state = 2}, + [3432] = {.lex_state = 0, .external_lex_state = 2}, + [3433] = {.lex_state = 0, .external_lex_state = 4}, + [3434] = {.lex_state = 0, .external_lex_state = 4}, + [3435] = {.lex_state = 0, .external_lex_state = 4}, + [3436] = {.lex_state = 0, .external_lex_state = 2}, + [3437] = {.lex_state = 2, .external_lex_state = 2}, + [3438] = {.lex_state = 0, .external_lex_state = 2}, + [3439] = {.lex_state = 0, .external_lex_state = 4}, + [3440] = {.lex_state = 0, .external_lex_state = 2}, + [3441] = {.lex_state = 0, .external_lex_state = 2}, + [3442] = {.lex_state = 0, .external_lex_state = 2}, + [3443] = {.lex_state = 0, .external_lex_state = 4}, + [3444] = {.lex_state = 0, .external_lex_state = 2}, + [3445] = {.lex_state = 0, .external_lex_state = 4}, + [3446] = {.lex_state = 0, .external_lex_state = 4}, + [3447] = {.lex_state = 0, .external_lex_state = 2}, + [3448] = {.lex_state = 3, .external_lex_state = 2}, + [3449] = {.lex_state = 0, .external_lex_state = 2}, + [3450] = {.lex_state = 0, .external_lex_state = 4}, + [3451] = {.lex_state = 0, .external_lex_state = 4}, + [3452] = {.lex_state = 0, .external_lex_state = 4}, + [3453] = {.lex_state = 3, .external_lex_state = 2}, + [3454] = {.lex_state = 0, .external_lex_state = 2}, + [3455] = {.lex_state = 0, .external_lex_state = 4}, + [3456] = {.lex_state = 0, .external_lex_state = 2}, + [3457] = {.lex_state = 0, .external_lex_state = 2}, + [3458] = {.lex_state = 0, .external_lex_state = 4}, + [3459] = {.lex_state = 0, .external_lex_state = 4}, + [3460] = {.lex_state = 2, .external_lex_state = 2}, + [3461] = {.lex_state = 0, .external_lex_state = 4}, + [3462] = {.lex_state = 0, .external_lex_state = 2}, + [3463] = {.lex_state = 0, .external_lex_state = 2}, + [3464] = {.lex_state = 0, .external_lex_state = 4}, + [3465] = {.lex_state = 0, .external_lex_state = 2}, + [3466] = {.lex_state = 0, .external_lex_state = 2}, + [3467] = {.lex_state = 0, .external_lex_state = 2}, + [3468] = {.lex_state = 0, .external_lex_state = 4}, + [3469] = {.lex_state = 0, .external_lex_state = 2}, + [3470] = {.lex_state = 0, .external_lex_state = 4}, + [3471] = {.lex_state = 0, .external_lex_state = 2}, + [3472] = {.lex_state = 0, .external_lex_state = 2}, + [3473] = {.lex_state = 0, .external_lex_state = 2}, + [3474] = {.lex_state = 0, .external_lex_state = 2}, + [3475] = {.lex_state = 0, .external_lex_state = 2}, + [3476] = {.lex_state = 0, .external_lex_state = 4}, + [3477] = {.lex_state = 0, .external_lex_state = 2}, + [3478] = {.lex_state = 0, .external_lex_state = 4}, + [3479] = {.lex_state = 0, .external_lex_state = 4}, + [3480] = {.lex_state = 0, .external_lex_state = 4}, + [3481] = {.lex_state = 0, .external_lex_state = 2}, + [3482] = {.lex_state = 0, .external_lex_state = 2}, + [3483] = {.lex_state = 0, .external_lex_state = 4}, + [3484] = {.lex_state = 0, .external_lex_state = 2}, + [3485] = {.lex_state = 0, .external_lex_state = 2}, + [3486] = {.lex_state = 0, .external_lex_state = 4}, + [3487] = {.lex_state = 0, .external_lex_state = 2}, + [3488] = {.lex_state = 0, .external_lex_state = 2}, + [3489] = {.lex_state = 0, .external_lex_state = 2}, + [3490] = {.lex_state = 0, .external_lex_state = 4}, + [3491] = {.lex_state = 0, .external_lex_state = 2}, + [3492] = {.lex_state = 0, .external_lex_state = 4}, + [3493] = {.lex_state = 0, .external_lex_state = 2}, + [3494] = {.lex_state = 3, .external_lex_state = 2}, + [3495] = {.lex_state = 0, .external_lex_state = 2}, + [3496] = {.lex_state = 0, .external_lex_state = 4}, + [3497] = {.lex_state = 0, .external_lex_state = 2}, + [3498] = {.lex_state = 0, .external_lex_state = 4}, + [3499] = {.lex_state = 0, .external_lex_state = 4}, + [3500] = {.lex_state = 0, .external_lex_state = 2}, + [3501] = {.lex_state = 0, .external_lex_state = 4}, + [3502] = {.lex_state = 0, .external_lex_state = 4}, + [3503] = {.lex_state = 0, .external_lex_state = 2}, + [3504] = {.lex_state = 0, .external_lex_state = 4}, + [3505] = {.lex_state = 0, .external_lex_state = 4}, + [3506] = {.lex_state = 0, .external_lex_state = 2}, + [3507] = {.lex_state = 0, .external_lex_state = 4}, + [3508] = {.lex_state = 0, .external_lex_state = 2}, + [3509] = {.lex_state = 0, .external_lex_state = 4}, + [3510] = {.lex_state = 0, .external_lex_state = 4}, + [3511] = {.lex_state = 0, .external_lex_state = 4}, + [3512] = {.lex_state = 0, .external_lex_state = 2}, + [3513] = {.lex_state = 0, .external_lex_state = 2}, + [3514] = {.lex_state = 0, .external_lex_state = 4}, + [3515] = {.lex_state = 0, .external_lex_state = 2}, + [3516] = {.lex_state = 0, .external_lex_state = 2}, + [3517] = {.lex_state = 0, .external_lex_state = 2}, + [3518] = {.lex_state = 0, .external_lex_state = 4}, + [3519] = {.lex_state = 0, .external_lex_state = 4}, + [3520] = {.lex_state = 0, .external_lex_state = 4}, + [3521] = {.lex_state = 0, .external_lex_state = 4}, + [3522] = {.lex_state = 0, .external_lex_state = 4}, + [3523] = {.lex_state = 0, .external_lex_state = 2}, + [3524] = {.lex_state = 0, .external_lex_state = 4}, + [3525] = {.lex_state = 0, .external_lex_state = 4}, + [3526] = {.lex_state = 0, .external_lex_state = 4}, + [3527] = {.lex_state = 0, .external_lex_state = 2}, + [3528] = {.lex_state = 0, .external_lex_state = 4}, + [3529] = {.lex_state = 0, .external_lex_state = 4}, + [3530] = {.lex_state = 0, .external_lex_state = 4}, + [3531] = {.lex_state = 0, .external_lex_state = 4}, + [3532] = {.lex_state = 0, .external_lex_state = 4}, + [3533] = {.lex_state = 0, .external_lex_state = 4}, + [3534] = {.lex_state = 0, .external_lex_state = 4}, + [3535] = {.lex_state = 0, .external_lex_state = 4}, + [3536] = {.lex_state = 0, .external_lex_state = 4}, + [3537] = {.lex_state = 0, .external_lex_state = 2}, + [3538] = {.lex_state = 0, .external_lex_state = 2}, + [3539] = {.lex_state = 0, .external_lex_state = 4}, + [3540] = {.lex_state = 0, .external_lex_state = 2}, + [3541] = {.lex_state = 0, .external_lex_state = 2}, + [3542] = {.lex_state = 0, .external_lex_state = 4}, + [3543] = {.lex_state = 0, .external_lex_state = 2}, + [3544] = {.lex_state = 0, .external_lex_state = 4}, + [3545] = {.lex_state = 0, .external_lex_state = 4}, + [3546] = {.lex_state = 0, .external_lex_state = 2}, + [3547] = {.lex_state = 0, .external_lex_state = 4}, + [3548] = {.lex_state = 0, .external_lex_state = 4}, + [3549] = {.lex_state = 0, .external_lex_state = 4}, + [3550] = {.lex_state = 0, .external_lex_state = 4}, + [3551] = {.lex_state = 0, .external_lex_state = 2}, + [3552] = {.lex_state = 2, .external_lex_state = 2}, + [3553] = {.lex_state = 0, .external_lex_state = 2}, + [3554] = {.lex_state = 0, .external_lex_state = 4}, + [3555] = {.lex_state = 0, .external_lex_state = 4}, + [3556] = {.lex_state = 0, .external_lex_state = 4}, + [3557] = {.lex_state = 0, .external_lex_state = 4}, + [3558] = {.lex_state = 0, .external_lex_state = 4}, + [3559] = {.lex_state = 0, .external_lex_state = 2}, + [3560] = {.lex_state = 0, .external_lex_state = 2}, + [3561] = {.lex_state = 0, .external_lex_state = 2}, + [3562] = {.lex_state = 0, .external_lex_state = 2}, + [3563] = {.lex_state = 0, .external_lex_state = 2}, + [3564] = {.lex_state = 0, .external_lex_state = 4}, + [3565] = {.lex_state = 0, .external_lex_state = 4}, + [3566] = {.lex_state = 0, .external_lex_state = 2}, + [3567] = {.lex_state = 0, .external_lex_state = 4}, + [3568] = {.lex_state = 0, .external_lex_state = 2}, + [3569] = {.lex_state = 0, .external_lex_state = 4}, + [3570] = {.lex_state = 0, .external_lex_state = 4}, + [3571] = {.lex_state = 0, .external_lex_state = 2}, + [3572] = {.lex_state = 0, .external_lex_state = 2}, + [3573] = {.lex_state = 0, .external_lex_state = 2}, + [3574] = {.lex_state = 0, .external_lex_state = 2}, + [3575] = {.lex_state = 0, .external_lex_state = 4}, + [3576] = {.lex_state = 0, .external_lex_state = 2}, + [3577] = {.lex_state = 0, .external_lex_state = 4}, + [3578] = {.lex_state = 0, .external_lex_state = 4}, + [3579] = {.lex_state = 0, .external_lex_state = 4}, + [3580] = {.lex_state = 0, .external_lex_state = 4}, + [3581] = {.lex_state = 0, .external_lex_state = 2}, + [3582] = {.lex_state = 0, .external_lex_state = 4}, + [3583] = {.lex_state = 0, .external_lex_state = 4}, + [3584] = {.lex_state = 0, .external_lex_state = 4}, + [3585] = {.lex_state = 0, .external_lex_state = 4}, + [3586] = {.lex_state = 0, .external_lex_state = 4}, + [3587] = {.lex_state = 0, .external_lex_state = 4}, + [3588] = {.lex_state = 0, .external_lex_state = 4}, + [3589] = {.lex_state = 0, .external_lex_state = 4}, + [3590] = {.lex_state = 0, .external_lex_state = 4}, + [3591] = {.lex_state = 0, .external_lex_state = 2}, + [3592] = {.lex_state = 0, .external_lex_state = 2}, + [3593] = {.lex_state = 0, .external_lex_state = 4}, + [3594] = {.lex_state = 0, .external_lex_state = 2}, + [3595] = {.lex_state = 0, .external_lex_state = 2}, + [3596] = {.lex_state = 0, .external_lex_state = 2}, + [3597] = {.lex_state = 0, .external_lex_state = 4}, + [3598] = {.lex_state = 0, .external_lex_state = 2}, + [3599] = {.lex_state = 0, .external_lex_state = 2}, + [3600] = {.lex_state = 0, .external_lex_state = 4}, + [3601] = {.lex_state = 0, .external_lex_state = 4}, + [3602] = {.lex_state = 0, .external_lex_state = 2}, + [3603] = {.lex_state = 0, .external_lex_state = 4}, + [3604] = {.lex_state = 0, .external_lex_state = 4}, + [3605] = {.lex_state = 0, .external_lex_state = 2}, + [3606] = {.lex_state = 0, .external_lex_state = 2}, + [3607] = {.lex_state = 0, .external_lex_state = 4}, + [3608] = {.lex_state = 0, .external_lex_state = 4}, + [3609] = {.lex_state = 0, .external_lex_state = 2}, + [3610] = {.lex_state = 0, .external_lex_state = 4}, + [3611] = {.lex_state = 0, .external_lex_state = 4}, + [3612] = {.lex_state = 0, .external_lex_state = 2}, + [3613] = {.lex_state = 0, .external_lex_state = 2}, + [3614] = {.lex_state = 0, .external_lex_state = 4}, + [3615] = {.lex_state = 0, .external_lex_state = 4}, + [3616] = {.lex_state = 0, .external_lex_state = 4}, + [3617] = {.lex_state = 0, .external_lex_state = 2}, + [3618] = {.lex_state = 2, .external_lex_state = 2}, + [3619] = {.lex_state = 0, .external_lex_state = 4}, + [3620] = {.lex_state = 0, .external_lex_state = 4}, + [3621] = {.lex_state = 0, .external_lex_state = 4}, + [3622] = {.lex_state = 0, .external_lex_state = 2}, + [3623] = {.lex_state = 0, .external_lex_state = 2}, + [3624] = {.lex_state = 0, .external_lex_state = 4}, + [3625] = {.lex_state = 0, .external_lex_state = 4}, + [3626] = {.lex_state = 0, .external_lex_state = 2}, + [3627] = {.lex_state = 0, .external_lex_state = 2}, + [3628] = {.lex_state = 0, .external_lex_state = 4}, + [3629] = {.lex_state = 0, .external_lex_state = 2}, + [3630] = {.lex_state = 0, .external_lex_state = 4}, + [3631] = {.lex_state = 0, .external_lex_state = 4}, + [3632] = {.lex_state = 0, .external_lex_state = 4}, + [3633] = {.lex_state = 0, .external_lex_state = 4}, + [3634] = {.lex_state = 0, .external_lex_state = 4}, + [3635] = {.lex_state = 0, .external_lex_state = 2}, + [3636] = {.lex_state = 0, .external_lex_state = 2}, + [3637] = {.lex_state = 0, .external_lex_state = 4}, + [3638] = {.lex_state = 0, .external_lex_state = 4}, + [3639] = {.lex_state = 0, .external_lex_state = 4}, + [3640] = {.lex_state = 0, .external_lex_state = 4}, + [3641] = {.lex_state = 0, .external_lex_state = 2}, + [3642] = {.lex_state = 0, .external_lex_state = 4}, + [3643] = {.lex_state = 0, .external_lex_state = 4}, + [3644] = {.lex_state = 0, .external_lex_state = 4}, + [3645] = {.lex_state = 0, .external_lex_state = 2}, + [3646] = {.lex_state = 0, .external_lex_state = 4}, + [3647] = {.lex_state = 0, .external_lex_state = 4}, + [3648] = {.lex_state = 0, .external_lex_state = 2}, + [3649] = {.lex_state = 0, .external_lex_state = 4}, + [3650] = {.lex_state = 0, .external_lex_state = 4}, + [3651] = {.lex_state = 0, .external_lex_state = 4}, + [3652] = {.lex_state = 0, .external_lex_state = 2}, + [3653] = {.lex_state = 0, .external_lex_state = 4}, + [3654] = {.lex_state = 0, .external_lex_state = 4}, + [3655] = {.lex_state = 0, .external_lex_state = 4}, + [3656] = {.lex_state = 0, .external_lex_state = 4}, + [3657] = {.lex_state = 0, .external_lex_state = 2}, + [3658] = {.lex_state = 0, .external_lex_state = 2}, + [3659] = {.lex_state = 0, .external_lex_state = 4}, + [3660] = {.lex_state = 0, .external_lex_state = 2}, + [3661] = {.lex_state = 0, .external_lex_state = 2}, + [3662] = {.lex_state = 0, .external_lex_state = 2}, + [3663] = {.lex_state = 0, .external_lex_state = 2}, + [3664] = {.lex_state = 0, .external_lex_state = 2}, + [3665] = {.lex_state = 0, .external_lex_state = 2}, + [3666] = {.lex_state = 0, .external_lex_state = 2}, + [3667] = {.lex_state = 0, .external_lex_state = 2}, + [3668] = {.lex_state = 0, .external_lex_state = 2}, + [3669] = {.lex_state = 0, .external_lex_state = 2}, + [3670] = {.lex_state = 0, .external_lex_state = 2}, + [3671] = {.lex_state = 0, .external_lex_state = 2}, + [3672] = {.lex_state = 0, .external_lex_state = 2}, + [3673] = {.lex_state = 0, .external_lex_state = 2}, + [3674] = {.lex_state = 0, .external_lex_state = 2}, + [3675] = {.lex_state = 0, .external_lex_state = 4}, + [3676] = {.lex_state = 0, .external_lex_state = 2}, + [3677] = {.lex_state = 0, .external_lex_state = 4}, + [3678] = {.lex_state = 0, .external_lex_state = 4}, + [3679] = {.lex_state = 0, .external_lex_state = 4}, + [3680] = {.lex_state = 0, .external_lex_state = 4}, + [3681] = {.lex_state = 0, .external_lex_state = 4}, + [3682] = {.lex_state = 0, .external_lex_state = 4}, + [3683] = {.lex_state = 0, .external_lex_state = 4}, + [3684] = {.lex_state = 0, .external_lex_state = 2}, + [3685] = {.lex_state = 0, .external_lex_state = 2}, + [3686] = {.lex_state = 0, .external_lex_state = 2}, + [3687] = {.lex_state = 0, .external_lex_state = 2}, + [3688] = {.lex_state = 0, .external_lex_state = 2}, + [3689] = {.lex_state = 0, .external_lex_state = 2}, + [3690] = {.lex_state = 0, .external_lex_state = 4}, + [3691] = {.lex_state = 0, .external_lex_state = 2}, + [3692] = {.lex_state = 0, .external_lex_state = 4}, + [3693] = {.lex_state = 0, .external_lex_state = 4}, + [3694] = {.lex_state = 0, .external_lex_state = 4}, + [3695] = {.lex_state = 0, .external_lex_state = 4}, + [3696] = {.lex_state = 0, .external_lex_state = 2}, + [3697] = {.lex_state = 0, .external_lex_state = 4}, + [3698] = {.lex_state = 0, .external_lex_state = 4}, + [3699] = {.lex_state = 0, .external_lex_state = 4}, + [3700] = {.lex_state = 0, .external_lex_state = 2}, + [3701] = {.lex_state = 0, .external_lex_state = 2}, + [3702] = {.lex_state = 0, .external_lex_state = 2}, + [3703] = {.lex_state = 0, .external_lex_state = 2}, + [3704] = {.lex_state = 0, .external_lex_state = 4}, + [3705] = {.lex_state = 0, .external_lex_state = 2}, + [3706] = {.lex_state = 0, .external_lex_state = 2}, + [3707] = {.lex_state = 0, .external_lex_state = 2}, + [3708] = {.lex_state = 0, .external_lex_state = 2}, + [3709] = {.lex_state = 0, .external_lex_state = 4}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -9871,11 +11438,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [ts_builtin_sym_end] = ACTIONS(1), [sym_identifier] = ACTIONS(1), [anon_sym_POUND] = ACTIONS(1), - [aux_sym_preprocessor_statement_token1] = ACTIONS(1), [aux_sym_preprocessor_statement_token2] = ACTIONS(1), [anon_sym_package] = ACTIONS(1), [anon_sym_DOT] = ACTIONS(1), [anon_sym_import] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), [anon_sym_using] = ACTIONS(1), [anon_sym_throw] = ACTIONS(1), [anon_sym_LPAREN] = ACTIONS(1), @@ -9889,7 +11458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1), [anon_sym_cast] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), - [anon_sym_in] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), [anon_sym_return] = ACTIONS(1), [anon_sym_untyped] = ACTIONS(1), [anon_sym_break] = ACTIONS(1), @@ -9906,9 +11475,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_GT] = ACTIONS(1), [anon_sym_AT] = ACTIONS(1), [anon_sym_AT_COLON] = ACTIONS(1), - [anon_sym_if] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_catch] = ACTIONS(1), [anon_sym_else] = ACTIONS(1), - [anon_sym_elseif] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_do] = ACTIONS(1), [anon_sym_new] = ACTIONS(1), [anon_sym_TILDE] = ACTIONS(1), [anon_sym_BANG] = ACTIONS(1), @@ -9916,7 +11488,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS_PLUS] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_PERCENT] = ACTIONS(1), - [anon_sym_STAR] = ACTIONS(1), [anon_sym_SLASH] = ACTIONS(1), [anon_sym_PLUS] = ACTIONS(1), [anon_sym_LT_LT] = ACTIONS(1), @@ -9936,7 +11507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_GT] = ACTIONS(1), [anon_sym_QMARK_QMARK] = ACTIONS(1), [anon_sym_EQ] = ACTIONS(1), - [sym__rangeOperator] = ACTIONS(1), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1), [anon_sym_null] = ACTIONS(1), [anon_sym_get] = ACTIONS(1), [anon_sym_set] = ACTIONS(1), @@ -9956,6 +11527,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extends] = ACTIONS(1), [anon_sym_implements] = ACTIONS(1), [anon_sym_interface] = ACTIONS(1), + [anon_sym_enum] = ACTIONS(1), [anon_sym_typedef] = ACTIONS(1), [anon_sym_function] = ACTIONS(1), [anon_sym_var] = ACTIONS(1), @@ -9969,1867 +11541,2021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_string_token3] = ACTIONS(1), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1), [anon_sym_DOLLAR] = ACTIONS(1), - [anon_sym_LBRACE2] = ACTIONS(1), [sym_escape_sequence] = ACTIONS(1), [sym_comment] = ACTIONS(3), - [anon_sym_catch] = ACTIONS(1), - [anon_sym_do] = ACTIONS(1), - [anon_sym_enum] = ACTIONS(1), - [anon_sym_for] = ACTIONS(1), - [anon_sym_try] = ACTIONS(1), - [anon_sym_while] = ACTIONS(1), - [anon_sym_operator] = ACTIONS(1), [sym__pascalCaseIdentifier] = ACTIONS(1), [sym__lookback_semicolon] = ACTIONS(1), [sym__closing_brace_marker] = ACTIONS(1), [sym__closing_brace_unmarker] = ACTIONS(3), }, [1] = { - [sym_module] = STATE(2728), - [sym_preprocessor_statement] = STATE(16), - [sym_package_statement] = STATE(16), - [sym_import_statement] = STATE(16), - [sym_using_statement] = STATE(16), - [sym_throw_statement] = STATE(16), - [sym__rhs_expression] = STATE(1000), - [sym__unaryExpression] = STATE(2870), - [sym_runtime_type_check_expression] = STATE(2870), - [sym_switch_expression] = STATE(498), - [sym_cast_expression] = STATE(2870), - [sym_type_trace_expression] = STATE(2870), - [sym__parenthesized_expression] = STATE(2551), - [sym_range_expression] = STATE(2870), - [sym_subscript_expression] = STATE(2870), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(16), - [sym_metadata] = STATE(1859), - [sym_conditional_statement] = STATE(16), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1000), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(16), - [sym__modifier] = STATE(1882), - [sym_class_declaration] = STATE(515), - [sym_interface_declaration] = STATE(515), - [sym_typedef_declaration] = STATE(515), - [sym_function_declaration] = STATE(515), - [sym_variable_declaration] = STATE(515), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(16), - [aux_sym_class_declaration_repeat1] = STATE(1859), - [aux_sym_function_declaration_repeat1] = STATE(1882), + [sym_module] = STATE(3326), + [sym_preprocessor_statement] = STATE(27), + [sym_package_statement] = STATE(27), + [sym_import_statement] = STATE(27), + [sym_using_statement] = STATE(27), + [sym_throw_statement] = STATE(27), + [sym__rhs_expression] = STATE(1214), + [sym__unaryExpression] = STATE(3480), + [sym_runtime_type_check_expression] = STATE(3480), + [sym_switch_expression] = STATE(838), + [sym_cast_expression] = STATE(3480), + [sym_type_trace_expression] = STATE(3480), + [sym__parenthesized_expression] = STATE(2642), + [sym_for_statement] = STATE(27), + [sym_range_expression] = STATE(3480), + [sym_subscript_expression] = STATE(3480), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(27), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(27), + [sym_conditional_statement] = STATE(27), + [sym_while_statement] = STATE(27), + [sym_do_while_statement] = STATE(27), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1214), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(27), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(27), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [anon_sym_POUND] = ACTIONS(9), [anon_sym_package] = ACTIONS(11), [anon_sym_import] = ACTIONS(13), - [anon_sym_using] = ACTIONS(15), - [anon_sym_throw] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(29), - [anon_sym_untyped] = ACTIONS(31), - [anon_sym_break] = ACTIONS(33), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_static] = ACTIONS(61), - [anon_sym_public] = ACTIONS(61), - [anon_sym_private] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym_overload] = ACTIONS(61), - [anon_sym_override] = ACTIONS(61), - [anon_sym_final] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_interface] = ACTIONS(69), - [anon_sym_typedef] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_var] = ACTIONS(75), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_return] = ACTIONS(33), + [anon_sym_untyped] = ACTIONS(35), + [anon_sym_break] = ACTIONS(37), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [2] = { - [sym_preprocessor_statement] = STATE(17), - [sym_package_statement] = STATE(17), - [sym_import_statement] = STATE(17), - [sym_using_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(576), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(17), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(17), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(17), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(17), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(115), + [anon_sym_default] = ACTIONS(115), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(119), + [anon_sym_untyped] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(125), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [3] = { - [sym_preprocessor_statement] = STATE(17), - [sym_package_statement] = STATE(17), - [sym_import_statement] = STATE(17), - [sym_using_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(283), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(17), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(17), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(17), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(17), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(131), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(151), + [anon_sym_default] = ACTIONS(151), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(153), + [anon_sym_untyped] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(125), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [4] = { - [sym_preprocessor_statement] = STATE(14), - [sym_package_statement] = STATE(14), - [sym_import_statement] = STATE(14), - [sym_using_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(258), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(14), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(14), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(14), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1644), - [sym_integer] = STATE(1644), - [sym_float] = STATE(1644), - [sym_bool] = STATE(1644), - [sym_string] = STATE(1356), - [sym_null] = STATE(1644), - [sym_array] = STATE(1644), - [sym_map] = STATE(1644), - [sym_object] = STATE(1644), - [sym_pair] = STATE(1174), - [aux_sym_module_repeat1] = STATE(14), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(133), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(135), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(115), + [anon_sym_default] = ACTIONS(115), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(119), + [anon_sym_untyped] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(163), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(167), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [5] = { - [sym_preprocessor_statement] = STATE(6), - [sym_package_statement] = STATE(6), - [sym_import_statement] = STATE(6), - [sym_using_statement] = STATE(6), - [sym_throw_statement] = STATE(6), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(2633), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(6), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(6), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(6), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(6), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(137), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(151), + [anon_sym_default] = ACTIONS(151), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(169), + [anon_sym_return] = ACTIONS(153), + [anon_sym_untyped] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(171), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_if] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [6] = { - [sym_preprocessor_statement] = STATE(17), - [sym_package_statement] = STATE(17), - [sym_import_statement] = STATE(17), - [sym_using_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(2654), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(17), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(17), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(17), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(17), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(137), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(115), + [anon_sym_default] = ACTIONS(115), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(169), + [anon_sym_return] = ACTIONS(119), + [anon_sym_untyped] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(171), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_if] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [7] = { - [sym_preprocessor_statement] = STATE(2), - [sym_package_statement] = STATE(2), - [sym_import_statement] = STATE(2), - [sym_using_statement] = STATE(2), - [sym_throw_statement] = STATE(2), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(303), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(2), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(2), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(2), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1644), - [sym_integer] = STATE(1644), - [sym_float] = STATE(1644), - [sym_bool] = STATE(1644), - [sym_string] = STATE(1356), - [sym_null] = STATE(1644), - [sym_array] = STATE(1644), - [sym_map] = STATE(1644), - [sym_object] = STATE(1644), - [sym_pair] = STATE(1174), - [aux_sym_module_repeat1] = STATE(2), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(133), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(137), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(151), + [anon_sym_default] = ACTIONS(151), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(153), + [anon_sym_untyped] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(163), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(167), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [8] = { - [sym_preprocessor_statement] = STATE(2), - [sym_package_statement] = STATE(2), - [sym_import_statement] = STATE(2), - [sym_using_statement] = STATE(2), - [sym_throw_statement] = STATE(2), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(518), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(2), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(2), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(2), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(2), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(25), + [sym_package_statement] = STATE(25), + [sym_import_statement] = STATE(25), + [sym_using_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(795), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(25), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(25), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(25), + [sym_conditional_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_while_statement] = STATE(25), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(25), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(25), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(129), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(193), [sym__closing_brace_unmarker] = ACTIONS(3), }, [9] = { - [sym_preprocessor_statement] = STATE(6), - [sym_package_statement] = STATE(6), - [sym_import_statement] = STATE(6), - [sym_using_statement] = STATE(6), - [sym_throw_statement] = STATE(6), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(2125), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(6), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(6), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(6), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1644), - [sym_integer] = STATE(1644), - [sym_float] = STATE(1644), - [sym_bool] = STATE(1644), - [sym_string] = STATE(1356), - [sym_null] = STATE(1644), - [sym_array] = STATE(1644), - [sym_map] = STATE(1644), - [sym_object] = STATE(1644), - [sym_pair] = STATE(1132), - [aux_sym_module_repeat1] = STATE(6), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(133), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(137), + [sym_preprocessor_statement] = STATE(8), + [sym_package_statement] = STATE(8), + [sym_import_statement] = STATE(8), + [sym_using_statement] = STATE(8), + [sym_throw_statement] = STATE(8), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(733), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(8), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(8), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(8), + [sym_conditional_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_while_statement] = STATE(8), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(8), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(8), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(193), [sym__closing_brace_unmarker] = ACTIONS(3), }, [10] = { - [sym_preprocessor_statement] = STATE(14), - [sym_package_statement] = STATE(14), - [sym_import_statement] = STATE(14), - [sym_using_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(575), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(14), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(14), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(14), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(14), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(139), + [sym_preprocessor_statement] = STATE(8), + [sym_package_statement] = STATE(8), + [sym_import_statement] = STATE(8), + [sym_using_statement] = STATE(8), + [sym_throw_statement] = STATE(8), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(415), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(8), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(8), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(8), + [sym_conditional_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_while_statement] = STATE(8), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(8), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1973), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1973), + [sym_bool] = STATE(1973), + [sym_string] = STATE(1625), + [sym_null] = STATE(1973), + [sym_array] = STATE(1973), + [sym_map] = STATE(1973), + [sym_object] = STATE(1973), + [sym_pair] = STATE(1443), + [aux_sym_module_repeat1] = STATE(8), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(195), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(197), [sym__closing_brace_unmarker] = ACTIONS(3), }, [11] = { - [sym_preprocessor_statement] = STATE(14), - [sym_package_statement] = STATE(14), - [sym_import_statement] = STATE(14), - [sym_using_statement] = STATE(14), - [sym_throw_statement] = STATE(14), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(288), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(14), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(14), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(14), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(14), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(115), + [anon_sym_default] = ACTIONS(115), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(199), + [anon_sym_return] = ACTIONS(119), + [anon_sym_untyped] = ACTIONS(121), + [anon_sym_break] = ACTIONS(123), + [anon_sym_continue] = ACTIONS(123), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_while] = ACTIONS(205), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [12] = { - [sym_preprocessor_statement] = STATE(3), - [sym_package_statement] = STATE(3), - [sym_import_statement] = STATE(3), - [sym_using_statement] = STATE(3), - [sym_throw_statement] = STATE(3), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(288), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(3), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(3), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(3), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(3), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(131), + [sym_preprocessor_statement] = STATE(13), + [sym_package_statement] = STATE(13), + [sym_import_statement] = STATE(13), + [sym_using_statement] = STATE(13), + [sym_throw_statement] = STATE(13), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(352), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(13), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(13), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(13), + [sym_conditional_statement] = STATE(13), + [sym_while_statement] = STATE(13), + [sym_do_while_statement] = STATE(13), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(13), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1973), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1973), + [sym_bool] = STATE(1973), + [sym_string] = STATE(1625), + [sym_null] = STATE(1973), + [sym_array] = STATE(1973), + [sym_map] = STATE(1973), + [sym_object] = STATE(1973), + [sym_pair] = STATE(1443), + [aux_sym_module_repeat1] = STATE(13), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(195), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(207), [sym__closing_brace_unmarker] = ACTIONS(3), }, [13] = { - [sym_preprocessor_statement] = STATE(17), - [sym_package_statement] = STATE(17), - [sym_import_statement] = STATE(17), - [sym_using_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(316), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(17), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(17), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(17), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(17), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(25), + [sym_package_statement] = STATE(25), + [sym_import_statement] = STATE(25), + [sym_using_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(558), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(25), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(25), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(25), + [sym_conditional_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_while_statement] = STATE(25), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(25), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(25), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(141), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(209), [sym__closing_brace_unmarker] = ACTIONS(3), }, [14] = { - [sym_preprocessor_statement] = STATE(17), - [sym_package_statement] = STATE(17), - [sym_import_statement] = STATE(17), - [sym_using_statement] = STATE(17), - [sym_throw_statement] = STATE(17), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(428), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(17), - [sym_metadata] = STATE(1866), - [sym_conditional_statement] = STATE(17), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(17), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(17), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(139), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_case] = ACTIONS(151), + [anon_sym_default] = ACTIONS(151), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(199), + [anon_sym_return] = ACTIONS(153), + [anon_sym_untyped] = ACTIONS(155), + [anon_sym_break] = ACTIONS(157), + [anon_sym_continue] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_while] = ACTIONS(205), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [15] = { @@ -11838,56590 +13564,80181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_import_statement] = STATE(13), [sym_using_statement] = STATE(13), [sym_throw_statement] = STATE(13), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym__closing_brace] = STATE(318), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(575), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(13), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), [sym_block] = STATE(13), - [sym_metadata] = STATE(1866), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(13), [sym_conditional_statement] = STATE(13), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), + [sym_while_statement] = STATE(13), + [sym_do_while_statement] = STATE(13), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), [sym_declaration] = STATE(13), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), [aux_sym_module_repeat1] = STATE(13), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(91), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(105), - [anon_sym_untyped] = ACTIONS(107), - [anon_sym_break] = ACTIONS(109), - [anon_sym_continue] = ACTIONS(109), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(111), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(115), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(117), - [anon_sym_class] = ACTIONS(119), - [anon_sym_interface] = ACTIONS(121), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(141), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(209), [sym__closing_brace_unmarker] = ACTIONS(3), }, [16] = { - [sym_preprocessor_statement] = STATE(18), - [sym_package_statement] = STATE(18), - [sym_import_statement] = STATE(18), - [sym_using_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym__rhs_expression] = STATE(1000), - [sym__unaryExpression] = STATE(2870), - [sym_runtime_type_check_expression] = STATE(2870), - [sym_switch_expression] = STATE(498), - [sym_cast_expression] = STATE(2870), - [sym_type_trace_expression] = STATE(2870), - [sym__parenthesized_expression] = STATE(2551), - [sym_range_expression] = STATE(2870), - [sym_subscript_expression] = STATE(2870), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(18), - [sym_metadata] = STATE(1859), - [sym_conditional_statement] = STATE(18), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1000), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(18), - [sym__modifier] = STATE(1882), - [sym_class_declaration] = STATE(515), - [sym_interface_declaration] = STATE(515), - [sym_typedef_declaration] = STATE(515), - [sym_function_declaration] = STATE(515), - [sym_variable_declaration] = STATE(515), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(18), - [aux_sym_class_declaration_repeat1] = STATE(1859), - [aux_sym_function_declaration_repeat1] = STATE(1882), - [ts_builtin_sym_end] = ACTIONS(143), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(9), - [anon_sym_package] = ACTIONS(11), - [anon_sym_import] = ACTIONS(13), - [anon_sym_using] = ACTIONS(15), - [anon_sym_throw] = ACTIONS(17), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(23), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(29), - [anon_sym_untyped] = ACTIONS(31), - [anon_sym_break] = ACTIONS(33), - [anon_sym_continue] = ACTIONS(33), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(43), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(61), - [anon_sym_abstract] = ACTIONS(63), - [anon_sym_static] = ACTIONS(61), - [anon_sym_public] = ACTIONS(61), - [anon_sym_private] = ACTIONS(61), - [anon_sym_extern] = ACTIONS(61), - [anon_sym_inline] = ACTIONS(61), - [anon_sym_overload] = ACTIONS(61), - [anon_sym_override] = ACTIONS(61), - [anon_sym_final] = ACTIONS(65), - [anon_sym_class] = ACTIONS(67), - [anon_sym_interface] = ACTIONS(69), - [anon_sym_typedef] = ACTIONS(71), - [anon_sym_function] = ACTIONS(73), - [anon_sym_var] = ACTIONS(75), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(8), + [sym_package_statement] = STATE(8), + [sym_import_statement] = STATE(8), + [sym_using_statement] = STATE(8), + [sym_throw_statement] = STATE(8), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(2041), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(8), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(8), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(8), + [sym_conditional_statement] = STATE(8), + [sym_while_statement] = STATE(8), + [sym_do_while_statement] = STATE(8), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(8), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1973), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1973), + [sym_bool] = STATE(1973), + [sym_string] = STATE(1625), + [sym_null] = STATE(1973), + [sym_array] = STATE(1973), + [sym_map] = STATE(1973), + [sym_object] = STATE(1973), + [sym_pair] = STATE(1446), + [aux_sym_module_repeat1] = STATE(8), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(195), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(193), [sym__closing_brace_unmarker] = ACTIONS(3), }, [17] = { + [sym_preprocessor_statement] = STATE(25), + [sym_package_statement] = STATE(25), + [sym_import_statement] = STATE(25), + [sym_using_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(3468), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(25), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(25), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(25), + [sym_conditional_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_while_statement] = STATE(25), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(25), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(25), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(197), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [18] = { [sym_preprocessor_statement] = STATE(17), [sym_package_statement] = STATE(17), [sym_import_statement] = STATE(17), [sym_using_statement] = STATE(17), [sym_throw_statement] = STATE(17), - [sym__rhs_expression] = STATE(1034), - [sym__unaryExpression] = STATE(2742), - [sym_runtime_type_check_expression] = STATE(2742), - [sym_switch_expression] = STATE(499), - [sym_cast_expression] = STATE(2742), - [sym_type_trace_expression] = STATE(2742), - [sym__parenthesized_expression] = STATE(2535), - [sym_range_expression] = STATE(2742), - [sym_subscript_expression] = STATE(2742), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(3350), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(17), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), [sym_block] = STATE(17), - [sym_metadata] = STATE(1866), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(17), [sym_conditional_statement] = STATE(17), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1034), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), + [sym_while_statement] = STATE(17), + [sym_do_while_statement] = STATE(17), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), [sym_declaration] = STATE(17), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), [aux_sym_module_repeat1] = STATE(17), - [aux_sym_class_declaration_repeat1] = STATE(1866), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(145), - [anon_sym_POUND] = ACTIONS(148), - [anon_sym_package] = ACTIONS(151), - [anon_sym_import] = ACTIONS(154), - [anon_sym_using] = ACTIONS(157), - [anon_sym_throw] = ACTIONS(160), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(166), - [anon_sym_LBRACE] = ACTIONS(169), - [anon_sym_cast] = ACTIONS(172), - [anon_sym_DOLLARtype] = ACTIONS(175), - [anon_sym_return] = ACTIONS(178), - [anon_sym_untyped] = ACTIONS(181), - [anon_sym_break] = ACTIONS(184), - [anon_sym_continue] = ACTIONS(184), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_this] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(193), - [anon_sym_AT_COLON] = ACTIONS(196), - [anon_sym_if] = ACTIONS(199), - [anon_sym_new] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(208), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(214), - [anon_sym_DASH_DASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_STAR] = ACTIONS(217), - [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_LT_LT] = ACTIONS(217), - [anon_sym_GT_GT] = ACTIONS(220), - [anon_sym_GT_GT_GT] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(220), - [anon_sym_PIPE] = ACTIONS(220), - [anon_sym_CARET] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(205), - [anon_sym_PIPE_PIPE] = ACTIONS(205), - [anon_sym_EQ_EQ] = ACTIONS(205), - [anon_sym_BANG_EQ] = ACTIONS(205), - [anon_sym_LT] = ACTIONS(208), - [anon_sym_LT_EQ] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(205), - [anon_sym_EQ_GT] = ACTIONS(205), - [anon_sym_QMARK_QMARK] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(208), - [sym__rangeOperator] = ACTIONS(205), - [anon_sym_null] = ACTIONS(223), - [anon_sym_macro] = ACTIONS(226), - [anon_sym_abstract] = ACTIONS(229), - [anon_sym_static] = ACTIONS(226), - [anon_sym_public] = ACTIONS(226), - [anon_sym_private] = ACTIONS(226), - [anon_sym_extern] = ACTIONS(226), - [anon_sym_inline] = ACTIONS(226), - [anon_sym_overload] = ACTIONS(226), - [anon_sym_override] = ACTIONS(226), - [anon_sym_final] = ACTIONS(232), - [anon_sym_class] = ACTIONS(235), - [anon_sym_interface] = ACTIONS(238), - [anon_sym_typedef] = ACTIONS(241), - [anon_sym_function] = ACTIONS(244), - [anon_sym_var] = ACTIONS(247), - [aux_sym_integer_token1] = ACTIONS(250), - [aux_sym_integer_token2] = ACTIONS(253), - [aux_sym_float_token1] = ACTIONS(256), - [aux_sym_float_token2] = ACTIONS(259), - [anon_sym_true] = ACTIONS(262), - [anon_sym_false] = ACTIONS(262), - [aux_sym_string_token1] = ACTIONS(265), - [aux_sym_string_token3] = ACTIONS(268), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(271), - [sym__closing_brace_unmarker] = ACTIONS(3), - }, - [18] = { - [sym_preprocessor_statement] = STATE(18), - [sym_package_statement] = STATE(18), - [sym_import_statement] = STATE(18), - [sym_using_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym__rhs_expression] = STATE(1000), - [sym__unaryExpression] = STATE(2870), - [sym_runtime_type_check_expression] = STATE(2870), - [sym_switch_expression] = STATE(498), - [sym_cast_expression] = STATE(2870), - [sym_type_trace_expression] = STATE(2870), - [sym__parenthesized_expression] = STATE(2551), - [sym_range_expression] = STATE(2870), - [sym_subscript_expression] = STATE(2870), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(18), - [sym_metadata] = STATE(1859), - [sym_conditional_statement] = STATE(18), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1000), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(18), - [sym__modifier] = STATE(1882), - [sym_class_declaration] = STATE(515), - [sym_interface_declaration] = STATE(515), - [sym_typedef_declaration] = STATE(515), - [sym_function_declaration] = STATE(515), - [sym_variable_declaration] = STATE(515), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_module_repeat1] = STATE(18), - [aux_sym_class_declaration_repeat1] = STATE(1859), - [aux_sym_function_declaration_repeat1] = STATE(1882), - [ts_builtin_sym_end] = ACTIONS(271), - [sym_identifier] = ACTIONS(145), - [anon_sym_POUND] = ACTIONS(273), - [anon_sym_package] = ACTIONS(276), - [anon_sym_import] = ACTIONS(279), - [anon_sym_using] = ACTIONS(282), - [anon_sym_throw] = ACTIONS(285), - [anon_sym_LPAREN] = ACTIONS(163), - [anon_sym_switch] = ACTIONS(288), - [anon_sym_LBRACE] = ACTIONS(291), - [anon_sym_cast] = ACTIONS(172), - [anon_sym_DOLLARtype] = ACTIONS(175), - [anon_sym_return] = ACTIONS(294), - [anon_sym_untyped] = ACTIONS(297), - [anon_sym_break] = ACTIONS(300), - [anon_sym_continue] = ACTIONS(300), - [anon_sym_LBRACK] = ACTIONS(187), - [anon_sym_this] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(193), - [anon_sym_AT_COLON] = ACTIONS(196), - [anon_sym_if] = ACTIONS(303), - [anon_sym_new] = ACTIONS(202), - [anon_sym_TILDE] = ACTIONS(205), - [anon_sym_BANG] = ACTIONS(208), - [anon_sym_DASH] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(214), - [anon_sym_DASH_DASH] = ACTIONS(214), - [anon_sym_PERCENT] = ACTIONS(217), - [anon_sym_STAR] = ACTIONS(217), - [anon_sym_SLASH] = ACTIONS(220), - [anon_sym_PLUS] = ACTIONS(220), - [anon_sym_LT_LT] = ACTIONS(217), - [anon_sym_GT_GT] = ACTIONS(220), - [anon_sym_GT_GT_GT] = ACTIONS(217), - [anon_sym_AMP] = ACTIONS(220), - [anon_sym_PIPE] = ACTIONS(220), - [anon_sym_CARET] = ACTIONS(217), - [anon_sym_AMP_AMP] = ACTIONS(205), - [anon_sym_PIPE_PIPE] = ACTIONS(205), - [anon_sym_EQ_EQ] = ACTIONS(205), - [anon_sym_BANG_EQ] = ACTIONS(205), - [anon_sym_LT] = ACTIONS(208), - [anon_sym_LT_EQ] = ACTIONS(205), - [anon_sym_GT] = ACTIONS(208), - [anon_sym_GT_EQ] = ACTIONS(205), - [anon_sym_EQ_GT] = ACTIONS(205), - [anon_sym_QMARK_QMARK] = ACTIONS(205), - [anon_sym_EQ] = ACTIONS(208), - [sym__rangeOperator] = ACTIONS(205), - [anon_sym_null] = ACTIONS(223), - [anon_sym_macro] = ACTIONS(306), - [anon_sym_abstract] = ACTIONS(309), - [anon_sym_static] = ACTIONS(306), - [anon_sym_public] = ACTIONS(306), - [anon_sym_private] = ACTIONS(306), - [anon_sym_extern] = ACTIONS(306), - [anon_sym_inline] = ACTIONS(306), - [anon_sym_overload] = ACTIONS(306), - [anon_sym_override] = ACTIONS(306), - [anon_sym_final] = ACTIONS(312), - [anon_sym_class] = ACTIONS(315), - [anon_sym_interface] = ACTIONS(318), - [anon_sym_typedef] = ACTIONS(321), - [anon_sym_function] = ACTIONS(324), - [anon_sym_var] = ACTIONS(327), - [aux_sym_integer_token1] = ACTIONS(250), - [aux_sym_integer_token2] = ACTIONS(253), - [aux_sym_float_token1] = ACTIONS(256), - [aux_sym_float_token2] = ACTIONS(259), - [anon_sym_true] = ACTIONS(262), - [anon_sym_false] = ACTIONS(262), - [aux_sym_string_token1] = ACTIONS(265), - [aux_sym_string_token3] = ACTIONS(268), - [sym_comment] = ACTIONS(3), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(197), [sym__closing_brace_unmarker] = ACTIONS(3), }, [19] = { - [sym_preprocessor_statement] = STATE(2339), - [sym_package_statement] = STATE(2339), - [sym_import_statement] = STATE(2339), - [sym_using_statement] = STATE(2339), - [sym_throw_statement] = STATE(2339), - [sym__rhs_expression] = STATE(979), - [sym__unaryExpression] = STATE(2750), - [sym_runtime_type_check_expression] = STATE(2750), - [sym_switch_expression] = STATE(2165), - [sym_cast_expression] = STATE(2750), - [sym_type_trace_expression] = STATE(2750), - [sym__parenthesized_expression] = STATE(2546), - [sym_range_expression] = STATE(2750), - [sym_subscript_expression] = STATE(2750), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(2339), - [sym_metadata] = STATE(1861), - [sym_conditional_statement] = STATE(2339), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(979), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(2339), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_class_declaration_repeat1] = STATE(1861), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(330), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(332), - [anon_sym_untyped] = ACTIONS(334), - [anon_sym_break] = ACTIONS(336), - [anon_sym_continue] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(338), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(340), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(342), - [anon_sym_class] = ACTIONS(344), - [anon_sym_interface] = ACTIONS(346), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(159), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_package] = ACTIONS(217), + [anon_sym_import] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(226), + [anon_sym_throw] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(247), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(271), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(274), + [anon_sym_while] = ACTIONS(277), + [anon_sym_do] = ACTIONS(280), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(307), + [anon_sym_abstract] = ACTIONS(307), + [anon_sym_static] = ACTIONS(307), + [anon_sym_public] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_extern] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym_overload] = ACTIONS(307), + [anon_sym_override] = ACTIONS(307), + [anon_sym_final] = ACTIONS(310), + [anon_sym_class] = ACTIONS(313), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(319), + [anon_sym_typedef] = ACTIONS(322), + [anon_sym_function] = ACTIONS(325), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [20] = { - [sym_preprocessor_statement] = STATE(2298), - [sym_package_statement] = STATE(2298), - [sym_import_statement] = STATE(2298), - [sym_using_statement] = STATE(2298), - [sym_throw_statement] = STATE(2298), - [sym__rhs_expression] = STATE(914), - [sym__unaryExpression] = STATE(2640), - [sym_runtime_type_check_expression] = STATE(2640), - [sym_switch_expression] = STATE(2276), - [sym_cast_expression] = STATE(2640), - [sym_type_trace_expression] = STATE(2640), - [sym__parenthesized_expression] = STATE(2606), - [sym_range_expression] = STATE(2640), - [sym_subscript_expression] = STATE(2640), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym_block] = STATE(2298), - [sym_metadata] = STATE(1861), - [sym_conditional_statement] = STATE(2298), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(914), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym_declaration] = STATE(2298), - [sym__modifier] = STATE(1885), - [sym_class_declaration] = STATE(369), - [sym_interface_declaration] = STATE(369), - [sym_typedef_declaration] = STATE(369), - [sym_function_declaration] = STATE(369), - [sym_variable_declaration] = STATE(369), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [aux_sym_class_declaration_repeat1] = STATE(1861), - [aux_sym_function_declaration_repeat1] = STATE(1885), - [sym_identifier] = ACTIONS(7), - [anon_sym_POUND] = ACTIONS(330), - [anon_sym_package] = ACTIONS(93), - [anon_sym_import] = ACTIONS(95), - [anon_sym_using] = ACTIONS(97), - [anon_sym_throw] = ACTIONS(99), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(103), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(348), - [anon_sym_untyped] = ACTIONS(350), - [anon_sym_break] = ACTIONS(352), - [anon_sym_continue] = ACTIONS(352), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_AT] = ACTIONS(39), - [anon_sym_AT_COLON] = ACTIONS(41), - [anon_sym_if] = ACTIONS(338), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [anon_sym_macro] = ACTIONS(113), - [anon_sym_abstract] = ACTIONS(340), - [anon_sym_static] = ACTIONS(113), - [anon_sym_public] = ACTIONS(113), - [anon_sym_private] = ACTIONS(113), - [anon_sym_extern] = ACTIONS(113), - [anon_sym_inline] = ACTIONS(113), - [anon_sym_overload] = ACTIONS(113), - [anon_sym_override] = ACTIONS(113), - [anon_sym_final] = ACTIONS(342), - [anon_sym_class] = ACTIONS(344), - [anon_sym_interface] = ACTIONS(346), - [anon_sym_typedef] = ACTIONS(123), - [anon_sym_function] = ACTIONS(125), - [anon_sym_var] = ACTIONS(127), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(17), + [sym_package_statement] = STATE(17), + [sym_import_statement] = STATE(17), + [sym_using_statement] = STATE(17), + [sym_throw_statement] = STATE(17), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym__closing_brace] = STATE(2717), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(17), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(17), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(17), + [sym_conditional_statement] = STATE(17), + [sym_while_statement] = STATE(17), + [sym_do_while_statement] = STATE(17), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(17), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1973), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1973), + [sym_bool] = STATE(1973), + [sym_string] = STATE(1625), + [sym_null] = STATE(1973), + [sym_array] = STATE(1973), + [sym_map] = STATE(1973), + [sym_object] = STATE(1973), + [sym_pair] = STATE(1446), + [aux_sym_module_repeat1] = STATE(17), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(195), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(181), + [anon_sym_untyped] = ACTIONS(183), + [anon_sym_break] = ACTIONS(185), + [anon_sym_continue] = ACTIONS(185), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(197), [sym__closing_brace_unmarker] = ACTIONS(3), }, [21] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(71), - [sym_runtime_type_check_expression] = STATE(71), - [sym_switch_expression] = STATE(71), - [sym_cast_expression] = STATE(71), - [sym_type_trace_expression] = STATE(71), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(71), - [sym_subscript_expression] = STATE(71), - [sym_member_expression] = STATE(762), - [sym__lhs_expression] = STATE(1928), - [sym_builtin_type] = STATE(1931), - [sym__function_type_args] = STATE(2724), - [sym_function_type] = STATE(2028), - [sym_type] = STATE(2135), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(766), - [sym_integer] = STATE(766), - [sym_float] = STATE(766), - [sym_bool] = STATE(766), - [sym_string] = STATE(765), - [sym_null] = STATE(766), - [sym_array] = STATE(766), - [sym_map] = STATE(766), - [sym_object] = STATE(766), - [sym_structure_type_pair] = STATE(2692), - [sym_pair] = STATE(766), - [aux_sym__parenthesized_expression_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(354), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_RPAREN] = ACTIONS(358), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(376), - [anon_sym_Void] = ACTIONS(378), - [anon_sym_Int] = ACTIONS(378), - [anon_sym_Float] = ACTIONS(378), - [anon_sym_Bool] = ACTIONS(378), - [anon_sym_Null] = ACTIONS(378), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(355), + [anon_sym_package] = ACTIONS(358), + [anon_sym_import] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(367), + [anon_sym_throw] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(388), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(412), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(415), + [anon_sym_while] = ACTIONS(418), + [anon_sym_do] = ACTIONS(421), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(448), + [anon_sym_abstract] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_public] = ACTIONS(448), + [anon_sym_private] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_overload] = ACTIONS(448), + [anon_sym_override] = ACTIONS(448), + [anon_sym_final] = ACTIONS(451), + [anon_sym_class] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(463), + [anon_sym_function] = ACTIONS(466), + [anon_sym_var] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [22] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(66), - [sym_runtime_type_check_expression] = STATE(66), - [sym_switch_expression] = STATE(66), - [sym_cast_expression] = STATE(66), - [sym_type_trace_expression] = STATE(66), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(762), - [sym__lhs_expression] = STATE(1928), - [sym_builtin_type] = STATE(1931), - [sym__function_type_args] = STATE(2740), - [sym_function_type] = STATE(2028), - [sym_type] = STATE(2151), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(766), - [sym_integer] = STATE(766), - [sym_float] = STATE(766), - [sym_bool] = STATE(766), - [sym_string] = STATE(765), - [sym_null] = STATE(766), - [sym_array] = STATE(766), - [sym_map] = STATE(766), - [sym_object] = STATE(766), - [sym_structure_type_pair] = STATE(2768), - [sym_pair] = STATE(766), - [aux_sym__parenthesized_expression_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(354), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_RPAREN] = ACTIONS(398), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(376), - [anon_sym_Void] = ACTIONS(378), - [anon_sym_Int] = ACTIONS(378), - [anon_sym_Float] = ACTIONS(378), - [anon_sym_Bool] = ACTIONS(378), - [anon_sym_Null] = ACTIONS(378), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(502), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(514), + [anon_sym_return] = ACTIONS(517), + [anon_sym_untyped] = ACTIONS(520), + [anon_sym_break] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(526), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(529), + [anon_sym_while] = ACTIONS(532), + [anon_sym_do] = ACTIONS(535), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_inline] = ACTIONS(538), + [anon_sym_overload] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_final] = ACTIONS(541), + [anon_sym_class] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(553), + [anon_sym_function] = ACTIONS(556), + [anon_sym_var] = ACTIONS(559), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [23] = { - [sym__rhs_expression] = STATE(796), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(762), - [sym__lhs_expression] = STATE(1936), - [sym_builtin_type] = STATE(1931), - [sym_function_type] = STATE(2028), - [sym_type] = STATE(2210), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(796), - [sym_operator] = STATE(1549), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1655), - [sym_integer] = STATE(1655), - [sym_float] = STATE(1655), - [sym_bool] = STATE(1655), - [sym_string] = STATE(1204), - [sym_null] = STATE(1655), - [sym_array] = STATE(1655), - [sym_map] = STATE(1655), - [sym_object] = STATE(1655), - [sym_pair] = STATE(1655), - [sym_identifier] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(404), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(406), - [anon_sym_untyped] = ACTIONS(408), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_Void] = ACTIONS(378), - [anon_sym_Int] = ACTIONS(378), - [anon_sym_Float] = ACTIONS(378), - [anon_sym_Bool] = ACTIONS(378), - [anon_sym_Null] = ACTIONS(378), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_package] = ACTIONS(565), + [anon_sym_import] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(583), + [anon_sym_return] = ACTIONS(586), + [anon_sym_untyped] = ACTIONS(589), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(595), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(598), + [anon_sym_while] = ACTIONS(601), + [anon_sym_do] = ACTIONS(604), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(607), + [anon_sym_abstract] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_public] = ACTIONS(607), + [anon_sym_private] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_overload] = ACTIONS(607), + [anon_sym_override] = ACTIONS(607), + [anon_sym_final] = ACTIONS(610), + [anon_sym_class] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_function] = ACTIONS(625), + [anon_sym_var] = ACTIONS(628), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [24] = { - [sym__rhs_expression] = STATE(697), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(762), - [sym__lhs_expression] = STATE(1928), - [sym_builtin_type] = STATE(1931), - [sym_function_type] = STATE(2028), - [sym_type] = STATE(2281), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(697), - [sym_operator] = STATE(1548), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(768), - [sym_integer] = STATE(768), - [sym_float] = STATE(768), - [sym_bool] = STATE(768), - [sym_string] = STATE(765), - [sym_null] = STATE(768), - [sym_array] = STATE(768), - [sym_map] = STATE(768), - [sym_object] = STATE(768), - [sym_pair] = STATE(768), - [sym_identifier] = ACTIONS(416), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(418), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(420), - [anon_sym_untyped] = ACTIONS(422), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_Void] = ACTIONS(378), - [anon_sym_Int] = ACTIONS(378), - [anon_sym_Float] = ACTIONS(378), - [anon_sym_Bool] = ACTIONS(378), - [anon_sym_Null] = ACTIONS(378), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(24), + [sym_package_statement] = STATE(24), + [sym_import_statement] = STATE(24), + [sym_using_statement] = STATE(24), + [sym_throw_statement] = STATE(24), + [sym__rhs_expression] = STATE(1214), + [sym__unaryExpression] = STATE(3480), + [sym_runtime_type_check_expression] = STATE(3480), + [sym_switch_expression] = STATE(838), + [sym_cast_expression] = STATE(3480), + [sym_type_trace_expression] = STATE(3480), + [sym__parenthesized_expression] = STATE(2642), + [sym_for_statement] = STATE(24), + [sym_range_expression] = STATE(3480), + [sym_subscript_expression] = STATE(3480), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(24), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(24), + [sym_conditional_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_while_statement] = STATE(24), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1214), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(24), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(24), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(631), + [sym_identifier] = ACTIONS(633), + [anon_sym_POUND] = ACTIONS(636), + [anon_sym_package] = ACTIONS(639), + [anon_sym_import] = ACTIONS(642), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_using] = ACTIONS(648), + [anon_sym_throw] = ACTIONS(651), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(657), + [anon_sym_LBRACE] = ACTIONS(660), + [anon_sym_cast] = ACTIONS(663), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_for] = ACTIONS(669), + [anon_sym_return] = ACTIONS(672), + [anon_sym_untyped] = ACTIONS(675), + [anon_sym_break] = ACTIONS(678), + [anon_sym_continue] = ACTIONS(678), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_this] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_AT_COLON] = ACTIONS(690), + [anon_sym_try] = ACTIONS(693), + [anon_sym_if] = ACTIONS(696), + [anon_sym_while] = ACTIONS(699), + [anon_sym_do] = ACTIONS(702), + [anon_sym_new] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_PERCENT] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_GT_GT_GT] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(708), + [anon_sym_BANG_EQ] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_LT_EQ] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_EQ] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(708), + [anon_sym_QMARK_QMARK] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [anon_sym_null] = ACTIONS(726), + [anon_sym_macro] = ACTIONS(729), + [anon_sym_abstract] = ACTIONS(729), + [anon_sym_static] = ACTIONS(729), + [anon_sym_public] = ACTIONS(729), + [anon_sym_private] = ACTIONS(729), + [anon_sym_extern] = ACTIONS(729), + [anon_sym_inline] = ACTIONS(729), + [anon_sym_overload] = ACTIONS(729), + [anon_sym_override] = ACTIONS(729), + [anon_sym_final] = ACTIONS(732), + [anon_sym_class] = ACTIONS(735), + [anon_sym_interface] = ACTIONS(738), + [anon_sym_enum] = ACTIONS(741), + [anon_sym_typedef] = ACTIONS(744), + [anon_sym_function] = ACTIONS(747), + [anon_sym_var] = ACTIONS(750), + [aux_sym_integer_token1] = ACTIONS(753), + [aux_sym_integer_token2] = ACTIONS(756), + [aux_sym_float_token1] = ACTIONS(759), + [aux_sym_float_token2] = ACTIONS(762), + [anon_sym_true] = ACTIONS(765), + [anon_sym_false] = ACTIONS(765), + [aux_sym_string_token1] = ACTIONS(768), + [aux_sym_string_token3] = ACTIONS(771), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [25] = { - [sym__rhs_expression] = STATE(796), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(762), - [sym__lhs_expression] = STATE(1936), - [sym_builtin_type] = STATE(1931), - [sym_function_type] = STATE(2028), - [sym_type] = STATE(2338), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(796), - [sym_operator] = STATE(1549), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1655), - [sym_integer] = STATE(1655), - [sym_float] = STATE(1655), - [sym_bool] = STATE(1655), - [sym_string] = STATE(1204), - [sym_null] = STATE(1655), - [sym_array] = STATE(1655), - [sym_map] = STATE(1655), - [sym_object] = STATE(1655), - [sym_pair] = STATE(1655), - [sym_identifier] = ACTIONS(402), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(404), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(406), - [anon_sym_untyped] = ACTIONS(408), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_Void] = ACTIONS(378), - [anon_sym_Int] = ACTIONS(378), - [anon_sym_Float] = ACTIONS(378), - [anon_sym_Bool] = ACTIONS(378), - [anon_sym_Null] = ACTIONS(378), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(25), + [sym_package_statement] = STATE(25), + [sym_import_statement] = STATE(25), + [sym_using_statement] = STATE(25), + [sym_throw_statement] = STATE(25), + [sym__rhs_expression] = STATE(1187), + [sym__unaryExpression] = STATE(3535), + [sym_runtime_type_check_expression] = STATE(3535), + [sym_switch_expression] = STATE(837), + [sym_cast_expression] = STATE(3535), + [sym_type_trace_expression] = STATE(3535), + [sym__parenthesized_expression] = STATE(2640), + [sym_for_statement] = STATE(25), + [sym_range_expression] = STATE(3535), + [sym_subscript_expression] = STATE(3535), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(25), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(25), + [sym_conditional_statement] = STATE(25), + [sym_while_statement] = STATE(25), + [sym_do_while_statement] = STATE(25), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1187), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(25), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(25), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(633), + [anon_sym_POUND] = ACTIONS(774), + [anon_sym_package] = ACTIONS(777), + [anon_sym_import] = ACTIONS(780), + [anon_sym_STAR] = ACTIONS(645), + [anon_sym_using] = ACTIONS(783), + [anon_sym_throw] = ACTIONS(786), + [anon_sym_LPAREN] = ACTIONS(654), + [anon_sym_switch] = ACTIONS(789), + [anon_sym_LBRACE] = ACTIONS(792), + [anon_sym_cast] = ACTIONS(663), + [anon_sym_DOLLARtype] = ACTIONS(666), + [anon_sym_for] = ACTIONS(795), + [anon_sym_return] = ACTIONS(798), + [anon_sym_untyped] = ACTIONS(801), + [anon_sym_break] = ACTIONS(804), + [anon_sym_continue] = ACTIONS(804), + [anon_sym_LBRACK] = ACTIONS(681), + [anon_sym_this] = ACTIONS(684), + [anon_sym_AT] = ACTIONS(687), + [anon_sym_AT_COLON] = ACTIONS(690), + [anon_sym_try] = ACTIONS(807), + [anon_sym_if] = ACTIONS(810), + [anon_sym_while] = ACTIONS(813), + [anon_sym_do] = ACTIONS(816), + [anon_sym_new] = ACTIONS(705), + [anon_sym_TILDE] = ACTIONS(708), + [anon_sym_BANG] = ACTIONS(711), + [anon_sym_DASH] = ACTIONS(714), + [anon_sym_PLUS_PLUS] = ACTIONS(717), + [anon_sym_DASH_DASH] = ACTIONS(717), + [anon_sym_PERCENT] = ACTIONS(645), + [anon_sym_SLASH] = ACTIONS(720), + [anon_sym_PLUS] = ACTIONS(720), + [anon_sym_LT_LT] = ACTIONS(645), + [anon_sym_GT_GT] = ACTIONS(720), + [anon_sym_GT_GT_GT] = ACTIONS(645), + [anon_sym_AMP] = ACTIONS(720), + [anon_sym_PIPE] = ACTIONS(720), + [anon_sym_CARET] = ACTIONS(645), + [anon_sym_AMP_AMP] = ACTIONS(708), + [anon_sym_PIPE_PIPE] = ACTIONS(708), + [anon_sym_EQ_EQ] = ACTIONS(708), + [anon_sym_BANG_EQ] = ACTIONS(708), + [anon_sym_LT] = ACTIONS(711), + [anon_sym_LT_EQ] = ACTIONS(708), + [anon_sym_GT] = ACTIONS(711), + [anon_sym_GT_EQ] = ACTIONS(708), + [anon_sym_EQ_GT] = ACTIONS(708), + [anon_sym_QMARK_QMARK] = ACTIONS(708), + [anon_sym_EQ] = ACTIONS(711), + [anon_sym_DOT_DOT_DOT] = ACTIONS(723), + [anon_sym_null] = ACTIONS(726), + [anon_sym_macro] = ACTIONS(819), + [anon_sym_abstract] = ACTIONS(819), + [anon_sym_static] = ACTIONS(819), + [anon_sym_public] = ACTIONS(819), + [anon_sym_private] = ACTIONS(819), + [anon_sym_extern] = ACTIONS(819), + [anon_sym_inline] = ACTIONS(819), + [anon_sym_overload] = ACTIONS(819), + [anon_sym_override] = ACTIONS(819), + [anon_sym_final] = ACTIONS(822), + [anon_sym_class] = ACTIONS(825), + [anon_sym_interface] = ACTIONS(828), + [anon_sym_enum] = ACTIONS(831), + [anon_sym_typedef] = ACTIONS(834), + [anon_sym_function] = ACTIONS(837), + [anon_sym_var] = ACTIONS(840), + [aux_sym_integer_token1] = ACTIONS(753), + [aux_sym_integer_token2] = ACTIONS(756), + [aux_sym_float_token1] = ACTIONS(759), + [aux_sym_float_token2] = ACTIONS(762), + [anon_sym_true] = ACTIONS(765), + [anon_sym_false] = ACTIONS(765), + [aux_sym_string_token1] = ACTIONS(768), + [aux_sym_string_token3] = ACTIONS(771), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(631), [sym__closing_brace_unmarker] = ACTIONS(3), }, [26] = { - [sym__rhs_expression] = STATE(897), - [sym__unaryExpression] = STATE(274), - [sym_runtime_type_check_expression] = STATE(274), - [sym_switch_expression] = STATE(274), - [sym_cast_expression] = STATE(274), - [sym_type_trace_expression] = STATE(274), - [sym__parenthesized_expression] = STATE(279), - [sym_range_expression] = STATE(274), - [sym_subscript_expression] = STATE(274), - [sym_member_expression] = STATE(1226), - [sym__lhs_expression] = STATE(1934), - [sym_builtin_type] = STATE(2024), - [sym_function_type] = STATE(2367), - [sym_type] = STATE(2442), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(897), - [sym_operator] = STATE(1477), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1443), - [sym_integer] = STATE(1443), - [sym_float] = STATE(1443), - [sym_bool] = STATE(1443), - [sym_string] = STATE(1175), - [sym_null] = STATE(1443), - [sym_array] = STATE(1443), - [sym_map] = STATE(1443), - [sym_object] = STATE(1443), - [sym_pair] = STATE(1443), - [sym_identifier] = ACTIONS(424), - [anon_sym_LPAREN] = ACTIONS(426), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(432), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(436), - [anon_sym_untyped] = ACTIONS(438), - [anon_sym_break] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(444), - [anon_sym_Void] = ACTIONS(446), - [anon_sym_Int] = ACTIONS(446), - [anon_sym_Float] = ACTIONS(446), - [anon_sym_Bool] = ACTIONS(446), - [anon_sym_Null] = ACTIONS(446), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(355), + [anon_sym_package] = ACTIONS(358), + [anon_sym_import] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(367), + [anon_sym_throw] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(843), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(846), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(849), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(421), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(448), + [anon_sym_abstract] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_public] = ACTIONS(448), + [anon_sym_private] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_overload] = ACTIONS(448), + [anon_sym_override] = ACTIONS(448), + [anon_sym_final] = ACTIONS(451), + [anon_sym_class] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(463), + [anon_sym_function] = ACTIONS(466), + [anon_sym_var] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [27] = { - [sym__rhs_expression] = STATE(697), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(762), - [sym__lhs_expression] = STATE(1928), - [sym_builtin_type] = STATE(1931), - [sym_function_type] = STATE(2028), - [sym_type] = STATE(2504), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(697), - [sym_operator] = STATE(1548), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(768), - [sym_integer] = STATE(768), - [sym_float] = STATE(768), - [sym_bool] = STATE(768), - [sym_string] = STATE(765), - [sym_null] = STATE(768), - [sym_array] = STATE(768), - [sym_map] = STATE(768), - [sym_object] = STATE(768), - [sym_pair] = STATE(768), - [sym_identifier] = ACTIONS(416), - [anon_sym_LPAREN] = ACTIONS(356), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(418), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(420), - [anon_sym_untyped] = ACTIONS(422), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_Void] = ACTIONS(378), - [anon_sym_Int] = ACTIONS(378), - [anon_sym_Float] = ACTIONS(378), - [anon_sym_Bool] = ACTIONS(378), - [anon_sym_Null] = ACTIONS(378), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(24), + [sym_package_statement] = STATE(24), + [sym_import_statement] = STATE(24), + [sym_using_statement] = STATE(24), + [sym_throw_statement] = STATE(24), + [sym__rhs_expression] = STATE(1214), + [sym__unaryExpression] = STATE(3480), + [sym_runtime_type_check_expression] = STATE(3480), + [sym_switch_expression] = STATE(838), + [sym_cast_expression] = STATE(3480), + [sym_type_trace_expression] = STATE(3480), + [sym__parenthesized_expression] = STATE(2642), + [sym_for_statement] = STATE(24), + [sym_range_expression] = STATE(3480), + [sym_subscript_expression] = STATE(3480), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(24), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(24), + [sym_conditional_statement] = STATE(24), + [sym_while_statement] = STATE(24), + [sym_do_while_statement] = STATE(24), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1214), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(24), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_module_repeat1] = STATE(24), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(855), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_return] = ACTIONS(33), + [anon_sym_untyped] = ACTIONS(35), + [anon_sym_break] = ACTIONS(37), + [anon_sym_continue] = ACTIONS(37), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [28] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2377), - [sym_integer] = STATE(2377), - [sym_float] = STATE(2377), - [sym_bool] = STATE(2377), - [sym_string] = STATE(1926), - [sym_null] = STATE(2377), - [sym_array] = STATE(2377), - [sym_map] = STATE(2377), - [sym_object] = STATE(2377), - [sym_pair] = STATE(2377), - [aux_sym_member_expression_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(466), - [sym_identifier] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_package] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_import] = ACTIONS(470), - [anon_sym_using] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_DOLLARtype] = ACTIONS(466), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_this] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_AT_COLON] = ACTIONS(466), - [anon_sym_if] = ACTIONS(470), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK_QMARK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(466), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(470), - [anon_sym_abstract] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_public] = ACTIONS(470), - [anon_sym_private] = ACTIONS(470), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_inline] = ACTIONS(470), - [anon_sym_overload] = ACTIONS(470), - [anon_sym_override] = ACTIONS(470), - [anon_sym_final] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_interface] = ACTIONS(470), - [anon_sym_typedef] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_var] = ACTIONS(470), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(159), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_package] = ACTIONS(217), + [anon_sym_import] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(226), + [anon_sym_throw] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(857), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(860), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(863), + [anon_sym_while] = ACTIONS(866), + [anon_sym_do] = ACTIONS(280), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(307), + [anon_sym_abstract] = ACTIONS(307), + [anon_sym_static] = ACTIONS(307), + [anon_sym_public] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_extern] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym_overload] = ACTIONS(307), + [anon_sym_override] = ACTIONS(307), + [anon_sym_final] = ACTIONS(310), + [anon_sym_class] = ACTIONS(313), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(319), + [anon_sym_typedef] = ACTIONS(322), + [anon_sym_function] = ACTIONS(325), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [29] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2377), - [sym_integer] = STATE(2377), - [sym_float] = STATE(2377), - [sym_bool] = STATE(2377), - [sym_string] = STATE(1926), - [sym_null] = STATE(2377), - [sym_array] = STATE(2377), - [sym_map] = STATE(2377), - [sym_object] = STATE(2377), - [sym_pair] = STATE(2377), - [aux_sym_member_expression_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(474), - [sym_identifier] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_package] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_import] = ACTIONS(476), - [anon_sym_using] = ACTIONS(476), - [anon_sym_throw] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_DOLLARtype] = ACTIONS(474), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_this] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_AT] = ACTIONS(476), - [anon_sym_AT_COLON] = ACTIONS(474), - [anon_sym_if] = ACTIONS(476), - [anon_sym_new] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [sym__rangeOperator] = ACTIONS(474), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(476), - [anon_sym_abstract] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_public] = ACTIONS(476), - [anon_sym_private] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_inline] = ACTIONS(476), - [anon_sym_overload] = ACTIONS(476), - [anon_sym_override] = ACTIONS(476), - [anon_sym_final] = ACTIONS(476), - [anon_sym_class] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_typedef] = ACTIONS(476), - [anon_sym_function] = ACTIONS(476), - [anon_sym_var] = ACTIONS(476), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(159), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_package] = ACTIONS(217), + [anon_sym_import] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(226), + [anon_sym_throw] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(869), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(872), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_if] = ACTIONS(875), + [anon_sym_while] = ACTIONS(878), + [anon_sym_do] = ACTIONS(280), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(307), + [anon_sym_abstract] = ACTIONS(307), + [anon_sym_static] = ACTIONS(307), + [anon_sym_public] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_extern] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym_overload] = ACTIONS(307), + [anon_sym_override] = ACTIONS(307), + [anon_sym_final] = ACTIONS(310), + [anon_sym_class] = ACTIONS(313), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(319), + [anon_sym_typedef] = ACTIONS(322), + [anon_sym_function] = ACTIONS(325), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [30] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2377), - [sym_integer] = STATE(2377), - [sym_float] = STATE(2377), - [sym_bool] = STATE(2377), - [sym_string] = STATE(1926), - [sym_null] = STATE(2377), - [sym_array] = STATE(2377), - [sym_map] = STATE(2377), - [sym_object] = STATE(2377), - [sym_pair] = STATE(2377), - [aux_sym_member_expression_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(478), - [sym_identifier] = ACTIONS(480), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_package] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_using] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_DOLLARtype] = ACTIONS(478), - [anon_sym_return] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_this] = ACTIONS(491), - [anon_sym_QMARK] = ACTIONS(483), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_AT_COLON] = ACTIONS(478), - [anon_sym_if] = ACTIONS(483), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK_QMARK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(478), - [anon_sym_null] = ACTIONS(494), - [anon_sym_macro] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym_overload] = ACTIONS(483), - [anon_sym_override] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_function] = ACTIONS(483), - [anon_sym_var] = ACTIONS(483), - [aux_sym_integer_token1] = ACTIONS(497), - [aux_sym_integer_token2] = ACTIONS(500), - [aux_sym_float_token1] = ACTIONS(503), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [aux_sym_string_token1] = ACTIONS(512), - [aux_sym_string_token3] = ACTIONS(515), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(355), + [anon_sym_package] = ACTIONS(358), + [anon_sym_import] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(367), + [anon_sym_throw] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(881), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(884), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_if] = ACTIONS(887), + [anon_sym_while] = ACTIONS(890), + [anon_sym_do] = ACTIONS(421), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(448), + [anon_sym_abstract] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_public] = ACTIONS(448), + [anon_sym_private] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_overload] = ACTIONS(448), + [anon_sym_override] = ACTIONS(448), + [anon_sym_final] = ACTIONS(451), + [anon_sym_class] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(463), + [anon_sym_function] = ACTIONS(466), + [anon_sym_var] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [31] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2377), - [sym_integer] = STATE(2377), - [sym_float] = STATE(2377), - [sym_bool] = STATE(2377), - [sym_string] = STATE(1926), - [sym_null] = STATE(2377), - [sym_array] = STATE(2377), - [sym_map] = STATE(2377), - [sym_object] = STATE(2377), - [sym_pair] = STATE(2377), - [aux_sym_member_expression_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(518), - [sym_identifier] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(518), - [anon_sym_package] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_import] = ACTIONS(520), - [anon_sym_using] = ACTIONS(520), - [anon_sym_throw] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_DOLLARtype] = ACTIONS(518), - [anon_sym_return] = ACTIONS(520), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(502), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(893), + [anon_sym_return] = ACTIONS(517), [anon_sym_untyped] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(518), - [anon_sym_this] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_AT_COLON] = ACTIONS(518), - [anon_sym_if] = ACTIONS(520), - [anon_sym_new] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [sym__rangeOperator] = ACTIONS(518), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(520), - [anon_sym_abstract] = ACTIONS(520), - [anon_sym_static] = ACTIONS(520), - [anon_sym_public] = ACTIONS(520), - [anon_sym_private] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(520), - [anon_sym_inline] = ACTIONS(520), - [anon_sym_overload] = ACTIONS(520), - [anon_sym_override] = ACTIONS(520), - [anon_sym_final] = ACTIONS(520), - [anon_sym_class] = ACTIONS(520), - [anon_sym_interface] = ACTIONS(520), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_function] = ACTIONS(520), - [anon_sym_var] = ACTIONS(520), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [anon_sym_break] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(896), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(899), + [anon_sym_while] = ACTIONS(902), + [anon_sym_do] = ACTIONS(535), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_inline] = ACTIONS(538), + [anon_sym_overload] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_final] = ACTIONS(541), + [anon_sym_class] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(553), + [anon_sym_function] = ACTIONS(556), + [anon_sym_var] = ACTIONS(559), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [32] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2377), - [sym_integer] = STATE(2377), - [sym_float] = STATE(2377), - [sym_bool] = STATE(2377), - [sym_string] = STATE(1926), - [sym_null] = STATE(2377), - [sym_array] = STATE(2377), - [sym_map] = STATE(2377), - [sym_object] = STATE(2377), - [sym_pair] = STATE(2377), - [aux_sym_member_expression_repeat1] = STATE(30), - [ts_builtin_sym_end] = ACTIONS(522), - [sym_identifier] = ACTIONS(468), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_package] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_import] = ACTIONS(524), - [anon_sym_using] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_DOLLARtype] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_untyped] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(522), - [anon_sym_this] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_AT_COLON] = ACTIONS(522), - [anon_sym_if] = ACTIONS(524), - [anon_sym_new] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(522), - [anon_sym_QMARK_QMARK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [sym__rangeOperator] = ACTIONS(522), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(524), - [anon_sym_abstract] = ACTIONS(524), - [anon_sym_static] = ACTIONS(524), - [anon_sym_public] = ACTIONS(524), - [anon_sym_private] = ACTIONS(524), - [anon_sym_extern] = ACTIONS(524), - [anon_sym_inline] = ACTIONS(524), - [anon_sym_overload] = ACTIONS(524), - [anon_sym_override] = ACTIONS(524), - [anon_sym_final] = ACTIONS(524), - [anon_sym_class] = ACTIONS(524), - [anon_sym_interface] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(524), - [anon_sym_function] = ACTIONS(524), - [anon_sym_var] = ACTIONS(524), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_package] = ACTIONS(565), + [anon_sym_import] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(905), + [anon_sym_return] = ACTIONS(586), + [anon_sym_untyped] = ACTIONS(589), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(908), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(911), + [anon_sym_while] = ACTIONS(914), + [anon_sym_do] = ACTIONS(604), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(607), + [anon_sym_abstract] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_public] = ACTIONS(607), + [anon_sym_private] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_overload] = ACTIONS(607), + [anon_sym_override] = ACTIONS(607), + [anon_sym_final] = ACTIONS(610), + [anon_sym_class] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_function] = ACTIONS(625), + [anon_sym_var] = ACTIONS(628), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [33] = { - [sym__rhs_expression] = STATE(281), - [sym_member_expression] = STATE(259), - [sym__lhs_expression] = STATE(2254), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(281), - [sym__literal] = STATE(480), - [sym_integer] = STATE(480), - [sym_float] = STATE(480), - [sym_bool] = STATE(480), - [sym_string] = STATE(296), - [sym_null] = STATE(480), - [sym_array] = STATE(480), - [sym_map] = STATE(480), - [sym_object] = STATE(480), - [sym_pair] = STATE(480), - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_package] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(528), - [anon_sym_if] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_var] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(528), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(919), + [anon_sym_return] = ACTIONS(921), + [anon_sym_untyped] = ACTIONS(923), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(927), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [34] = { - [sym__rhs_expression] = STATE(214), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(214), - [sym__literal] = STATE(488), - [sym_integer] = STATE(488), - [sym_float] = STATE(488), - [sym_bool] = STATE(488), - [sym_string] = STATE(304), - [sym_null] = STATE(488), - [sym_array] = STATE(488), - [sym_map] = STATE(488), - [sym_object] = STATE(488), - [sym_pair] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(528), - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_package] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(528), - [anon_sym_if] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_var] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(502), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(933), + [anon_sym_return] = ACTIONS(517), + [anon_sym_untyped] = ACTIONS(520), + [anon_sym_break] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(936), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_if] = ACTIONS(939), + [anon_sym_while] = ACTIONS(942), + [anon_sym_do] = ACTIONS(535), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_inline] = ACTIONS(538), + [anon_sym_overload] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_final] = ACTIONS(541), + [anon_sym_class] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(553), + [anon_sym_function] = ACTIONS(556), + [anon_sym_var] = ACTIONS(559), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [35] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2394), - [sym_integer] = STATE(2394), - [sym_float] = STATE(2394), - [sym_bool] = STATE(2394), - [sym_string] = STATE(1926), - [sym_null] = STATE(2394), - [sym_array] = STATE(2394), - [sym_map] = STATE(2394), - [sym_object] = STATE(2394), - [sym_pair] = STATE(2394), - [aux_sym_member_expression_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(530), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_package] = ACTIONS(483), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_using] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_case] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_DOLLARtype] = ACTIONS(478), - [anon_sym_return] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_this] = ACTIONS(533), - [anon_sym_QMARK] = ACTIONS(483), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_AT_COLON] = ACTIONS(478), - [anon_sym_if] = ACTIONS(483), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK_QMARK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(478), - [anon_sym_null] = ACTIONS(494), - [anon_sym_macro] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym_overload] = ACTIONS(483), - [anon_sym_override] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_function] = ACTIONS(483), - [anon_sym_var] = ACTIONS(483), - [aux_sym_integer_token1] = ACTIONS(497), - [aux_sym_integer_token2] = ACTIONS(500), - [aux_sym_float_token1] = ACTIONS(503), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [aux_sym_string_token1] = ACTIONS(512), - [aux_sym_string_token3] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(478), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(919), + [anon_sym_return] = ACTIONS(945), + [anon_sym_untyped] = ACTIONS(947), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(927), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [36] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2394), - [sym_integer] = STATE(2394), - [sym_float] = STATE(2394), - [sym_bool] = STATE(2394), - [sym_string] = STATE(1926), - [sym_null] = STATE(2394), - [sym_array] = STATE(2394), - [sym_map] = STATE(2394), - [sym_object] = STATE(2394), - [sym_pair] = STATE(2394), - [aux_sym_member_expression_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(518), - [anon_sym_package] = ACTIONS(520), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_import] = ACTIONS(520), - [anon_sym_using] = ACTIONS(520), - [anon_sym_throw] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(520), - [anon_sym_default] = ACTIONS(520), - [anon_sym_cast] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_DOLLARtype] = ACTIONS(518), - [anon_sym_return] = ACTIONS(520), - [anon_sym_untyped] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_AT_COLON] = ACTIONS(518), - [anon_sym_if] = ACTIONS(520), - [anon_sym_new] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [sym__rangeOperator] = ACTIONS(518), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(520), - [anon_sym_abstract] = ACTIONS(520), - [anon_sym_static] = ACTIONS(520), - [anon_sym_public] = ACTIONS(520), - [anon_sym_private] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(520), - [anon_sym_inline] = ACTIONS(520), - [anon_sym_overload] = ACTIONS(520), - [anon_sym_override] = ACTIONS(520), - [anon_sym_final] = ACTIONS(520), - [anon_sym_class] = ACTIONS(520), - [anon_sym_interface] = ACTIONS(520), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_function] = ACTIONS(520), - [anon_sym_var] = ACTIONS(520), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(518), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(957), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [37] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2394), - [sym_integer] = STATE(2394), - [sym_float] = STATE(2394), - [sym_bool] = STATE(2394), - [sym_string] = STATE(1926), - [sym_null] = STATE(2394), - [sym_array] = STATE(2394), - [sym_map] = STATE(2394), - [sym_object] = STATE(2394), - [sym_pair] = STATE(2394), - [aux_sym_member_expression_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_package] = ACTIONS(470), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_import] = ACTIONS(470), - [anon_sym_using] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(470), - [anon_sym_default] = ACTIONS(470), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_DOLLARtype] = ACTIONS(466), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_AT_COLON] = ACTIONS(466), - [anon_sym_if] = ACTIONS(470), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK_QMARK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(466), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(470), - [anon_sym_abstract] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_public] = ACTIONS(470), - [anon_sym_private] = ACTIONS(470), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_inline] = ACTIONS(470), - [anon_sym_overload] = ACTIONS(470), - [anon_sym_override] = ACTIONS(470), - [anon_sym_final] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_interface] = ACTIONS(470), - [anon_sym_typedef] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_var] = ACTIONS(470), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(466), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(955), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(957), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [38] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2394), - [sym_integer] = STATE(2394), - [sym_float] = STATE(2394), - [sym_bool] = STATE(2394), - [sym_string] = STATE(1926), - [sym_null] = STATE(2394), - [sym_array] = STATE(2394), - [sym_map] = STATE(2394), - [sym_object] = STATE(2394), - [sym_pair] = STATE(2394), - [aux_sym_member_expression_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_package] = ACTIONS(476), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_import] = ACTIONS(476), - [anon_sym_using] = ACTIONS(476), - [anon_sym_throw] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_cast] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_DOLLARtype] = ACTIONS(474), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_AT] = ACTIONS(476), - [anon_sym_AT_COLON] = ACTIONS(474), - [anon_sym_if] = ACTIONS(476), - [anon_sym_new] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [sym__rangeOperator] = ACTIONS(474), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(476), - [anon_sym_abstract] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_public] = ACTIONS(476), - [anon_sym_private] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_inline] = ACTIONS(476), - [anon_sym_overload] = ACTIONS(476), - [anon_sym_override] = ACTIONS(476), - [anon_sym_final] = ACTIONS(476), - [anon_sym_class] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_typedef] = ACTIONS(476), - [anon_sym_function] = ACTIONS(476), - [anon_sym_var] = ACTIONS(476), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(474), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_package] = ACTIONS(565), + [anon_sym_import] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(961), + [anon_sym_return] = ACTIONS(586), + [anon_sym_untyped] = ACTIONS(589), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_if] = ACTIONS(967), + [anon_sym_while] = ACTIONS(970), + [anon_sym_do] = ACTIONS(604), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(607), + [anon_sym_abstract] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_public] = ACTIONS(607), + [anon_sym_private] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_overload] = ACTIONS(607), + [anon_sym_override] = ACTIONS(607), + [anon_sym_final] = ACTIONS(610), + [anon_sym_class] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_function] = ACTIONS(625), + [anon_sym_var] = ACTIONS(628), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [39] = { - [sym__rhs_expression] = STATE(282), - [sym_member_expression] = STATE(259), - [sym__lhs_expression] = STATE(2254), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(282), - [sym__literal] = STATE(480), - [sym_integer] = STATE(480), - [sym_float] = STATE(480), - [sym_bool] = STATE(480), - [sym_string] = STATE(296), - [sym_null] = STATE(480), - [sym_array] = STATE(480), - [sym_map] = STATE(480), - [sym_object] = STATE(480), - [sym_pair] = STATE(480), - [sym_identifier] = ACTIONS(540), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(450), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(542), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(921), + [anon_sym_untyped] = ACTIONS(923), + [anon_sym_break] = ACTIONS(925), + [anon_sym_continue] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [40] = { - [sym__rhs_expression] = STATE(207), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(207), - [sym__literal] = STATE(488), - [sym_integer] = STATE(488), - [sym_float] = STATE(488), - [sym_bool] = STATE(488), - [sym_string] = STATE(304), - [sym_null] = STATE(488), - [sym_array] = STATE(488), - [sym_map] = STATE(488), - [sym_object] = STATE(488), - [sym_pair] = STATE(488), - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(548), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(159), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(214), + [anon_sym_package] = ACTIONS(217), + [anon_sym_import] = ACTIONS(220), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(226), + [anon_sym_throw] = ACTIONS(229), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(981), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(984), + [anon_sym_if] = ACTIONS(987), + [anon_sym_while] = ACTIONS(990), + [anon_sym_do] = ACTIONS(280), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(307), + [anon_sym_abstract] = ACTIONS(307), + [anon_sym_static] = ACTIONS(307), + [anon_sym_public] = ACTIONS(307), + [anon_sym_private] = ACTIONS(307), + [anon_sym_extern] = ACTIONS(307), + [anon_sym_inline] = ACTIONS(307), + [anon_sym_overload] = ACTIONS(307), + [anon_sym_override] = ACTIONS(307), + [anon_sym_final] = ACTIONS(310), + [anon_sym_class] = ACTIONS(313), + [anon_sym_interface] = ACTIONS(316), + [anon_sym_enum] = ACTIONS(319), + [anon_sym_typedef] = ACTIONS(322), + [anon_sym_function] = ACTIONS(325), + [anon_sym_var] = ACTIONS(328), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [41] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2394), - [sym_integer] = STATE(2394), - [sym_float] = STATE(2394), - [sym_bool] = STATE(2394), - [sym_string] = STATE(1926), - [sym_null] = STATE(2394), - [sym_array] = STATE(2394), - [sym_map] = STATE(2394), - [sym_object] = STATE(2394), - [sym_pair] = STATE(2394), - [aux_sym_member_expression_repeat1] = STATE(35), - [sym_identifier] = ACTIONS(536), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_package] = ACTIONS(524), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_import] = ACTIONS(524), - [anon_sym_using] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(524), - [anon_sym_default] = ACTIONS(524), - [anon_sym_cast] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_DOLLARtype] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_untyped] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_AT_COLON] = ACTIONS(522), - [anon_sym_if] = ACTIONS(524), - [anon_sym_new] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(522), - [anon_sym_QMARK_QMARK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [sym__rangeOperator] = ACTIONS(522), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(524), - [anon_sym_abstract] = ACTIONS(524), - [anon_sym_static] = ACTIONS(524), - [anon_sym_public] = ACTIONS(524), - [anon_sym_private] = ACTIONS(524), - [anon_sym_extern] = ACTIONS(524), - [anon_sym_inline] = ACTIONS(524), - [anon_sym_overload] = ACTIONS(524), - [anon_sym_override] = ACTIONS(524), - [anon_sym_final] = ACTIONS(524), - [anon_sym_class] = ACTIONS(524), - [anon_sym_interface] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(524), - [anon_sym_function] = ACTIONS(524), - [anon_sym_var] = ACTIONS(524), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(522), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(945), + [anon_sym_untyped] = ACTIONS(947), + [anon_sym_break] = ACTIONS(949), + [anon_sym_continue] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [42] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2340), - [sym_integer] = STATE(2340), - [sym_float] = STATE(2340), - [sym_bool] = STATE(2340), - [sym_string] = STATE(1926), - [sym_null] = STATE(2340), - [sym_array] = STATE(2340), - [sym_map] = STATE(2340), - [sym_object] = STATE(2340), - [sym_pair] = STATE(2340), - [aux_sym_member_expression_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(474), - [sym_identifier] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_package] = ACTIONS(476), - [anon_sym_import] = ACTIONS(476), - [anon_sym_using] = ACTIONS(476), - [anon_sym_throw] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(476), - [anon_sym_RBRACE] = ACTIONS(474), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_DOLLARtype] = ACTIONS(474), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(474), - [anon_sym_this] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(476), - [anon_sym_AT_COLON] = ACTIONS(474), - [anon_sym_if] = ACTIONS(476), - [anon_sym_new] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [sym__rangeOperator] = ACTIONS(474), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(476), - [anon_sym_abstract] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_public] = ACTIONS(476), - [anon_sym_private] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_inline] = ACTIONS(476), - [anon_sym_overload] = ACTIONS(476), - [anon_sym_override] = ACTIONS(476), - [anon_sym_final] = ACTIONS(476), - [anon_sym_class] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_typedef] = ACTIONS(476), - [anon_sym_function] = ACTIONS(476), - [anon_sym_var] = ACTIONS(476), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_preprocessor_statement] = STATE(449), + [sym_package_statement] = STATE(449), + [sym_import_statement] = STATE(449), + [sym_using_statement] = STATE(449), + [sym_throw_statement] = STATE(449), + [sym__rhs_expression] = STATE(1247), + [sym__unaryExpression] = STATE(3464), + [sym_runtime_type_check_expression] = STATE(3464), + [sym_switch_expression] = STATE(393), + [sym_cast_expression] = STATE(3464), + [sym_type_trace_expression] = STATE(3464), + [sym__parenthesized_expression] = STATE(2582), + [sym_for_statement] = STATE(449), + [sym_range_expression] = STATE(3464), + [sym_subscript_expression] = STATE(3464), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(449), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(449), + [sym_conditional_statement] = STATE(449), + [sym_while_statement] = STATE(449), + [sym_do_while_statement] = STATE(449), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1247), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(449), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(562), + [anon_sym_package] = ACTIONS(565), + [anon_sym_import] = ACTIONS(568), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(571), + [anon_sym_throw] = ACTIONS(574), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(577), + [anon_sym_LBRACE] = ACTIONS(580), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(993), + [anon_sym_return] = ACTIONS(586), + [anon_sym_untyped] = ACTIONS(589), + [anon_sym_break] = ACTIONS(592), + [anon_sym_continue] = ACTIONS(592), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(996), + [anon_sym_if] = ACTIONS(999), + [anon_sym_while] = ACTIONS(1002), + [anon_sym_do] = ACTIONS(604), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(607), + [anon_sym_abstract] = ACTIONS(607), + [anon_sym_static] = ACTIONS(607), + [anon_sym_public] = ACTIONS(607), + [anon_sym_private] = ACTIONS(607), + [anon_sym_extern] = ACTIONS(607), + [anon_sym_inline] = ACTIONS(607), + [anon_sym_overload] = ACTIONS(607), + [anon_sym_override] = ACTIONS(607), + [anon_sym_final] = ACTIONS(610), + [anon_sym_class] = ACTIONS(613), + [anon_sym_interface] = ACTIONS(616), + [anon_sym_enum] = ACTIONS(619), + [anon_sym_typedef] = ACTIONS(622), + [anon_sym_function] = ACTIONS(625), + [anon_sym_var] = ACTIONS(628), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(149), [sym__closing_brace_unmarker] = ACTIONS(3), }, [43] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2340), - [sym_integer] = STATE(2340), - [sym_float] = STATE(2340), - [sym_bool] = STATE(2340), - [sym_string] = STATE(1926), - [sym_null] = STATE(2340), - [sym_array] = STATE(2340), - [sym_map] = STATE(2340), - [sym_object] = STATE(2340), - [sym_pair] = STATE(2340), - [aux_sym_member_expression_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(478), - [sym_identifier] = ACTIONS(554), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_package] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_using] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_RBRACE] = ACTIONS(478), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_DOLLARtype] = ACTIONS(478), - [anon_sym_return] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_RBRACK] = ACTIONS(478), - [anon_sym_this] = ACTIONS(557), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_AT_COLON] = ACTIONS(478), - [anon_sym_if] = ACTIONS(483), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK_QMARK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(478), - [anon_sym_null] = ACTIONS(494), - [anon_sym_macro] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym_overload] = ACTIONS(483), - [anon_sym_override] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_function] = ACTIONS(483), - [anon_sym_var] = ACTIONS(483), - [aux_sym_integer_token1] = ACTIONS(497), - [aux_sym_integer_token2] = ACTIONS(500), - [aux_sym_float_token1] = ACTIONS(503), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [aux_sym_string_token1] = ACTIONS(512), - [aux_sym_string_token3] = ACTIONS(515), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_catch] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [44] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2340), - [sym_integer] = STATE(2340), - [sym_float] = STATE(2340), - [sym_bool] = STATE(2340), - [sym_string] = STATE(1926), - [sym_null] = STATE(2340), - [sym_array] = STATE(2340), - [sym_map] = STATE(2340), - [sym_object] = STATE(2340), - [sym_pair] = STATE(2340), - [aux_sym_member_expression_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(518), - [sym_identifier] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(518), - [anon_sym_package] = ACTIONS(520), - [anon_sym_import] = ACTIONS(520), - [anon_sym_using] = ACTIONS(520), - [anon_sym_throw] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_RBRACE] = ACTIONS(518), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_DOLLARtype] = ACTIONS(518), - [anon_sym_return] = ACTIONS(520), - [anon_sym_untyped] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(518), - [anon_sym_this] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_AT_COLON] = ACTIONS(518), - [anon_sym_if] = ACTIONS(520), - [anon_sym_new] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [sym__rangeOperator] = ACTIONS(518), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(520), - [anon_sym_abstract] = ACTIONS(520), - [anon_sym_static] = ACTIONS(520), - [anon_sym_public] = ACTIONS(520), - [anon_sym_private] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(520), - [anon_sym_inline] = ACTIONS(520), - [anon_sym_overload] = ACTIONS(520), - [anon_sym_override] = ACTIONS(520), - [anon_sym_final] = ACTIONS(520), - [anon_sym_class] = ACTIONS(520), - [anon_sym_interface] = ACTIONS(520), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_function] = ACTIONS(520), - [anon_sym_var] = ACTIONS(520), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_catch] = ACTIONS(115), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [45] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2340), - [sym_integer] = STATE(2340), - [sym_float] = STATE(2340), - [sym_bool] = STATE(2340), - [sym_string] = STATE(1926), - [sym_null] = STATE(2340), - [sym_array] = STATE(2340), - [sym_map] = STATE(2340), - [sym_object] = STATE(2340), - [sym_pair] = STATE(2340), - [aux_sym_member_expression_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(522), - [sym_identifier] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_package] = ACTIONS(524), - [anon_sym_import] = ACTIONS(524), - [anon_sym_using] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_RBRACE] = ACTIONS(522), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_DOLLARtype] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_untyped] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(522), - [anon_sym_this] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_AT_COLON] = ACTIONS(522), - [anon_sym_if] = ACTIONS(524), - [anon_sym_new] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(522), - [anon_sym_QMARK_QMARK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [sym__rangeOperator] = ACTIONS(522), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(524), - [anon_sym_abstract] = ACTIONS(524), - [anon_sym_static] = ACTIONS(524), - [anon_sym_public] = ACTIONS(524), - [anon_sym_private] = ACTIONS(524), - [anon_sym_extern] = ACTIONS(524), - [anon_sym_inline] = ACTIONS(524), - [anon_sym_overload] = ACTIONS(524), - [anon_sym_override] = ACTIONS(524), - [anon_sym_final] = ACTIONS(524), - [anon_sym_class] = ACTIONS(524), - [anon_sym_interface] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(524), - [anon_sym_function] = ACTIONS(524), - [anon_sym_var] = ACTIONS(524), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(151), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [46] = { - [sym_member_expression] = STATE(213), - [sym__lhs_expression] = STATE(179), - [sym__literal] = STATE(2340), - [sym_integer] = STATE(2340), - [sym_float] = STATE(2340), - [sym_bool] = STATE(2340), - [sym_string] = STATE(1926), - [sym_null] = STATE(2340), - [sym_array] = STATE(2340), - [sym_map] = STATE(2340), - [sym_object] = STATE(2340), - [sym_pair] = STATE(2340), - [aux_sym_member_expression_repeat1] = STATE(43), - [ts_builtin_sym_end] = ACTIONS(466), - [sym_identifier] = ACTIONS(550), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_package] = ACTIONS(470), - [anon_sym_import] = ACTIONS(470), - [anon_sym_using] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_RBRACE] = ACTIONS(466), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_DOLLARtype] = ACTIONS(466), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(466), - [anon_sym_this] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_AT_COLON] = ACTIONS(466), - [anon_sym_if] = ACTIONS(470), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK_QMARK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(466), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(470), - [anon_sym_abstract] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_public] = ACTIONS(470), - [anon_sym_private] = ACTIONS(470), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_inline] = ACTIONS(470), - [anon_sym_overload] = ACTIONS(470), - [anon_sym_override] = ACTIONS(470), - [anon_sym_final] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_interface] = ACTIONS(470), - [anon_sym_typedef] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_var] = ACTIONS(470), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_else] = ACTIONS(115), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [47] = { - [sym__rhs_expression] = STATE(214), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(214), - [sym__literal] = STATE(433), - [sym_integer] = STATE(433), - [sym_float] = STATE(433), - [sym_bool] = STATE(433), - [sym_string] = STATE(304), - [sym_null] = STATE(433), - [sym_array] = STATE(433), - [sym_map] = STATE(433), - [sym_object] = STATE(433), - [sym_pair] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(528), - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_package] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(528), - [anon_sym_if] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_var] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [ts_builtin_sym_end] = ACTIONS(149), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(355), + [anon_sym_package] = ACTIONS(358), + [anon_sym_import] = ACTIONS(361), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(367), + [anon_sym_throw] = ACTIONS(370), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(1021), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(406), + [anon_sym_AT_COLON] = ACTIONS(409), + [anon_sym_try] = ACTIONS(1024), + [anon_sym_if] = ACTIONS(1027), + [anon_sym_while] = ACTIONS(1030), + [anon_sym_do] = ACTIONS(421), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(448), + [anon_sym_abstract] = ACTIONS(448), + [anon_sym_static] = ACTIONS(448), + [anon_sym_public] = ACTIONS(448), + [anon_sym_private] = ACTIONS(448), + [anon_sym_extern] = ACTIONS(448), + [anon_sym_inline] = ACTIONS(448), + [anon_sym_overload] = ACTIONS(448), + [anon_sym_override] = ACTIONS(448), + [anon_sym_final] = ACTIONS(451), + [anon_sym_class] = ACTIONS(454), + [anon_sym_interface] = ACTIONS(457), + [anon_sym_enum] = ACTIONS(460), + [anon_sym_typedef] = ACTIONS(463), + [anon_sym_function] = ACTIONS(466), + [anon_sym_var] = ACTIONS(469), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [48] = { - [sym__rhs_expression] = STATE(469), - [sym_member_expression] = STATE(259), - [sym__lhs_expression] = STATE(2254), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(469), - [sym__literal] = STATE(416), - [sym_integer] = STATE(416), - [sym_float] = STATE(416), - [sym_bool] = STATE(416), - [sym_string] = STATE(296), - [sym_null] = STATE(416), - [sym_array] = STATE(416), - [sym_map] = STATE(416), - [sym_object] = STATE(416), - [sym_pair] = STATE(416), - [sym_identifier] = ACTIONS(560), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(566), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_GT_GT_GT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_QMARK_QMARK] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [sym__rangeOperator] = ACTIONS(562), - [anon_sym_null] = ACTIONS(450), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(562), + [sym_preprocessor_statement] = STATE(559), + [sym_package_statement] = STATE(559), + [sym_import_statement] = STATE(559), + [sym_using_statement] = STATE(559), + [sym_throw_statement] = STATE(559), + [sym__rhs_expression] = STATE(1120), + [sym__unaryExpression] = STATE(3349), + [sym_runtime_type_check_expression] = STATE(3349), + [sym_switch_expression] = STATE(401), + [sym_cast_expression] = STATE(3349), + [sym_type_trace_expression] = STATE(3349), + [sym__parenthesized_expression] = STATE(2720), + [sym_for_statement] = STATE(559), + [sym_range_expression] = STATE(3349), + [sym_subscript_expression] = STATE(3349), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(559), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(559), + [sym_conditional_statement] = STATE(559), + [sym_while_statement] = STATE(559), + [sym_do_while_statement] = STATE(559), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1120), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(559), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(493), + [anon_sym_package] = ACTIONS(496), + [anon_sym_import] = ACTIONS(499), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(502), + [anon_sym_throw] = ACTIONS(505), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(508), + [anon_sym_LBRACE] = ACTIONS(511), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(1033), + [anon_sym_return] = ACTIONS(517), + [anon_sym_untyped] = ACTIONS(520), + [anon_sym_break] = ACTIONS(523), + [anon_sym_continue] = ACTIONS(523), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(265), + [anon_sym_AT_COLON] = ACTIONS(268), + [anon_sym_try] = ACTIONS(1036), + [anon_sym_if] = ACTIONS(1039), + [anon_sym_while] = ACTIONS(1042), + [anon_sym_do] = ACTIONS(535), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(538), + [anon_sym_abstract] = ACTIONS(538), + [anon_sym_static] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_extern] = ACTIONS(538), + [anon_sym_inline] = ACTIONS(538), + [anon_sym_overload] = ACTIONS(538), + [anon_sym_override] = ACTIONS(538), + [anon_sym_final] = ACTIONS(541), + [anon_sym_class] = ACTIONS(544), + [anon_sym_interface] = ACTIONS(547), + [anon_sym_enum] = ACTIONS(550), + [anon_sym_typedef] = ACTIONS(553), + [anon_sym_function] = ACTIONS(556), + [anon_sym_var] = ACTIONS(559), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [49] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2381), - [sym_integer] = STATE(2381), - [sym_float] = STATE(2381), - [sym_bool] = STATE(2381), - [sym_string] = STATE(1926), - [sym_null] = STATE(2381), - [sym_array] = STATE(2381), - [sym_map] = STATE(2381), - [sym_object] = STATE(2381), - [sym_pair] = STATE(2381), - [aux_sym_member_expression_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(474), - [anon_sym_package] = ACTIONS(476), - [anon_sym_import] = ACTIONS(476), - [anon_sym_using] = ACTIONS(476), - [anon_sym_throw] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(476), - [anon_sym_default] = ACTIONS(476), - [anon_sym_cast] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_DOLLARtype] = ACTIONS(474), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(566), - [anon_sym_AT] = ACTIONS(476), - [anon_sym_AT_COLON] = ACTIONS(474), - [anon_sym_if] = ACTIONS(476), - [anon_sym_new] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [sym__rangeOperator] = ACTIONS(474), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(476), - [anon_sym_abstract] = ACTIONS(476), - [anon_sym_static] = ACTIONS(476), - [anon_sym_public] = ACTIONS(476), - [anon_sym_private] = ACTIONS(476), - [anon_sym_extern] = ACTIONS(476), - [anon_sym_inline] = ACTIONS(476), - [anon_sym_overload] = ACTIONS(476), - [anon_sym_override] = ACTIONS(476), - [anon_sym_final] = ACTIONS(476), - [anon_sym_class] = ACTIONS(476), - [anon_sym_interface] = ACTIONS(476), - [anon_sym_typedef] = ACTIONS(476), - [anon_sym_function] = ACTIONS(476), - [anon_sym_var] = ACTIONS(476), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(474), + [sym_preprocessor_statement] = STATE(3039), + [sym_package_statement] = STATE(3039), + [sym_import_statement] = STATE(3039), + [sym_using_statement] = STATE(3039), + [sym_throw_statement] = STATE(3039), + [sym__rhs_expression] = STATE(1307), + [sym__unaryExpression] = STATE(3526), + [sym_runtime_type_check_expression] = STATE(3526), + [sym_switch_expression] = STATE(2778), + [sym_cast_expression] = STATE(3526), + [sym_type_trace_expression] = STATE(3526), + [sym__parenthesized_expression] = STATE(2786), + [sym_for_statement] = STATE(3039), + [sym_range_expression] = STATE(3526), + [sym_subscript_expression] = STATE(3526), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3039), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3039), + [sym_conditional_statement] = STATE(3039), + [sym_while_statement] = STATE(3039), + [sym_do_while_statement] = STATE(3039), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1307), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3039), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1045), + [anon_sym_untyped] = ACTIONS(1047), + [anon_sym_break] = ACTIONS(1049), + [anon_sym_continue] = ACTIONS(1049), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [50] = { - [sym__rhs_expression] = STATE(281), - [sym_member_expression] = STATE(259), - [sym__lhs_expression] = STATE(2254), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(281), - [sym__literal] = STATE(416), - [sym_integer] = STATE(416), - [sym_float] = STATE(416), - [sym_bool] = STATE(416), - [sym_string] = STATE(296), - [sym_null] = STATE(416), - [sym_array] = STATE(416), - [sym_map] = STATE(416), - [sym_object] = STATE(416), - [sym_pair] = STATE(416), - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_package] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(528), - [anon_sym_if] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_var] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(528), + [sym_preprocessor_statement] = STATE(3102), + [sym_package_statement] = STATE(3102), + [sym_import_statement] = STATE(3102), + [sym_using_statement] = STATE(3102), + [sym_throw_statement] = STATE(3102), + [sym__rhs_expression] = STATE(1121), + [sym__unaryExpression] = STATE(3704), + [sym_runtime_type_check_expression] = STATE(3704), + [sym_switch_expression] = STATE(2824), + [sym_cast_expression] = STATE(3704), + [sym_type_trace_expression] = STATE(3704), + [sym__parenthesized_expression] = STATE(2698), + [sym_for_statement] = STATE(3102), + [sym_range_expression] = STATE(3704), + [sym_subscript_expression] = STATE(3704), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3102), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3102), + [sym_conditional_statement] = STATE(3102), + [sym_while_statement] = STATE(3102), + [sym_do_while_statement] = STATE(3102), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1121), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3102), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1051), + [anon_sym_untyped] = ACTIONS(1053), + [anon_sym_break] = ACTIONS(1055), + [anon_sym_continue] = ACTIONS(1055), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [51] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2381), - [sym_integer] = STATE(2381), - [sym_float] = STATE(2381), - [sym_bool] = STATE(2381), - [sym_string] = STATE(1926), - [sym_null] = STATE(2381), - [sym_array] = STATE(2381), - [sym_map] = STATE(2381), - [sym_object] = STATE(2381), - [sym_pair] = STATE(2381), - [aux_sym_member_expression_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(570), - [anon_sym_POUND] = ACTIONS(478), - [anon_sym_package] = ACTIONS(483), - [anon_sym_import] = ACTIONS(483), - [anon_sym_using] = ACTIONS(483), - [anon_sym_throw] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_case] = ACTIONS(483), - [anon_sym_default] = ACTIONS(483), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_DOLLARtype] = ACTIONS(478), - [anon_sym_return] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_this] = ACTIONS(573), - [anon_sym_AT] = ACTIONS(483), - [anon_sym_AT_COLON] = ACTIONS(478), - [anon_sym_if] = ACTIONS(483), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK_QMARK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(478), - [anon_sym_null] = ACTIONS(494), - [anon_sym_macro] = ACTIONS(483), - [anon_sym_abstract] = ACTIONS(483), - [anon_sym_static] = ACTIONS(483), - [anon_sym_public] = ACTIONS(483), - [anon_sym_private] = ACTIONS(483), - [anon_sym_extern] = ACTIONS(483), - [anon_sym_inline] = ACTIONS(483), - [anon_sym_overload] = ACTIONS(483), - [anon_sym_override] = ACTIONS(483), - [anon_sym_final] = ACTIONS(483), - [anon_sym_class] = ACTIONS(483), - [anon_sym_interface] = ACTIONS(483), - [anon_sym_typedef] = ACTIONS(483), - [anon_sym_function] = ACTIONS(483), - [anon_sym_var] = ACTIONS(483), - [aux_sym_integer_token1] = ACTIONS(497), - [aux_sym_integer_token2] = ACTIONS(500), - [aux_sym_float_token1] = ACTIONS(503), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [aux_sym_string_token1] = ACTIONS(512), - [aux_sym_string_token3] = ACTIONS(515), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(478), + [sym_preprocessor_statement] = STATE(3005), + [sym_package_statement] = STATE(3005), + [sym_import_statement] = STATE(3005), + [sym_using_statement] = STATE(3005), + [sym_throw_statement] = STATE(3005), + [sym__rhs_expression] = STATE(1220), + [sym__unaryExpression] = STATE(3372), + [sym_runtime_type_check_expression] = STATE(3372), + [sym_switch_expression] = STATE(2620), + [sym_cast_expression] = STATE(3372), + [sym_type_trace_expression] = STATE(3372), + [sym__parenthesized_expression] = STATE(2723), + [sym_for_statement] = STATE(3005), + [sym_range_expression] = STATE(3372), + [sym_subscript_expression] = STATE(3372), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3005), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3005), + [sym_conditional_statement] = STATE(3005), + [sym_while_statement] = STATE(3005), + [sym_do_while_statement] = STATE(3005), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1220), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3005), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(919), + [anon_sym_return] = ACTIONS(1057), + [anon_sym_untyped] = ACTIONS(1059), + [anon_sym_break] = ACTIONS(1061), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [52] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2381), - [sym_integer] = STATE(2381), - [sym_float] = STATE(2381), - [sym_bool] = STATE(2381), - [sym_string] = STATE(1926), - [sym_null] = STATE(2381), - [sym_array] = STATE(2381), - [sym_map] = STATE(2381), - [sym_object] = STATE(2381), - [sym_pair] = STATE(2381), - [aux_sym_member_expression_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(522), - [anon_sym_package] = ACTIONS(524), - [anon_sym_import] = ACTIONS(524), - [anon_sym_using] = ACTIONS(524), - [anon_sym_throw] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(524), - [anon_sym_default] = ACTIONS(524), - [anon_sym_cast] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_DOLLARtype] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_untyped] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(566), - [anon_sym_AT] = ACTIONS(524), - [anon_sym_AT_COLON] = ACTIONS(522), - [anon_sym_if] = ACTIONS(524), - [anon_sym_new] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(522), - [anon_sym_QMARK_QMARK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [sym__rangeOperator] = ACTIONS(522), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(524), - [anon_sym_abstract] = ACTIONS(524), - [anon_sym_static] = ACTIONS(524), - [anon_sym_public] = ACTIONS(524), - [anon_sym_private] = ACTIONS(524), - [anon_sym_extern] = ACTIONS(524), - [anon_sym_inline] = ACTIONS(524), - [anon_sym_overload] = ACTIONS(524), - [anon_sym_override] = ACTIONS(524), - [anon_sym_final] = ACTIONS(524), - [anon_sym_class] = ACTIONS(524), - [anon_sym_interface] = ACTIONS(524), - [anon_sym_typedef] = ACTIONS(524), - [anon_sym_function] = ACTIONS(524), - [anon_sym_var] = ACTIONS(524), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(522), + [sym_preprocessor_statement] = STATE(815), + [sym_package_statement] = STATE(815), + [sym_import_statement] = STATE(815), + [sym_using_statement] = STATE(815), + [sym_throw_statement] = STATE(815), + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3630), + [sym_runtime_type_check_expression] = STATE(3630), + [sym_switch_expression] = STATE(646), + [sym_cast_expression] = STATE(3630), + [sym_type_trace_expression] = STATE(3630), + [sym__parenthesized_expression] = STATE(2654), + [sym_for_statement] = STATE(815), + [sym_range_expression] = STATE(3630), + [sym_subscript_expression] = STATE(3630), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(817), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(815), + [sym_conditional_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_do_while_statement] = STATE(815), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(815), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_untyped] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [53] = { - [sym__rhs_expression] = STATE(663), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(663), - [sym__literal] = STATE(433), - [sym_integer] = STATE(433), - [sym_float] = STATE(433), - [sym_bool] = STATE(433), - [sym_string] = STATE(304), - [sym_null] = STATE(433), - [sym_array] = STATE(433), - [sym_map] = STATE(433), - [sym_object] = STATE(433), - [sym_pair] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(576), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_GT_GT_GT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_QMARK_QMARK] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [sym__rangeOperator] = ACTIONS(562), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(637), + [sym_package_statement] = STATE(637), + [sym_import_statement] = STATE(637), + [sym_using_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym__rhs_expression] = STATE(1240), + [sym__unaryExpression] = STATE(3610), + [sym_runtime_type_check_expression] = STATE(3610), + [sym_switch_expression] = STATE(546), + [sym_cast_expression] = STATE(3610), + [sym_type_trace_expression] = STATE(3610), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(637), + [sym_range_expression] = STATE(3610), + [sym_subscript_expression] = STATE(3610), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(637), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(637), + [sym_conditional_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_while_statement] = STATE(637), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1240), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(637), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_untyped] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1077), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [54] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2381), - [sym_integer] = STATE(2381), - [sym_float] = STATE(2381), - [sym_bool] = STATE(2381), - [sym_string] = STATE(1926), - [sym_null] = STATE(2381), - [sym_array] = STATE(2381), - [sym_map] = STATE(2381), - [sym_object] = STATE(2381), - [sym_pair] = STATE(2381), - [aux_sym_member_expression_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(518), - [anon_sym_package] = ACTIONS(520), - [anon_sym_import] = ACTIONS(520), - [anon_sym_using] = ACTIONS(520), - [anon_sym_throw] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(520), - [anon_sym_default] = ACTIONS(520), - [anon_sym_cast] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_DOLLARtype] = ACTIONS(518), - [anon_sym_return] = ACTIONS(520), - [anon_sym_untyped] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(566), - [anon_sym_AT] = ACTIONS(520), - [anon_sym_AT_COLON] = ACTIONS(518), - [anon_sym_if] = ACTIONS(520), - [anon_sym_new] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [sym__rangeOperator] = ACTIONS(518), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(520), - [anon_sym_abstract] = ACTIONS(520), - [anon_sym_static] = ACTIONS(520), - [anon_sym_public] = ACTIONS(520), - [anon_sym_private] = ACTIONS(520), - [anon_sym_extern] = ACTIONS(520), - [anon_sym_inline] = ACTIONS(520), - [anon_sym_overload] = ACTIONS(520), - [anon_sym_override] = ACTIONS(520), - [anon_sym_final] = ACTIONS(520), - [anon_sym_class] = ACTIONS(520), - [anon_sym_interface] = ACTIONS(520), - [anon_sym_typedef] = ACTIONS(520), - [anon_sym_function] = ACTIONS(520), - [anon_sym_var] = ACTIONS(520), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(518), + [sym_preprocessor_statement] = STATE(760), + [sym_package_statement] = STATE(760), + [sym_import_statement] = STATE(760), + [sym_using_statement] = STATE(760), + [sym_throw_statement] = STATE(760), + [sym__rhs_expression] = STATE(1186), + [sym__unaryExpression] = STATE(3655), + [sym_runtime_type_check_expression] = STATE(3655), + [sym_switch_expression] = STATE(631), + [sym_cast_expression] = STATE(3655), + [sym_type_trace_expression] = STATE(3655), + [sym__parenthesized_expression] = STATE(2646), + [sym_for_statement] = STATE(760), + [sym_range_expression] = STATE(3655), + [sym_subscript_expression] = STATE(3655), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(760), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(760), + [sym_conditional_statement] = STATE(760), + [sym_while_statement] = STATE(760), + [sym_do_while_statement] = STATE(760), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1186), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(760), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_untyped] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1091), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [55] = { - [sym_member_expression] = STATE(238), - [sym__lhs_expression] = STATE(278), - [sym__literal] = STATE(2381), - [sym_integer] = STATE(2381), - [sym_float] = STATE(2381), - [sym_bool] = STATE(2381), - [sym_string] = STATE(1926), - [sym_null] = STATE(2381), - [sym_array] = STATE(2381), - [sym_map] = STATE(2381), - [sym_object] = STATE(2381), - [sym_pair] = STATE(2381), - [aux_sym_member_expression_repeat1] = STATE(51), - [sym_identifier] = ACTIONS(568), - [anon_sym_POUND] = ACTIONS(466), - [anon_sym_package] = ACTIONS(470), - [anon_sym_import] = ACTIONS(470), - [anon_sym_using] = ACTIONS(470), - [anon_sym_throw] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_case] = ACTIONS(470), - [anon_sym_default] = ACTIONS(470), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_DOLLARtype] = ACTIONS(466), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(566), - [anon_sym_AT] = ACTIONS(470), - [anon_sym_AT_COLON] = ACTIONS(466), - [anon_sym_if] = ACTIONS(470), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK_QMARK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(466), - [anon_sym_null] = ACTIONS(382), - [anon_sym_macro] = ACTIONS(470), - [anon_sym_abstract] = ACTIONS(470), - [anon_sym_static] = ACTIONS(470), - [anon_sym_public] = ACTIONS(470), - [anon_sym_private] = ACTIONS(470), - [anon_sym_extern] = ACTIONS(470), - [anon_sym_inline] = ACTIONS(470), - [anon_sym_overload] = ACTIONS(470), - [anon_sym_override] = ACTIONS(470), - [anon_sym_final] = ACTIONS(470), - [anon_sym_class] = ACTIONS(470), - [anon_sym_interface] = ACTIONS(470), - [anon_sym_typedef] = ACTIONS(470), - [anon_sym_function] = ACTIONS(470), - [anon_sym_var] = ACTIONS(470), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(466), + [sym_preprocessor_statement] = STATE(815), + [sym_package_statement] = STATE(815), + [sym_import_statement] = STATE(815), + [sym_using_statement] = STATE(815), + [sym_throw_statement] = STATE(815), + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3630), + [sym_runtime_type_check_expression] = STATE(3630), + [sym_switch_expression] = STATE(646), + [sym_cast_expression] = STATE(3630), + [sym_type_trace_expression] = STATE(3630), + [sym__parenthesized_expression] = STATE(2654), + [sym_for_statement] = STATE(815), + [sym_range_expression] = STATE(3630), + [sym_subscript_expression] = STATE(3630), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(817), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(815), + [sym_conditional_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_do_while_statement] = STATE(815), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(815), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_untyped] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [56] = { - [sym_operator] = STATE(1595), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_package] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_import] = ACTIONS(580), - [anon_sym_using] = ACTIONS(580), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_cast] = ACTIONS(580), - [anon_sym_DOLLARtype] = ACTIONS(578), - [anon_sym_return] = ACTIONS(580), - [anon_sym_untyped] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_this] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_AT_COLON] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_new] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(580), - [anon_sym_macro] = ACTIONS(580), - [anon_sym_abstract] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_inline] = ACTIONS(580), - [anon_sym_overload] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), - [anon_sym_class] = ACTIONS(580), - [anon_sym_interface] = ACTIONS(580), - [anon_sym_typedef] = ACTIONS(580), - [anon_sym_function] = ACTIONS(580), - [anon_sym_var] = ACTIONS(580), - [aux_sym_integer_token1] = ACTIONS(580), - [aux_sym_integer_token2] = ACTIONS(578), - [aux_sym_float_token1] = ACTIONS(580), - [aux_sym_float_token2] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [aux_sym_string_token1] = ACTIONS(578), - [aux_sym_string_token3] = ACTIONS(578), + [sym_preprocessor_statement] = STATE(413), + [sym_package_statement] = STATE(413), + [sym_import_statement] = STATE(413), + [sym_using_statement] = STATE(413), + [sym_throw_statement] = STATE(413), + [sym__rhs_expression] = STATE(1206), + [sym__unaryExpression] = STATE(3478), + [sym_runtime_type_check_expression] = STATE(3478), + [sym_switch_expression] = STATE(392), + [sym_cast_expression] = STATE(3478), + [sym_type_trace_expression] = STATE(3478), + [sym__parenthesized_expression] = STATE(2770), + [sym_for_statement] = STATE(413), + [sym_range_expression] = STATE(3478), + [sym_subscript_expression] = STATE(3478), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(413), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(413), + [sym_conditional_statement] = STATE(413), + [sym_while_statement] = STATE(413), + [sym_do_while_statement] = STATE(413), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1206), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(413), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_untyped] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1107), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [57] = { - [sym_operator] = STATE(34), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(218), - [sym__bitwiseOperator] = STATE(218), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(56), - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(47), - [anon_sym_STAR] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(47), - [anon_sym_GT_GT] = ACTIONS(49), - [anon_sym_GT_GT_GT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(544), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), + [sym_preprocessor_statement] = STATE(588), + [sym_package_statement] = STATE(588), + [sym_import_statement] = STATE(588), + [sym_using_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym__rhs_expression] = STATE(1227), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(405), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2832), + [sym_for_statement] = STATE(588), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(588), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(588), + [sym_conditional_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_while_statement] = STATE(588), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1227), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(588), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(199), + [anon_sym_return] = ACTIONS(1111), + [anon_sym_untyped] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_while] = ACTIONS(205), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [58] = { - [sym_operator] = STATE(33), - [sym__unaryOperator] = STATE(272), - [sym__prefixUnaryOperator] = STATE(272), - [sym__postfixUnaryOperator] = STATE(272), - [sym__binaryOperator] = STATE(272), - [sym__arithmeticOperator] = STATE(272), - [sym__bitwiseOperator] = STATE(272), - [sym__logicalOperator] = STATE(272), - [sym__comparisonOperator] = STATE(272), - [sym__miscOperator] = STATE(272), - [sym__assignmentOperator] = STATE(272), - [sym__compoundAssignmentOperator] = STATE(272), - [aux_sym_expression_repeat1] = STATE(59), - [sym_identifier] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_GT_GT_GT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(586), - [sym__rangeOperator] = ACTIONS(584), - [anon_sym_null] = ACTIONS(544), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(542), + [sym_preprocessor_statement] = STATE(450), + [sym_package_statement] = STATE(450), + [sym_import_statement] = STATE(450), + [sym_using_statement] = STATE(450), + [sym_throw_statement] = STATE(450), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3389), + [sym_runtime_type_check_expression] = STATE(3389), + [sym_switch_expression] = STATE(394), + [sym_cast_expression] = STATE(3389), + [sym_type_trace_expression] = STATE(3389), + [sym__parenthesized_expression] = STATE(2585), + [sym_for_statement] = STATE(450), + [sym_range_expression] = STATE(3389), + [sym_subscript_expression] = STATE(3389), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(619), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(450), + [sym_conditional_statement] = STATE(450), + [sym_while_statement] = STATE(450), + [sym_do_while_statement] = STATE(450), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(450), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(169), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_untyped] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(171), + [anon_sym_if] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [59] = { - [sym_operator] = STATE(1484), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_package] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_import] = ACTIONS(580), - [anon_sym_using] = ACTIONS(580), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_cast] = ACTIONS(580), - [anon_sym_DOLLARtype] = ACTIONS(578), - [anon_sym_return] = ACTIONS(580), - [anon_sym_untyped] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_this] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_AT_COLON] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_new] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(580), - [anon_sym_macro] = ACTIONS(580), - [anon_sym_abstract] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_inline] = ACTIONS(580), - [anon_sym_overload] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), - [anon_sym_class] = ACTIONS(580), - [anon_sym_interface] = ACTIONS(580), - [anon_sym_typedef] = ACTIONS(580), - [anon_sym_function] = ACTIONS(580), - [anon_sym_var] = ACTIONS(580), - [aux_sym_integer_token1] = ACTIONS(580), - [aux_sym_integer_token2] = ACTIONS(578), - [aux_sym_float_token1] = ACTIONS(580), - [aux_sym_float_token2] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [aux_sym_string_token1] = ACTIONS(578), - [aux_sym_string_token3] = ACTIONS(578), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(578), + [sym_preprocessor_statement] = STATE(973), + [sym_package_statement] = STATE(973), + [sym_import_statement] = STATE(973), + [sym_using_statement] = STATE(973), + [sym_throw_statement] = STATE(973), + [sym__rhs_expression] = STATE(1255), + [sym__unaryExpression] = STATE(3328), + [sym_runtime_type_check_expression] = STATE(3328), + [sym_switch_expression] = STATE(967), + [sym_cast_expression] = STATE(3328), + [sym_type_trace_expression] = STATE(3328), + [sym__parenthesized_expression] = STATE(2747), + [sym_for_statement] = STATE(973), + [sym_range_expression] = STATE(3328), + [sym_subscript_expression] = STATE(3328), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(973), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(973), + [sym_conditional_statement] = STATE(973), + [sym_while_statement] = STATE(973), + [sym_do_while_statement] = STATE(973), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1255), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(973), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1123), + [anon_sym_untyped] = ACTIONS(1125), + [anon_sym_break] = ACTIONS(1127), + [anon_sym_continue] = ACTIONS(1127), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [60] = { - [sym_operator] = STATE(1484), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(60), - [sym_identifier] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_package] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_using] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_COLON] = ACTIONS(594), - [anon_sym_if] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(599), - [sym__rangeOperator] = ACTIONS(596), - [anon_sym_null] = ACTIONS(592), - [anon_sym_macro] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_inline] = ACTIONS(592), - [anon_sym_overload] = ACTIONS(592), - [anon_sym_override] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(594), + [sym_preprocessor_statement] = STATE(637), + [sym_package_statement] = STATE(637), + [sym_import_statement] = STATE(637), + [sym_using_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym__rhs_expression] = STATE(1240), + [sym__unaryExpression] = STATE(3610), + [sym_runtime_type_check_expression] = STATE(3610), + [sym_switch_expression] = STATE(546), + [sym_cast_expression] = STATE(3610), + [sym_type_trace_expression] = STATE(3610), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(637), + [sym_range_expression] = STATE(3610), + [sym_subscript_expression] = STATE(3610), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(637), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(637), + [sym_conditional_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_while_statement] = STATE(637), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1240), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(637), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(919), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_untyped] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [61] = { - [sym_operator] = STATE(1595), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(61), - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_package] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_using] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_COLON] = ACTIONS(594), - [anon_sym_if] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(599), - [sym__rangeOperator] = ACTIONS(596), - [anon_sym_null] = ACTIONS(592), - [anon_sym_macro] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_inline] = ACTIONS(592), - [anon_sym_overload] = ACTIONS(592), - [anon_sym_override] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), + [sym_preprocessor_statement] = STATE(2475), + [sym_package_statement] = STATE(2475), + [sym_import_statement] = STATE(2475), + [sym_using_statement] = STATE(2475), + [sym_throw_statement] = STATE(2475), + [sym__rhs_expression] = STATE(1171), + [sym__unaryExpression] = STATE(3584), + [sym_runtime_type_check_expression] = STATE(3584), + [sym_switch_expression] = STATE(2413), + [sym_cast_expression] = STATE(3584), + [sym_type_trace_expression] = STATE(3584), + [sym__parenthesized_expression] = STATE(2667), + [sym_for_statement] = STATE(2475), + [sym_range_expression] = STATE(3584), + [sym_subscript_expression] = STATE(3584), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2475), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(2475), + [sym_conditional_statement] = STATE(2475), + [sym_while_statement] = STATE(2475), + [sym_do_while_statement] = STATE(2475), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1171), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2475), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(1129), + [anon_sym_untyped] = ACTIONS(1131), + [anon_sym_break] = ACTIONS(1133), + [anon_sym_continue] = ACTIONS(1133), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(167), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [62] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(72), - [sym_runtime_type_check_expression] = STATE(72), - [sym_switch_expression] = STATE(72), - [sym_cast_expression] = STATE(72), - [sym_type_trace_expression] = STATE(72), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(72), - [sym_subscript_expression] = STATE(72), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(618), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(620), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(637), + [sym_package_statement] = STATE(637), + [sym_import_statement] = STATE(637), + [sym_using_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym__rhs_expression] = STATE(1240), + [sym__unaryExpression] = STATE(3610), + [sym_runtime_type_check_expression] = STATE(3610), + [sym_switch_expression] = STATE(546), + [sym_cast_expression] = STATE(3610), + [sym_type_trace_expression] = STATE(3610), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(637), + [sym_range_expression] = STATE(3610), + [sym_subscript_expression] = STATE(3610), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(637), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(637), + [sym_conditional_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_while_statement] = STATE(637), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1240), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(637), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1013), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_untyped] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1015), + [anon_sym_if] = ACTIONS(1017), + [anon_sym_while] = ACTIONS(1019), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [63] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(71), - [sym_runtime_type_check_expression] = STATE(71), - [sym_switch_expression] = STATE(71), - [sym_cast_expression] = STATE(71), - [sym_type_trace_expression] = STATE(71), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(71), - [sym_subscript_expression] = STATE(71), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_structure_type_pair] = STATE(2692), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(71), - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(372), - [anon_sym_continue] = ACTIONS(372), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(413), + [sym_package_statement] = STATE(413), + [sym_import_statement] = STATE(413), + [sym_using_statement] = STATE(413), + [sym_throw_statement] = STATE(413), + [sym__rhs_expression] = STATE(1206), + [sym__unaryExpression] = STATE(3478), + [sym_runtime_type_check_expression] = STATE(3478), + [sym_switch_expression] = STATE(392), + [sym_cast_expression] = STATE(3478), + [sym_type_trace_expression] = STATE(3478), + [sym__parenthesized_expression] = STATE(2770), + [sym_for_statement] = STATE(413), + [sym_range_expression] = STATE(3478), + [sym_subscript_expression] = STATE(3478), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(413), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(413), + [sym_conditional_statement] = STATE(413), + [sym_while_statement] = STATE(413), + [sym_do_while_statement] = STATE(413), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1206), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(413), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(161), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_untyped] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(163), + [anon_sym_if] = ACTIONS(165), + [anon_sym_while] = ACTIONS(167), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [64] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(65), - [sym_runtime_type_check_expression] = STATE(65), - [sym_switch_expression] = STATE(65), - [sym_cast_expression] = STATE(65), - [sym_type_trace_expression] = STATE(65), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(65), - [sym_subscript_expression] = STATE(65), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_structure_type_pair] = STATE(2878), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(65), - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(624), - [anon_sym_continue] = ACTIONS(624), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(2850), + [sym_package_statement] = STATE(2850), + [sym_import_statement] = STATE(2850), + [sym_using_statement] = STATE(2850), + [sym_throw_statement] = STATE(2850), + [sym__rhs_expression] = STATE(1134), + [sym__unaryExpression] = STATE(3501), + [sym_runtime_type_check_expression] = STATE(3501), + [sym_switch_expression] = STATE(2665), + [sym_cast_expression] = STATE(3501), + [sym_type_trace_expression] = STATE(3501), + [sym__parenthesized_expression] = STATE(2613), + [sym_for_statement] = STATE(2850), + [sym_range_expression] = STATE(3501), + [sym_subscript_expression] = STATE(3501), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2850), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(2850), + [sym_conditional_statement] = STATE(2850), + [sym_while_statement] = STATE(2850), + [sym_do_while_statement] = STATE(2850), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1134), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2850), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1135), + [anon_sym_untyped] = ACTIONS(1137), + [anon_sym_break] = ACTIONS(1139), + [anon_sym_continue] = ACTIONS(1139), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [65] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(72), - [sym_runtime_type_check_expression] = STATE(72), - [sym_switch_expression] = STATE(72), - [sym_cast_expression] = STATE(72), - [sym_type_trace_expression] = STATE(72), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(72), - [sym_subscript_expression] = STATE(72), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(626), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(620), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(632), + [sym_package_statement] = STATE(632), + [sym_import_statement] = STATE(632), + [sym_using_statement] = STATE(632), + [sym_throw_statement] = STATE(632), + [sym__rhs_expression] = STATE(1272), + [sym__unaryExpression] = STATE(3421), + [sym_runtime_type_check_expression] = STATE(3421), + [sym_switch_expression] = STATE(571), + [sym_cast_expression] = STATE(3421), + [sym_type_trace_expression] = STATE(3421), + [sym__parenthesized_expression] = STATE(2757), + [sym_for_statement] = STATE(632), + [sym_range_expression] = STATE(3421), + [sym_subscript_expression] = STATE(3421), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(632), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(632), + [sym_conditional_statement] = STATE(632), + [sym_while_statement] = STATE(632), + [sym_do_while_statement] = STATE(632), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1272), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(632), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1143), + [anon_sym_untyped] = ACTIONS(1145), + [anon_sym_break] = ACTIONS(1147), + [anon_sym_continue] = ACTIONS(1147), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [66] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(72), - [sym_runtime_type_check_expression] = STATE(72), - [sym_switch_expression] = STATE(72), - [sym_cast_expression] = STATE(72), - [sym_type_trace_expression] = STATE(72), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(72), - [sym_subscript_expression] = STATE(72), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(628), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(620), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(814), + [sym_package_statement] = STATE(814), + [sym_import_statement] = STATE(814), + [sym_using_statement] = STATE(814), + [sym_throw_statement] = STATE(814), + [sym__rhs_expression] = STATE(1149), + [sym__unaryExpression] = STATE(3452), + [sym_runtime_type_check_expression] = STATE(3452), + [sym_switch_expression] = STATE(645), + [sym_cast_expression] = STATE(3452), + [sym_type_trace_expression] = STATE(3452), + [sym__parenthesized_expression] = STATE(2551), + [sym_for_statement] = STATE(814), + [sym_range_expression] = STATE(3452), + [sym_subscript_expression] = STATE(3452), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(814), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(814), + [sym_conditional_statement] = STATE(814), + [sym_while_statement] = STATE(814), + [sym_do_while_statement] = STATE(814), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1149), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(814), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(352), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(364), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(373), + [anon_sym_switch] = ACTIONS(376), + [anon_sym_LBRACE] = ACTIONS(379), + [anon_sym_cast] = ACTIONS(382), + [anon_sym_DOLLARtype] = ACTIONS(385), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(391), + [anon_sym_untyped] = ACTIONS(394), + [anon_sym_break] = ACTIONS(397), + [anon_sym_continue] = ACTIONS(397), + [anon_sym_LBRACK] = ACTIONS(400), + [anon_sym_this] = ACTIONS(403), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1091), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(424), + [anon_sym_TILDE] = ACTIONS(427), + [anon_sym_BANG] = ACTIONS(430), + [anon_sym_DASH] = ACTIONS(433), + [anon_sym_PLUS_PLUS] = ACTIONS(436), + [anon_sym_DASH_DASH] = ACTIONS(436), + [anon_sym_PERCENT] = ACTIONS(364), + [anon_sym_SLASH] = ACTIONS(439), + [anon_sym_PLUS] = ACTIONS(439), + [anon_sym_LT_LT] = ACTIONS(364), + [anon_sym_GT_GT] = ACTIONS(439), + [anon_sym_GT_GT_GT] = ACTIONS(364), + [anon_sym_AMP] = ACTIONS(439), + [anon_sym_PIPE] = ACTIONS(439), + [anon_sym_CARET] = ACTIONS(364), + [anon_sym_AMP_AMP] = ACTIONS(427), + [anon_sym_PIPE_PIPE] = ACTIONS(427), + [anon_sym_EQ_EQ] = ACTIONS(427), + [anon_sym_BANG_EQ] = ACTIONS(427), + [anon_sym_LT] = ACTIONS(430), + [anon_sym_LT_EQ] = ACTIONS(427), + [anon_sym_GT] = ACTIONS(430), + [anon_sym_GT_EQ] = ACTIONS(427), + [anon_sym_EQ_GT] = ACTIONS(427), + [anon_sym_QMARK_QMARK] = ACTIONS(427), + [anon_sym_EQ] = ACTIONS(430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(442), + [anon_sym_null] = ACTIONS(445), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(472), + [aux_sym_integer_token2] = ACTIONS(475), + [aux_sym_float_token1] = ACTIONS(478), + [aux_sym_float_token2] = ACTIONS(481), + [anon_sym_true] = ACTIONS(484), + [anon_sym_false] = ACTIONS(484), + [aux_sym_string_token1] = ACTIONS(487), + [aux_sym_string_token3] = ACTIONS(490), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [67] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(70), - [sym_runtime_type_check_expression] = STATE(70), - [sym_switch_expression] = STATE(70), - [sym_cast_expression] = STATE(70), - [sym_type_trace_expression] = STATE(70), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(70), - [sym_subscript_expression] = STATE(70), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_structure_type_pair] = STATE(2671), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(70), - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(630), - [anon_sym_continue] = ACTIONS(630), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(2858), + [sym_package_statement] = STATE(2858), + [sym_import_statement] = STATE(2858), + [sym_using_statement] = STATE(2858), + [sym_throw_statement] = STATE(2858), + [sym__rhs_expression] = STATE(1167), + [sym__unaryExpression] = STATE(3542), + [sym_runtime_type_check_expression] = STATE(3542), + [sym_switch_expression] = STATE(2673), + [sym_cast_expression] = STATE(3542), + [sym_type_trace_expression] = STATE(3542), + [sym__parenthesized_expression] = STATE(2678), + [sym_for_statement] = STATE(2858), + [sym_range_expression] = STATE(3542), + [sym_subscript_expression] = STATE(3542), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2858), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(2858), + [sym_conditional_statement] = STATE(2858), + [sym_while_statement] = STATE(2858), + [sym_do_while_statement] = STATE(2858), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1167), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2858), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1155), + [anon_sym_untyped] = ACTIONS(1157), + [anon_sym_break] = ACTIONS(1159), + [anon_sym_continue] = ACTIONS(1159), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [68] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(66), - [sym_runtime_type_check_expression] = STATE(66), - [sym_switch_expression] = STATE(66), - [sym_cast_expression] = STATE(66), - [sym_type_trace_expression] = STATE(66), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_structure_type_pair] = STATE(2768), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(815), + [sym_package_statement] = STATE(815), + [sym_import_statement] = STATE(815), + [sym_using_statement] = STATE(815), + [sym_throw_statement] = STATE(815), + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3630), + [sym_runtime_type_check_expression] = STATE(3630), + [sym_switch_expression] = STATE(646), + [sym_cast_expression] = STATE(3630), + [sym_type_trace_expression] = STATE(3630), + [sym__parenthesized_expression] = STATE(2654), + [sym_for_statement] = STATE(815), + [sym_range_expression] = STATE(3630), + [sym_subscript_expression] = STATE(3630), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(817), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(815), + [sym_conditional_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_do_while_statement] = STATE(815), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(815), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_untyped] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [69] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(62), - [sym_runtime_type_check_expression] = STATE(62), - [sym_switch_expression] = STATE(62), - [sym_cast_expression] = STATE(62), - [sym_type_trace_expression] = STATE(62), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(62), - [sym_subscript_expression] = STATE(62), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_structure_type_pair] = STATE(2625), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(62), - [sym_identifier] = ACTIONS(622), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(632), - [anon_sym_continue] = ACTIONS(632), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(822), + [sym_package_statement] = STATE(822), + [sym_import_statement] = STATE(822), + [sym_using_statement] = STATE(822), + [sym_throw_statement] = STATE(822), + [sym__rhs_expression] = STATE(1188), + [sym__unaryExpression] = STATE(3601), + [sym_runtime_type_check_expression] = STATE(3601), + [sym_switch_expression] = STATE(648), + [sym_cast_expression] = STATE(3601), + [sym_type_trace_expression] = STATE(3601), + [sym__parenthesized_expression] = STATE(2823), + [sym_for_statement] = STATE(822), + [sym_range_expression] = STATE(3601), + [sym_subscript_expression] = STATE(3601), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(822), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(822), + [sym_conditional_statement] = STATE(822), + [sym_while_statement] = STATE(822), + [sym_do_while_statement] = STATE(822), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1188), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(822), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1069), + [anon_sym_return] = ACTIONS(1161), + [anon_sym_untyped] = ACTIONS(1163), + [anon_sym_break] = ACTIONS(1165), + [anon_sym_continue] = ACTIONS(1165), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1077), + [anon_sym_if] = ACTIONS(1079), + [anon_sym_while] = ACTIONS(1081), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [70] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(72), - [sym_runtime_type_check_expression] = STATE(72), - [sym_switch_expression] = STATE(72), - [sym_cast_expression] = STATE(72), - [sym_type_trace_expression] = STATE(72), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(72), - [sym_subscript_expression] = STATE(72), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(634), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(620), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(637), + [sym_package_statement] = STATE(637), + [sym_import_statement] = STATE(637), + [sym_using_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym__rhs_expression] = STATE(1240), + [sym__unaryExpression] = STATE(3610), + [sym_runtime_type_check_expression] = STATE(3610), + [sym_switch_expression] = STATE(546), + [sym_cast_expression] = STATE(3610), + [sym_type_trace_expression] = STATE(3610), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(637), + [sym_range_expression] = STATE(3610), + [sym_subscript_expression] = STATE(3610), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(637), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(637), + [sym_conditional_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_while_statement] = STATE(637), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1240), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(637), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1141), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_untyped] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1149), + [anon_sym_if] = ACTIONS(1151), + [anon_sym_while] = ACTIONS(1153), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [71] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(72), - [sym_runtime_type_check_expression] = STATE(72), - [sym_switch_expression] = STATE(72), - [sym_cast_expression] = STATE(72), - [sym_type_trace_expression] = STATE(72), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(72), - [sym_subscript_expression] = STATE(72), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(636), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(620), - [anon_sym_continue] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(760), + [sym_package_statement] = STATE(760), + [sym_import_statement] = STATE(760), + [sym_using_statement] = STATE(760), + [sym_throw_statement] = STATE(760), + [sym__rhs_expression] = STATE(1186), + [sym__unaryExpression] = STATE(3655), + [sym_runtime_type_check_expression] = STATE(3655), + [sym_switch_expression] = STATE(631), + [sym_cast_expression] = STATE(3655), + [sym_type_trace_expression] = STATE(3655), + [sym__parenthesized_expression] = STATE(2646), + [sym_for_statement] = STATE(760), + [sym_range_expression] = STATE(3655), + [sym_subscript_expression] = STATE(3655), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(760), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(760), + [sym_conditional_statement] = STATE(760), + [sym_while_statement] = STATE(760), + [sym_do_while_statement] = STATE(760), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1186), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(760), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1005), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_untyped] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1007), + [anon_sym_if] = ACTIONS(1009), + [anon_sym_while] = ACTIONS(1011), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [72] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(72), - [sym_runtime_type_check_expression] = STATE(72), - [sym_switch_expression] = STATE(72), - [sym_cast_expression] = STATE(72), - [sym_type_trace_expression] = STATE(72), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(72), - [sym_subscript_expression] = STATE(72), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(72), - [sym_identifier] = ACTIONS(638), - [anon_sym_LPAREN] = ACTIONS(641), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(646), - [anon_sym_LBRACE] = ACTIONS(649), - [anon_sym_cast] = ACTIONS(652), - [anon_sym_DOLLARtype] = ACTIONS(655), - [anon_sym_return] = ACTIONS(658), - [anon_sym_untyped] = ACTIONS(661), - [anon_sym_break] = ACTIONS(664), - [anon_sym_continue] = ACTIONS(664), - [anon_sym_LBRACK] = ACTIONS(667), - [anon_sym_this] = ACTIONS(670), - [anon_sym_new] = ACTIONS(673), - [anon_sym_TILDE] = ACTIONS(676), - [anon_sym_BANG] = ACTIONS(679), - [anon_sym_DASH] = ACTIONS(682), - [anon_sym_PLUS_PLUS] = ACTIONS(685), - [anon_sym_DASH_DASH] = ACTIONS(685), - [anon_sym_PERCENT] = ACTIONS(688), - [anon_sym_STAR] = ACTIONS(688), - [anon_sym_SLASH] = ACTIONS(691), - [anon_sym_PLUS] = ACTIONS(691), - [anon_sym_LT_LT] = ACTIONS(688), - [anon_sym_GT_GT] = ACTIONS(691), - [anon_sym_GT_GT_GT] = ACTIONS(688), - [anon_sym_AMP] = ACTIONS(691), - [anon_sym_PIPE] = ACTIONS(691), - [anon_sym_CARET] = ACTIONS(688), - [anon_sym_AMP_AMP] = ACTIONS(676), - [anon_sym_PIPE_PIPE] = ACTIONS(676), - [anon_sym_EQ_EQ] = ACTIONS(676), - [anon_sym_BANG_EQ] = ACTIONS(676), - [anon_sym_LT] = ACTIONS(679), - [anon_sym_LT_EQ] = ACTIONS(676), - [anon_sym_GT] = ACTIONS(679), - [anon_sym_GT_EQ] = ACTIONS(676), - [anon_sym_EQ_GT] = ACTIONS(676), - [anon_sym_QMARK_QMARK] = ACTIONS(676), - [anon_sym_EQ] = ACTIONS(679), - [sym__rangeOperator] = ACTIONS(676), - [anon_sym_null] = ACTIONS(694), - [aux_sym_integer_token1] = ACTIONS(697), - [aux_sym_integer_token2] = ACTIONS(700), - [aux_sym_float_token1] = ACTIONS(703), - [aux_sym_float_token2] = ACTIONS(706), - [anon_sym_true] = ACTIONS(709), - [anon_sym_false] = ACTIONS(709), - [aux_sym_string_token1] = ACTIONS(712), - [aux_sym_string_token3] = ACTIONS(715), + [sym_preprocessor_statement] = STATE(960), + [sym_package_statement] = STATE(960), + [sym_import_statement] = STATE(960), + [sym_using_statement] = STATE(960), + [sym_throw_statement] = STATE(960), + [sym__rhs_expression] = STATE(1265), + [sym__unaryExpression] = STATE(3363), + [sym_runtime_type_check_expression] = STATE(3363), + [sym_switch_expression] = STATE(954), + [sym_cast_expression] = STATE(3363), + [sym_type_trace_expression] = STATE(3363), + [sym__parenthesized_expression] = STATE(2753), + [sym_for_statement] = STATE(960), + [sym_range_expression] = STATE(3363), + [sym_subscript_expression] = STATE(3363), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(960), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(960), + [sym_conditional_statement] = STATE(960), + [sym_while_statement] = STATE(960), + [sym_do_while_statement] = STATE(960), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1265), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(960), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(1167), + [anon_sym_untyped] = ACTIONS(1169), + [anon_sym_break] = ACTIONS(1171), + [anon_sym_continue] = ACTIONS(1171), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(955), + [anon_sym_if] = ACTIONS(957), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [73] = { - [sym__rhs_expression] = STATE(872), - [sym__unaryExpression] = STATE(2289), - [sym_runtime_type_check_expression] = STATE(2289), - [sym_switch_expression] = STATE(2289), - [sym_cast_expression] = STATE(2289), - [sym_type_trace_expression] = STATE(2289), - [sym__parenthesized_expression] = STATE(2212), - [sym_range_expression] = STATE(2289), - [sym_subscript_expression] = STATE(2289), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(872), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(720), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(724), - [anon_sym_untyped] = ACTIONS(726), - [anon_sym_break] = ACTIONS(728), - [anon_sym_continue] = ACTIONS(728), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(637), + [sym_package_statement] = STATE(637), + [sym_import_statement] = STATE(637), + [sym_using_statement] = STATE(637), + [sym_throw_statement] = STATE(637), + [sym__rhs_expression] = STATE(1240), + [sym__unaryExpression] = STATE(3610), + [sym_runtime_type_check_expression] = STATE(3610), + [sym_switch_expression] = STATE(546), + [sym_cast_expression] = STATE(3610), + [sym_type_trace_expression] = STATE(3610), + [sym__parenthesized_expression] = STATE(2709), + [sym_for_statement] = STATE(637), + [sym_range_expression] = STATE(3610), + [sym_subscript_expression] = STATE(3610), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(637), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(637), + [sym_conditional_statement] = STATE(637), + [sym_while_statement] = STATE(637), + [sym_do_while_statement] = STATE(637), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1240), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(637), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(1071), + [anon_sym_untyped] = ACTIONS(1073), + [anon_sym_break] = ACTIONS(1075), + [anon_sym_continue] = ACTIONS(1075), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(955), + [anon_sym_if] = ACTIONS(957), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [74] = { - [sym__rhs_expression] = STATE(808), - [sym__unaryExpression] = STATE(2262), - [sym_runtime_type_check_expression] = STATE(2262), - [sym_switch_expression] = STATE(2262), - [sym_cast_expression] = STATE(2262), - [sym_type_trace_expression] = STATE(2262), - [sym__parenthesized_expression] = STATE(2029), - [sym_range_expression] = STATE(2262), - [sym_subscript_expression] = STATE(2262), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(808), - [sym_operator] = STATE(1451), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1269), - [sym_integer] = STATE(1269), - [sym_float] = STATE(1269), - [sym_bool] = STATE(1269), - [sym_string] = STATE(1208), - [sym_null] = STATE(1269), - [sym_array] = STATE(1269), - [sym_map] = STATE(1269), - [sym_object] = STATE(1269), - [sym_pair] = STATE(1193), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(738), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(742), - [anon_sym_untyped] = ACTIONS(744), - [anon_sym_break] = ACTIONS(746), - [anon_sym_continue] = ACTIONS(746), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(750), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym_preprocessor_statement] = STATE(2889), + [sym_package_statement] = STATE(2889), + [sym_import_statement] = STATE(2889), + [sym_using_statement] = STATE(2889), + [sym_throw_statement] = STATE(2889), + [sym__rhs_expression] = STATE(1181), + [sym__unaryExpression] = STATE(3420), + [sym_runtime_type_check_expression] = STATE(3420), + [sym_switch_expression] = STATE(2693), + [sym_cast_expression] = STATE(3420), + [sym_type_trace_expression] = STATE(3420), + [sym__parenthesized_expression] = STATE(2675), + [sym_for_statement] = STATE(2889), + [sym_range_expression] = STATE(3420), + [sym_subscript_expression] = STATE(3420), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2889), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(2889), + [sym_conditional_statement] = STATE(2889), + [sym_while_statement] = STATE(2889), + [sym_do_while_statement] = STATE(2889), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1181), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2889), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1173), + [anon_sym_untyped] = ACTIONS(1175), + [anon_sym_break] = ACTIONS(1177), + [anon_sym_continue] = ACTIONS(1177), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [75] = { - [sym_operator] = STATE(50), - [sym__unaryOperator] = STATE(272), - [sym__prefixUnaryOperator] = STATE(272), - [sym__postfixUnaryOperator] = STATE(272), - [sym__binaryOperator] = STATE(272), - [sym__arithmeticOperator] = STATE(272), - [sym__bitwiseOperator] = STATE(272), - [sym__logicalOperator] = STATE(272), - [sym__comparisonOperator] = STATE(272), - [sym__miscOperator] = STATE(272), - [sym__assignmentOperator] = STATE(272), - [sym__compoundAssignmentOperator] = STATE(272), - [aux_sym_expression_repeat1] = STATE(76), - [sym_identifier] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_this] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(584), - [anon_sym_BANG] = ACTIONS(586), - [anon_sym_DASH] = ACTIONS(588), - [anon_sym_PLUS_PLUS] = ACTIONS(590), - [anon_sym_DASH_DASH] = ACTIONS(590), - [anon_sym_PERCENT] = ACTIONS(584), - [anon_sym_STAR] = ACTIONS(584), - [anon_sym_SLASH] = ACTIONS(586), - [anon_sym_PLUS] = ACTIONS(586), - [anon_sym_LT_LT] = ACTIONS(584), - [anon_sym_GT_GT] = ACTIONS(586), - [anon_sym_GT_GT_GT] = ACTIONS(584), - [anon_sym_AMP] = ACTIONS(586), - [anon_sym_PIPE] = ACTIONS(586), - [anon_sym_CARET] = ACTIONS(584), - [anon_sym_AMP_AMP] = ACTIONS(584), - [anon_sym_PIPE_PIPE] = ACTIONS(584), - [anon_sym_EQ_EQ] = ACTIONS(584), - [anon_sym_BANG_EQ] = ACTIONS(584), - [anon_sym_LT] = ACTIONS(586), - [anon_sym_LT_EQ] = ACTIONS(584), - [anon_sym_GT] = ACTIONS(586), - [anon_sym_GT_EQ] = ACTIONS(584), - [anon_sym_EQ_GT] = ACTIONS(584), - [anon_sym_QMARK_QMARK] = ACTIONS(584), - [anon_sym_EQ] = ACTIONS(586), - [sym__rangeOperator] = ACTIONS(584), - [anon_sym_null] = ACTIONS(564), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(564), - [aux_sym_integer_token2] = ACTIONS(562), - [aux_sym_float_token1] = ACTIONS(564), - [aux_sym_float_token2] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [aux_sym_string_token1] = ACTIONS(562), - [aux_sym_string_token3] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(562), + [sym_preprocessor_statement] = STATE(760), + [sym_package_statement] = STATE(760), + [sym_import_statement] = STATE(760), + [sym_using_statement] = STATE(760), + [sym_throw_statement] = STATE(760), + [sym__rhs_expression] = STATE(1186), + [sym__unaryExpression] = STATE(3655), + [sym_runtime_type_check_expression] = STATE(3655), + [sym_switch_expression] = STATE(631), + [sym_cast_expression] = STATE(3655), + [sym_type_trace_expression] = STATE(3655), + [sym__parenthesized_expression] = STATE(2646), + [sym_for_statement] = STATE(760), + [sym_range_expression] = STATE(3655), + [sym_subscript_expression] = STATE(3655), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(760), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(760), + [sym_conditional_statement] = STATE(760), + [sym_while_statement] = STATE(760), + [sym_do_while_statement] = STATE(760), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1186), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(760), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_untyped] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [76] = { - [sym_operator] = STATE(1578), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(770), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_this] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_if] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(770), - [anon_sym_macro] = ACTIONS(770), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_static] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_extern] = ACTIONS(770), - [anon_sym_inline] = ACTIONS(770), - [anon_sym_overload] = ACTIONS(770), - [anon_sym_override] = ACTIONS(770), - [anon_sym_final] = ACTIONS(770), - [anon_sym_class] = ACTIONS(770), - [anon_sym_interface] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(770), - [aux_sym_integer_token2] = ACTIONS(772), - [aux_sym_float_token1] = ACTIONS(770), - [aux_sym_float_token2] = ACTIONS(772), - [anon_sym_true] = ACTIONS(770), - [anon_sym_false] = ACTIONS(770), - [aux_sym_string_token1] = ACTIONS(772), - [aux_sym_string_token3] = ACTIONS(772), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(772), + [sym_preprocessor_statement] = STATE(3004), + [sym_package_statement] = STATE(3004), + [sym_import_statement] = STATE(3004), + [sym_using_statement] = STATE(3004), + [sym_throw_statement] = STATE(3004), + [sym__rhs_expression] = STATE(1198), + [sym__unaryExpression] = STATE(3430), + [sym_runtime_type_check_expression] = STATE(3430), + [sym_switch_expression] = STATE(2756), + [sym_cast_expression] = STATE(3430), + [sym_type_trace_expression] = STATE(3430), + [sym__parenthesized_expression] = STATE(2692), + [sym_for_statement] = STATE(3004), + [sym_range_expression] = STATE(3430), + [sym_subscript_expression] = STATE(3430), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3004), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3004), + [sym_conditional_statement] = STATE(3004), + [sym_while_statement] = STATE(3004), + [sym_do_while_statement] = STATE(3004), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1198), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3004), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1187), + [anon_sym_untyped] = ACTIONS(1189), + [anon_sym_break] = ACTIONS(1191), + [anon_sym_continue] = ACTIONS(1191), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [77] = { - [sym__rhs_expression] = STATE(860), - [sym__unaryExpression] = STATE(2303), - [sym_runtime_type_check_expression] = STATE(2303), - [sym_switch_expression] = STATE(2303), - [sym_cast_expression] = STATE(2303), - [sym_type_trace_expression] = STATE(2303), - [sym__parenthesized_expression] = STATE(2287), - [sym_range_expression] = STATE(2303), - [sym_subscript_expression] = STATE(2303), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(860), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(774), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(776), - [anon_sym_untyped] = ACTIONS(778), - [anon_sym_break] = ACTIONS(780), - [anon_sym_continue] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(760), + [sym_package_statement] = STATE(760), + [sym_import_statement] = STATE(760), + [sym_using_statement] = STATE(760), + [sym_throw_statement] = STATE(760), + [sym__rhs_expression] = STATE(1186), + [sym__unaryExpression] = STATE(3655), + [sym_runtime_type_check_expression] = STATE(3655), + [sym_switch_expression] = STATE(631), + [sym_cast_expression] = STATE(3655), + [sym_type_trace_expression] = STATE(3655), + [sym__parenthesized_expression] = STATE(2646), + [sym_for_statement] = STATE(760), + [sym_range_expression] = STATE(3655), + [sym_subscript_expression] = STATE(3655), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(760), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(760), + [sym_conditional_statement] = STATE(760), + [sym_while_statement] = STATE(760), + [sym_do_while_statement] = STATE(760), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1186), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(760), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(31), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_untyped] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_if] = ACTIONS(49), + [anon_sym_while] = ACTIONS(51), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [78] = { - [sym__rhs_expression] = STATE(841), - [sym__unaryExpression] = STATE(2341), - [sym_runtime_type_check_expression] = STATE(2341), - [sym_switch_expression] = STATE(2341), - [sym_cast_expression] = STATE(2341), - [sym_type_trace_expression] = STATE(2341), - [sym__parenthesized_expression] = STATE(2157), - [sym_range_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(841), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(784), - [anon_sym_untyped] = ACTIONS(786), - [anon_sym_break] = ACTIONS(788), - [anon_sym_continue] = ACTIONS(788), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(832), + [sym_package_statement] = STATE(832), + [sym_import_statement] = STATE(832), + [sym_using_statement] = STATE(832), + [sym_throw_statement] = STATE(832), + [sym__rhs_expression] = STATE(1210), + [sym__unaryExpression] = STATE(3699), + [sym_runtime_type_check_expression] = STATE(3699), + [sym_switch_expression] = STATE(620), + [sym_cast_expression] = STATE(3699), + [sym_type_trace_expression] = STATE(3699), + [sym__parenthesized_expression] = STATE(2669), + [sym_for_statement] = STATE(832), + [sym_range_expression] = STATE(3699), + [sym_subscript_expression] = STATE(3699), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(832), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(832), + [sym_conditional_statement] = STATE(832), + [sym_while_statement] = STATE(832), + [sym_do_while_statement] = STATE(832), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1210), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(832), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(211), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(223), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(232), + [anon_sym_switch] = ACTIONS(235), + [anon_sym_LBRACE] = ACTIONS(238), + [anon_sym_cast] = ACTIONS(241), + [anon_sym_DOLLARtype] = ACTIONS(244), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(250), + [anon_sym_untyped] = ACTIONS(253), + [anon_sym_break] = ACTIONS(256), + [anon_sym_continue] = ACTIONS(256), + [anon_sym_LBRACK] = ACTIONS(259), + [anon_sym_this] = ACTIONS(262), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1091), + [anon_sym_if] = ACTIONS(1093), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(283), + [anon_sym_TILDE] = ACTIONS(286), + [anon_sym_BANG] = ACTIONS(289), + [anon_sym_DASH] = ACTIONS(292), + [anon_sym_PLUS_PLUS] = ACTIONS(295), + [anon_sym_DASH_DASH] = ACTIONS(295), + [anon_sym_PERCENT] = ACTIONS(223), + [anon_sym_SLASH] = ACTIONS(298), + [anon_sym_PLUS] = ACTIONS(298), + [anon_sym_LT_LT] = ACTIONS(223), + [anon_sym_GT_GT] = ACTIONS(298), + [anon_sym_GT_GT_GT] = ACTIONS(223), + [anon_sym_AMP] = ACTIONS(298), + [anon_sym_PIPE] = ACTIONS(298), + [anon_sym_CARET] = ACTIONS(223), + [anon_sym_AMP_AMP] = ACTIONS(286), + [anon_sym_PIPE_PIPE] = ACTIONS(286), + [anon_sym_EQ_EQ] = ACTIONS(286), + [anon_sym_BANG_EQ] = ACTIONS(286), + [anon_sym_LT] = ACTIONS(289), + [anon_sym_LT_EQ] = ACTIONS(286), + [anon_sym_GT] = ACTIONS(289), + [anon_sym_GT_EQ] = ACTIONS(286), + [anon_sym_EQ_GT] = ACTIONS(286), + [anon_sym_QMARK_QMARK] = ACTIONS(286), + [anon_sym_EQ] = ACTIONS(289), + [anon_sym_DOT_DOT_DOT] = ACTIONS(301), + [anon_sym_null] = ACTIONS(304), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(331), + [aux_sym_integer_token2] = ACTIONS(334), + [aux_sym_float_token1] = ACTIONS(337), + [aux_sym_float_token2] = ACTIONS(340), + [anon_sym_true] = ACTIONS(343), + [anon_sym_false] = ACTIONS(343), + [aux_sym_string_token1] = ACTIONS(346), + [aux_sym_string_token3] = ACTIONS(349), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [79] = { - [sym__rhs_expression] = STATE(843), - [sym__unaryExpression] = STATE(2347), - [sym_runtime_type_check_expression] = STATE(2347), - [sym_switch_expression] = STATE(2347), - [sym_cast_expression] = STATE(2347), - [sym_type_trace_expression] = STATE(2347), - [sym__parenthesized_expression] = STATE(2159), - [sym_range_expression] = STATE(2347), - [sym_subscript_expression] = STATE(2347), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(843), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(790), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(792), - [anon_sym_untyped] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(2964), + [sym_package_statement] = STATE(2964), + [sym_import_statement] = STATE(2964), + [sym_using_statement] = STATE(2964), + [sym_throw_statement] = STATE(2964), + [sym__rhs_expression] = STATE(1235), + [sym__unaryExpression] = STATE(3588), + [sym_runtime_type_check_expression] = STATE(3588), + [sym_switch_expression] = STATE(2740), + [sym_cast_expression] = STATE(3588), + [sym_type_trace_expression] = STATE(3588), + [sym__parenthesized_expression] = STATE(2741), + [sym_for_statement] = STATE(2964), + [sym_range_expression] = STATE(3588), + [sym_subscript_expression] = STATE(3588), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2964), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(2964), + [sym_conditional_statement] = STATE(2964), + [sym_while_statement] = STATE(2964), + [sym_do_while_statement] = STATE(2964), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1235), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2964), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(199), + [anon_sym_return] = ACTIONS(1193), + [anon_sym_untyped] = ACTIONS(1195), + [anon_sym_break] = ACTIONS(1197), + [anon_sym_continue] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_while] = ACTIONS(205), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [80] = { - [sym__rhs_expression] = STATE(705), - [sym__unaryExpression] = STATE(66), - [sym_runtime_type_check_expression] = STATE(66), - [sym_switch_expression] = STATE(66), - [sym_cast_expression] = STATE(66), - [sym_type_trace_expression] = STATE(66), - [sym__parenthesized_expression] = STATE(771), - [sym_range_expression] = STATE(66), - [sym_subscript_expression] = STATE(66), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(705), - [sym_operator] = STATE(1521), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [aux_sym__parenthesized_expression_repeat1] = STATE(66), - [sym_identifier] = ACTIONS(614), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(364), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(368), - [anon_sym_untyped] = ACTIONS(370), - [anon_sym_break] = ACTIONS(400), - [anon_sym_continue] = ACTIONS(400), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(639), + [sym_package_statement] = STATE(639), + [sym_import_statement] = STATE(639), + [sym_using_statement] = STATE(639), + [sym_throw_statement] = STATE(639), + [sym__rhs_expression] = STATE(1285), + [sym__unaryExpression] = STATE(3443), + [sym_runtime_type_check_expression] = STATE(3443), + [sym_switch_expression] = STATE(591), + [sym_cast_expression] = STATE(3443), + [sym_type_trace_expression] = STATE(3443), + [sym__parenthesized_expression] = STATE(2763), + [sym_for_statement] = STATE(639), + [sym_range_expression] = STATE(3443), + [sym_subscript_expression] = STATE(3443), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(639), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(639), + [sym_conditional_statement] = STATE(639), + [sym_while_statement] = STATE(639), + [sym_do_while_statement] = STATE(639), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1285), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(639), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1201), + [anon_sym_untyped] = ACTIONS(1203), + [anon_sym_break] = ACTIONS(1205), + [anon_sym_continue] = ACTIONS(1205), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [81] = { - [sym_operator] = STATE(47), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(218), - [sym__bitwiseOperator] = STATE(218), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(84), - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_this] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(47), - [anon_sym_STAR] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(47), - [anon_sym_GT_GT] = ACTIONS(49), - [anon_sym_GT_GT_GT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(564), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(564), - [aux_sym_integer_token2] = ACTIONS(562), - [aux_sym_float_token1] = ACTIONS(564), - [aux_sym_float_token2] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [aux_sym_string_token1] = ACTIONS(562), - [aux_sym_string_token3] = ACTIONS(562), + [sym_preprocessor_statement] = STATE(450), + [sym_package_statement] = STATE(450), + [sym_import_statement] = STATE(450), + [sym_using_statement] = STATE(450), + [sym_throw_statement] = STATE(450), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3389), + [sym_runtime_type_check_expression] = STATE(3389), + [sym_switch_expression] = STATE(394), + [sym_cast_expression] = STATE(3389), + [sym_type_trace_expression] = STATE(3389), + [sym__parenthesized_expression] = STATE(2585), + [sym_for_statement] = STATE(450), + [sym_range_expression] = STATE(3389), + [sym_subscript_expression] = STATE(3389), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(619), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(450), + [sym_conditional_statement] = STATE(450), + [sym_while_statement] = STATE(450), + [sym_do_while_statement] = STATE(450), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(450), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_untyped] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [82] = { - [sym__rhs_expression] = STATE(818), - [sym__unaryExpression] = STATE(2187), - [sym_runtime_type_check_expression] = STATE(2187), - [sym_switch_expression] = STATE(2187), - [sym_cast_expression] = STATE(2187), - [sym_type_trace_expression] = STATE(2187), - [sym__parenthesized_expression] = STATE(2045), - [sym_range_expression] = STATE(2187), - [sym_subscript_expression] = STATE(2187), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(818), - [sym_operator] = STATE(1451), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1269), - [sym_integer] = STATE(1269), - [sym_float] = STATE(1269), - [sym_bool] = STATE(1269), - [sym_string] = STATE(1208), - [sym_null] = STATE(1269), - [sym_array] = STATE(1269), - [sym_map] = STATE(1269), - [sym_object] = STATE(1269), - [sym_pair] = STATE(1216), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(738), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(798), - [anon_sym_untyped] = ACTIONS(800), - [anon_sym_break] = ACTIONS(802), - [anon_sym_continue] = ACTIONS(802), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(804), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym_preprocessor_statement] = STATE(815), + [sym_package_statement] = STATE(815), + [sym_import_statement] = STATE(815), + [sym_using_statement] = STATE(815), + [sym_throw_statement] = STATE(815), + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3630), + [sym_runtime_type_check_expression] = STATE(3630), + [sym_switch_expression] = STATE(646), + [sym_cast_expression] = STATE(3630), + [sym_type_trace_expression] = STATE(3630), + [sym__parenthesized_expression] = STATE(2654), + [sym_for_statement] = STATE(815), + [sym_range_expression] = STATE(3630), + [sym_subscript_expression] = STATE(3630), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(817), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(815), + [sym_conditional_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_do_while_statement] = STATE(815), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(815), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(919), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_untyped] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(927), + [anon_sym_if] = ACTIONS(929), + [anon_sym_while] = ACTIONS(931), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [83] = { - [sym__rhs_expression] = STATE(803), - [sym__unaryExpression] = STATE(2130), - [sym_runtime_type_check_expression] = STATE(2130), - [sym_switch_expression] = STATE(2130), - [sym_cast_expression] = STATE(2130), - [sym_type_trace_expression] = STATE(2130), - [sym__parenthesized_expression] = STATE(2014), - [sym_range_expression] = STATE(2130), - [sym_subscript_expression] = STATE(2130), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(803), - [sym_operator] = STATE(1451), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1269), - [sym_integer] = STATE(1269), - [sym_float] = STATE(1269), - [sym_bool] = STATE(1269), - [sym_string] = STATE(1208), - [sym_null] = STATE(1269), - [sym_array] = STATE(1269), - [sym_map] = STATE(1269), - [sym_object] = STATE(1269), - [sym_pair] = STATE(1187), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(738), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(806), - [anon_sym_untyped] = ACTIONS(808), - [anon_sym_break] = ACTIONS(810), - [anon_sym_continue] = ACTIONS(810), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(812), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym_preprocessor_statement] = STATE(815), + [sym_package_statement] = STATE(815), + [sym_import_statement] = STATE(815), + [sym_using_statement] = STATE(815), + [sym_throw_statement] = STATE(815), + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3630), + [sym_runtime_type_check_expression] = STATE(3630), + [sym_switch_expression] = STATE(646), + [sym_cast_expression] = STATE(3630), + [sym_type_trace_expression] = STATE(3630), + [sym__parenthesized_expression] = STATE(2654), + [sym_for_statement] = STATE(815), + [sym_range_expression] = STATE(3630), + [sym_subscript_expression] = STATE(3630), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(817), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(815), + [sym_conditional_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_do_while_statement] = STATE(815), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(815), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(951), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(953), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_untyped] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(955), + [anon_sym_if] = ACTIONS(957), + [anon_sym_while] = ACTIONS(959), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [84] = { - [sym_operator] = STATE(1541), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(770), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_this] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_if] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(770), - [anon_sym_macro] = ACTIONS(770), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_static] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_extern] = ACTIONS(770), - [anon_sym_inline] = ACTIONS(770), - [anon_sym_overload] = ACTIONS(770), - [anon_sym_override] = ACTIONS(770), - [anon_sym_final] = ACTIONS(770), - [anon_sym_class] = ACTIONS(770), - [anon_sym_interface] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(770), - [aux_sym_integer_token2] = ACTIONS(772), - [aux_sym_float_token1] = ACTIONS(770), - [aux_sym_float_token2] = ACTIONS(772), - [anon_sym_true] = ACTIONS(770), - [anon_sym_false] = ACTIONS(770), - [aux_sym_string_token1] = ACTIONS(772), - [aux_sym_string_token3] = ACTIONS(772), + [sym_preprocessor_statement] = STATE(413), + [sym_package_statement] = STATE(413), + [sym_import_statement] = STATE(413), + [sym_using_statement] = STATE(413), + [sym_throw_statement] = STATE(413), + [sym__rhs_expression] = STATE(1206), + [sym__unaryExpression] = STATE(3478), + [sym_runtime_type_check_expression] = STATE(3478), + [sym_switch_expression] = STATE(392), + [sym_cast_expression] = STATE(3478), + [sym_type_trace_expression] = STATE(3478), + [sym__parenthesized_expression] = STATE(2770), + [sym_for_statement] = STATE(413), + [sym_range_expression] = STATE(3478), + [sym_subscript_expression] = STATE(3478), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(413), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(413), + [sym_conditional_statement] = STATE(413), + [sym_while_statement] = STATE(413), + [sym_do_while_statement] = STATE(413), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1206), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(413), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1199), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_untyped] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1207), + [anon_sym_if] = ACTIONS(1209), + [anon_sym_while] = ACTIONS(1211), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [85] = { - [sym_operator] = STATE(1578), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_package] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_using] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_COLON] = ACTIONS(594), - [anon_sym_if] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(599), - [sym__rangeOperator] = ACTIONS(596), - [anon_sym_null] = ACTIONS(592), - [anon_sym_macro] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_inline] = ACTIONS(592), - [anon_sym_overload] = ACTIONS(592), - [anon_sym_override] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(594), + [sym_preprocessor_statement] = STATE(450), + [sym_package_statement] = STATE(450), + [sym_import_statement] = STATE(450), + [sym_using_statement] = STATE(450), + [sym_throw_statement] = STATE(450), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3389), + [sym_runtime_type_check_expression] = STATE(3389), + [sym_switch_expression] = STATE(394), + [sym_cast_expression] = STATE(3389), + [sym_type_trace_expression] = STATE(3389), + [sym__parenthesized_expression] = STATE(2585), + [sym_for_statement] = STATE(450), + [sym_range_expression] = STATE(3389), + [sym_subscript_expression] = STATE(3389), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(619), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(450), + [sym_conditional_statement] = STATE(450), + [sym_while_statement] = STATE(450), + [sym_do_while_statement] = STATE(450), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(450), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_untyped] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [86] = { - [sym__rhs_expression] = STATE(876), - [sym__unaryExpression] = STATE(2388), - [sym_runtime_type_check_expression] = STATE(2388), - [sym_switch_expression] = STATE(2388), - [sym_cast_expression] = STATE(2388), - [sym_type_trace_expression] = STATE(2388), - [sym__parenthesized_expression] = STATE(2114), - [sym_range_expression] = STATE(2388), - [sym_subscript_expression] = STATE(2388), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(876), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(814), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(816), - [anon_sym_untyped] = ACTIONS(818), - [anon_sym_break] = ACTIONS(820), - [anon_sym_continue] = ACTIONS(820), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(2387), + [sym_package_statement] = STATE(2387), + [sym_import_statement] = STATE(2387), + [sym_using_statement] = STATE(2387), + [sym_throw_statement] = STATE(2387), + [sym__rhs_expression] = STATE(1252), + [sym__unaryExpression] = STATE(3625), + [sym_runtime_type_check_expression] = STATE(3625), + [sym_switch_expression] = STATE(2338), + [sym_cast_expression] = STATE(3625), + [sym_type_trace_expression] = STATE(3625), + [sym__parenthesized_expression] = STATE(2742), + [sym_for_statement] = STATE(2387), + [sym_range_expression] = STATE(3625), + [sym_subscript_expression] = STATE(3625), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2387), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(2387), + [sym_conditional_statement] = STATE(2387), + [sym_while_statement] = STATE(2387), + [sym_do_while_statement] = STATE(2387), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1252), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2387), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(1213), + [anon_sym_untyped] = ACTIONS(1215), + [anon_sym_break] = ACTIONS(1217), + [anon_sym_continue] = ACTIONS(1217), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [87] = { - [sym_operator] = STATE(1541), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(87), - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_package] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_using] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_COLON] = ACTIONS(594), - [anon_sym_if] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(599), - [sym__rangeOperator] = ACTIONS(596), - [anon_sym_null] = ACTIONS(592), - [anon_sym_macro] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_inline] = ACTIONS(592), - [anon_sym_overload] = ACTIONS(592), - [anon_sym_override] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), + [sym_preprocessor_statement] = STATE(413), + [sym_package_statement] = STATE(413), + [sym_import_statement] = STATE(413), + [sym_using_statement] = STATE(413), + [sym_throw_statement] = STATE(413), + [sym__rhs_expression] = STATE(1206), + [sym__unaryExpression] = STATE(3478), + [sym_runtime_type_check_expression] = STATE(3478), + [sym_switch_expression] = STATE(392), + [sym_cast_expression] = STATE(3478), + [sym_type_trace_expression] = STATE(3478), + [sym__parenthesized_expression] = STATE(2770), + [sym_for_statement] = STATE(413), + [sym_range_expression] = STATE(3478), + [sym_subscript_expression] = STATE(3478), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(413), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(413), + [sym_conditional_statement] = STATE(413), + [sym_while_statement] = STATE(413), + [sym_do_while_statement] = STATE(413), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1206), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(413), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(117), + [anon_sym_return] = ACTIONS(1099), + [anon_sym_untyped] = ACTIONS(1101), + [anon_sym_break] = ACTIONS(1103), + [anon_sym_continue] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(125), + [anon_sym_if] = ACTIONS(127), + [anon_sym_while] = ACTIONS(129), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [88] = { - [sym__rhs_expression] = STATE(875), - [sym__unaryExpression] = STATE(2380), - [sym_runtime_type_check_expression] = STATE(2380), - [sym_switch_expression] = STATE(2380), - [sym_cast_expression] = STATE(2380), - [sym_type_trace_expression] = STATE(2380), - [sym__parenthesized_expression] = STATE(2067), - [sym_range_expression] = STATE(2380), - [sym_subscript_expression] = STATE(2380), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(875), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(822), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(824), - [anon_sym_untyped] = ACTIONS(826), - [anon_sym_break] = ACTIONS(828), - [anon_sym_continue] = ACTIONS(828), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(752), + [sym_package_statement] = STATE(752), + [sym_import_statement] = STATE(752), + [sym_using_statement] = STATE(752), + [sym_throw_statement] = STATE(752), + [sym__rhs_expression] = STATE(1202), + [sym__unaryExpression] = STATE(3631), + [sym_runtime_type_check_expression] = STATE(3631), + [sym_switch_expression] = STATE(629), + [sym_cast_expression] = STATE(3631), + [sym_type_trace_expression] = STATE(3631), + [sym__parenthesized_expression] = STATE(2715), + [sym_for_statement] = STATE(752), + [sym_range_expression] = STATE(3631), + [sym_subscript_expression] = STATE(3631), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(752), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(752), + [sym_conditional_statement] = STATE(752), + [sym_while_statement] = STATE(752), + [sym_do_while_statement] = STATE(752), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1202), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(752), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1097), + [anon_sym_return] = ACTIONS(1219), + [anon_sym_untyped] = ACTIONS(1221), + [anon_sym_break] = ACTIONS(1223), + [anon_sym_continue] = ACTIONS(1223), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1105), + [anon_sym_if] = ACTIONS(1107), + [anon_sym_while] = ACTIONS(1109), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [89] = { - [sym__rhs_expression] = STATE(816), - [sym__unaryExpression] = STATE(2209), - [sym_runtime_type_check_expression] = STATE(2209), - [sym_switch_expression] = STATE(2209), - [sym_cast_expression] = STATE(2209), - [sym_type_trace_expression] = STATE(2209), - [sym__parenthesized_expression] = STATE(2032), - [sym_range_expression] = STATE(2209), - [sym_subscript_expression] = STATE(2209), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(816), - [sym_operator] = STATE(1451), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1269), - [sym_integer] = STATE(1269), - [sym_float] = STATE(1269), - [sym_bool] = STATE(1269), - [sym_string] = STATE(1208), - [sym_null] = STATE(1269), - [sym_array] = STATE(1269), - [sym_map] = STATE(1269), - [sym_object] = STATE(1269), - [sym_pair] = STATE(1196), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(738), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(830), - [anon_sym_untyped] = ACTIONS(832), - [anon_sym_break] = ACTIONS(834), - [anon_sym_continue] = ACTIONS(834), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(836), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym_preprocessor_statement] = STATE(588), + [sym_package_statement] = STATE(588), + [sym_import_statement] = STATE(588), + [sym_using_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym__rhs_expression] = STATE(1227), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(405), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2832), + [sym_for_statement] = STATE(588), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(588), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(588), + [sym_conditional_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_while_statement] = STATE(588), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1227), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(588), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(179), + [anon_sym_return] = ACTIONS(1111), + [anon_sym_untyped] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(187), + [anon_sym_if] = ACTIONS(189), + [anon_sym_while] = ACTIONS(191), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [90] = { - [sym__rhs_expression] = STATE(852), - [sym__unaryExpression] = STATE(2320), - [sym_runtime_type_check_expression] = STATE(2320), - [sym_switch_expression] = STATE(2320), - [sym_cast_expression] = STATE(2320), - [sym_type_trace_expression] = STATE(2320), - [sym__parenthesized_expression] = STATE(2196), - [sym_range_expression] = STATE(2320), - [sym_subscript_expression] = STATE(2320), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(852), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_RPAREN] = ACTIONS(838), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(840), - [anon_sym_untyped] = ACTIONS(842), - [anon_sym_break] = ACTIONS(844), - [anon_sym_continue] = ACTIONS(844), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(450), + [sym_package_statement] = STATE(450), + [sym_import_statement] = STATE(450), + [sym_using_statement] = STATE(450), + [sym_throw_statement] = STATE(450), + [sym__rhs_expression] = STATE(1248), + [sym__unaryExpression] = STATE(3389), + [sym_runtime_type_check_expression] = STATE(3389), + [sym_switch_expression] = STATE(394), + [sym_cast_expression] = STATE(3389), + [sym_type_trace_expression] = STATE(3389), + [sym__parenthesized_expression] = STATE(2585), + [sym_for_statement] = STATE(450), + [sym_range_expression] = STATE(3389), + [sym_subscript_expression] = STATE(3389), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(619), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(450), + [sym_conditional_statement] = STATE(450), + [sym_while_statement] = STATE(450), + [sym_do_while_statement] = STATE(450), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1248), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(450), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1117), + [anon_sym_untyped] = ACTIONS(1119), + [anon_sym_break] = ACTIONS(1121), + [anon_sym_continue] = ACTIONS(1121), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [91] = { - [sym__rhs_expression] = STATE(809), - [sym__unaryExpression] = STATE(2087), - [sym_runtime_type_check_expression] = STATE(2087), - [sym_switch_expression] = STATE(2087), - [sym_cast_expression] = STATE(2087), - [sym_type_trace_expression] = STATE(2087), - [sym__parenthesized_expression] = STATE(2020), - [sym_range_expression] = STATE(2087), - [sym_subscript_expression] = STATE(2087), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(809), - [sym_operator] = STATE(1451), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1269), - [sym_integer] = STATE(1269), - [sym_float] = STATE(1269), - [sym_bool] = STATE(1269), - [sym_string] = STATE(1208), - [sym_null] = STATE(1269), - [sym_array] = STATE(1269), - [sym_map] = STATE(1269), - [sym_object] = STATE(1269), - [sym_pair] = STATE(1217), - [sym_identifier] = ACTIONS(730), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(738), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(846), - [anon_sym_untyped] = ACTIONS(848), - [anon_sym_break] = ACTIONS(850), - [anon_sym_continue] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_RBRACK] = ACTIONS(852), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym_preprocessor_statement] = STATE(2852), + [sym_package_statement] = STATE(2852), + [sym_import_statement] = STATE(2852), + [sym_using_statement] = STATE(2852), + [sym_throw_statement] = STATE(2852), + [sym__rhs_expression] = STATE(1143), + [sym__unaryExpression] = STATE(3498), + [sym_runtime_type_check_expression] = STATE(3498), + [sym_switch_expression] = STATE(2702), + [sym_cast_expression] = STATE(3498), + [sym_type_trace_expression] = STATE(3498), + [sym__parenthesized_expression] = STATE(2706), + [sym_for_statement] = STATE(2852), + [sym_range_expression] = STATE(3498), + [sym_subscript_expression] = STATE(3498), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(2852), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(2852), + [sym_conditional_statement] = STATE(2852), + [sym_while_statement] = STATE(2852), + [sym_do_while_statement] = STATE(2852), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1143), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(2852), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(199), + [anon_sym_return] = ACTIONS(1233), + [anon_sym_untyped] = ACTIONS(1235), + [anon_sym_break] = ACTIONS(1237), + [anon_sym_continue] = ACTIONS(1237), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(201), + [anon_sym_if] = ACTIONS(203), + [anon_sym_while] = ACTIONS(205), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [92] = { - [sym__rhs_expression] = STATE(993), - [sym__unaryExpression] = STATE(2681), - [sym_runtime_type_check_expression] = STATE(2681), - [sym_switch_expression] = STATE(2681), - [sym_cast_expression] = STATE(2681), - [sym_type_trace_expression] = STATE(2681), - [sym__parenthesized_expression] = STATE(2575), - [sym_range_expression] = STATE(2681), - [sym_subscript_expression] = STATE(2681), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(993), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(588), + [sym_package_statement] = STATE(588), + [sym_import_statement] = STATE(588), + [sym_using_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym__rhs_expression] = STATE(1227), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(405), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2832), + [sym_for_statement] = STATE(588), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(588), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(588), + [sym_conditional_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_while_statement] = STATE(588), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1227), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(588), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(856), - [anon_sym_untyped] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(177), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1225), + [anon_sym_return] = ACTIONS(1111), + [anon_sym_untyped] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1227), + [anon_sym_if] = ACTIONS(1229), + [anon_sym_while] = ACTIONS(1231), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [93] = { - [sym__rhs_expression] = STATE(933), - [sym__unaryExpression] = STATE(2690), - [sym_runtime_type_check_expression] = STATE(2690), - [sym_switch_expression] = STATE(2690), - [sym_cast_expression] = STATE(2690), - [sym_type_trace_expression] = STATE(2690), - [sym__parenthesized_expression] = STATE(2577), - [sym_range_expression] = STATE(2690), - [sym_subscript_expression] = STATE(2690), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(933), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(588), + [sym_package_statement] = STATE(588), + [sym_import_statement] = STATE(588), + [sym_using_statement] = STATE(588), + [sym_throw_statement] = STATE(588), + [sym__rhs_expression] = STATE(1227), + [sym__unaryExpression] = STATE(3697), + [sym_runtime_type_check_expression] = STATE(3697), + [sym_switch_expression] = STATE(405), + [sym_cast_expression] = STATE(3697), + [sym_type_trace_expression] = STATE(3697), + [sym__parenthesized_expression] = STATE(2832), + [sym_for_statement] = STATE(588), + [sym_range_expression] = STATE(3697), + [sym_subscript_expression] = STATE(3697), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(588), + [sym_metadata] = STATE(2267), + [sym_try_statement] = STATE(588), + [sym_conditional_statement] = STATE(588), + [sym_while_statement] = STATE(588), + [sym_do_while_statement] = STATE(588), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1227), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(588), + [sym__modifier] = STATE(2280), + [sym_class_declaration] = STATE(549), + [sym_interface_declaration] = STATE(549), + [sym_enum_declaration] = STATE(549), + [sym_typedef_declaration] = STATE(549), + [sym_function_declaration] = STATE(549), + [sym_variable_declaration] = STATE(549), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2267), + [aux_sym_class_declaration_repeat2] = STATE(2280), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(862), - [anon_sym_untyped] = ACTIONS(864), - [anon_sym_break] = ACTIONS(866), - [anon_sym_continue] = ACTIONS(866), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(101), + [anon_sym_package] = ACTIONS(103), + [anon_sym_import] = ACTIONS(105), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(107), + [anon_sym_throw] = ACTIONS(109), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(113), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(169), + [anon_sym_return] = ACTIONS(1111), + [anon_sym_untyped] = ACTIONS(1113), + [anon_sym_break] = ACTIONS(1115), + [anon_sym_continue] = ACTIONS(1115), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(171), + [anon_sym_if] = ACTIONS(173), + [anon_sym_while] = ACTIONS(175), + [anon_sym_do] = ACTIONS(131), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(133), + [anon_sym_abstract] = ACTIONS(133), + [anon_sym_static] = ACTIONS(133), + [anon_sym_public] = ACTIONS(133), + [anon_sym_private] = ACTIONS(133), + [anon_sym_extern] = ACTIONS(133), + [anon_sym_inline] = ACTIONS(133), + [anon_sym_overload] = ACTIONS(133), + [anon_sym_override] = ACTIONS(133), + [anon_sym_final] = ACTIONS(135), + [anon_sym_class] = ACTIONS(137), + [anon_sym_interface] = ACTIONS(139), + [anon_sym_enum] = ACTIONS(141), + [anon_sym_typedef] = ACTIONS(143), + [anon_sym_function] = ACTIONS(145), + [anon_sym_var] = ACTIONS(147), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [94] = { - [sym__rhs_expression] = STATE(844), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(844), - [sym_operator] = STATE(1637), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1641), - [sym_integer] = STATE(1641), - [sym_float] = STATE(1641), - [sym_bool] = STATE(1641), - [sym_string] = STATE(1528), - [sym_null] = STATE(1641), - [sym_array] = STATE(1641), - [sym_map] = STATE(1641), - [sym_object] = STATE(1641), - [sym_pair] = STATE(1641), - [sym_identifier] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(870), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(872), - [anon_sym_untyped] = ACTIONS(874), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(876), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(815), + [sym_package_statement] = STATE(815), + [sym_import_statement] = STATE(815), + [sym_using_statement] = STATE(815), + [sym_throw_statement] = STATE(815), + [sym__rhs_expression] = STATE(1151), + [sym__unaryExpression] = STATE(3630), + [sym_runtime_type_check_expression] = STATE(3630), + [sym_switch_expression] = STATE(646), + [sym_cast_expression] = STATE(3630), + [sym_type_trace_expression] = STATE(3630), + [sym__parenthesized_expression] = STATE(2654), + [sym_for_statement] = STATE(815), + [sym_range_expression] = STATE(3630), + [sym_subscript_expression] = STATE(3630), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(817), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(815), + [sym_conditional_statement] = STATE(815), + [sym_while_statement] = STATE(815), + [sym_do_while_statement] = STATE(815), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1151), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(815), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(9), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(1179), + [anon_sym_return] = ACTIONS(1063), + [anon_sym_untyped] = ACTIONS(1065), + [anon_sym_break] = ACTIONS(1067), + [anon_sym_continue] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(1181), + [anon_sym_if] = ACTIONS(1183), + [anon_sym_while] = ACTIONS(1185), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [95] = { - [sym__rhs_expression] = STATE(834), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(834), - [sym_operator] = STATE(1629), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1641), - [sym_integer] = STATE(1641), - [sym_float] = STATE(1641), - [sym_bool] = STATE(1641), - [sym_string] = STATE(1528), - [sym_null] = STATE(1641), - [sym_array] = STATE(1641), - [sym_map] = STATE(1641), - [sym_object] = STATE(1641), - [sym_pair] = STATE(1641), - [sym_identifier] = ACTIONS(868), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(878), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(880), - [anon_sym_untyped] = ACTIONS(882), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(876), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(3014), + [sym_package_statement] = STATE(3014), + [sym_import_statement] = STATE(3014), + [sym_using_statement] = STATE(3014), + [sym_throw_statement] = STATE(3014), + [sym__rhs_expression] = STATE(1288), + [sym__unaryExpression] = STATE(3455), + [sym_runtime_type_check_expression] = STATE(3455), + [sym_switch_expression] = STATE(2764), + [sym_cast_expression] = STATE(3455), + [sym_type_trace_expression] = STATE(3455), + [sym__parenthesized_expression] = STATE(2766), + [sym_for_statement] = STATE(3014), + [sym_range_expression] = STATE(3455), + [sym_subscript_expression] = STATE(3455), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3014), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3014), + [sym_conditional_statement] = STATE(3014), + [sym_while_statement] = STATE(3014), + [sym_do_while_statement] = STATE(3014), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1288), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3014), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1239), + [anon_sym_untyped] = ACTIONS(1241), + [anon_sym_break] = ACTIONS(1243), + [anon_sym_continue] = ACTIONS(1243), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [96] = { - [sym__rhs_expression] = STATE(882), - [sym__unaryExpression] = STATE(2448), - [sym_runtime_type_check_expression] = STATE(2448), - [sym_switch_expression] = STATE(2448), - [sym_cast_expression] = STATE(2448), - [sym_type_trace_expression] = STATE(2448), - [sym__parenthesized_expression] = STATE(2294), - [sym_range_expression] = STATE(2448), - [sym_subscript_expression] = STATE(2448), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(882), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(884), - [anon_sym_untyped] = ACTIONS(886), - [anon_sym_break] = ACTIONS(888), - [anon_sym_continue] = ACTIONS(888), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_preprocessor_statement] = STATE(3036), + [sym_package_statement] = STATE(3036), + [sym_import_statement] = STATE(3036), + [sym_using_statement] = STATE(3036), + [sym_throw_statement] = STATE(3036), + [sym__rhs_expression] = STATE(1304), + [sym__unaryExpression] = STATE(3519), + [sym_runtime_type_check_expression] = STATE(3519), + [sym_switch_expression] = STATE(2777), + [sym_cast_expression] = STATE(3519), + [sym_type_trace_expression] = STATE(3519), + [sym__parenthesized_expression] = STATE(2782), + [sym_for_statement] = STATE(3036), + [sym_range_expression] = STATE(3519), + [sym_subscript_expression] = STATE(3519), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3036), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3036), + [sym_conditional_statement] = STATE(3036), + [sym_while_statement] = STATE(3036), + [sym_do_while_statement] = STATE(3036), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1304), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3036), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1245), + [anon_sym_untyped] = ACTIONS(1247), + [anon_sym_break] = ACTIONS(1249), + [anon_sym_continue] = ACTIONS(1249), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [97] = { - [sym__rhs_expression] = STATE(1007), - [sym__unaryExpression] = STATE(2855), - [sym_runtime_type_check_expression] = STATE(2855), - [sym_switch_expression] = STATE(2855), - [sym_cast_expression] = STATE(2855), - [sym_type_trace_expression] = STATE(2855), - [sym__parenthesized_expression] = STATE(2507), - [sym_range_expression] = STATE(2855), - [sym_subscript_expression] = STATE(2855), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1007), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3043), + [sym_package_statement] = STATE(3043), + [sym_import_statement] = STATE(3043), + [sym_using_statement] = STATE(3043), + [sym_throw_statement] = STATE(3043), + [sym__rhs_expression] = STATE(1310), + [sym__unaryExpression] = STATE(3533), + [sym_runtime_type_check_expression] = STATE(3533), + [sym_switch_expression] = STATE(2779), + [sym_cast_expression] = STATE(3533), + [sym_type_trace_expression] = STATE(3533), + [sym__parenthesized_expression] = STATE(2788), + [sym_for_statement] = STATE(3043), + [sym_range_expression] = STATE(3533), + [sym_subscript_expression] = STATE(3533), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3043), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3043), + [sym_conditional_statement] = STATE(3043), + [sym_while_statement] = STATE(3043), + [sym_do_while_statement] = STATE(3043), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1310), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3043), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(890), - [anon_sym_untyped] = ACTIONS(892), - [anon_sym_break] = ACTIONS(894), - [anon_sym_continue] = ACTIONS(894), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1251), + [anon_sym_untyped] = ACTIONS(1253), + [anon_sym_break] = ACTIONS(1255), + [anon_sym_continue] = ACTIONS(1255), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [98] = { - [sym__rhs_expression] = STATE(985), - [sym__unaryExpression] = STATE(2746), - [sym_runtime_type_check_expression] = STATE(2746), - [sym_switch_expression] = STATE(2746), - [sym_cast_expression] = STATE(2746), - [sym_type_trace_expression] = STATE(2746), - [sym__parenthesized_expression] = STATE(2534), - [sym_range_expression] = STATE(2746), - [sym_subscript_expression] = STATE(2746), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(985), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3056), + [sym_package_statement] = STATE(3056), + [sym_import_statement] = STATE(3056), + [sym_using_statement] = STATE(3056), + [sym_throw_statement] = STATE(3056), + [sym__rhs_expression] = STATE(1316), + [sym__unaryExpression] = STATE(3555), + [sym_runtime_type_check_expression] = STATE(3555), + [sym_switch_expression] = STATE(2789), + [sym_cast_expression] = STATE(3555), + [sym_type_trace_expression] = STATE(3555), + [sym__parenthesized_expression] = STATE(2791), + [sym_for_statement] = STATE(3056), + [sym_range_expression] = STATE(3555), + [sym_subscript_expression] = STATE(3555), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3056), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3056), + [sym_conditional_statement] = STATE(3056), + [sym_while_statement] = STATE(3056), + [sym_do_while_statement] = STATE(3056), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1316), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3056), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(896), - [anon_sym_untyped] = ACTIONS(898), - [anon_sym_break] = ACTIONS(900), - [anon_sym_continue] = ACTIONS(900), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1257), + [anon_sym_untyped] = ACTIONS(1259), + [anon_sym_break] = ACTIONS(1261), + [anon_sym_continue] = ACTIONS(1261), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [99] = { - [sym__rhs_expression] = STATE(935), - [sym__unaryExpression] = STATE(2739), - [sym_runtime_type_check_expression] = STATE(2739), - [sym_switch_expression] = STATE(2739), - [sym_cast_expression] = STATE(2739), - [sym_type_trace_expression] = STATE(2739), - [sym__parenthesized_expression] = STATE(2537), - [sym_range_expression] = STATE(2739), - [sym_subscript_expression] = STATE(2739), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(935), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3065), + [sym_package_statement] = STATE(3065), + [sym_import_statement] = STATE(3065), + [sym_using_statement] = STATE(3065), + [sym_throw_statement] = STATE(3065), + [sym__rhs_expression] = STATE(1320), + [sym__unaryExpression] = STATE(3590), + [sym_runtime_type_check_expression] = STATE(3590), + [sym_switch_expression] = STATE(2794), + [sym_cast_expression] = STATE(3590), + [sym_type_trace_expression] = STATE(3590), + [sym__parenthesized_expression] = STATE(2798), + [sym_for_statement] = STATE(3065), + [sym_range_expression] = STATE(3590), + [sym_subscript_expression] = STATE(3590), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3065), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3065), + [sym_conditional_statement] = STATE(3065), + [sym_while_statement] = STATE(3065), + [sym_do_while_statement] = STATE(3065), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1320), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3065), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(902), - [anon_sym_untyped] = ACTIONS(904), - [anon_sym_break] = ACTIONS(906), - [anon_sym_continue] = ACTIONS(906), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1263), + [anon_sym_untyped] = ACTIONS(1265), + [anon_sym_break] = ACTIONS(1267), + [anon_sym_continue] = ACTIONS(1267), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [100] = { - [sym__rhs_expression] = STATE(925), - [sym__unaryExpression] = STATE(2734), - [sym_runtime_type_check_expression] = STATE(2734), - [sym_switch_expression] = STATE(2734), - [sym_cast_expression] = STATE(2734), - [sym_type_trace_expression] = STATE(2734), - [sym__parenthesized_expression] = STATE(2548), - [sym_range_expression] = STATE(2734), - [sym_subscript_expression] = STATE(2734), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(925), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3068), + [sym_package_statement] = STATE(3068), + [sym_import_statement] = STATE(3068), + [sym_using_statement] = STATE(3068), + [sym_throw_statement] = STATE(3068), + [sym__rhs_expression] = STATE(1322), + [sym__unaryExpression] = STATE(3597), + [sym_runtime_type_check_expression] = STATE(3597), + [sym_switch_expression] = STATE(2795), + [sym_cast_expression] = STATE(3597), + [sym_type_trace_expression] = STATE(3597), + [sym__parenthesized_expression] = STATE(2800), + [sym_for_statement] = STATE(3068), + [sym_range_expression] = STATE(3597), + [sym_subscript_expression] = STATE(3597), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3068), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3068), + [sym_conditional_statement] = STATE(3068), + [sym_while_statement] = STATE(3068), + [sym_do_while_statement] = STATE(3068), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1322), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3068), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(908), - [anon_sym_untyped] = ACTIONS(910), - [anon_sym_break] = ACTIONS(912), - [anon_sym_continue] = ACTIONS(912), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1269), + [anon_sym_untyped] = ACTIONS(1271), + [anon_sym_break] = ACTIONS(1273), + [anon_sym_continue] = ACTIONS(1273), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [101] = { - [sym__rhs_expression] = STATE(1015), - [sym__unaryExpression] = STATE(2780), - [sym_runtime_type_check_expression] = STATE(2780), - [sym_switch_expression] = STATE(2780), - [sym_cast_expression] = STATE(2780), - [sym_type_trace_expression] = STATE(2780), - [sym__parenthesized_expression] = STATE(2549), - [sym_range_expression] = STATE(2780), - [sym_subscript_expression] = STATE(2780), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1015), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3071), + [sym_package_statement] = STATE(3071), + [sym_import_statement] = STATE(3071), + [sym_using_statement] = STATE(3071), + [sym_throw_statement] = STATE(3071), + [sym__rhs_expression] = STATE(1324), + [sym__unaryExpression] = STATE(3604), + [sym_runtime_type_check_expression] = STATE(3604), + [sym_switch_expression] = STATE(2796), + [sym_cast_expression] = STATE(3604), + [sym_type_trace_expression] = STATE(3604), + [sym__parenthesized_expression] = STATE(2803), + [sym_for_statement] = STATE(3071), + [sym_range_expression] = STATE(3604), + [sym_subscript_expression] = STATE(3604), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3071), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3071), + [sym_conditional_statement] = STATE(3071), + [sym_while_statement] = STATE(3071), + [sym_do_while_statement] = STATE(3071), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1324), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3071), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(914), - [anon_sym_untyped] = ACTIONS(916), - [anon_sym_break] = ACTIONS(918), - [anon_sym_continue] = ACTIONS(918), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1275), + [anon_sym_untyped] = ACTIONS(1277), + [anon_sym_break] = ACTIONS(1279), + [anon_sym_continue] = ACTIONS(1279), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [102] = { - [sym__rhs_expression] = STATE(1002), - [sym__unaryExpression] = STATE(2705), - [sym_runtime_type_check_expression] = STATE(2705), - [sym_switch_expression] = STATE(2705), - [sym_cast_expression] = STATE(2705), - [sym_type_trace_expression] = STATE(2705), - [sym__parenthesized_expression] = STATE(2557), - [sym_range_expression] = STATE(2705), - [sym_subscript_expression] = STATE(2705), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1002), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3084), + [sym_package_statement] = STATE(3084), + [sym_import_statement] = STATE(3084), + [sym_using_statement] = STATE(3084), + [sym_throw_statement] = STATE(3084), + [sym__rhs_expression] = STATE(1326), + [sym__unaryExpression] = STATE(3637), + [sym_runtime_type_check_expression] = STATE(3637), + [sym_switch_expression] = STATE(2807), + [sym_cast_expression] = STATE(3637), + [sym_type_trace_expression] = STATE(3637), + [sym__parenthesized_expression] = STATE(2811), + [sym_for_statement] = STATE(3084), + [sym_range_expression] = STATE(3637), + [sym_subscript_expression] = STATE(3637), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3084), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3084), + [sym_conditional_statement] = STATE(3084), + [sym_while_statement] = STATE(3084), + [sym_do_while_statement] = STATE(3084), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1326), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3084), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(920), - [anon_sym_untyped] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1281), + [anon_sym_untyped] = ACTIONS(1283), + [anon_sym_break] = ACTIONS(1285), + [anon_sym_continue] = ACTIONS(1285), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [103] = { - [sym__rhs_expression] = STATE(1036), - [sym__unaryExpression] = STATE(2664), - [sym_runtime_type_check_expression] = STATE(2664), - [sym_switch_expression] = STATE(2664), - [sym_cast_expression] = STATE(2664), - [sym_type_trace_expression] = STATE(2664), - [sym__parenthesized_expression] = STATE(2588), - [sym_range_expression] = STATE(2664), - [sym_subscript_expression] = STATE(2664), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1036), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3087), + [sym_package_statement] = STATE(3087), + [sym_import_statement] = STATE(3087), + [sym_using_statement] = STATE(3087), + [sym_throw_statement] = STATE(3087), + [sym__rhs_expression] = STATE(1329), + [sym__unaryExpression] = STATE(3644), + [sym_runtime_type_check_expression] = STATE(3644), + [sym_switch_expression] = STATE(2808), + [sym_cast_expression] = STATE(3644), + [sym_type_trace_expression] = STATE(3644), + [sym__parenthesized_expression] = STATE(2814), + [sym_for_statement] = STATE(3087), + [sym_range_expression] = STATE(3644), + [sym_subscript_expression] = STATE(3644), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3087), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3087), + [sym_conditional_statement] = STATE(3087), + [sym_while_statement] = STATE(3087), + [sym_do_while_statement] = STATE(3087), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1329), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3087), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(926), - [anon_sym_untyped] = ACTIONS(928), - [anon_sym_break] = ACTIONS(930), - [anon_sym_continue] = ACTIONS(930), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1287), + [anon_sym_untyped] = ACTIONS(1289), + [anon_sym_break] = ACTIONS(1291), + [anon_sym_continue] = ACTIONS(1291), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [104] = { - [sym__rhs_expression] = STATE(1022), - [sym__unaryExpression] = STATE(2763), - [sym_runtime_type_check_expression] = STATE(2763), - [sym_switch_expression] = STATE(2763), - [sym_cast_expression] = STATE(2763), - [sym_type_trace_expression] = STATE(2763), - [sym__parenthesized_expression] = STATE(2526), - [sym_range_expression] = STATE(2763), - [sym_subscript_expression] = STATE(2763), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1022), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3090), + [sym_package_statement] = STATE(3090), + [sym_import_statement] = STATE(3090), + [sym_using_statement] = STATE(3090), + [sym_throw_statement] = STATE(3090), + [sym__rhs_expression] = STATE(1332), + [sym__unaryExpression] = STATE(3651), + [sym_runtime_type_check_expression] = STATE(3651), + [sym_switch_expression] = STATE(2809), + [sym_cast_expression] = STATE(3651), + [sym_type_trace_expression] = STATE(3651), + [sym__parenthesized_expression] = STATE(2818), + [sym_for_statement] = STATE(3090), + [sym_range_expression] = STATE(3651), + [sym_subscript_expression] = STATE(3651), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3090), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3090), + [sym_conditional_statement] = STATE(3090), + [sym_while_statement] = STATE(3090), + [sym_do_while_statement] = STATE(3090), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1332), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3090), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(932), - [anon_sym_untyped] = ACTIONS(934), - [anon_sym_break] = ACTIONS(936), - [anon_sym_continue] = ACTIONS(936), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1293), + [anon_sym_untyped] = ACTIONS(1295), + [anon_sym_break] = ACTIONS(1297), + [anon_sym_continue] = ACTIONS(1297), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [105] = { - [sym__rhs_expression] = STATE(799), - [sym__unaryExpression] = STATE(1300), - [sym_runtime_type_check_expression] = STATE(1300), - [sym_switch_expression] = STATE(1300), - [sym_cast_expression] = STATE(1300), - [sym_type_trace_expression] = STATE(1300), - [sym__parenthesized_expression] = STATE(1201), - [sym_range_expression] = STATE(1300), - [sym_subscript_expression] = STATE(1300), - [sym_member_expression] = STATE(1162), - [sym__lhs_expression] = STATE(2279), - [sym__call] = STATE(1277), - [sym__constructor_call] = STATE(1276), - [sym_call_expression] = STATE(799), - [sym_operator] = STATE(1470), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1227), - [sym_integer] = STATE(1227), - [sym_float] = STATE(1227), - [sym_bool] = STATE(1227), - [sym_string] = STATE(1207), - [sym_null] = STATE(1227), - [sym_array] = STATE(1227), - [sym_map] = STATE(1227), - [sym_object] = STATE(1227), - [sym_pair] = STATE(1227), - [sym_identifier] = ACTIONS(938), - [anon_sym_LPAREN] = ACTIONS(940), - [anon_sym_switch] = ACTIONS(101), - [anon_sym_LBRACE] = ACTIONS(942), - [anon_sym_cast] = ACTIONS(944), - [anon_sym_DOLLARtype] = ACTIONS(946), - [anon_sym_return] = ACTIONS(948), - [anon_sym_untyped] = ACTIONS(950), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_this] = ACTIONS(956), - [anon_sym_new] = ACTIONS(958), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(960), - [aux_sym_integer_token1] = ACTIONS(962), - [aux_sym_integer_token2] = ACTIONS(964), - [aux_sym_float_token1] = ACTIONS(966), - [aux_sym_float_token2] = ACTIONS(968), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [aux_sym_string_token1] = ACTIONS(972), - [aux_sym_string_token3] = ACTIONS(974), + [sym_preprocessor_statement] = STATE(3027), + [sym_package_statement] = STATE(3027), + [sym_import_statement] = STATE(3027), + [sym_using_statement] = STATE(3027), + [sym_throw_statement] = STATE(3027), + [sym__rhs_expression] = STATE(1335), + [sym__unaryExpression] = STATE(3675), + [sym_runtime_type_check_expression] = STATE(3675), + [sym_switch_expression] = STATE(2772), + [sym_cast_expression] = STATE(3675), + [sym_type_trace_expression] = STATE(3675), + [sym__parenthesized_expression] = STATE(2825), + [sym_for_statement] = STATE(3027), + [sym_range_expression] = STATE(3675), + [sym_subscript_expression] = STATE(3675), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3027), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3027), + [sym_conditional_statement] = STATE(3027), + [sym_while_statement] = STATE(3027), + [sym_do_while_statement] = STATE(3027), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1335), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3027), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), + [sym_identifier] = ACTIONS(7), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1299), + [anon_sym_untyped] = ACTIONS(1301), + [anon_sym_break] = ACTIONS(1303), + [anon_sym_continue] = ACTIONS(1303), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [106] = { - [sym__rhs_expression] = STATE(995), - [sym__unaryExpression] = STATE(2702), - [sym_runtime_type_check_expression] = STATE(2702), - [sym_switch_expression] = STATE(2702), - [sym_cast_expression] = STATE(2702), - [sym_type_trace_expression] = STATE(2702), - [sym__parenthesized_expression] = STATE(2564), - [sym_range_expression] = STATE(2702), - [sym_subscript_expression] = STATE(2702), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(995), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(3059), + [sym_package_statement] = STATE(3059), + [sym_import_statement] = STATE(3059), + [sym_using_statement] = STATE(3059), + [sym_throw_statement] = STATE(3059), + [sym__rhs_expression] = STATE(1338), + [sym__unaryExpression] = STATE(3690), + [sym_runtime_type_check_expression] = STATE(3690), + [sym_switch_expression] = STATE(2793), + [sym_cast_expression] = STATE(3690), + [sym_type_trace_expression] = STATE(3690), + [sym__parenthesized_expression] = STATE(2829), + [sym_for_statement] = STATE(3059), + [sym_range_expression] = STATE(3690), + [sym_subscript_expression] = STATE(3690), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(3059), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(3059), + [sym_conditional_statement] = STATE(3059), + [sym_while_statement] = STATE(3059), + [sym_do_while_statement] = STATE(3059), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1338), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(3059), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(976), - [anon_sym_untyped] = ACTIONS(978), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1305), + [anon_sym_untyped] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1309), + [anon_sym_continue] = ACTIONS(1309), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [107] = { - [sym__rhs_expression] = STATE(992), - [sym__unaryExpression] = STATE(2699), - [sym_runtime_type_check_expression] = STATE(2699), - [sym_switch_expression] = STATE(2699), - [sym_cast_expression] = STATE(2699), - [sym_type_trace_expression] = STATE(2699), - [sym__parenthesized_expression] = STATE(2566), - [sym_range_expression] = STATE(2699), - [sym_subscript_expression] = STATE(2699), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(992), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), + [sym_preprocessor_statement] = STATE(760), + [sym_package_statement] = STATE(760), + [sym_import_statement] = STATE(760), + [sym_using_statement] = STATE(760), + [sym_throw_statement] = STATE(760), + [sym__rhs_expression] = STATE(1186), + [sym__unaryExpression] = STATE(3655), + [sym_runtime_type_check_expression] = STATE(3655), + [sym_switch_expression] = STATE(631), + [sym_cast_expression] = STATE(3655), + [sym_type_trace_expression] = STATE(3655), + [sym__parenthesized_expression] = STATE(2646), + [sym_for_statement] = STATE(760), + [sym_range_expression] = STATE(3655), + [sym_subscript_expression] = STATE(3655), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym_block] = STATE(760), + [sym_metadata] = STATE(2266), + [sym_try_statement] = STATE(760), + [sym_conditional_statement] = STATE(760), + [sym_while_statement] = STATE(760), + [sym_do_while_statement] = STATE(760), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1186), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym_declaration] = STATE(760), + [sym__modifier] = STATE(2284), + [sym_class_declaration] = STATE(650), + [sym_interface_declaration] = STATE(650), + [sym_enum_declaration] = STATE(650), + [sym_typedef_declaration] = STATE(650), + [sym_function_declaration] = STATE(650), + [sym_variable_declaration] = STATE(650), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [aux_sym_class_declaration_repeat1] = STATE(2266), + [aux_sym_class_declaration_repeat2] = STATE(2284), [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(982), - [anon_sym_untyped] = ACTIONS(984), - [anon_sym_break] = ACTIONS(986), - [anon_sym_continue] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [anon_sym_POUND] = ACTIONS(917), + [anon_sym_package] = ACTIONS(11), + [anon_sym_import] = ACTIONS(13), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(17), + [anon_sym_throw] = ACTIONS(19), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(25), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_for] = ACTIONS(973), + [anon_sym_return] = ACTIONS(1085), + [anon_sym_untyped] = ACTIONS(1087), + [anon_sym_break] = ACTIONS(1089), + [anon_sym_continue] = ACTIONS(1089), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_AT_COLON] = ACTIONS(45), + [anon_sym_try] = ACTIONS(975), + [anon_sym_if] = ACTIONS(977), + [anon_sym_while] = ACTIONS(979), + [anon_sym_do] = ACTIONS(53), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [anon_sym_macro] = ACTIONS(71), + [anon_sym_abstract] = ACTIONS(71), + [anon_sym_static] = ACTIONS(71), + [anon_sym_public] = ACTIONS(71), + [anon_sym_private] = ACTIONS(71), + [anon_sym_extern] = ACTIONS(71), + [anon_sym_inline] = ACTIONS(71), + [anon_sym_overload] = ACTIONS(71), + [anon_sym_override] = ACTIONS(71), + [anon_sym_final] = ACTIONS(73), + [anon_sym_class] = ACTIONS(75), + [anon_sym_interface] = ACTIONS(77), + [anon_sym_enum] = ACTIONS(79), + [anon_sym_typedef] = ACTIONS(81), + [anon_sym_function] = ACTIONS(83), + [anon_sym_var] = ACTIONS(85), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [108] = { - [sym__rhs_expression] = STATE(881), - [sym__unaryExpression] = STATE(1509), - [sym_runtime_type_check_expression] = STATE(1509), - [sym_switch_expression] = STATE(1509), - [sym_cast_expression] = STATE(1509), - [sym_type_trace_expression] = STATE(1509), - [sym__parenthesized_expression] = STATE(1419), - [sym_range_expression] = STATE(1509), - [sym_subscript_expression] = STATE(1509), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(881), - [sym_operator] = STATE(1455), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1506), - [sym_integer] = STATE(1506), - [sym_float] = STATE(1506), - [sym_bool] = STATE(1506), - [sym_string] = STATE(1384), - [sym_null] = STATE(1506), - [sym_array] = STATE(1506), - [sym_map] = STATE(1506), - [sym_object] = STATE(1506), - [sym_pair] = STATE(1506), - [sym_identifier] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(990), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(992), - [anon_sym_untyped] = ACTIONS(994), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(998), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2926), + [sym_integer] = STATE(2926), + [sym_float] = STATE(2926), + [sym_bool] = STATE(2926), + [sym_string] = STATE(2296), + [sym_null] = STATE(2926), + [sym_array] = STATE(2926), + [sym_map] = STATE(2926), + [sym_object] = STATE(2926), + [sym_pair] = STATE(2926), + [aux_sym_member_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_package] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_throw] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1315), + [anon_sym_AT_COLON] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_public] = ACTIONS(1315), + [anon_sym_private] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_overload] = ACTIONS(1315), + [anon_sym_override] = ACTIONS(1315), + [anon_sym_final] = ACTIONS(1315), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_interface] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_function] = ACTIONS(1315), + [anon_sym_var] = ACTIONS(1315), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1313), [sym__closing_brace_unmarker] = ACTIONS(3), }, [109] = { - [sym__rhs_expression] = STATE(983), - [sym__unaryExpression] = STATE(2676), - [sym_runtime_type_check_expression] = STATE(2676), - [sym_switch_expression] = STATE(2676), - [sym_cast_expression] = STATE(2676), - [sym_type_trace_expression] = STATE(2676), - [sym__parenthesized_expression] = STATE(2603), - [sym_range_expression] = STATE(2676), - [sym_subscript_expression] = STATE(2676), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(983), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1000), - [anon_sym_untyped] = ACTIONS(1002), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2926), + [sym_integer] = STATE(2926), + [sym_float] = STATE(2926), + [sym_bool] = STATE(2926), + [sym_string] = STATE(2296), + [sym_null] = STATE(2926), + [sym_array] = STATE(2926), + [sym_map] = STATE(2926), + [sym_object] = STATE(2926), + [sym_pair] = STATE(2926), + [aux_sym_member_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_package] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_using] = ACTIONS(1341), + [anon_sym_throw] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_AT_COLON] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1341), + [anon_sym_abstract] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_public] = ACTIONS(1341), + [anon_sym_private] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_overload] = ACTIONS(1341), + [anon_sym_override] = ACTIONS(1341), + [anon_sym_final] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1341), + [anon_sym_interface] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_function] = ACTIONS(1341), + [anon_sym_var] = ACTIONS(1341), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1339), [sym__closing_brace_unmarker] = ACTIONS(3), }, [110] = { - [sym__rhs_expression] = STATE(839), - [sym__unaryExpression] = STATE(385), - [sym_runtime_type_check_expression] = STATE(385), - [sym_switch_expression] = STATE(385), - [sym_cast_expression] = STATE(385), - [sym_type_trace_expression] = STATE(385), - [sym__parenthesized_expression] = STATE(387), - [sym_range_expression] = STATE(385), - [sym_subscript_expression] = STATE(385), - [sym_member_expression] = STATE(260), - [sym__lhs_expression] = STATE(2181), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(839), - [sym_operator] = STATE(1631), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1214), - [sym_integer] = STATE(1214), - [sym_float] = STATE(1214), - [sym_bool] = STATE(1214), - [sym_string] = STATE(1175), - [sym_null] = STATE(1214), - [sym_array] = STATE(1214), - [sym_map] = STATE(1214), - [sym_object] = STATE(1214), - [sym_pair] = STATE(1214), - [sym_identifier] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(1010), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(1012), - [anon_sym_untyped] = ACTIONS(1014), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(566), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym__rhs_expression] = STATE(210), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(210), + [sym__literal] = STATE(570), + [sym_integer] = STATE(570), + [sym_float] = STATE(570), + [sym_bool] = STATE(570), + [sym_string] = STATE(400), + [sym_null] = STATE(570), + [sym_array] = STATE(570), + [sym_map] = STATE(570), + [sym_object] = STATE(570), + [sym_pair] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_package] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_import] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_using] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_AT_COLON] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1345), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_public] = ACTIONS(1345), + [anon_sym_private] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym_overload] = ACTIONS(1345), + [anon_sym_override] = ACTIONS(1345), + [anon_sym_final] = ACTIONS(1345), + [anon_sym_class] = ACTIONS(1345), + [anon_sym_interface] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(1345), + [anon_sym_var] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [111] = { - [sym__rhs_expression] = STATE(1021), - [sym__unaryExpression] = STATE(2665), - [sym_runtime_type_check_expression] = STATE(2665), - [sym_switch_expression] = STATE(2665), - [sym_cast_expression] = STATE(2665), - [sym_type_trace_expression] = STATE(2665), - [sym__parenthesized_expression] = STATE(2591), - [sym_range_expression] = STATE(2665), - [sym_subscript_expression] = STATE(2665), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1021), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_untyped] = ACTIONS(1020), - [anon_sym_break] = ACTIONS(1022), - [anon_sym_continue] = ACTIONS(1022), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(160), + [sym_runtime_type_check_expression] = STATE(160), + [sym_switch_expression] = STATE(160), + [sym_cast_expression] = STATE(160), + [sym_type_trace_expression] = STATE(160), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(160), + [sym_subscript_expression] = STATE(160), + [sym_member_expression] = STATE(950), + [sym__lhs_expression] = STATE(2384), + [sym_builtin_type] = STATE(2370), + [sym__function_type_args] = STATE(3596), + [sym_function_type] = STATE(2471), + [sym_type] = STATE(2804), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(964), + [sym_integer] = STATE(163), + [sym_float] = STATE(964), + [sym_bool] = STATE(964), + [sym_string] = STATE(933), + [sym_null] = STATE(964), + [sym_array] = STATE(964), + [sym_map] = STATE(964), + [sym_object] = STATE(964), + [sym_structure_type_pair] = STATE(3652), + [sym_pair] = STATE(964), + [aux_sym__parenthesized_expression_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1351), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1365), + [anon_sym_Void] = ACTIONS(1367), + [anon_sym_Int] = ACTIONS(1367), + [anon_sym_Float] = ACTIONS(1367), + [anon_sym_Bool] = ACTIONS(1367), + [anon_sym_Null] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [112] = { - [sym__rhs_expression] = STATE(916), - [sym__unaryExpression] = STATE(2852), - [sym_runtime_type_check_expression] = STATE(2852), - [sym_switch_expression] = STATE(2852), - [sym_cast_expression] = STATE(2852), - [sym_type_trace_expression] = STATE(2852), - [sym__parenthesized_expression] = STATE(2476), - [sym_range_expression] = STATE(2852), - [sym_subscript_expression] = STATE(2852), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(916), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1024), - [anon_sym_untyped] = ACTIONS(1026), - [anon_sym_break] = ACTIONS(1028), - [anon_sym_continue] = ACTIONS(1028), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(223), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(223), + [sym__literal] = STATE(570), + [sym_integer] = STATE(570), + [sym_float] = STATE(570), + [sym_bool] = STATE(570), + [sym_string] = STATE(400), + [sym_null] = STATE(570), + [sym_array] = STATE(570), + [sym_map] = STATE(570), + [sym_object] = STATE(570), + [sym_pair] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1373), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [113] = { - [sym__rhs_expression] = STATE(942), - [sym__unaryExpression] = STATE(2694), - [sym_runtime_type_check_expression] = STATE(2694), - [sym_switch_expression] = STATE(2694), - [sym_cast_expression] = STATE(2694), - [sym_type_trace_expression] = STATE(2694), - [sym__parenthesized_expression] = STATE(2570), - [sym_range_expression] = STATE(2694), - [sym_subscript_expression] = STATE(2694), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(942), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1030), - [anon_sym_untyped] = ACTIONS(1032), - [anon_sym_break] = ACTIONS(1034), - [anon_sym_continue] = ACTIONS(1034), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2926), + [sym_integer] = STATE(2926), + [sym_float] = STATE(2926), + [sym_bool] = STATE(2926), + [sym_string] = STATE(2296), + [sym_null] = STATE(2926), + [sym_array] = STATE(2926), + [sym_map] = STATE(2926), + [sym_object] = STATE(2926), + [sym_pair] = STATE(2926), + [aux_sym_member_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_package] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_import] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_using] = ACTIONS(1381), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_AT_COLON] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1381), + [anon_sym_abstract] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym_overload] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_final] = ACTIONS(1381), + [anon_sym_class] = ACTIONS(1381), + [anon_sym_interface] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_function] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1379), [sym__closing_brace_unmarker] = ACTIONS(3), }, [114] = { - [sym__rhs_expression] = STATE(967), - [sym__unaryExpression] = STATE(2650), - [sym_runtime_type_check_expression] = STATE(2650), - [sym_switch_expression] = STATE(2650), - [sym_cast_expression] = STATE(2650), - [sym_type_trace_expression] = STATE(2650), - [sym__parenthesized_expression] = STATE(2592), - [sym_range_expression] = STATE(2650), - [sym_subscript_expression] = STATE(2650), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(967), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1036), - [anon_sym_untyped] = ACTIONS(1038), - [anon_sym_break] = ACTIONS(1040), - [anon_sym_continue] = ACTIONS(1040), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2926), + [sym_integer] = STATE(2926), + [sym_float] = STATE(2926), + [sym_bool] = STATE(2926), + [sym_string] = STATE(2296), + [sym_null] = STATE(2926), + [sym_array] = STATE(2926), + [sym_map] = STATE(2926), + [sym_object] = STATE(2926), + [sym_pair] = STATE(2926), + [aux_sym_member_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(1383), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_package] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_import] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_throw] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_this] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_AT_COLON] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1388), + [anon_sym_catch] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_macro] = ACTIONS(1388), + [anon_sym_abstract] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_public] = ACTIONS(1388), + [anon_sym_private] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_overload] = ACTIONS(1388), + [anon_sym_override] = ACTIONS(1388), + [anon_sym_final] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1388), + [anon_sym_interface] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(1388), + [anon_sym_var] = ACTIONS(1388), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1386), [sym__closing_brace_unmarker] = ACTIONS(3), }, [115] = { - [sym__rhs_expression] = STATE(962), - [sym__unaryExpression] = STATE(2642), - [sym_runtime_type_check_expression] = STATE(2642), - [sym_switch_expression] = STATE(2642), - [sym_cast_expression] = STATE(2642), - [sym_type_trace_expression] = STATE(2642), - [sym__parenthesized_expression] = STATE(2598), - [sym_range_expression] = STATE(2642), - [sym_subscript_expression] = STATE(2642), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(962), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1042), - [anon_sym_untyped] = ACTIONS(1044), - [anon_sym_break] = ACTIONS(1046), - [anon_sym_continue] = ACTIONS(1046), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym__rhs_expression] = STATE(380), + [sym_member_expression] = STATE(351), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(380), + [sym__literal] = STATE(564), + [sym_integer] = STATE(564), + [sym_float] = STATE(564), + [sym_bool] = STATE(564), + [sym_string] = STATE(408), + [sym_null] = STATE(564), + [sym_array] = STATE(564), + [sym_map] = STATE(564), + [sym_object] = STATE(564), + [sym_pair] = STATE(564), + [sym_identifier] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_package] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_import] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_using] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_AT_COLON] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1345), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_public] = ACTIONS(1345), + [anon_sym_private] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym_overload] = ACTIONS(1345), + [anon_sym_override] = ACTIONS(1345), + [anon_sym_final] = ACTIONS(1345), + [anon_sym_class] = ACTIONS(1345), + [anon_sym_interface] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(1345), + [anon_sym_var] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1343), [sym__closing_brace_unmarker] = ACTIONS(3), }, [116] = { - [sym__rhs_expression] = STATE(960), - [sym__unaryExpression] = STATE(2634), - [sym_runtime_type_check_expression] = STATE(2634), - [sym_switch_expression] = STATE(2634), - [sym_cast_expression] = STATE(2634), - [sym_type_trace_expression] = STATE(2634), - [sym__parenthesized_expression] = STATE(2600), - [sym_range_expression] = STATE(2634), - [sym_subscript_expression] = STATE(2634), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(960), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1048), - [anon_sym_untyped] = ACTIONS(1050), - [anon_sym_break] = ACTIONS(1052), - [anon_sym_continue] = ACTIONS(1052), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym__rhs_expression] = STATE(344), + [sym_member_expression] = STATE(351), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(344), + [sym__literal] = STATE(564), + [sym_integer] = STATE(564), + [sym_float] = STATE(564), + [sym_bool] = STATE(564), + [sym_string] = STATE(408), + [sym_null] = STATE(564), + [sym_array] = STATE(564), + [sym_map] = STATE(564), + [sym_object] = STATE(564), + [sym_pair] = STATE(564), + [sym_identifier] = ACTIONS(1423), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1371), [sym__closing_brace_unmarker] = ACTIONS(3), }, [117] = { - [sym__rhs_expression] = STATE(946), - [sym__unaryExpression] = STATE(2632), - [sym_runtime_type_check_expression] = STATE(2632), - [sym_switch_expression] = STATE(2632), - [sym_cast_expression] = STATE(2632), - [sym_type_trace_expression] = STATE(2632), - [sym__parenthesized_expression] = STATE(2616), - [sym_range_expression] = STATE(2632), - [sym_subscript_expression] = STATE(2632), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(946), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1054), - [anon_sym_untyped] = ACTIONS(1056), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1058), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2926), + [sym_integer] = STATE(2926), + [sym_float] = STATE(2926), + [sym_bool] = STATE(2926), + [sym_string] = STATE(2296), + [sym_null] = STATE(2926), + [sym_array] = STATE(2926), + [sym_map] = STATE(2926), + [sym_object] = STATE(2926), + [sym_pair] = STATE(2926), + [aux_sym_member_expression_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(1311), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_package] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1449), + [anon_sym_throw] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_AT_COLON] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1449), + [anon_sym_catch] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1449), + [anon_sym_abstract] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_private] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_inline] = ACTIONS(1449), + [anon_sym_overload] = ACTIONS(1449), + [anon_sym_override] = ACTIONS(1449), + [anon_sym_final] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_interface] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_function] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1447), [sym__closing_brace_unmarker] = ACTIONS(3), }, [118] = { - [sym__rhs_expression] = STATE(915), - [sym__unaryExpression] = STATE(2629), - [sym_runtime_type_check_expression] = STATE(2629), - [sym_switch_expression] = STATE(2629), - [sym_cast_expression] = STATE(2629), - [sym_type_trace_expression] = STATE(2629), - [sym__parenthesized_expression] = STATE(2614), - [sym_range_expression] = STATE(2629), - [sym_subscript_expression] = STATE(2629), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(915), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1060), - [anon_sym_untyped] = ACTIONS(1062), - [anon_sym_break] = ACTIONS(1064), - [anon_sym_continue] = ACTIONS(1064), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(164), + [sym_runtime_type_check_expression] = STATE(164), + [sym_switch_expression] = STATE(164), + [sym_cast_expression] = STATE(164), + [sym_type_trace_expression] = STATE(164), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(164), + [sym_subscript_expression] = STATE(164), + [sym_member_expression] = STATE(950), + [sym__lhs_expression] = STATE(2384), + [sym_builtin_type] = STATE(2370), + [sym__function_type_args] = STATE(3495), + [sym_function_type] = STATE(2471), + [sym_type] = STATE(2727), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(964), + [sym_integer] = STATE(163), + [sym_float] = STATE(964), + [sym_bool] = STATE(964), + [sym_string] = STATE(933), + [sym_null] = STATE(964), + [sym_array] = STATE(964), + [sym_map] = STATE(964), + [sym_object] = STATE(964), + [sym_structure_type_pair] = STATE(3388), + [sym_pair] = STATE(964), + [aux_sym__parenthesized_expression_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(1347), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_RPAREN] = ACTIONS(1451), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1365), + [anon_sym_Void] = ACTIONS(1367), + [anon_sym_Int] = ACTIONS(1367), + [anon_sym_Float] = ACTIONS(1367), + [anon_sym_Bool] = ACTIONS(1367), + [anon_sym_Null] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [119] = { - [sym__rhs_expression] = STATE(966), - [sym__unaryExpression] = STATE(2631), - [sym_runtime_type_check_expression] = STATE(2631), - [sym_switch_expression] = STATE(2631), - [sym_cast_expression] = STATE(2631), - [sym_type_trace_expression] = STATE(2631), - [sym__parenthesized_expression] = STATE(2613), - [sym_range_expression] = STATE(2631), - [sym_subscript_expression] = STATE(2631), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2041), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(966), - [sym_operator] = STATE(1605), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1573), - [sym_integer] = STATE(1573), - [sym_float] = STATE(1573), - [sym_bool] = STATE(1573), - [sym_string] = STATE(1395), - [sym_null] = STATE(1573), - [sym_array] = STATE(1573), - [sym_map] = STATE(1573), - [sym_object] = STATE(1573), - [sym_pair] = STATE(1573), - [sym_identifier] = ACTIONS(1066), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1068), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1070), - [anon_sym_untyped] = ACTIONS(1072), - [anon_sym_break] = ACTIONS(1074), - [anon_sym_continue] = ACTIONS(1074), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(210), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(210), + [sym__literal] = STATE(557), + [sym_integer] = STATE(557), + [sym_float] = STATE(557), + [sym_bool] = STATE(557), + [sym_string] = STATE(400), + [sym_null] = STATE(557), + [sym_array] = STATE(557), + [sym_map] = STATE(557), + [sym_object] = STATE(557), + [sym_pair] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_package] = ACTIONS(1345), + [anon_sym_import] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_using] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_AT_COLON] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1345), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_public] = ACTIONS(1345), + [anon_sym_private] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym_overload] = ACTIONS(1345), + [anon_sym_override] = ACTIONS(1345), + [anon_sym_final] = ACTIONS(1345), + [anon_sym_class] = ACTIONS(1345), + [anon_sym_interface] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(1345), + [anon_sym_var] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [120] = { - [sym__rhs_expression] = STATE(697), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(697), - [sym_operator] = STATE(1548), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(767), - [sym_integer] = STATE(767), - [sym_float] = STATE(767), - [sym_bool] = STATE(767), - [sym_string] = STATE(765), - [sym_null] = STATE(767), - [sym_array] = STATE(767), - [sym_map] = STATE(767), - [sym_object] = STATE(767), - [sym_pair] = STATE(767), - [sym_identifier] = ACTIONS(1076), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(418), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(420), - [anon_sym_untyped] = ACTIONS(422), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_operator] = STATE(1972), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(125), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_package] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_cast] = ACTIONS(1457), + [anon_sym_DOLLARtype] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_untyped] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_AT_COLON] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_catch] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_macro] = ACTIONS(1457), + [anon_sym_abstract] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [anon_sym_overload] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_final] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [aux_sym_integer_token1] = ACTIONS(1457), + [aux_sym_integer_token2] = ACTIONS(1455), + [aux_sym_float_token1] = ACTIONS(1457), + [aux_sym_float_token2] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [aux_sym_string_token1] = ACTIONS(1455), + [aux_sym_string_token3] = ACTIONS(1455), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [121] = { - [sym__rhs_expression] = STATE(964), - [sym__unaryExpression] = STATE(2715), - [sym_runtime_type_check_expression] = STATE(2715), - [sym_switch_expression] = STATE(2715), - [sym_cast_expression] = STATE(2715), - [sym_type_trace_expression] = STATE(2715), - [sym__parenthesized_expression] = STATE(2569), - [sym_range_expression] = STATE(2715), - [sym_subscript_expression] = STATE(2715), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(964), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1078), - [anon_sym_untyped] = ACTIONS(1080), - [anon_sym_break] = ACTIONS(1082), - [anon_sym_continue] = ACTIONS(1082), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_operator] = STATE(115), + [sym__unaryOperator] = STATE(365), + [sym__prefixUnaryOperator] = STATE(365), + [sym__postfixUnaryOperator] = STATE(365), + [sym__binaryOperator] = STATE(365), + [sym__arithmeticOperator] = STATE(365), + [sym__bitwiseOperator] = STATE(365), + [sym__logicalOperator] = STATE(365), + [sym__comparisonOperator] = STATE(365), + [sym__miscOperator] = STATE(365), + [sym__assignmentOperator] = STATE(365), + [sym__compoundAssignmentOperator] = STATE(365), + [sym__rangeOperator] = STATE(365), + [aux_sym_expression_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_GT_GT_GT] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_EQ_GT] = ACTIONS(1459), + [anon_sym_QMARK_QMARK] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1371), [sym__closing_brace_unmarker] = ACTIONS(3), }, [122] = { - [sym__rhs_expression] = STATE(928), - [sym__unaryExpression] = STATE(2623), - [sym_runtime_type_check_expression] = STATE(2623), - [sym_switch_expression] = STATE(2623), - [sym_cast_expression] = STATE(2623), - [sym_type_trace_expression] = STATE(2623), - [sym__parenthesized_expression] = STATE(2604), - [sym_range_expression] = STATE(2623), - [sym_subscript_expression] = STATE(2623), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(928), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1084), - [anon_sym_untyped] = ACTIONS(1086), - [anon_sym_break] = ACTIONS(1088), - [anon_sym_continue] = ACTIONS(1088), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_operator] = STATE(2010), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_using] = ACTIONS(1469), + [anon_sym_throw] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_AT_COLON] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_EQ_GT] = ACTIONS(1476), + [anon_sym_QMARK_QMARK] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_macro] = ACTIONS(1469), + [anon_sym_abstract] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_overload] = ACTIONS(1469), + [anon_sym_override] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1471), [sym__closing_brace_unmarker] = ACTIONS(3), }, [123] = { - [sym__rhs_expression] = STATE(75), - [sym__unaryExpression] = STATE(385), - [sym_runtime_type_check_expression] = STATE(385), - [sym_switch_expression] = STATE(385), - [sym_cast_expression] = STATE(385), - [sym_type_trace_expression] = STATE(385), - [sym__parenthesized_expression] = STATE(387), - [sym_range_expression] = STATE(385), - [sym_subscript_expression] = STATE(385), - [sym_member_expression] = STATE(260), - [sym__lhs_expression] = STATE(2254), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(75), - [sym_operator] = STATE(1646), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(416), - [sym_integer] = STATE(416), - [sym_float] = STATE(416), - [sym_bool] = STATE(416), - [sym_string] = STATE(296), - [sym_null] = STATE(416), - [sym_array] = STATE(416), - [sym_map] = STATE(416), - [sym_object] = STATE(416), - [sym_pair] = STATE(416), - [sym_identifier] = ACTIONS(1090), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(1092), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(1094), - [anon_sym_untyped] = ACTIONS(1096), - [anon_sym_break] = ACTIONS(1016), - [anon_sym_continue] = ACTIONS(1016), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(566), - [anon_sym_new] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2917), + [sym_integer] = STATE(2917), + [sym_float] = STATE(2917), + [sym_bool] = STATE(2917), + [sym_string] = STATE(2296), + [sym_null] = STATE(2917), + [sym_array] = STATE(2917), + [sym_map] = STATE(2917), + [sym_object] = STATE(2917), + [sym_pair] = STATE(2917), + [aux_sym_member_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(1494), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_package] = ACTIONS(1388), + [anon_sym_import] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_throw] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_case] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_this] = ACTIONS(1497), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_AT_COLON] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1388), + [anon_sym_catch] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_macro] = ACTIONS(1388), + [anon_sym_abstract] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_public] = ACTIONS(1388), + [anon_sym_private] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_overload] = ACTIONS(1388), + [anon_sym_override] = ACTIONS(1388), + [anon_sym_final] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1388), + [anon_sym_interface] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(1388), + [anon_sym_var] = ACTIONS(1388), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1386), [sym__closing_brace_unmarker] = ACTIONS(3), }, [124] = { - [sym__rhs_expression] = STATE(878), - [sym__unaryExpression] = STATE(1509), - [sym_runtime_type_check_expression] = STATE(1509), - [sym_switch_expression] = STATE(1509), - [sym_cast_expression] = STATE(1509), - [sym_type_trace_expression] = STATE(1509), - [sym__parenthesized_expression] = STATE(1419), - [sym_range_expression] = STATE(1509), - [sym_subscript_expression] = STATE(1509), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(878), - [sym_operator] = STATE(1643), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1506), - [sym_integer] = STATE(1506), - [sym_float] = STATE(1506), - [sym_bool] = STATE(1506), - [sym_string] = STATE(1384), - [sym_null] = STATE(1506), - [sym_array] = STATE(1506), - [sym_map] = STATE(1506), - [sym_object] = STATE(1506), - [sym_pair] = STATE(1506), - [sym_identifier] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(1098), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1100), - [anon_sym_untyped] = ACTIONS(1102), - [anon_sym_break] = ACTIONS(996), - [anon_sym_continue] = ACTIONS(996), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(998), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2917), + [sym_integer] = STATE(2917), + [sym_float] = STATE(2917), + [sym_bool] = STATE(2917), + [sym_string] = STATE(2296), + [sym_null] = STATE(2917), + [sym_array] = STATE(2917), + [sym_map] = STATE(2917), + [sym_object] = STATE(2917), + [sym_pair] = STATE(2917), + [aux_sym_member_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_package] = ACTIONS(1315), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_throw] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1315), + [anon_sym_default] = ACTIONS(1315), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1315), + [anon_sym_AT_COLON] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_public] = ACTIONS(1315), + [anon_sym_private] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_overload] = ACTIONS(1315), + [anon_sym_override] = ACTIONS(1315), + [anon_sym_final] = ACTIONS(1315), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_interface] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_function] = ACTIONS(1315), + [anon_sym_var] = ACTIONS(1315), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1313), [sym__closing_brace_unmarker] = ACTIONS(3), }, [125] = { - [sym__rhs_expression] = STATE(955), - [sym__unaryExpression] = STATE(2686), - [sym_runtime_type_check_expression] = STATE(2686), - [sym_switch_expression] = STATE(2686), - [sym_cast_expression] = STATE(2686), - [sym_type_trace_expression] = STATE(2686), - [sym__parenthesized_expression] = STATE(2576), - [sym_range_expression] = STATE(2686), - [sym_subscript_expression] = STATE(2686), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(955), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1104), - [anon_sym_untyped] = ACTIONS(1106), - [anon_sym_break] = ACTIONS(1108), - [anon_sym_continue] = ACTIONS(1108), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_operator] = STATE(1972), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(125), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_using] = ACTIONS(1469), + [anon_sym_throw] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_AT_COLON] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_EQ_GT] = ACTIONS(1476), + [anon_sym_QMARK_QMARK] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_macro] = ACTIONS(1469), + [anon_sym_abstract] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_overload] = ACTIONS(1469), + [anon_sym_override] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [126] = { - [sym__rhs_expression] = STATE(944), - [sym__unaryExpression] = STATE(2700), - [sym_runtime_type_check_expression] = STATE(2700), - [sym_switch_expression] = STATE(2700), - [sym_cast_expression] = STATE(2700), - [sym_type_trace_expression] = STATE(2700), - [sym__parenthesized_expression] = STATE(2552), - [sym_range_expression] = STATE(2700), - [sym_subscript_expression] = STATE(2700), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(944), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1110), - [anon_sym_untyped] = ACTIONS(1112), - [anon_sym_break] = ACTIONS(1114), - [anon_sym_continue] = ACTIONS(1114), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2917), + [sym_integer] = STATE(2917), + [sym_float] = STATE(2917), + [sym_bool] = STATE(2917), + [sym_string] = STATE(2296), + [sym_null] = STATE(2917), + [sym_array] = STATE(2917), + [sym_map] = STATE(2917), + [sym_object] = STATE(2917), + [sym_pair] = STATE(2917), + [aux_sym_member_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_package] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1449), + [anon_sym_throw] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1449), + [anon_sym_default] = ACTIONS(1449), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_AT_COLON] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1449), + [anon_sym_catch] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1449), + [anon_sym_abstract] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_private] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_inline] = ACTIONS(1449), + [anon_sym_overload] = ACTIONS(1449), + [anon_sym_override] = ACTIONS(1449), + [anon_sym_final] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_interface] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_function] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1447), [sym__closing_brace_unmarker] = ACTIONS(3), }, [127] = { - [sym__rhs_expression] = STATE(976), - [sym__unaryExpression] = STATE(2653), - [sym_runtime_type_check_expression] = STATE(2653), - [sym_switch_expression] = STATE(2653), - [sym_cast_expression] = STATE(2653), - [sym_type_trace_expression] = STATE(2653), - [sym__parenthesized_expression] = STATE(2595), - [sym_range_expression] = STATE(2653), - [sym_subscript_expression] = STATE(2653), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(976), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1116), - [anon_sym_untyped] = ACTIONS(1118), - [anon_sym_break] = ACTIONS(1120), - [anon_sym_continue] = ACTIONS(1120), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2917), + [sym_integer] = STATE(2917), + [sym_float] = STATE(2917), + [sym_bool] = STATE(2917), + [sym_string] = STATE(2296), + [sym_null] = STATE(2917), + [sym_array] = STATE(2917), + [sym_map] = STATE(2917), + [sym_object] = STATE(2917), + [sym_pair] = STATE(2917), + [aux_sym_member_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_package] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_using] = ACTIONS(1341), + [anon_sym_throw] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1341), + [anon_sym_default] = ACTIONS(1341), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_AT_COLON] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1341), + [anon_sym_abstract] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_public] = ACTIONS(1341), + [anon_sym_private] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_overload] = ACTIONS(1341), + [anon_sym_override] = ACTIONS(1341), + [anon_sym_final] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1341), + [anon_sym_interface] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_function] = ACTIONS(1341), + [anon_sym_var] = ACTIONS(1341), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1339), [sym__closing_brace_unmarker] = ACTIONS(3), }, [128] = { - [sym__rhs_expression] = STATE(926), - [sym__unaryExpression] = STATE(2858), - [sym_runtime_type_check_expression] = STATE(2858), - [sym_switch_expression] = STATE(2858), - [sym_cast_expression] = STATE(2858), - [sym_type_trace_expression] = STATE(2858), - [sym__parenthesized_expression] = STATE(2474), - [sym_range_expression] = STATE(2858), - [sym_subscript_expression] = STATE(2858), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(926), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1122), - [anon_sym_untyped] = ACTIONS(1124), - [anon_sym_break] = ACTIONS(1126), - [anon_sym_continue] = ACTIONS(1126), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym__rhs_expression] = STATE(380), + [sym_member_expression] = STATE(351), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(380), + [sym__literal] = STATE(547), + [sym_integer] = STATE(547), + [sym_float] = STATE(547), + [sym_bool] = STATE(547), + [sym_string] = STATE(408), + [sym_null] = STATE(547), + [sym_array] = STATE(547), + [sym_map] = STATE(547), + [sym_object] = STATE(547), + [sym_pair] = STATE(547), + [sym_identifier] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_package] = ACTIONS(1345), + [anon_sym_import] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_using] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_AT_COLON] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1345), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_public] = ACTIONS(1345), + [anon_sym_private] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym_overload] = ACTIONS(1345), + [anon_sym_override] = ACTIONS(1345), + [anon_sym_final] = ACTIONS(1345), + [anon_sym_class] = ACTIONS(1345), + [anon_sym_interface] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(1345), + [anon_sym_var] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1343), [sym__closing_brace_unmarker] = ACTIONS(3), }, [129] = { - [sym__rhs_expression] = STATE(931), - [sym__unaryExpression] = STATE(2860), - [sym_runtime_type_check_expression] = STATE(2860), - [sym_switch_expression] = STATE(2860), - [sym_cast_expression] = STATE(2860), - [sym_type_trace_expression] = STATE(2860), - [sym__parenthesized_expression] = STATE(2473), - [sym_range_expression] = STATE(2860), - [sym_subscript_expression] = STATE(2860), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(931), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1128), - [anon_sym_untyped] = ACTIONS(1130), - [anon_sym_break] = ACTIONS(1132), - [anon_sym_continue] = ACTIONS(1132), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_operator] = STATE(2010), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_package] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_cast] = ACTIONS(1457), + [anon_sym_DOLLARtype] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_untyped] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_AT_COLON] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_catch] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_macro] = ACTIONS(1457), + [anon_sym_abstract] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [anon_sym_overload] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_final] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [aux_sym_integer_token1] = ACTIONS(1457), + [aux_sym_integer_token2] = ACTIONS(1455), + [aux_sym_float_token1] = ACTIONS(1457), + [aux_sym_float_token2] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [aux_sym_string_token1] = ACTIONS(1455), + [aux_sym_string_token3] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1455), [sym__closing_brace_unmarker] = ACTIONS(3), }, [130] = { - [sym__rhs_expression] = STATE(796), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(796), - [sym_operator] = STATE(1549), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1307), - [sym_integer] = STATE(1307), - [sym_float] = STATE(1307), - [sym_bool] = STATE(1307), - [sym_string] = STATE(1204), - [sym_null] = STATE(1307), - [sym_array] = STATE(1307), - [sym_map] = STATE(1307), - [sym_object] = STATE(1307), - [sym_pair] = STATE(1307), - [sym_identifier] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(404), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(406), - [anon_sym_untyped] = ACTIONS(408), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_operator] = STATE(110), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(238), + [sym__bitwiseOperator] = STATE(238), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(120), + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(59), + [anon_sym_GT_GT_GT] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_PIPE] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [131] = { - [sym__rhs_expression] = STATE(921), - [sym__unaryExpression] = STATE(2644), - [sym_runtime_type_check_expression] = STATE(2644), - [sym_switch_expression] = STATE(2644), - [sym_cast_expression] = STATE(2644), - [sym_type_trace_expression] = STATE(2644), - [sym__parenthesized_expression] = STATE(2602), - [sym_range_expression] = STATE(2644), - [sym_subscript_expression] = STATE(2644), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(921), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1136), - [anon_sym_untyped] = ACTIONS(1138), - [anon_sym_break] = ACTIONS(1140), - [anon_sym_continue] = ACTIONS(1140), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(690), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(690), + [sym__literal] = STATE(557), + [sym_integer] = STATE(557), + [sym_float] = STATE(557), + [sym_bool] = STATE(557), + [sym_string] = STATE(400), + [sym_null] = STATE(557), + [sym_array] = STATE(557), + [sym_map] = STATE(557), + [sym_object] = STATE(557), + [sym_pair] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1508), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [132] = { - [sym__rhs_expression] = STATE(954), - [sym__unaryExpression] = STATE(2775), - [sym_runtime_type_check_expression] = STATE(2775), - [sym_switch_expression] = STATE(2775), - [sym_cast_expression] = STATE(2775), - [sym_type_trace_expression] = STATE(2775), - [sym__parenthesized_expression] = STATE(2479), - [sym_range_expression] = STATE(2775), - [sym_subscript_expression] = STATE(2775), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(954), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1142), - [anon_sym_untyped] = ACTIONS(1144), - [anon_sym_break] = ACTIONS(1146), - [anon_sym_continue] = ACTIONS(1146), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(565), + [sym_member_expression] = STATE(351), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(565), + [sym__literal] = STATE(547), + [sym_integer] = STATE(547), + [sym_float] = STATE(547), + [sym_bool] = STATE(547), + [sym_string] = STATE(408), + [sym_null] = STATE(547), + [sym_array] = STATE(547), + [sym_map] = STATE(547), + [sym_object] = STATE(547), + [sym_pair] = STATE(547), + [sym_identifier] = ACTIONS(1514), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1431), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [133] = { - [sym__rhs_expression] = STATE(907), - [sym__unaryExpression] = STATE(2891), - [sym_runtime_type_check_expression] = STATE(2891), - [sym_switch_expression] = STATE(2891), - [sym_cast_expression] = STATE(2891), - [sym_type_trace_expression] = STATE(2891), - [sym__parenthesized_expression] = STATE(2454), - [sym_range_expression] = STATE(2891), - [sym_subscript_expression] = STATE(2891), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(907), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_untyped] = ACTIONS(1150), - [anon_sym_break] = ACTIONS(1152), - [anon_sym_continue] = ACTIONS(1152), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), - [sym_comment] = ACTIONS(3), + [sym_member_expression] = STATE(340), + [sym__lhs_expression] = STATE(357), + [sym__literal] = STATE(2917), + [sym_integer] = STATE(2917), + [sym_float] = STATE(2917), + [sym_bool] = STATE(2917), + [sym_string] = STATE(2296), + [sym_null] = STATE(2917), + [sym_array] = STATE(2917), + [sym_map] = STATE(2917), + [sym_object] = STATE(2917), + [sym_pair] = STATE(2917), + [aux_sym_member_expression_repeat1] = STATE(123), + [sym_identifier] = ACTIONS(1500), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_package] = ACTIONS(1381), + [anon_sym_import] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_using] = ACTIONS(1381), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_case] = ACTIONS(1381), + [anon_sym_default] = ACTIONS(1381), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_AT_COLON] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1381), + [anon_sym_abstract] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym_overload] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_final] = ACTIONS(1381), + [anon_sym_class] = ACTIONS(1381), + [anon_sym_interface] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_function] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1379), [sym__closing_brace_unmarker] = ACTIONS(3), }, [134] = { - [sym__rhs_expression] = STATE(938), - [sym__unaryExpression] = STATE(2697), - [sym_runtime_type_check_expression] = STATE(2697), - [sym_switch_expression] = STATE(2697), - [sym_cast_expression] = STATE(2697), - [sym_type_trace_expression] = STATE(2697), - [sym__parenthesized_expression] = STATE(2573), - [sym_range_expression] = STATE(2697), - [sym_subscript_expression] = STATE(2697), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(938), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1154), - [anon_sym_untyped] = ACTIONS(1156), - [anon_sym_break] = ACTIONS(1158), - [anon_sym_continue] = ACTIONS(1158), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2919), + [sym_integer] = STATE(2919), + [sym_float] = STATE(2919), + [sym_bool] = STATE(2919), + [sym_string] = STATE(2296), + [sym_null] = STATE(2919), + [sym_array] = STATE(2919), + [sym_map] = STATE(2919), + [sym_object] = STATE(2919), + [sym_pair] = STATE(2919), + [aux_sym_member_expression_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_package] = ACTIONS(1315), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_throw] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_AT] = ACTIONS(1315), + [anon_sym_AT_COLON] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_public] = ACTIONS(1315), + [anon_sym_private] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_overload] = ACTIONS(1315), + [anon_sym_override] = ACTIONS(1315), + [anon_sym_final] = ACTIONS(1315), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_interface] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_function] = ACTIONS(1315), + [anon_sym_var] = ACTIONS(1315), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [135] = { - [sym__rhs_expression] = STATE(1026), - [sym__unaryExpression] = STATE(2725), - [sym_runtime_type_check_expression] = STATE(2725), - [sym_switch_expression] = STATE(2725), - [sym_cast_expression] = STATE(2725), - [sym_type_trace_expression] = STATE(2725), - [sym__parenthesized_expression] = STATE(2554), - [sym_range_expression] = STATE(2725), - [sym_subscript_expression] = STATE(2725), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1026), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1160), - [anon_sym_untyped] = ACTIONS(1162), - [anon_sym_break] = ACTIONS(1164), - [anon_sym_continue] = ACTIONS(1164), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2919), + [sym_integer] = STATE(2919), + [sym_float] = STATE(2919), + [sym_bool] = STATE(2919), + [sym_string] = STATE(2296), + [sym_null] = STATE(2919), + [sym_array] = STATE(2919), + [sym_map] = STATE(2919), + [sym_object] = STATE(2919), + [sym_pair] = STATE(2919), + [aux_sym_member_expression_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_package] = ACTIONS(1449), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1449), + [anon_sym_throw] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_AT_COLON] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1449), + [anon_sym_catch] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1449), + [anon_sym_abstract] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_private] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_inline] = ACTIONS(1449), + [anon_sym_overload] = ACTIONS(1449), + [anon_sym_override] = ACTIONS(1449), + [anon_sym_final] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_interface] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_function] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [136] = { - [sym__rhs_expression] = STATE(943), - [sym__unaryExpression] = STATE(2708), - [sym_runtime_type_check_expression] = STATE(2708), - [sym_switch_expression] = STATE(2708), - [sym_cast_expression] = STATE(2708), - [sym_type_trace_expression] = STATE(2708), - [sym__parenthesized_expression] = STATE(2563), - [sym_range_expression] = STATE(2708), - [sym_subscript_expression] = STATE(2708), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(943), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1166), - [anon_sym_untyped] = ACTIONS(1168), - [anon_sym_break] = ACTIONS(1170), - [anon_sym_continue] = ACTIONS(1170), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2919), + [sym_integer] = STATE(2919), + [sym_float] = STATE(2919), + [sym_bool] = STATE(2919), + [sym_string] = STATE(2296), + [sym_null] = STATE(2919), + [sym_array] = STATE(2919), + [sym_map] = STATE(2919), + [sym_object] = STATE(2919), + [sym_pair] = STATE(2919), + [aux_sym_member_expression_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_package] = ACTIONS(1341), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_using] = ACTIONS(1341), + [anon_sym_throw] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_AT_COLON] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1341), + [anon_sym_abstract] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_public] = ACTIONS(1341), + [anon_sym_private] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_overload] = ACTIONS(1341), + [anon_sym_override] = ACTIONS(1341), + [anon_sym_final] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1341), + [anon_sym_interface] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_function] = ACTIONS(1341), + [anon_sym_var] = ACTIONS(1341), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [137] = { - [sym__rhs_expression] = STATE(868), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(1241), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(868), - [sym_operator] = STATE(1569), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1449), - [sym_integer] = STATE(1449), - [sym_float] = STATE(1449), - [sym_bool] = STATE(1449), - [sym_string] = STATE(1395), - [sym_null] = STATE(1449), - [sym_array] = STATE(1449), - [sym_map] = STATE(1449), - [sym_object] = STATE(1449), - [sym_pair] = STATE(1449), - [sym_identifier] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1174), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1176), - [anon_sym_untyped] = ACTIONS(1178), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2919), + [sym_integer] = STATE(2919), + [sym_float] = STATE(2919), + [sym_bool] = STATE(2919), + [sym_string] = STATE(2296), + [sym_null] = STATE(2919), + [sym_array] = STATE(2919), + [sym_map] = STATE(2919), + [sym_object] = STATE(2919), + [sym_pair] = STATE(2919), + [aux_sym_member_expression_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1516), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_package] = ACTIONS(1381), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_import] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_using] = ACTIONS(1381), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_AT_COLON] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1381), + [anon_sym_abstract] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym_overload] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_final] = ACTIONS(1381), + [anon_sym_class] = ACTIONS(1381), + [anon_sym_interface] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_function] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [138] = { - [sym__rhs_expression] = STATE(929), - [sym__unaryExpression] = STATE(2884), - [sym_runtime_type_check_expression] = STATE(2884), - [sym_switch_expression] = STATE(2884), - [sym_cast_expression] = STATE(2884), - [sym_type_trace_expression] = STATE(2884), - [sym__parenthesized_expression] = STATE(2572), - [sym_range_expression] = STATE(2884), - [sym_subscript_expression] = STATE(2884), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(929), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1180), - [anon_sym_untyped] = ACTIONS(1182), - [anon_sym_break] = ACTIONS(1184), - [anon_sym_continue] = ACTIONS(1184), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2919), + [sym_integer] = STATE(2919), + [sym_float] = STATE(2919), + [sym_bool] = STATE(2919), + [sym_string] = STATE(2296), + [sym_null] = STATE(2919), + [sym_array] = STATE(2919), + [sym_map] = STATE(2919), + [sym_object] = STATE(2919), + [sym_pair] = STATE(2919), + [aux_sym_member_expression_repeat1] = STATE(138), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_package] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_import] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_throw] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_this] = ACTIONS(1521), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_AT_COLON] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1388), + [anon_sym_catch] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_macro] = ACTIONS(1388), + [anon_sym_abstract] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_public] = ACTIONS(1388), + [anon_sym_private] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_overload] = ACTIONS(1388), + [anon_sym_override] = ACTIONS(1388), + [anon_sym_final] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1388), + [anon_sym_interface] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(1388), + [anon_sym_var] = ACTIONS(1388), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [139] = { - [sym__rhs_expression] = STATE(968), - [sym__unaryExpression] = STATE(2749), - [sym_runtime_type_check_expression] = STATE(2749), - [sym_switch_expression] = STATE(2749), - [sym_cast_expression] = STATE(2749), - [sym_type_trace_expression] = STATE(2749), - [sym__parenthesized_expression] = STATE(2520), - [sym_range_expression] = STATE(2749), - [sym_subscript_expression] = STATE(2749), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(968), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1186), - [anon_sym_untyped] = ACTIONS(1188), - [anon_sym_break] = ACTIONS(1190), - [anon_sym_continue] = ACTIONS(1190), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_operator] = STATE(1922), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_using] = ACTIONS(1469), + [anon_sym_throw] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_AT_COLON] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_EQ_GT] = ACTIONS(1476), + [anon_sym_QMARK_QMARK] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_macro] = ACTIONS(1469), + [anon_sym_abstract] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_overload] = ACTIONS(1469), + [anon_sym_override] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [140] = { - [sym__rhs_expression] = STATE(791), - [sym__unaryExpression] = STATE(1306), - [sym_runtime_type_check_expression] = STATE(1306), - [sym_switch_expression] = STATE(1306), - [sym_cast_expression] = STATE(1306), - [sym_type_trace_expression] = STATE(1306), - [sym__parenthesized_expression] = STATE(1200), - [sym_range_expression] = STATE(1306), - [sym_subscript_expression] = STATE(1306), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(791), - [sym_operator] = STATE(1534), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1275), - [sym_integer] = STATE(1275), - [sym_float] = STATE(1275), - [sym_bool] = STATE(1275), - [sym_string] = STATE(1208), - [sym_null] = STATE(1275), - [sym_array] = STATE(1275), - [sym_map] = STATE(1275), - [sym_object] = STATE(1275), - [sym_pair] = STATE(1275), - [sym_identifier] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(1194), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(1196), - [anon_sym_untyped] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym__rhs_expression] = STATE(855), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(950), + [sym__lhs_expression] = STATE(2384), + [sym_builtin_type] = STATE(2370), + [sym_function_type] = STATE(2471), + [sym_type] = STATE(2659), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(855), + [sym_operator] = STATE(2006), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(963), + [sym_integer] = STATE(163), + [sym_float] = STATE(963), + [sym_bool] = STATE(963), + [sym_string] = STATE(933), + [sym_null] = STATE(963), + [sym_array] = STATE(963), + [sym_map] = STATE(963), + [sym_object] = STATE(963), + [sym_pair] = STATE(963), + [sym_identifier] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1526), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_untyped] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_Void] = ACTIONS(1367), + [anon_sym_Int] = ACTIONS(1367), + [anon_sym_Float] = ACTIONS(1367), + [anon_sym_Bool] = ACTIONS(1367), + [anon_sym_Null] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [141] = { - [sym__rhs_expression] = STATE(970), - [sym__unaryExpression] = STATE(2761), - [sym_runtime_type_check_expression] = STATE(2761), - [sym_switch_expression] = STATE(2761), - [sym_cast_expression] = STATE(2761), - [sym_type_trace_expression] = STATE(2761), - [sym__parenthesized_expression] = STATE(2530), - [sym_range_expression] = STATE(2761), - [sym_subscript_expression] = STATE(2761), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(970), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1202), - [anon_sym_untyped] = ACTIONS(1204), - [anon_sym_break] = ACTIONS(1206), - [anon_sym_continue] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_operator] = STATE(128), + [sym__unaryOperator] = STATE(365), + [sym__prefixUnaryOperator] = STATE(365), + [sym__postfixUnaryOperator] = STATE(365), + [sym__binaryOperator] = STATE(365), + [sym__arithmeticOperator] = STATE(365), + [sym__bitwiseOperator] = STATE(365), + [sym__logicalOperator] = STATE(365), + [sym__comparisonOperator] = STATE(365), + [sym__miscOperator] = STATE(365), + [sym__assignmentOperator] = STATE(365), + [sym__compoundAssignmentOperator] = STATE(365), + [sym__rangeOperator] = STATE(365), + [aux_sym_expression_repeat1] = STATE(147), + [sym_identifier] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1459), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1459), + [anon_sym_BANG] = ACTIONS(1461), + [anon_sym_DASH] = ACTIONS(1463), + [anon_sym_PLUS_PLUS] = ACTIONS(1465), + [anon_sym_DASH_DASH] = ACTIONS(1465), + [anon_sym_PERCENT] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1461), + [anon_sym_PLUS] = ACTIONS(1461), + [anon_sym_LT_LT] = ACTIONS(1459), + [anon_sym_GT_GT] = ACTIONS(1461), + [anon_sym_GT_GT_GT] = ACTIONS(1459), + [anon_sym_AMP] = ACTIONS(1461), + [anon_sym_PIPE] = ACTIONS(1461), + [anon_sym_CARET] = ACTIONS(1459), + [anon_sym_AMP_AMP] = ACTIONS(1459), + [anon_sym_PIPE_PIPE] = ACTIONS(1459), + [anon_sym_EQ_EQ] = ACTIONS(1459), + [anon_sym_BANG_EQ] = ACTIONS(1459), + [anon_sym_LT] = ACTIONS(1461), + [anon_sym_LT_EQ] = ACTIONS(1459), + [anon_sym_GT] = ACTIONS(1461), + [anon_sym_GT_EQ] = ACTIONS(1459), + [anon_sym_EQ_GT] = ACTIONS(1459), + [anon_sym_QMARK_QMARK] = ACTIONS(1459), + [anon_sym_EQ] = ACTIONS(1461), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1467), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [142] = { - [sym__rhs_expression] = STATE(947), - [sym__unaryExpression] = STATE(2744), - [sym_runtime_type_check_expression] = STATE(2744), - [sym_switch_expression] = STATE(2744), - [sym_cast_expression] = STATE(2744), - [sym_type_trace_expression] = STATE(2744), - [sym__parenthesized_expression] = STATE(2542), - [sym_range_expression] = STATE(2744), - [sym_subscript_expression] = STATE(2744), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(947), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_untyped] = ACTIONS(1210), - [anon_sym_break] = ACTIONS(1212), - [anon_sym_continue] = ACTIONS(1212), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_operator] = STATE(1920), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_using] = ACTIONS(1469), + [anon_sym_throw] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_AT_COLON] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_EQ_GT] = ACTIONS(1476), + [anon_sym_QMARK_QMARK] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_macro] = ACTIONS(1469), + [anon_sym_abstract] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_overload] = ACTIONS(1469), + [anon_sym_override] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1471), [sym__closing_brace_unmarker] = ACTIONS(3), }, [143] = { - [sym__rhs_expression] = STATE(897), - [sym__unaryExpression] = STATE(274), - [sym_runtime_type_check_expression] = STATE(274), - [sym_switch_expression] = STATE(274), - [sym_cast_expression] = STATE(274), - [sym_type_trace_expression] = STATE(274), - [sym__parenthesized_expression] = STATE(279), - [sym_range_expression] = STATE(274), - [sym_subscript_expression] = STATE(274), - [sym_member_expression] = STATE(260), - [sym__lhs_expression] = STATE(2181), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(897), - [sym_operator] = STATE(1477), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1214), - [sym_integer] = STATE(1214), - [sym_float] = STATE(1214), - [sym_bool] = STATE(1214), - [sym_string] = STATE(1175), - [sym_null] = STATE(1214), - [sym_array] = STATE(1214), - [sym_map] = STATE(1214), - [sym_object] = STATE(1214), - [sym_pair] = STATE(1214), - [sym_identifier] = ACTIONS(1006), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(432), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(436), - [anon_sym_untyped] = ACTIONS(438), - [anon_sym_break] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(566), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(381), + [sym_runtime_type_check_expression] = STATE(381), + [sym_switch_expression] = STATE(381), + [sym_cast_expression] = STATE(381), + [sym_type_trace_expression] = STATE(381), + [sym__parenthesized_expression] = STATE(259), + [sym_range_expression] = STATE(381), + [sym_subscript_expression] = STATE(381), + [sym_member_expression] = STATE(1556), + [sym__lhs_expression] = STATE(2357), + [sym_builtin_type] = STATE(2472), + [sym_function_type] = STATE(2957), + [sym_type] = STATE(3099), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1804), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1710), + [sym_integer] = STATE(327), + [sym_float] = STATE(1710), + [sym_bool] = STATE(1710), + [sym_string] = STATE(1378), + [sym_null] = STATE(1710), + [sym_array] = STATE(1710), + [sym_map] = STATE(1710), + [sym_object] = STATE(1710), + [sym_pair] = STATE(1710), + [sym_identifier] = ACTIONS(1536), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1538), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(1542), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_untyped] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1552), + [anon_sym_Void] = ACTIONS(1554), + [anon_sym_Int] = ACTIONS(1554), + [anon_sym_Float] = ACTIONS(1554), + [anon_sym_Bool] = ACTIONS(1554), + [anon_sym_Null] = ACTIONS(1554), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [144] = { - [sym__rhs_expression] = STATE(1024), - [sym__unaryExpression] = STATE(2880), - [sym_runtime_type_check_expression] = STATE(2880), - [sym_switch_expression] = STATE(2880), - [sym_cast_expression] = STATE(2880), - [sym_type_trace_expression] = STATE(2880), - [sym__parenthesized_expression] = STATE(2467), - [sym_range_expression] = STATE(2880), - [sym_subscript_expression] = STATE(2880), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1024), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1214), - [anon_sym_untyped] = ACTIONS(1216), - [anon_sym_break] = ACTIONS(1218), - [anon_sym_continue] = ACTIONS(1218), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(855), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(950), + [sym__lhs_expression] = STATE(2384), + [sym_builtin_type] = STATE(2370), + [sym_function_type] = STATE(2471), + [sym_type] = STATE(3275), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(855), + [sym_operator] = STATE(2006), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(963), + [sym_integer] = STATE(163), + [sym_float] = STATE(963), + [sym_bool] = STATE(963), + [sym_string] = STATE(933), + [sym_null] = STATE(963), + [sym_array] = STATE(963), + [sym_map] = STATE(963), + [sym_object] = STATE(963), + [sym_pair] = STATE(963), + [sym_identifier] = ACTIONS(1524), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1526), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_untyped] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_Void] = ACTIONS(1367), + [anon_sym_Int] = ACTIONS(1367), + [anon_sym_Float] = ACTIONS(1367), + [anon_sym_Bool] = ACTIONS(1367), + [anon_sym_Null] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [145] = { - [sym__rhs_expression] = STATE(951), - [sym__unaryExpression] = STATE(2865), - [sym_runtime_type_check_expression] = STATE(2865), - [sym_switch_expression] = STATE(2865), - [sym_cast_expression] = STATE(2865), - [sym_type_trace_expression] = STATE(2865), - [sym__parenthesized_expression] = STATE(2471), - [sym_range_expression] = STATE(2865), - [sym_subscript_expression] = STATE(2865), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(951), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1220), - [anon_sym_untyped] = ACTIONS(1222), - [anon_sym_break] = ACTIONS(1224), - [anon_sym_continue] = ACTIONS(1224), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(982), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(950), + [sym__lhs_expression] = STATE(2384), + [sym_builtin_type] = STATE(2370), + [sym_function_type] = STATE(2471), + [sym_type] = STATE(2873), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(982), + [sym_operator] = STATE(1856), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(2060), + [sym_integer] = STATE(163), + [sym_float] = STATE(2060), + [sym_bool] = STATE(2060), + [sym_string] = STATE(1375), + [sym_null] = STATE(2060), + [sym_array] = STATE(2060), + [sym_map] = STATE(2060), + [sym_object] = STATE(2060), + [sym_pair] = STATE(2060), + [sym_identifier] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1558), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_untyped] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_Void] = ACTIONS(1367), + [anon_sym_Int] = ACTIONS(1367), + [anon_sym_Float] = ACTIONS(1367), + [anon_sym_Bool] = ACTIONS(1367), + [anon_sym_Null] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [146] = { - [sym__rhs_expression] = STATE(58), - [sym__unaryExpression] = STATE(274), - [sym_runtime_type_check_expression] = STATE(274), - [sym_switch_expression] = STATE(274), - [sym_cast_expression] = STATE(274), - [sym_type_trace_expression] = STATE(274), - [sym__parenthesized_expression] = STATE(279), - [sym_range_expression] = STATE(274), - [sym_subscript_expression] = STATE(274), - [sym_member_expression] = STATE(260), - [sym__lhs_expression] = STATE(2254), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(58), - [sym_operator] = STATE(1481), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(480), - [sym_integer] = STATE(480), - [sym_float] = STATE(480), - [sym_bool] = STATE(480), - [sym_string] = STATE(296), - [sym_null] = STATE(480), - [sym_array] = STATE(480), - [sym_map] = STATE(480), - [sym_object] = STATE(480), - [sym_pair] = STATE(480), - [sym_identifier] = ACTIONS(1226), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(1228), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(1230), - [anon_sym_untyped] = ACTIONS(1232), - [anon_sym_break] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(538), - [anon_sym_new] = ACTIONS(546), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym_operator] = STATE(119), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(238), + [sym__bitwiseOperator] = STATE(238), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(148), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(59), + [anon_sym_GT_GT_GT] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_PIPE] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [147] = { - [sym__rhs_expression] = STATE(922), - [sym__unaryExpression] = STATE(2626), - [sym_runtime_type_check_expression] = STATE(2626), - [sym_switch_expression] = STATE(2626), - [sym_cast_expression] = STATE(2626), - [sym_type_trace_expression] = STATE(2626), - [sym__parenthesized_expression] = STATE(2607), - [sym_range_expression] = STATE(2626), - [sym_subscript_expression] = STATE(2626), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(922), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_untyped] = ACTIONS(1236), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), - [sym_comment] = ACTIONS(3), + [sym_operator] = STATE(1920), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(142), + [sym_identifier] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_package] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_untyped] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_this] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_AT_COLON] = ACTIONS(1566), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_catch] = ACTIONS(1564), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1564), + [anon_sym_macro] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym_overload] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_final] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [aux_sym_integer_token1] = ACTIONS(1564), + [aux_sym_integer_token2] = ACTIONS(1566), + [aux_sym_float_token1] = ACTIONS(1564), + [aux_sym_float_token2] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [aux_sym_string_token1] = ACTIONS(1566), + [aux_sym_string_token3] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1566), [sym__closing_brace_unmarker] = ACTIONS(3), }, [148] = { - [sym__rhs_expression] = STATE(792), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(792), - [sym_operator] = STATE(1562), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1307), - [sym_integer] = STATE(1307), - [sym_float] = STATE(1307), - [sym_bool] = STATE(1307), - [sym_string] = STATE(1204), - [sym_null] = STATE(1307), - [sym_array] = STATE(1307), - [sym_map] = STATE(1307), - [sym_object] = STATE(1307), - [sym_pair] = STATE(1307), - [sym_identifier] = ACTIONS(1134), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1240), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_untyped] = ACTIONS(1244), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_operator] = STATE(1922), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(139), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_package] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_using] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_untyped] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_this] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_AT_COLON] = ACTIONS(1566), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_catch] = ACTIONS(1564), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1564), + [anon_sym_macro] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym_overload] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_final] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [aux_sym_integer_token1] = ACTIONS(1564), + [aux_sym_integer_token2] = ACTIONS(1566), + [aux_sym_float_token1] = ACTIONS(1564), + [aux_sym_float_token2] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [aux_sym_string_token1] = ACTIONS(1566), + [aux_sym_string_token3] = ACTIONS(1566), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [149] = { - [sym__rhs_expression] = STATE(924), - [sym__unaryExpression] = STATE(2635), - [sym_runtime_type_check_expression] = STATE(2635), - [sym_switch_expression] = STATE(2635), - [sym_cast_expression] = STATE(2635), - [sym_type_trace_expression] = STATE(2635), - [sym__parenthesized_expression] = STATE(2558), - [sym_range_expression] = STATE(2635), - [sym_subscript_expression] = STATE(2635), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(924), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_untyped] = ACTIONS(1248), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(982), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(950), + [sym__lhs_expression] = STATE(2384), + [sym_builtin_type] = STATE(2370), + [sym_function_type] = STATE(2471), + [sym_type] = STATE(2783), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(982), + [sym_operator] = STATE(1856), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(2060), + [sym_integer] = STATE(163), + [sym_float] = STATE(2060), + [sym_bool] = STATE(2060), + [sym_string] = STATE(1375), + [sym_null] = STATE(2060), + [sym_array] = STATE(2060), + [sym_map] = STATE(2060), + [sym_object] = STATE(2060), + [sym_pair] = STATE(2060), + [sym_identifier] = ACTIONS(1556), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1349), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1558), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_untyped] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_Void] = ACTIONS(1367), + [anon_sym_Int] = ACTIONS(1367), + [anon_sym_Float] = ACTIONS(1367), + [anon_sym_Bool] = ACTIONS(1367), + [anon_sym_Null] = ACTIONS(1367), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [150] = { - [sym__rhs_expression] = STATE(961), - [sym__unaryExpression] = STATE(2647), - [sym_runtime_type_check_expression] = STATE(2647), - [sym_switch_expression] = STATE(2647), - [sym_cast_expression] = STATE(2647), - [sym_type_trace_expression] = STATE(2647), - [sym__parenthesized_expression] = STATE(2597), - [sym_range_expression] = STATE(2647), - [sym_subscript_expression] = STATE(2647), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(961), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1252), - [anon_sym_untyped] = ACTIONS(1254), - [anon_sym_break] = ACTIONS(1256), - [anon_sym_continue] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2912), + [sym_integer] = STATE(2912), + [sym_float] = STATE(2912), + [sym_bool] = STATE(2912), + [sym_string] = STATE(2296), + [sym_null] = STATE(2912), + [sym_array] = STATE(2912), + [sym_map] = STATE(2912), + [sym_object] = STATE(2912), + [sym_pair] = STATE(2912), + [aux_sym_member_expression_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(1447), + [sym_identifier] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1447), + [anon_sym_package] = ACTIONS(1449), + [anon_sym_import] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_using] = ACTIONS(1449), + [anon_sym_throw] = ACTIONS(1449), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_for] = ACTIONS(1449), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1449), + [anon_sym_AT_COLON] = ACTIONS(1447), + [anon_sym_try] = ACTIONS(1449), + [anon_sym_catch] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_if] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_do] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1449), + [anon_sym_abstract] = ACTIONS(1449), + [anon_sym_static] = ACTIONS(1449), + [anon_sym_public] = ACTIONS(1449), + [anon_sym_private] = ACTIONS(1449), + [anon_sym_extern] = ACTIONS(1449), + [anon_sym_inline] = ACTIONS(1449), + [anon_sym_overload] = ACTIONS(1449), + [anon_sym_override] = ACTIONS(1449), + [anon_sym_final] = ACTIONS(1449), + [anon_sym_class] = ACTIONS(1449), + [anon_sym_interface] = ACTIONS(1449), + [anon_sym_enum] = ACTIONS(1449), + [anon_sym_typedef] = ACTIONS(1449), + [anon_sym_function] = ACTIONS(1449), + [anon_sym_var] = ACTIONS(1449), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [151] = { - [sym__rhs_expression] = STATE(788), - [sym__unaryExpression] = STATE(1306), - [sym_runtime_type_check_expression] = STATE(1306), - [sym_switch_expression] = STATE(1306), - [sym_cast_expression] = STATE(1306), - [sym_type_trace_expression] = STATE(1306), - [sym__parenthesized_expression] = STATE(1200), - [sym_range_expression] = STATE(1306), - [sym_subscript_expression] = STATE(1306), - [sym_member_expression] = STATE(1177), - [sym__lhs_expression] = STATE(2082), - [sym__call] = STATE(1265), - [sym__constructor_call] = STATE(1266), - [sym_call_expression] = STATE(788), - [sym_operator] = STATE(1448), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1275), - [sym_integer] = STATE(1275), - [sym_float] = STATE(1275), - [sym_bool] = STATE(1275), - [sym_string] = STATE(1208), - [sym_null] = STATE(1275), - [sym_array] = STATE(1275), - [sym_map] = STATE(1275), - [sym_object] = STATE(1275), - [sym_pair] = STATE(1275), - [sym_identifier] = ACTIONS(1192), - [anon_sym_LPAREN] = ACTIONS(732), - [anon_sym_switch] = ACTIONS(734), - [anon_sym_LBRACE] = ACTIONS(736), - [anon_sym_cast] = ACTIONS(1258), - [anon_sym_DOLLARtype] = ACTIONS(740), - [anon_sym_return] = ACTIONS(1260), - [anon_sym_untyped] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1200), - [anon_sym_continue] = ACTIONS(1200), - [anon_sym_LBRACK] = ACTIONS(748), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(752), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(754), - [aux_sym_integer_token1] = ACTIONS(756), - [aux_sym_integer_token2] = ACTIONS(758), - [aux_sym_float_token1] = ACTIONS(760), - [aux_sym_float_token2] = ACTIONS(762), - [anon_sym_true] = ACTIONS(764), - [anon_sym_false] = ACTIONS(764), - [aux_sym_string_token1] = ACTIONS(766), - [aux_sym_string_token3] = ACTIONS(768), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2912), + [sym_integer] = STATE(2912), + [sym_float] = STATE(2912), + [sym_bool] = STATE(2912), + [sym_string] = STATE(2296), + [sym_null] = STATE(2912), + [sym_array] = STATE(2912), + [sym_map] = STATE(2912), + [sym_object] = STATE(2912), + [sym_pair] = STATE(2912), + [aux_sym_member_expression_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(1379), + [sym_identifier] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1379), + [anon_sym_package] = ACTIONS(1381), + [anon_sym_import] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_using] = ACTIONS(1381), + [anon_sym_throw] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_for] = ACTIONS(1381), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1381), + [anon_sym_AT_COLON] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_if] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_do] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1381), + [anon_sym_abstract] = ACTIONS(1381), + [anon_sym_static] = ACTIONS(1381), + [anon_sym_public] = ACTIONS(1381), + [anon_sym_private] = ACTIONS(1381), + [anon_sym_extern] = ACTIONS(1381), + [anon_sym_inline] = ACTIONS(1381), + [anon_sym_overload] = ACTIONS(1381), + [anon_sym_override] = ACTIONS(1381), + [anon_sym_final] = ACTIONS(1381), + [anon_sym_class] = ACTIONS(1381), + [anon_sym_interface] = ACTIONS(1381), + [anon_sym_enum] = ACTIONS(1381), + [anon_sym_typedef] = ACTIONS(1381), + [anon_sym_function] = ACTIONS(1381), + [anon_sym_var] = ACTIONS(1381), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [152] = { - [sym__rhs_expression] = STATE(855), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(1241), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(855), - [sym_operator] = STATE(1619), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1449), - [sym_integer] = STATE(1449), - [sym_float] = STATE(1449), - [sym_bool] = STATE(1449), - [sym_string] = STATE(1395), - [sym_null] = STATE(1449), - [sym_array] = STATE(1449), - [sym_map] = STATE(1449), - [sym_object] = STATE(1449), - [sym_pair] = STATE(1449), - [sym_identifier] = ACTIONS(1172), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1264), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1266), - [anon_sym_untyped] = ACTIONS(1268), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2912), + [sym_integer] = STATE(2912), + [sym_float] = STATE(2912), + [sym_bool] = STATE(2912), + [sym_string] = STATE(2296), + [sym_null] = STATE(2912), + [sym_array] = STATE(2912), + [sym_map] = STATE(2912), + [sym_object] = STATE(2912), + [sym_pair] = STATE(2912), + [aux_sym_member_expression_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(1339), + [sym_identifier] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_package] = ACTIONS(1341), + [anon_sym_import] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_using] = ACTIONS(1341), + [anon_sym_throw] = ACTIONS(1341), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_for] = ACTIONS(1341), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1341), + [anon_sym_AT_COLON] = ACTIONS(1339), + [anon_sym_try] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_if] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_do] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1341), + [anon_sym_abstract] = ACTIONS(1341), + [anon_sym_static] = ACTIONS(1341), + [anon_sym_public] = ACTIONS(1341), + [anon_sym_private] = ACTIONS(1341), + [anon_sym_extern] = ACTIONS(1341), + [anon_sym_inline] = ACTIONS(1341), + [anon_sym_overload] = ACTIONS(1341), + [anon_sym_override] = ACTIONS(1341), + [anon_sym_final] = ACTIONS(1341), + [anon_sym_class] = ACTIONS(1341), + [anon_sym_interface] = ACTIONS(1341), + [anon_sym_enum] = ACTIONS(1341), + [anon_sym_typedef] = ACTIONS(1341), + [anon_sym_function] = ACTIONS(1341), + [anon_sym_var] = ACTIONS(1341), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [153] = { - [sym__rhs_expression] = STATE(775), - [sym__unaryExpression] = STATE(274), - [sym_runtime_type_check_expression] = STATE(274), - [sym_switch_expression] = STATE(274), - [sym_cast_expression] = STATE(274), - [sym_type_trace_expression] = STATE(274), - [sym__parenthesized_expression] = STATE(279), - [sym_range_expression] = STATE(274), - [sym_subscript_expression] = STATE(274), - [sym_member_expression] = STATE(260), - [sym__lhs_expression] = STATE(2181), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(775), - [sym_operator] = STATE(1531), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1198), - [sym_integer] = STATE(1198), - [sym_float] = STATE(1198), - [sym_bool] = STATE(1198), - [sym_string] = STATE(1175), - [sym_null] = STATE(1198), - [sym_array] = STATE(1198), - [sym_map] = STATE(1198), - [sym_object] = STATE(1198), - [sym_pair] = STATE(1198), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(1272), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_untyped] = ACTIONS(1276), - [anon_sym_break] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(538), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2912), + [sym_integer] = STATE(2912), + [sym_float] = STATE(2912), + [sym_bool] = STATE(2912), + [sym_string] = STATE(2296), + [sym_null] = STATE(2912), + [sym_array] = STATE(2912), + [sym_map] = STATE(2912), + [sym_object] = STATE(2912), + [sym_pair] = STATE(2912), + [aux_sym_member_expression_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1570), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_package] = ACTIONS(1388), + [anon_sym_import] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_using] = ACTIONS(1388), + [anon_sym_throw] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_this] = ACTIONS(1573), + [anon_sym_AT] = ACTIONS(1388), + [anon_sym_AT_COLON] = ACTIONS(1386), + [anon_sym_try] = ACTIONS(1388), + [anon_sym_catch] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_do] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [anon_sym_macro] = ACTIONS(1388), + [anon_sym_abstract] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_public] = ACTIONS(1388), + [anon_sym_private] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_inline] = ACTIONS(1388), + [anon_sym_overload] = ACTIONS(1388), + [anon_sym_override] = ACTIONS(1388), + [anon_sym_final] = ACTIONS(1388), + [anon_sym_class] = ACTIONS(1388), + [anon_sym_interface] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_typedef] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(1388), + [anon_sym_var] = ACTIONS(1388), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [154] = { - [sym__rhs_expression] = STATE(994), - [sym__unaryExpression] = STATE(2770), - [sym_runtime_type_check_expression] = STATE(2770), - [sym_switch_expression] = STATE(2770), - [sym_cast_expression] = STATE(2770), - [sym_type_trace_expression] = STATE(2770), - [sym__parenthesized_expression] = STATE(2524), - [sym_range_expression] = STATE(2770), - [sym_subscript_expression] = STATE(2770), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(994), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1278), - [anon_sym_untyped] = ACTIONS(1280), - [anon_sym_break] = ACTIONS(1282), - [anon_sym_continue] = ACTIONS(1282), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym_member_expression] = STATE(548), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2912), + [sym_integer] = STATE(2912), + [sym_float] = STATE(2912), + [sym_bool] = STATE(2912), + [sym_string] = STATE(2296), + [sym_null] = STATE(2912), + [sym_array] = STATE(2912), + [sym_map] = STATE(2912), + [sym_object] = STATE(2912), + [sym_pair] = STATE(2912), + [aux_sym_member_expression_repeat1] = STATE(153), + [ts_builtin_sym_end] = ACTIONS(1313), + [sym_identifier] = ACTIONS(1568), + [anon_sym_POUND] = ACTIONS(1313), + [anon_sym_package] = ACTIONS(1315), + [anon_sym_import] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1315), + [anon_sym_throw] = ACTIONS(1315), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_for] = ACTIONS(1315), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1512), + [anon_sym_AT] = ACTIONS(1315), + [anon_sym_AT_COLON] = ACTIONS(1313), + [anon_sym_try] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_if] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_do] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [anon_sym_macro] = ACTIONS(1315), + [anon_sym_abstract] = ACTIONS(1315), + [anon_sym_static] = ACTIONS(1315), + [anon_sym_public] = ACTIONS(1315), + [anon_sym_private] = ACTIONS(1315), + [anon_sym_extern] = ACTIONS(1315), + [anon_sym_inline] = ACTIONS(1315), + [anon_sym_overload] = ACTIONS(1315), + [anon_sym_override] = ACTIONS(1315), + [anon_sym_final] = ACTIONS(1315), + [anon_sym_class] = ACTIONS(1315), + [anon_sym_interface] = ACTIONS(1315), + [anon_sym_enum] = ACTIONS(1315), + [anon_sym_typedef] = ACTIONS(1315), + [anon_sym_function] = ACTIONS(1315), + [anon_sym_var] = ACTIONS(1315), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [155] = { - [sym__rhs_expression] = STATE(81), - [sym__unaryExpression] = STATE(559), - [sym_runtime_type_check_expression] = STATE(559), - [sym_switch_expression] = STATE(559), - [sym_cast_expression] = STATE(559), - [sym_type_trace_expression] = STATE(559), - [sym__parenthesized_expression] = STATE(560), - [sym_range_expression] = STATE(559), - [sym_subscript_expression] = STATE(559), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(81), - [sym_operator] = STATE(1469), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(433), - [sym_integer] = STATE(433), - [sym_float] = STATE(433), - [sym_bool] = STATE(433), - [sym_string] = STATE(304), - [sym_null] = STATE(433), - [sym_array] = STATE(433), - [sym_map] = STATE(433), - [sym_object] = STATE(433), - [sym_pair] = STATE(433), - [sym_identifier] = ACTIONS(1284), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1286), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1288), - [anon_sym_untyped] = ACTIONS(1290), - [anon_sym_break] = ACTIONS(1292), - [anon_sym_continue] = ACTIONS(1292), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(1015), + [sym__unaryExpression] = STATE(2884), + [sym_runtime_type_check_expression] = STATE(2884), + [sym_switch_expression] = STATE(2884), + [sym_cast_expression] = STATE(2884), + [sym_type_trace_expression] = STATE(2884), + [sym__parenthesized_expression] = STATE(2456), + [sym_for_statement] = STATE(305), + [sym_range_expression] = STATE(2884), + [sym_subscript_expression] = STATE(2884), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_while_statement] = STATE(305), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1015), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1526), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1582), + [anon_sym_untyped] = ACTIONS(1584), + [anon_sym_break] = ACTIONS(1586), + [anon_sym_continue] = ACTIONS(1586), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1588), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [156] = { - [sym__rhs_expression] = STATE(973), - [sym__unaryExpression] = STATE(2670), - [sym_runtime_type_check_expression] = STATE(2670), - [sym_switch_expression] = STATE(2670), - [sym_cast_expression] = STATE(2670), - [sym_type_trace_expression] = STATE(2670), - [sym__parenthesized_expression] = STATE(2584), - [sym_range_expression] = STATE(2670), - [sym_subscript_expression] = STATE(2670), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(973), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1294), - [anon_sym_untyped] = ACTIONS(1296), - [anon_sym_break] = ACTIONS(1298), - [anon_sym_continue] = ACTIONS(1298), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(1011), + [sym__unaryExpression] = STATE(2846), + [sym_runtime_type_check_expression] = STATE(2846), + [sym_switch_expression] = STATE(2846), + [sym_cast_expression] = STATE(2846), + [sym_type_trace_expression] = STATE(2846), + [sym__parenthesized_expression] = STATE(2454), + [sym_for_statement] = STATE(264), + [sym_range_expression] = STATE(2846), + [sym_subscript_expression] = STATE(2846), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_while_statement] = STATE(264), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1011), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1578), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1592), + [anon_sym_untyped] = ACTIONS(1594), + [anon_sym_break] = ACTIONS(1596), + [anon_sym_continue] = ACTIONS(1596), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1598), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [157] = { - [sym__rhs_expression] = STATE(1004), - [sym__unaryExpression] = STATE(2798), - [sym_runtime_type_check_expression] = STATE(2798), - [sym_switch_expression] = STATE(2798), - [sym_cast_expression] = STATE(2798), - [sym_type_trace_expression] = STATE(2798), - [sym__parenthesized_expression] = STATE(2538), - [sym_range_expression] = STATE(2798), - [sym_subscript_expression] = STATE(2798), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1004), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1300), - [anon_sym_untyped] = ACTIONS(1302), - [anon_sym_break] = ACTIONS(1304), - [anon_sym_continue] = ACTIONS(1304), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(1032), + [sym__unaryExpression] = STATE(3107), + [sym_runtime_type_check_expression] = STATE(3107), + [sym_switch_expression] = STATE(3107), + [sym_cast_expression] = STATE(3107), + [sym_type_trace_expression] = STATE(3107), + [sym__parenthesized_expression] = STATE(2402), + [sym_for_statement] = STATE(315), + [sym_range_expression] = STATE(3107), + [sym_subscript_expression] = STATE(3107), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_while_statement] = STATE(315), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1032), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1546), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1600), + [anon_sym_untyped] = ACTIONS(1602), + [anon_sym_break] = ACTIONS(1604), + [anon_sym_continue] = ACTIONS(1604), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1606), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [158] = { - [sym__rhs_expression] = STATE(57), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(57), - [sym_operator] = STATE(1561), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(488), - [sym_integer] = STATE(488), - [sym_float] = STATE(488), - [sym_bool] = STATE(488), - [sym_string] = STATE(304), - [sym_null] = STATE(488), - [sym_array] = STATE(488), - [sym_map] = STATE(488), - [sym_object] = STATE(488), - [sym_pair] = STATE(488), - [sym_identifier] = ACTIONS(1306), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1308), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1310), - [anon_sym_untyped] = ACTIONS(1312), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(1021), + [sym__unaryExpression] = STATE(2944), + [sym_runtime_type_check_expression] = STATE(2944), + [sym_switch_expression] = STATE(2944), + [sym_cast_expression] = STATE(2944), + [sym_type_trace_expression] = STATE(2944), + [sym__parenthesized_expression] = STATE(2416), + [sym_for_statement] = STATE(323), + [sym_range_expression] = STATE(2944), + [sym_subscript_expression] = STATE(2944), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_while_statement] = STATE(323), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1021), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1513), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1608), + [anon_sym_untyped] = ACTIONS(1610), + [anon_sym_break] = ACTIONS(1612), + [anon_sym_continue] = ACTIONS(1612), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1614), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [159] = { - [sym__rhs_expression] = STATE(1028), - [sym__unaryExpression] = STATE(2706), - [sym_runtime_type_check_expression] = STATE(2706), - [sym_switch_expression] = STATE(2706), - [sym_cast_expression] = STATE(2706), - [sym_type_trace_expression] = STATE(2706), - [sym__parenthesized_expression] = STATE(2560), - [sym_range_expression] = STATE(2706), - [sym_subscript_expression] = STATE(2706), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1028), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1314), - [anon_sym_untyped] = ACTIONS(1316), - [anon_sym_break] = ACTIONS(1318), - [anon_sym_continue] = ACTIONS(1318), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(1024), + [sym__unaryExpression] = STATE(2991), + [sym_runtime_type_check_expression] = STATE(2991), + [sym_switch_expression] = STATE(2991), + [sym_cast_expression] = STATE(2991), + [sym_type_trace_expression] = STATE(2991), + [sym__parenthesized_expression] = STATE(2414), + [sym_for_statement] = STATE(311), + [sym_range_expression] = STATE(2991), + [sym_subscript_expression] = STATE(2991), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_while_statement] = STATE(311), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1024), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1536), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_for] = ACTIONS(1083), + [anon_sym_return] = ACTIONS(1616), + [anon_sym_untyped] = ACTIONS(1618), + [anon_sym_break] = ACTIONS(1620), + [anon_sym_continue] = ACTIONS(1620), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1622), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_while] = ACTIONS(1095), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [160] = { - [sym__rhs_expression] = STATE(1031), - [sym__unaryExpression] = STATE(2709), - [sym_runtime_type_check_expression] = STATE(2709), - [sym_switch_expression] = STATE(2709), - [sym_cast_expression] = STATE(2709), - [sym_type_trace_expression] = STATE(2709), - [sym__parenthesized_expression] = STATE(2559), - [sym_range_expression] = STATE(2709), - [sym_subscript_expression] = STATE(2709), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1031), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1320), - [anon_sym_untyped] = ACTIONS(1322), - [anon_sym_break] = ACTIONS(1324), - [anon_sym_continue] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(165), + [sym_runtime_type_check_expression] = STATE(165), + [sym_switch_expression] = STATE(165), + [sym_cast_expression] = STATE(165), + [sym_type_trace_expression] = STATE(165), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1626), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [161] = { - [sym__rhs_expression] = STATE(950), - [sym__unaryExpression] = STATE(2789), - [sym_runtime_type_check_expression] = STATE(2789), - [sym_switch_expression] = STATE(2789), - [sym_cast_expression] = STATE(2789), - [sym_type_trace_expression] = STATE(2789), - [sym__parenthesized_expression] = STATE(2512), - [sym_range_expression] = STATE(2789), - [sym_subscript_expression] = STATE(2789), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(950), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_untyped] = ACTIONS(1328), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(162), + [sym_runtime_type_check_expression] = STATE(162), + [sym_switch_expression] = STATE(162), + [sym_cast_expression] = STATE(162), + [sym_type_trace_expression] = STATE(162), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(162), + [sym_subscript_expression] = STATE(162), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_structure_type_pair] = STATE(3673), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [162] = { - [sym__rhs_expression] = STATE(779), - [sym__unaryExpression] = STATE(274), - [sym_runtime_type_check_expression] = STATE(274), - [sym_switch_expression] = STATE(274), - [sym_cast_expression] = STATE(274), - [sym_type_trace_expression] = STATE(274), - [sym__parenthesized_expression] = STATE(279), - [sym_range_expression] = STATE(274), - [sym_subscript_expression] = STATE(274), - [sym_member_expression] = STATE(260), - [sym__lhs_expression] = STATE(2181), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(779), - [sym_operator] = STATE(1456), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1198), - [sym_integer] = STATE(1198), - [sym_float] = STATE(1198), - [sym_bool] = STATE(1198), - [sym_string] = STATE(1175), - [sym_null] = STATE(1198), - [sym_array] = STATE(1198), - [sym_map] = STATE(1198), - [sym_object] = STATE(1198), - [sym_pair] = STATE(1198), - [sym_identifier] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(1008), - [anon_sym_switch] = ACTIONS(428), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_cast] = ACTIONS(1332), - [anon_sym_DOLLARtype] = ACTIONS(434), - [anon_sym_return] = ACTIONS(1334), - [anon_sym_untyped] = ACTIONS(1336), - [anon_sym_break] = ACTIONS(440), - [anon_sym_continue] = ACTIONS(440), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(538), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(165), + [sym_runtime_type_check_expression] = STATE(165), + [sym_switch_expression] = STATE(165), + [sym_cast_expression] = STATE(165), + [sym_type_trace_expression] = STATE(165), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1634), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [163] = { - [sym__rhs_expression] = STATE(1013), - [sym__unaryExpression] = STATE(2818), - [sym_runtime_type_check_expression] = STATE(2818), - [sym_switch_expression] = STATE(2818), - [sym_cast_expression] = STATE(2818), - [sym_type_trace_expression] = STATE(2818), - [sym__parenthesized_expression] = STATE(2498), - [sym_range_expression] = STATE(2818), - [sym_subscript_expression] = STATE(2818), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1013), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1338), - [anon_sym_untyped] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1342), - [anon_sym_continue] = ACTIONS(1342), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rangeOperator] = STATE(2488), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_package] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_using] = ACTIONS(1638), + [anon_sym_throw] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_RPAREN] = ACTIONS(1636), + [anon_sym_switch] = ACTIONS(1638), + [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_cast] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DOLLARtype] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_untyped] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1636), + [anon_sym_this] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_AT_COLON] = ACTIONS(1636), + [anon_sym_try] = ACTIONS(1638), + [anon_sym_catch] = ACTIONS(1638), + [anon_sym_else] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1638), + [anon_sym_GT_GT_GT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_EQ_GT] = ACTIONS(1636), + [anon_sym_QMARK_QMARK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1638), + [anon_sym_macro] = ACTIONS(1638), + [anon_sym_abstract] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_public] = ACTIONS(1638), + [anon_sym_private] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_inline] = ACTIONS(1638), + [anon_sym_overload] = ACTIONS(1638), + [anon_sym_override] = ACTIONS(1638), + [anon_sym_final] = ACTIONS(1638), + [anon_sym_class] = ACTIONS(1638), + [anon_sym_interface] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_typedef] = ACTIONS(1638), + [anon_sym_function] = ACTIONS(1638), + [anon_sym_var] = ACTIONS(1638), + [aux_sym_integer_token1] = ACTIONS(1638), + [aux_sym_integer_token2] = ACTIONS(1636), + [aux_sym_float_token1] = ACTIONS(1638), + [aux_sym_float_token2] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [aux_sym_string_token1] = ACTIONS(1636), + [aux_sym_string_token3] = ACTIONS(1636), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [164] = { - [sym__rhs_expression] = STATE(1008), - [sym__unaryExpression] = STATE(2889), - [sym_runtime_type_check_expression] = STATE(2889), - [sym_switch_expression] = STATE(2889), - [sym_cast_expression] = STATE(2889), - [sym_type_trace_expression] = STATE(2889), - [sym__parenthesized_expression] = STATE(2452), - [sym_range_expression] = STATE(2889), - [sym_subscript_expression] = STATE(2889), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1008), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1344), - [anon_sym_untyped] = ACTIONS(1346), - [anon_sym_break] = ACTIONS(1348), - [anon_sym_continue] = ACTIONS(1348), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(165), + [sym_runtime_type_check_expression] = STATE(165), + [sym_switch_expression] = STATE(165), + [sym_cast_expression] = STATE(165), + [sym_type_trace_expression] = STATE(165), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1642), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [165] = { - [sym__rhs_expression] = STATE(1023), - [sym__unaryExpression] = STATE(2716), - [sym_runtime_type_check_expression] = STATE(2716), - [sym_switch_expression] = STATE(2716), - [sym_cast_expression] = STATE(2716), - [sym_type_trace_expression] = STATE(2716), - [sym__parenthesized_expression] = STATE(2553), - [sym_range_expression] = STATE(2716), - [sym_subscript_expression] = STATE(2716), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(1023), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1350), - [anon_sym_untyped] = ACTIONS(1352), - [anon_sym_break] = ACTIONS(1354), - [anon_sym_continue] = ACTIONS(1354), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(165), + [sym_runtime_type_check_expression] = STATE(165), + [sym_switch_expression] = STATE(165), + [sym_cast_expression] = STATE(165), + [sym_type_trace_expression] = STATE(165), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1644), + [anon_sym_STAR] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1658), + [anon_sym_cast] = ACTIONS(1661), + [anon_sym_DOLLARtype] = ACTIONS(1664), + [anon_sym_return] = ACTIONS(1667), + [anon_sym_untyped] = ACTIONS(1670), + [anon_sym_break] = ACTIONS(1673), + [anon_sym_continue] = ACTIONS(1673), + [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_this] = ACTIONS(1679), + [anon_sym_new] = ACTIONS(1682), + [anon_sym_TILDE] = ACTIONS(1685), + [anon_sym_BANG] = ACTIONS(1688), + [anon_sym_DASH] = ACTIONS(1691), + [anon_sym_PLUS_PLUS] = ACTIONS(1694), + [anon_sym_DASH_DASH] = ACTIONS(1694), + [anon_sym_PERCENT] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1697), + [anon_sym_PLUS] = ACTIONS(1697), + [anon_sym_LT_LT] = ACTIONS(1647), + [anon_sym_GT_GT] = ACTIONS(1697), + [anon_sym_GT_GT_GT] = ACTIONS(1647), + [anon_sym_AMP] = ACTIONS(1697), + [anon_sym_PIPE] = ACTIONS(1697), + [anon_sym_CARET] = ACTIONS(1647), + [anon_sym_AMP_AMP] = ACTIONS(1685), + [anon_sym_PIPE_PIPE] = ACTIONS(1685), + [anon_sym_EQ_EQ] = ACTIONS(1685), + [anon_sym_BANG_EQ] = ACTIONS(1685), + [anon_sym_LT] = ACTIONS(1688), + [anon_sym_LT_EQ] = ACTIONS(1685), + [anon_sym_GT] = ACTIONS(1688), + [anon_sym_GT_EQ] = ACTIONS(1685), + [anon_sym_EQ_GT] = ACTIONS(1685), + [anon_sym_QMARK_QMARK] = ACTIONS(1685), + [anon_sym_EQ] = ACTIONS(1688), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1700), + [anon_sym_null] = ACTIONS(1703), + [aux_sym_integer_token1] = ACTIONS(1706), + [aux_sym_integer_token2] = ACTIONS(1709), + [aux_sym_float_token1] = ACTIONS(1712), + [aux_sym_float_token2] = ACTIONS(1715), + [anon_sym_true] = ACTIONS(1718), + [anon_sym_false] = ACTIONS(1718), + [aux_sym_string_token1] = ACTIONS(1721), + [aux_sym_string_token3] = ACTIONS(1724), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [166] = { - [sym__rhs_expression] = STATE(986), - [sym__unaryExpression] = STATE(2735), - [sym_runtime_type_check_expression] = STATE(2735), - [sym_switch_expression] = STATE(2735), - [sym_cast_expression] = STATE(2735), - [sym_type_trace_expression] = STATE(2735), - [sym__parenthesized_expression] = STATE(2539), - [sym_range_expression] = STATE(2735), - [sym_subscript_expression] = STATE(2735), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(986), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1356), - [anon_sym_untyped] = ACTIONS(1358), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rangeOperator] = STATE(2488), + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [167] = { - [sym__rhs_expression] = STATE(840), - [sym__unaryExpression] = STATE(191), - [sym_runtime_type_check_expression] = STATE(191), - [sym_switch_expression] = STATE(191), - [sym_cast_expression] = STATE(191), - [sym_type_trace_expression] = STATE(191), - [sym__parenthesized_expression] = STATE(192), - [sym_range_expression] = STATE(191), - [sym_subscript_expression] = STATE(191), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(840), - [sym_operator] = STATE(1496), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(1362), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1364), - [anon_sym_untyped] = ACTIONS(1366), - [anon_sym_break] = ACTIONS(410), - [anon_sym_continue] = ACTIONS(410), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(160), + [sym_runtime_type_check_expression] = STATE(160), + [sym_switch_expression] = STATE(160), + [sym_cast_expression] = STATE(160), + [sym_type_trace_expression] = STATE(160), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(160), + [sym_subscript_expression] = STATE(160), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_structure_type_pair] = STATE(3652), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [168] = { - [sym__rhs_expression] = STATE(940), - [sym__unaryExpression] = STATE(2890), - [sym_runtime_type_check_expression] = STATE(2890), - [sym_switch_expression] = STATE(2890), - [sym_cast_expression] = STATE(2890), - [sym_type_trace_expression] = STATE(2890), - [sym__parenthesized_expression] = STATE(2461), - [sym_range_expression] = STATE(2890), - [sym_subscript_expression] = STATE(2890), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(940), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1368), - [anon_sym_untyped] = ACTIONS(1370), - [anon_sym_break] = ACTIONS(1372), - [anon_sym_continue] = ACTIONS(1372), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(165), + [sym_runtime_type_check_expression] = STATE(165), + [sym_switch_expression] = STATE(165), + [sym_cast_expression] = STATE(165), + [sym_type_trace_expression] = STATE(165), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [169] = { - [sym__rhs_expression] = STATE(969), - [sym__unaryExpression] = STATE(2882), - [sym_runtime_type_check_expression] = STATE(2882), - [sym_switch_expression] = STATE(2882), - [sym_cast_expression] = STATE(2882), - [sym_type_trace_expression] = STATE(2882), - [sym__parenthesized_expression] = STATE(2458), - [sym_range_expression] = STATE(2882), - [sym_subscript_expression] = STATE(2882), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(969), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1374), - [anon_sym_untyped] = ACTIONS(1376), - [anon_sym_break] = ACTIONS(1378), - [anon_sym_continue] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(168), + [sym_runtime_type_check_expression] = STATE(168), + [sym_switch_expression] = STATE(168), + [sym_cast_expression] = STATE(168), + [sym_type_trace_expression] = STATE(168), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(168), + [sym_subscript_expression] = STATE(168), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_structure_type_pair] = STATE(3635), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [170] = { - [sym__rhs_expression] = STATE(886), - [sym__unaryExpression] = STATE(2460), - [sym_runtime_type_check_expression] = STATE(2460), - [sym_switch_expression] = STATE(2460), - [sym_cast_expression] = STATE(2460), - [sym_type_trace_expression] = STATE(2460), - [sym__parenthesized_expression] = STATE(2424), - [sym_range_expression] = STATE(2460), - [sym_subscript_expression] = STATE(2460), - [sym_member_expression] = STATE(217), - [sym__lhs_expression] = STATE(2179), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(886), - [sym_operator] = STATE(1593), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1325), - [sym_integer] = STATE(1325), - [sym_float] = STATE(1325), - [sym_bool] = STATE(1325), - [sym_string] = STATE(1204), - [sym_null] = STATE(1325), - [sym_array] = STATE(1325), - [sym_map] = STATE(1325), - [sym_object] = STATE(1325), - [sym_pair] = STATE(1325), - [sym_identifier] = ACTIONS(718), - [anon_sym_LPAREN] = ACTIONS(616), - [anon_sym_switch] = ACTIONS(360), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(722), - [anon_sym_DOLLARtype] = ACTIONS(366), - [anon_sym_return] = ACTIONS(1380), - [anon_sym_untyped] = ACTIONS(1382), - [anon_sym_break] = ACTIONS(1384), - [anon_sym_continue] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(552), - [anon_sym_new] = ACTIONS(414), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(165), + [sym_runtime_type_check_expression] = STATE(165), + [sym_switch_expression] = STATE(165), + [sym_cast_expression] = STATE(165), + [sym_type_trace_expression] = STATE(165), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(165), + [sym_subscript_expression] = STATE(165), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(165), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1628), + [anon_sym_continue] = ACTIONS(1628), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [171] = { - [sym__rhs_expression] = STATE(949), - [sym__unaryExpression] = STATE(2845), - [sym_runtime_type_check_expression] = STATE(2845), - [sym_switch_expression] = STATE(2845), - [sym_cast_expression] = STATE(2845), - [sym_type_trace_expression] = STATE(2845), - [sym__parenthesized_expression] = STATE(2478), - [sym_range_expression] = STATE(2845), - [sym_subscript_expression] = STATE(2845), - [sym_member_expression] = STATE(1319), - [sym__lhs_expression] = STATE(2161), - [sym__call] = STATE(1633), - [sym__constructor_call] = STATE(1635), - [sym_call_expression] = STATE(949), - [sym_operator] = STATE(1621), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [sym__literal] = STATE(1589), - [sym_integer] = STATE(1589), - [sym_float] = STATE(1589), - [sym_bool] = STATE(1589), - [sym_string] = STATE(1384), - [sym_null] = STATE(1589), - [sym_array] = STATE(1589), - [sym_map] = STATE(1589), - [sym_object] = STATE(1589), - [sym_pair] = STATE(1589), - [sym_identifier] = ACTIONS(7), - [anon_sym_LPAREN] = ACTIONS(19), - [anon_sym_switch] = ACTIONS(21), - [anon_sym_LBRACE] = ACTIONS(854), - [anon_sym_cast] = ACTIONS(25), - [anon_sym_DOLLARtype] = ACTIONS(27), - [anon_sym_return] = ACTIONS(1386), - [anon_sym_untyped] = ACTIONS(1388), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_LBRACK] = ACTIONS(35), - [anon_sym_this] = ACTIONS(37), - [anon_sym_new] = ACTIONS(45), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(59), - [aux_sym_integer_token1] = ACTIONS(77), - [aux_sym_integer_token2] = ACTIONS(79), - [aux_sym_float_token1] = ACTIONS(81), - [aux_sym_float_token2] = ACTIONS(83), - [anon_sym_true] = ACTIONS(85), - [anon_sym_false] = ACTIONS(85), - [aux_sym_string_token1] = ACTIONS(87), - [aux_sym_string_token3] = ACTIONS(89), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(164), + [sym_runtime_type_check_expression] = STATE(164), + [sym_switch_expression] = STATE(164), + [sym_cast_expression] = STATE(164), + [sym_type_trace_expression] = STATE(164), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(164), + [sym_subscript_expression] = STATE(164), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_structure_type_pair] = STATE(3388), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [172] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_package] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_import] = ACTIONS(1394), - [anon_sym_using] = ACTIONS(1394), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_RBRACE] = ACTIONS(1392), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_COLON] = ACTIONS(1392), - [anon_sym_cast] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1392), - [anon_sym_DOLLARtype] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_untyped] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_RBRACK] = ACTIONS(1392), - [anon_sym_this] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_AT_COLON] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_elseif] = ACTIONS(1392), - [anon_sym_new] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_EQ_GT] = ACTIONS(1392), - [anon_sym_QMARK_QMARK] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1394), - [sym__rangeOperator] = ACTIONS(1392), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_macro] = ACTIONS(1394), - [anon_sym_abstract] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_overload] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_final] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1394), - [anon_sym_interface] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_function] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [aux_sym_integer_token1] = ACTIONS(1394), - [aux_sym_integer_token2] = ACTIONS(1392), - [aux_sym_float_token1] = ACTIONS(1394), - [aux_sym_float_token2] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [aux_sym_string_token1] = ACTIONS(1392), - [aux_sym_string_token3] = ACTIONS(1392), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(170), + [sym_runtime_type_check_expression] = STATE(170), + [sym_switch_expression] = STATE(170), + [sym_cast_expression] = STATE(170), + [sym_type_trace_expression] = STATE(170), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_structure_type_pair] = STATE(3369), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1630), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [173] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_package] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_import] = ACTIONS(1398), - [anon_sym_using] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COLON] = ACTIONS(1396), - [anon_sym_cast] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_DOLLARtype] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_untyped] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_RBRACK] = ACTIONS(1396), - [anon_sym_this] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_AT_COLON] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_elseif] = ACTIONS(1396), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_EQ_GT] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1398), - [sym__rangeOperator] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_macro] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_public] = ACTIONS(1398), - [anon_sym_private] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_overload] = ACTIONS(1398), - [anon_sym_override] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_interface] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [aux_sym_integer_token1] = ACTIONS(1398), - [aux_sym_integer_token2] = ACTIONS(1396), - [aux_sym_float_token1] = ACTIONS(1398), - [aux_sym_float_token2] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [aux_sym_string_token1] = ACTIONS(1396), - [aux_sym_string_token3] = ACTIONS(1396), + [sym__rhs_expression] = STATE(1065), + [sym__unaryExpression] = STATE(2972), + [sym_runtime_type_check_expression] = STATE(2972), + [sym_switch_expression] = STATE(2972), + [sym_cast_expression] = STATE(2972), + [sym_type_trace_expression] = STATE(2972), + [sym__parenthesized_expression] = STATE(2408), + [sym_range_expression] = STATE(2972), + [sym_subscript_expression] = STATE(2972), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1065), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1737), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1739), + [anon_sym_untyped] = ACTIONS(1741), + [anon_sym_break] = ACTIONS(1743), + [anon_sym_continue] = ACTIONS(1743), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [174] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_package] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_COLON] = ACTIONS(1400), - [anon_sym_cast] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_DOLLARtype] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_untyped] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_RBRACK] = ACTIONS(1400), - [anon_sym_this] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_AT_COLON] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_elseif] = ACTIONS(1400), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_GT] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [sym__rangeOperator] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_macro] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_overload] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_final] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [aux_sym_integer_token1] = ACTIONS(1402), - [aux_sym_integer_token2] = ACTIONS(1400), - [aux_sym_float_token1] = ACTIONS(1402), - [aux_sym_float_token2] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [aux_sym_string_token1] = ACTIONS(1400), - [aux_sym_string_token3] = ACTIONS(1400), + [sym__rhs_expression] = STATE(1057), + [sym__unaryExpression] = STATE(2876), + [sym_runtime_type_check_expression] = STATE(2876), + [sym_switch_expression] = STATE(2876), + [sym_cast_expression] = STATE(2876), + [sym_type_trace_expression] = STATE(2876), + [sym__parenthesized_expression] = STATE(2444), + [sym_range_expression] = STATE(2876), + [sym_subscript_expression] = STATE(2876), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1057), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1745), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1747), + [anon_sym_untyped] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1751), + [anon_sym_continue] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [175] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_package] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_using] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_RBRACE] = ACTIONS(1404), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_COLON] = ACTIONS(1404), - [anon_sym_cast] = ACTIONS(1406), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_DOLLARtype] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_untyped] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_RBRACK] = ACTIONS(1404), - [anon_sym_this] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_AT_COLON] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_elseif] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1406), - [anon_sym_GT_GT_GT] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1404), - [anon_sym_BANG_EQ] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_EQ_GT] = ACTIONS(1404), - [anon_sym_QMARK_QMARK] = ACTIONS(1404), - [anon_sym_EQ] = ACTIONS(1406), - [sym__rangeOperator] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_macro] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_overload] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_final] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_interface] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [aux_sym_integer_token1] = ACTIONS(1406), - [aux_sym_integer_token2] = ACTIONS(1404), - [aux_sym_float_token1] = ACTIONS(1406), - [aux_sym_float_token2] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym_string_token1] = ACTIONS(1404), - [aux_sym_string_token3] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_package] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_COLON] = ACTIONS(1757), + [anon_sym_cast] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_DOLLARtype] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_untyped] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_RBRACK] = ACTIONS(1753), + [anon_sym_this] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_AT_COLON] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_EQ_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_null] = ACTIONS(1755), + [anon_sym_macro] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_overload] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_final] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_typedef] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [aux_sym_integer_token1] = ACTIONS(1755), + [aux_sym_integer_token2] = ACTIONS(1753), + [aux_sym_float_token1] = ACTIONS(1755), + [aux_sym_float_token2] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1753), + [aux_sym_string_token3] = ACTIONS(1753), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [176] = { - [ts_builtin_sym_end] = ACTIONS(1408), - [sym_identifier] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_package] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_import] = ACTIONS(1410), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_throw] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_RPAREN] = ACTIONS(1408), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1408), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_COLON] = ACTIONS(1408), - [anon_sym_cast] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_DOLLARtype] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_untyped] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_RBRACK] = ACTIONS(1408), - [anon_sym_this] = ACTIONS(1410), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_AT_COLON] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PERCENT] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1408), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_GT_GT_GT] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1408), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1408), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_EQ_GT] = ACTIONS(1408), - [anon_sym_QMARK_QMARK] = ACTIONS(1408), - [anon_sym_EQ] = ACTIONS(1410), - [sym__rangeOperator] = ACTIONS(1408), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_macro] = ACTIONS(1410), - [anon_sym_abstract] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_public] = ACTIONS(1410), - [anon_sym_private] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_overload] = ACTIONS(1410), - [anon_sym_override] = ACTIONS(1410), - [anon_sym_final] = ACTIONS(1410), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_interface] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_function] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [aux_sym_integer_token1] = ACTIONS(1410), - [aux_sym_integer_token2] = ACTIONS(1408), - [aux_sym_float_token1] = ACTIONS(1410), - [aux_sym_float_token2] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym_string_token1] = ACTIONS(1408), - [aux_sym_string_token3] = ACTIONS(1408), + [ts_builtin_sym_end] = ACTIONS(1759), + [sym_identifier] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_package] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1761), + [anon_sym_throw] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1761), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_COLON] = ACTIONS(1759), + [anon_sym_cast] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_DOLLARtype] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_untyped] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_RBRACK] = ACTIONS(1759), + [anon_sym_this] = ACTIONS(1761), + [anon_sym_QMARK] = ACTIONS(1761), + [anon_sym_AT] = ACTIONS(1761), + [anon_sym_AT_COLON] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_catch] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1759), + [anon_sym_DASH_DASH] = ACTIONS(1759), + [anon_sym_PERCENT] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1759), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_GT_GT_GT] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1759), + [anon_sym_AMP_AMP] = ACTIONS(1759), + [anon_sym_PIPE_PIPE] = ACTIONS(1759), + [anon_sym_EQ_EQ] = ACTIONS(1759), + [anon_sym_BANG_EQ] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1759), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1759), + [anon_sym_EQ_GT] = ACTIONS(1759), + [anon_sym_QMARK_QMARK] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_null] = ACTIONS(1761), + [anon_sym_macro] = ACTIONS(1761), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1761), + [anon_sym_public] = ACTIONS(1761), + [anon_sym_private] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_inline] = ACTIONS(1761), + [anon_sym_overload] = ACTIONS(1761), + [anon_sym_override] = ACTIONS(1761), + [anon_sym_final] = ACTIONS(1761), + [anon_sym_class] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_typedef] = ACTIONS(1761), + [anon_sym_function] = ACTIONS(1761), + [anon_sym_var] = ACTIONS(1761), + [aux_sym_integer_token1] = ACTIONS(1761), + [aux_sym_integer_token2] = ACTIONS(1759), + [aux_sym_float_token1] = ACTIONS(1761), + [aux_sym_float_token2] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1761), + [anon_sym_false] = ACTIONS(1761), + [aux_sym_string_token1] = ACTIONS(1759), + [aux_sym_string_token3] = ACTIONS(1759), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [177] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_package] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_import] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_throw] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_RPAREN] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1412), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_COLON] = ACTIONS(1412), - [anon_sym_cast] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_DOLLARtype] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_untyped] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_RBRACK] = ACTIONS(1412), - [anon_sym_this] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_AT_COLON] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1414), - [anon_sym_GT_GT_GT] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_EQ_GT] = ACTIONS(1412), - [anon_sym_QMARK_QMARK] = ACTIONS(1412), - [anon_sym_EQ] = ACTIONS(1414), - [sym__rangeOperator] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_macro] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_public] = ACTIONS(1414), - [anon_sym_private] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_overload] = ACTIONS(1414), - [anon_sym_override] = ACTIONS(1414), - [anon_sym_final] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_interface] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_function] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [aux_sym_integer_token1] = ACTIONS(1414), - [aux_sym_integer_token2] = ACTIONS(1412), - [aux_sym_float_token1] = ACTIONS(1414), - [aux_sym_float_token2] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym_string_token1] = ACTIONS(1412), - [aux_sym_string_token3] = ACTIONS(1412), + [ts_builtin_sym_end] = ACTIONS(1763), + [sym_identifier] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_package] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_RPAREN] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_RBRACE] = ACTIONS(1763), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_COLON] = ACTIONS(1763), + [anon_sym_cast] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_DOLLARtype] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_untyped] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_RBRACK] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_AT_COLON] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_GT_GT_GT] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_EQ_GT] = ACTIONS(1763), + [anon_sym_QMARK_QMARK] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1766), + [anon_sym_macro] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_inline] = ACTIONS(1766), + [anon_sym_overload] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_final] = ACTIONS(1766), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_typedef] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [aux_sym_integer_token1] = ACTIONS(1766), + [aux_sym_integer_token2] = ACTIONS(1763), + [aux_sym_float_token1] = ACTIONS(1766), + [aux_sym_float_token2] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [aux_sym_string_token1] = ACTIONS(1763), + [aux_sym_string_token3] = ACTIONS(1763), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [178] = { - [ts_builtin_sym_end] = ACTIONS(1416), - [sym_identifier] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_package] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_import] = ACTIONS(1418), - [anon_sym_using] = ACTIONS(1418), - [anon_sym_throw] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_RPAREN] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1416), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_COLON] = ACTIONS(1416), - [anon_sym_cast] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLARtype] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_untyped] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_RBRACK] = ACTIONS(1416), - [anon_sym_this] = ACTIONS(1418), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_AT_COLON] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1418), - [anon_sym_GT_GT_GT] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_PIPE_PIPE] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1416), - [anon_sym_BANG_EQ] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_EQ_GT] = ACTIONS(1416), - [anon_sym_QMARK_QMARK] = ACTIONS(1416), - [anon_sym_EQ] = ACTIONS(1418), - [sym__rangeOperator] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_macro] = ACTIONS(1418), - [anon_sym_abstract] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_public] = ACTIONS(1418), - [anon_sym_private] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_overload] = ACTIONS(1418), - [anon_sym_override] = ACTIONS(1418), - [anon_sym_final] = ACTIONS(1418), - [anon_sym_class] = ACTIONS(1418), - [anon_sym_interface] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [aux_sym_integer_token1] = ACTIONS(1418), - [aux_sym_integer_token2] = ACTIONS(1416), - [aux_sym_float_token1] = ACTIONS(1418), - [aux_sym_float_token2] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym_string_token1] = ACTIONS(1416), - [aux_sym_string_token3] = ACTIONS(1416), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(168), + [sym_runtime_type_check_expression] = STATE(168), + [sym_switch_expression] = STATE(168), + [sym_cast_expression] = STATE(168), + [sym_type_trace_expression] = STATE(168), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(168), + [sym_subscript_expression] = STATE(168), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(168), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [179] = { - [ts_builtin_sym_end] = ACTIONS(1420), - [sym_identifier] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_package] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_import] = ACTIONS(1422), - [anon_sym_using] = ACTIONS(1422), - [anon_sym_throw] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_RPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1420), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_COLON] = ACTIONS(1420), - [anon_sym_cast] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_DOLLARtype] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_untyped] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_RBRACK] = ACTIONS(1420), - [anon_sym_this] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_AT_COLON] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_GT_GT_GT] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ_GT] = ACTIONS(1420), - [anon_sym_QMARK_QMARK] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [sym__rangeOperator] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_macro] = ACTIONS(1422), - [anon_sym_abstract] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_overload] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_final] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1422), - [anon_sym_interface] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [aux_sym_integer_token1] = ACTIONS(1422), - [aux_sym_integer_token2] = ACTIONS(1420), - [aux_sym_float_token1] = ACTIONS(1422), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [aux_sym_string_token3] = ACTIONS(1420), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(160), + [sym_runtime_type_check_expression] = STATE(160), + [sym_switch_expression] = STATE(160), + [sym_cast_expression] = STATE(160), + [sym_type_trace_expression] = STATE(160), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(160), + [sym_subscript_expression] = STATE(160), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(160), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [180] = { - [ts_builtin_sym_end] = ACTIONS(1424), - [sym_identifier] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_package] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_using] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_RPAREN] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1424), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_COLON] = ACTIONS(1424), - [anon_sym_cast] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_DOLLARtype] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_untyped] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_RBRACK] = ACTIONS(1424), - [anon_sym_this] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_AT_COLON] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PERCENT] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_GT_GT_GT] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ_GT] = ACTIONS(1424), - [anon_sym_QMARK_QMARK] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [sym__rangeOperator] = ACTIONS(1424), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_macro] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_overload] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_final] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_interface] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [aux_sym_integer_token1] = ACTIONS(1426), - [aux_sym_integer_token2] = ACTIONS(1424), - [aux_sym_float_token1] = ACTIONS(1426), - [aux_sym_float_token2] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym_string_token1] = ACTIONS(1424), - [aux_sym_string_token3] = ACTIONS(1424), + [ts_builtin_sym_end] = ACTIONS(1769), + [sym_identifier] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_package] = ACTIONS(1771), + [anon_sym_DOT] = ACTIONS(1771), + [anon_sym_import] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_RPAREN] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1771), + [anon_sym_RBRACE] = ACTIONS(1769), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_COLON] = ACTIONS(1769), + [anon_sym_cast] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_DOLLARtype] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_untyped] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_RBRACK] = ACTIONS(1769), + [anon_sym_this] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_AT_COLON] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1771), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_EQ_GT] = ACTIONS(1769), + [anon_sym_QMARK_QMARK] = ACTIONS(1769), + [anon_sym_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1771), + [anon_sym_macro] = ACTIONS(1771), + [anon_sym_abstract] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_public] = ACTIONS(1771), + [anon_sym_private] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_inline] = ACTIONS(1771), + [anon_sym_overload] = ACTIONS(1771), + [anon_sym_override] = ACTIONS(1771), + [anon_sym_final] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1771), + [anon_sym_interface] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_typedef] = ACTIONS(1771), + [anon_sym_function] = ACTIONS(1771), + [anon_sym_var] = ACTIONS(1771), + [aux_sym_integer_token1] = ACTIONS(1771), + [aux_sym_integer_token2] = ACTIONS(1769), + [aux_sym_float_token1] = ACTIONS(1771), + [aux_sym_float_token2] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [aux_sym_string_token1] = ACTIONS(1769), + [aux_sym_string_token3] = ACTIONS(1769), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [181] = { - [ts_builtin_sym_end] = ACTIONS(1428), - [sym_identifier] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_package] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_RPAREN] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_COLON] = ACTIONS(1428), - [anon_sym_cast] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_DOLLARtype] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_untyped] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_RBRACK] = ACTIONS(1428), - [anon_sym_this] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1430), - [anon_sym_AT_COLON] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_GT_GT_GT] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1428), - [anon_sym_QMARK_QMARK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [sym__rangeOperator] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1430), - [anon_sym_macro] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_public] = ACTIONS(1430), - [anon_sym_private] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_overload] = ACTIONS(1430), - [anon_sym_override] = ACTIONS(1430), - [anon_sym_final] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_interface] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_function] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [aux_sym_integer_token1] = ACTIONS(1430), - [aux_sym_integer_token2] = ACTIONS(1428), - [aux_sym_float_token1] = ACTIONS(1430), - [aux_sym_float_token2] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [aux_sym_string_token1] = ACTIONS(1428), - [aux_sym_string_token3] = ACTIONS(1428), + [ts_builtin_sym_end] = ACTIONS(1773), + [sym_identifier] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_package] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1775), + [anon_sym_throw] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_RPAREN] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_RBRACE] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_COLON] = ACTIONS(1773), + [anon_sym_cast] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_DOLLARtype] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_untyped] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_RBRACK] = ACTIONS(1773), + [anon_sym_this] = ACTIONS(1775), + [anon_sym_QMARK] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_AT_COLON] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1775), + [anon_sym_catch] = ACTIONS(1775), + [anon_sym_else] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_do] = ACTIONS(1775), + [anon_sym_new] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PERCENT] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1773), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_GT_GT_GT] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1773), + [anon_sym_PIPE_PIPE] = ACTIONS(1773), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_EQ_GT] = ACTIONS(1773), + [anon_sym_QMARK_QMARK] = ACTIONS(1773), + [anon_sym_EQ] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1775), + [anon_sym_macro] = ACTIONS(1775), + [anon_sym_abstract] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_public] = ACTIONS(1775), + [anon_sym_private] = ACTIONS(1775), + [anon_sym_extern] = ACTIONS(1775), + [anon_sym_inline] = ACTIONS(1775), + [anon_sym_overload] = ACTIONS(1775), + [anon_sym_override] = ACTIONS(1775), + [anon_sym_final] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_typedef] = ACTIONS(1775), + [anon_sym_function] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(1775), + [aux_sym_integer_token1] = ACTIONS(1775), + [aux_sym_integer_token2] = ACTIONS(1773), + [aux_sym_float_token1] = ACTIONS(1775), + [aux_sym_float_token2] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [aux_sym_string_token1] = ACTIONS(1773), + [aux_sym_string_token3] = ACTIONS(1773), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [182] = { - [ts_builtin_sym_end] = ACTIONS(1432), - [sym_identifier] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_package] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_import] = ACTIONS(1434), - [anon_sym_using] = ACTIONS(1434), - [anon_sym_throw] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_RPAREN] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1432), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_COLON] = ACTIONS(1432), - [anon_sym_cast] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_untyped] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_RBRACK] = ACTIONS(1432), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1434), - [anon_sym_AT_COLON] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1432), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1432), - [anon_sym_PIPE_PIPE] = ACTIONS(1432), - [anon_sym_EQ_EQ] = ACTIONS(1432), - [anon_sym_BANG_EQ] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1432), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_EQ] = ACTIONS(1432), - [anon_sym_EQ_GT] = ACTIONS(1432), - [anon_sym_QMARK_QMARK] = ACTIONS(1432), - [anon_sym_EQ] = ACTIONS(1434), - [sym__rangeOperator] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1434), - [anon_sym_macro] = ACTIONS(1434), - [anon_sym_abstract] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_public] = ACTIONS(1434), - [anon_sym_private] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_overload] = ACTIONS(1434), - [anon_sym_override] = ACTIONS(1434), - [anon_sym_final] = ACTIONS(1434), - [anon_sym_class] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(1434), - [anon_sym_var] = ACTIONS(1434), - [aux_sym_integer_token1] = ACTIONS(1434), - [aux_sym_integer_token2] = ACTIONS(1432), - [aux_sym_float_token1] = ACTIONS(1434), - [aux_sym_float_token2] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [aux_sym_string_token1] = ACTIONS(1432), - [aux_sym_string_token3] = ACTIONS(1432), + [ts_builtin_sym_end] = ACTIONS(1777), + [sym_identifier] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1777), + [anon_sym_package] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1779), + [anon_sym_import] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1779), + [anon_sym_throw] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_RPAREN] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1779), + [anon_sym_RBRACE] = ACTIONS(1777), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_COLON] = ACTIONS(1777), + [anon_sym_cast] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_DOLLARtype] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_untyped] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_RBRACK] = ACTIONS(1777), + [anon_sym_this] = ACTIONS(1779), + [anon_sym_QMARK] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_AT_COLON] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1779), + [anon_sym_GT_GT_GT] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(1777), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_EQ_EQ] = ACTIONS(1777), + [anon_sym_BANG_EQ] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_LT_EQ] = ACTIONS(1777), + [anon_sym_GT] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1777), + [anon_sym_EQ_GT] = ACTIONS(1777), + [anon_sym_QMARK_QMARK] = ACTIONS(1777), + [anon_sym_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1777), + [anon_sym_null] = ACTIONS(1779), + [anon_sym_macro] = ACTIONS(1779), + [anon_sym_abstract] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_public] = ACTIONS(1779), + [anon_sym_private] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_inline] = ACTIONS(1779), + [anon_sym_overload] = ACTIONS(1779), + [anon_sym_override] = ACTIONS(1779), + [anon_sym_final] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_typedef] = ACTIONS(1779), + [anon_sym_function] = ACTIONS(1779), + [anon_sym_var] = ACTIONS(1779), + [aux_sym_integer_token1] = ACTIONS(1779), + [aux_sym_integer_token2] = ACTIONS(1777), + [aux_sym_float_token1] = ACTIONS(1779), + [aux_sym_float_token2] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1779), + [anon_sym_false] = ACTIONS(1779), + [aux_sym_string_token1] = ACTIONS(1777), + [aux_sym_string_token3] = ACTIONS(1777), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [183] = { - [ts_builtin_sym_end] = ACTIONS(1436), - [sym_identifier] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_package] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_RPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_RBRACE] = ACTIONS(1436), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_COLON] = ACTIONS(1436), - [anon_sym_cast] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_DOLLARtype] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_untyped] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_RBRACK] = ACTIONS(1436), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AT_COLON] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_EQ_GT] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_EQ] = ACTIONS(1438), - [sym__rangeOperator] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_macro] = ACTIONS(1438), - [anon_sym_abstract] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_overload] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_final] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_interface] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [aux_sym_integer_token1] = ACTIONS(1438), - [aux_sym_integer_token2] = ACTIONS(1436), - [aux_sym_float_token1] = ACTIONS(1438), - [aux_sym_float_token2] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [aux_sym_string_token1] = ACTIONS(1436), - [aux_sym_string_token3] = ACTIONS(1436), + [ts_builtin_sym_end] = ACTIONS(1781), + [sym_identifier] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_package] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_import] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1783), + [anon_sym_throw] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_RPAREN] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1783), + [anon_sym_RBRACE] = ACTIONS(1781), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_COLON] = ACTIONS(1781), + [anon_sym_cast] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_DOLLARtype] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_untyped] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_RBRACK] = ACTIONS(1781), + [anon_sym_this] = ACTIONS(1783), + [anon_sym_QMARK] = ACTIONS(1783), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_AT_COLON] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_new] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1781), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_EQ_GT] = ACTIONS(1781), + [anon_sym_QMARK_QMARK] = ACTIONS(1781), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1783), + [anon_sym_macro] = ACTIONS(1783), + [anon_sym_abstract] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_public] = ACTIONS(1783), + [anon_sym_private] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_overload] = ACTIONS(1783), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_typedef] = ACTIONS(1783), + [anon_sym_function] = ACTIONS(1783), + [anon_sym_var] = ACTIONS(1783), + [aux_sym_integer_token1] = ACTIONS(1783), + [aux_sym_integer_token2] = ACTIONS(1781), + [aux_sym_float_token1] = ACTIONS(1783), + [aux_sym_float_token2] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [aux_sym_string_token1] = ACTIONS(1781), + [aux_sym_string_token3] = ACTIONS(1781), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [184] = { - [ts_builtin_sym_end] = ACTIONS(1440), - [sym_identifier] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_using] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_RPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1440), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_COLON] = ACTIONS(1440), - [anon_sym_cast] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_DOLLARtype] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_RBRACK] = ACTIONS(1440), - [anon_sym_this] = ACTIONS(1442), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_AT_COLON] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1442), - [anon_sym_GT_GT_GT] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [anon_sym_PIPE_PIPE] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_QMARK_QMARK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1442), - [sym__rangeOperator] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1442), - [anon_sym_macro] = ACTIONS(1442), - [anon_sym_abstract] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_public] = ACTIONS(1442), - [anon_sym_private] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym_overload] = ACTIONS(1442), - [anon_sym_override] = ACTIONS(1442), - [anon_sym_final] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_interface] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [aux_sym_integer_token1] = ACTIONS(1442), - [aux_sym_integer_token2] = ACTIONS(1440), - [aux_sym_float_token1] = ACTIONS(1442), - [aux_sym_float_token2] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [aux_sym_string_token1] = ACTIONS(1440), - [aux_sym_string_token3] = ACTIONS(1440), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1753), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(1785), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_RBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(1785), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [185] = { - [ts_builtin_sym_end] = ACTIONS(1444), - [sym_identifier] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_package] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1446), - [anon_sym_import] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(1446), - [anon_sym_throw] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_RPAREN] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1444), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_COLON] = ACTIONS(1444), - [anon_sym_cast] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_DOLLARtype] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_untyped] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_RBRACK] = ACTIONS(1444), - [anon_sym_this] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_AT] = ACTIONS(1446), - [anon_sym_AT_COLON] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_GT_GT_GT] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1444), - [anon_sym_EQ_EQ] = ACTIONS(1444), - [anon_sym_BANG_EQ] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1444), - [anon_sym_GT] = ACTIONS(1446), - [anon_sym_GT_EQ] = ACTIONS(1444), - [anon_sym_EQ_GT] = ACTIONS(1444), - [anon_sym_QMARK_QMARK] = ACTIONS(1444), - [anon_sym_EQ] = ACTIONS(1446), - [sym__rangeOperator] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1446), - [anon_sym_macro] = ACTIONS(1446), - [anon_sym_abstract] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_public] = ACTIONS(1446), - [anon_sym_private] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym_overload] = ACTIONS(1446), - [anon_sym_override] = ACTIONS(1446), - [anon_sym_final] = ACTIONS(1446), - [anon_sym_class] = ACTIONS(1446), - [anon_sym_interface] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1446), - [anon_sym_var] = ACTIONS(1446), - [aux_sym_integer_token1] = ACTIONS(1446), - [aux_sym_integer_token2] = ACTIONS(1444), - [aux_sym_float_token1] = ACTIONS(1446), - [aux_sym_float_token2] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [aux_sym_string_token1] = ACTIONS(1444), - [aux_sym_string_token3] = ACTIONS(1444), + [sym__rhs_expression] = STATE(1017), + [sym__unaryExpression] = STATE(2934), + [sym_runtime_type_check_expression] = STATE(2934), + [sym_switch_expression] = STATE(2934), + [sym_cast_expression] = STATE(2934), + [sym_type_trace_expression] = STATE(2934), + [sym__parenthesized_expression] = STATE(2417), + [sym_range_expression] = STATE(2934), + [sym_subscript_expression] = STATE(2934), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1017), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1789), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1791), + [anon_sym_untyped] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1795), + [anon_sym_continue] = ACTIONS(1795), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [186] = { - [ts_builtin_sym_end] = ACTIONS(1448), - [sym_identifier] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_import] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1450), - [anon_sym_throw] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_RPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_RBRACE] = ACTIONS(1448), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_COLON] = ACTIONS(1448), - [anon_sym_cast] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_untyped] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_RBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE_PIPE] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1448), - [anon_sym_BANG_EQ] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1450), - [sym__rangeOperator] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1450), - [anon_sym_macro] = ACTIONS(1450), - [anon_sym_abstract] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_public] = ACTIONS(1450), - [anon_sym_private] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym_overload] = ACTIONS(1450), - [anon_sym_override] = ACTIONS(1450), - [anon_sym_final] = ACTIONS(1450), - [anon_sym_class] = ACTIONS(1450), - [anon_sym_interface] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1450), - [anon_sym_var] = ACTIONS(1450), - [aux_sym_integer_token1] = ACTIONS(1450), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1450), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), + [ts_builtin_sym_end] = ACTIONS(1797), + [sym_identifier] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_package] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_RPAREN] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_RBRACE] = ACTIONS(1797), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_COLON] = ACTIONS(1797), + [anon_sym_cast] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DOLLARtype] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_untyped] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_RBRACK] = ACTIONS(1797), + [anon_sym_this] = ACTIONS(1799), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1799), + [anon_sym_AT_COLON] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [anon_sym_EQ_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1797), + [anon_sym_EQ_GT] = ACTIONS(1797), + [anon_sym_QMARK_QMARK] = ACTIONS(1797), + [anon_sym_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_macro] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_overload] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_final] = ACTIONS(1799), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_typedef] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [aux_sym_integer_token1] = ACTIONS(1799), + [aux_sym_integer_token2] = ACTIONS(1797), + [aux_sym_float_token1] = ACTIONS(1799), + [aux_sym_float_token2] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym_string_token1] = ACTIONS(1797), + [aux_sym_string_token3] = ACTIONS(1797), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [187] = { - [ts_builtin_sym_end] = ACTIONS(1452), - [sym_identifier] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_package] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_import] = ACTIONS(1454), - [anon_sym_using] = ACTIONS(1454), - [anon_sym_throw] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_RPAREN] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_RBRACE] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_COLON] = ACTIONS(1452), - [anon_sym_cast] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_untyped] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_RBRACK] = ACTIONS(1452), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1454), - [anon_sym_AT_COLON] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_GT_GT_GT] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1452), - [anon_sym_BANG_EQ] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1452), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1452), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_QMARK_QMARK] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1454), - [sym__rangeOperator] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_macro] = ACTIONS(1454), - [anon_sym_abstract] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_public] = ACTIONS(1454), - [anon_sym_private] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_overload] = ACTIONS(1454), - [anon_sym_override] = ACTIONS(1454), - [anon_sym_final] = ACTIONS(1454), - [anon_sym_class] = ACTIONS(1454), - [anon_sym_interface] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_var] = ACTIONS(1454), - [aux_sym_integer_token1] = ACTIONS(1454), - [aux_sym_integer_token2] = ACTIONS(1452), - [aux_sym_float_token1] = ACTIONS(1454), - [aux_sym_float_token2] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym_string_token1] = ACTIONS(1452), - [aux_sym_string_token3] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym_identifier] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_package] = ACTIONS(1803), + [anon_sym_DOT] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_COLON] = ACTIONS(1801), + [anon_sym_cast] = ACTIONS(1803), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_DOLLARtype] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_untyped] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_RBRACK] = ACTIONS(1801), + [anon_sym_this] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1803), + [anon_sym_AT_COLON] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_catch] = ACTIONS(1803), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PERCENT] = ACTIONS(1801), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_LT_LT] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1803), + [anon_sym_GT_GT_GT] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1801), + [anon_sym_BANG_EQ] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1803), + [anon_sym_GT_EQ] = ACTIONS(1801), + [anon_sym_EQ_GT] = ACTIONS(1801), + [anon_sym_QMARK_QMARK] = ACTIONS(1801), + [anon_sym_EQ] = ACTIONS(1803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1803), + [anon_sym_macro] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_overload] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_final] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_typedef] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [aux_sym_integer_token1] = ACTIONS(1803), + [aux_sym_integer_token2] = ACTIONS(1801), + [aux_sym_float_token1] = ACTIONS(1803), + [aux_sym_float_token2] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [aux_sym_string_token1] = ACTIONS(1801), + [aux_sym_string_token3] = ACTIONS(1801), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [188] = { - [ts_builtin_sym_end] = ACTIONS(1456), - [sym_identifier] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_package] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1458), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1458), - [anon_sym_throw] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_RPAREN] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_RBRACE] = ACTIONS(1456), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_COLON] = ACTIONS(1456), - [anon_sym_cast] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_DOLLARtype] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_untyped] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_RBRACK] = ACTIONS(1456), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1458), - [anon_sym_AT_COLON] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_GT_GT_GT] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_BANG_EQ] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_QMARK] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1458), - [sym__rangeOperator] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1458), - [anon_sym_macro] = ACTIONS(1458), - [anon_sym_abstract] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_public] = ACTIONS(1458), - [anon_sym_private] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym_overload] = ACTIONS(1458), - [anon_sym_override] = ACTIONS(1458), - [anon_sym_final] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1458), - [anon_sym_interface] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_function] = ACTIONS(1458), - [anon_sym_var] = ACTIONS(1458), - [aux_sym_integer_token1] = ACTIONS(1458), - [aux_sym_integer_token2] = ACTIONS(1456), - [aux_sym_float_token1] = ACTIONS(1458), - [aux_sym_float_token2] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [aux_sym_string_token1] = ACTIONS(1456), - [aux_sym_string_token3] = ACTIONS(1456), + [ts_builtin_sym_end] = ACTIONS(1805), + [sym_identifier] = ACTIONS(1807), + [anon_sym_POUND] = ACTIONS(1805), + [anon_sym_package] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_using] = ACTIONS(1807), + [anon_sym_throw] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1805), + [anon_sym_switch] = ACTIONS(1807), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_COLON] = ACTIONS(1805), + [anon_sym_cast] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_DOLLARtype] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_untyped] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_RBRACK] = ACTIONS(1805), + [anon_sym_this] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1807), + [anon_sym_AT_COLON] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1807), + [anon_sym_catch] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1805), + [anon_sym_GT_GT] = ACTIONS(1807), + [anon_sym_GT_GT_GT] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_EQ_GT] = ACTIONS(1805), + [anon_sym_QMARK_QMARK] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_null] = ACTIONS(1807), + [anon_sym_macro] = ACTIONS(1807), + [anon_sym_abstract] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_public] = ACTIONS(1807), + [anon_sym_private] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1807), + [anon_sym_inline] = ACTIONS(1807), + [anon_sym_overload] = ACTIONS(1807), + [anon_sym_override] = ACTIONS(1807), + [anon_sym_final] = ACTIONS(1807), + [anon_sym_class] = ACTIONS(1807), + [anon_sym_interface] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_typedef] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(1807), + [anon_sym_var] = ACTIONS(1807), + [aux_sym_integer_token1] = ACTIONS(1807), + [aux_sym_integer_token2] = ACTIONS(1805), + [aux_sym_float_token1] = ACTIONS(1807), + [aux_sym_float_token2] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1807), + [anon_sym_false] = ACTIONS(1807), + [aux_sym_string_token1] = ACTIONS(1805), + [aux_sym_string_token3] = ACTIONS(1805), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [189] = { - [ts_builtin_sym_end] = ACTIONS(1460), - [sym_identifier] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_package] = ACTIONS(1462), - [anon_sym_DOT] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_using] = ACTIONS(1462), - [anon_sym_throw] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_RBRACE] = ACTIONS(1460), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_COLON] = ACTIONS(1460), - [anon_sym_cast] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_DOLLARtype] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_untyped] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_RBRACK] = ACTIONS(1460), - [anon_sym_this] = ACTIONS(1462), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1462), - [anon_sym_AT_COLON] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1462), - [anon_sym_GT_GT_GT] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1460), - [anon_sym_BANG_EQ] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_LT_EQ] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1462), - [anon_sym_GT_EQ] = ACTIONS(1460), - [anon_sym_EQ_GT] = ACTIONS(1460), - [anon_sym_QMARK_QMARK] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1462), - [sym__rangeOperator] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1462), - [anon_sym_macro] = ACTIONS(1462), - [anon_sym_abstract] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_public] = ACTIONS(1462), - [anon_sym_private] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym_overload] = ACTIONS(1462), - [anon_sym_override] = ACTIONS(1462), - [anon_sym_final] = ACTIONS(1462), - [anon_sym_class] = ACTIONS(1462), - [anon_sym_interface] = ACTIONS(1462), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(1462), - [anon_sym_var] = ACTIONS(1462), - [aux_sym_integer_token1] = ACTIONS(1462), - [aux_sym_integer_token2] = ACTIONS(1460), - [aux_sym_float_token1] = ACTIONS(1462), - [aux_sym_float_token2] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [aux_sym_string_token1] = ACTIONS(1460), - [aux_sym_string_token3] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_RPAREN] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_RBRACE] = ACTIONS(1785), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(1785), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_RBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(1785), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [190] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_package] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1466), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1466), - [anon_sym_throw] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_RBRACE] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_COLON] = ACTIONS(1464), - [anon_sym_cast] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_DOLLARtype] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_untyped] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_RBRACK] = ACTIONS(1464), - [anon_sym_this] = ACTIONS(1466), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1466), - [anon_sym_AT_COLON] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_GT_GT_GT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_PIPE_PIPE] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_QMARK_QMARK] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1466), - [sym__rangeOperator] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1466), - [anon_sym_macro] = ACTIONS(1466), - [anon_sym_abstract] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_public] = ACTIONS(1466), - [anon_sym_private] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym_overload] = ACTIONS(1466), - [anon_sym_override] = ACTIONS(1466), - [anon_sym_final] = ACTIONS(1466), - [anon_sym_class] = ACTIONS(1466), - [anon_sym_interface] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(1466), - [anon_sym_var] = ACTIONS(1466), - [aux_sym_integer_token1] = ACTIONS(1466), - [aux_sym_integer_token2] = ACTIONS(1464), - [aux_sym_float_token1] = ACTIONS(1466), - [aux_sym_float_token2] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [aux_sym_string_token1] = ACTIONS(1464), - [aux_sym_string_token3] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1809), + [sym_identifier] = ACTIONS(1811), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_package] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_RPAREN] = ACTIONS(1809), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_RBRACE] = ACTIONS(1809), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_COLON] = ACTIONS(1809), + [anon_sym_cast] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_DOLLARtype] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_untyped] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_RBRACK] = ACTIONS(1809), + [anon_sym_this] = ACTIONS(1811), + [anon_sym_QMARK] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_AT_COLON] = ACTIONS(1809), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_catch] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_EQ_GT] = ACTIONS(1809), + [anon_sym_QMARK_QMARK] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_null] = ACTIONS(1811), + [anon_sym_macro] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_inline] = ACTIONS(1811), + [anon_sym_overload] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_final] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_typedef] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [aux_sym_integer_token1] = ACTIONS(1811), + [aux_sym_integer_token2] = ACTIONS(1809), + [aux_sym_float_token1] = ACTIONS(1811), + [aux_sym_float_token2] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [aux_sym_string_token1] = ACTIONS(1809), + [aux_sym_string_token3] = ACTIONS(1809), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [191] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_COLON] = ACTIONS(542), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_RBRACK] = ACTIONS(542), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(544), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), + [sym__rhs_expression] = STATE(1026), + [sym__unaryExpression] = STATE(3047), + [sym_runtime_type_check_expression] = STATE(3047), + [sym_switch_expression] = STATE(3047), + [sym_cast_expression] = STATE(3047), + [sym_type_trace_expression] = STATE(3047), + [sym__parenthesized_expression] = STATE(2443), + [sym_range_expression] = STATE(3047), + [sym_subscript_expression] = STATE(3047), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1026), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1815), + [anon_sym_untyped] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1819), + [anon_sym_continue] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [192] = { - [ts_builtin_sym_end] = ACTIONS(542), - [sym_identifier] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_RBRACE] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_COLON] = ACTIONS(542), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_RBRACK] = ACTIONS(542), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(544), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), + [ts_builtin_sym_end] = ACTIONS(1821), + [sym_identifier] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1821), + [anon_sym_package] = ACTIONS(1823), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_RPAREN] = ACTIONS(1821), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_RBRACE] = ACTIONS(1821), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_COLON] = ACTIONS(1821), + [anon_sym_cast] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_DOLLARtype] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_untyped] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_RBRACK] = ACTIONS(1821), + [anon_sym_this] = ACTIONS(1823), + [anon_sym_QMARK] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1823), + [anon_sym_AT_COLON] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_catch] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [anon_sym_PERCENT] = ACTIONS(1821), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1821), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_GT_GT_GT] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_EQ_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_GT_EQ] = ACTIONS(1821), + [anon_sym_EQ_GT] = ACTIONS(1821), + [anon_sym_QMARK_QMARK] = ACTIONS(1821), + [anon_sym_EQ] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1821), + [anon_sym_null] = ACTIONS(1823), + [anon_sym_macro] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_inline] = ACTIONS(1823), + [anon_sym_overload] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_final] = ACTIONS(1823), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [aux_sym_integer_token1] = ACTIONS(1823), + [aux_sym_integer_token2] = ACTIONS(1821), + [aux_sym_float_token1] = ACTIONS(1823), + [aux_sym_float_token2] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [aux_sym_string_token1] = ACTIONS(1821), + [aux_sym_string_token3] = ACTIONS(1821), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [193] = { - [ts_builtin_sym_end] = ACTIONS(528), - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_package] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_RPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_RBRACE] = ACTIONS(528), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_COLON] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_RBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(528), - [anon_sym_if] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_var] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), + [ts_builtin_sym_end] = ACTIONS(1825), + [sym_identifier] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_package] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1827), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1827), + [anon_sym_throw] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_RPAREN] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1827), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_COLON] = ACTIONS(1825), + [anon_sym_cast] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_DOLLARtype] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_untyped] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_RBRACK] = ACTIONS(1825), + [anon_sym_this] = ACTIONS(1827), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_AT_COLON] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_catch] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PERCENT] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1825), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_GT_GT_GT] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_CARET] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_EQ] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1825), + [anon_sym_EQ_GT] = ACTIONS(1825), + [anon_sym_QMARK_QMARK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), + [anon_sym_null] = ACTIONS(1827), + [anon_sym_macro] = ACTIONS(1827), + [anon_sym_abstract] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_inline] = ACTIONS(1827), + [anon_sym_overload] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_final] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_interface] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_typedef] = ACTIONS(1827), + [anon_sym_function] = ACTIONS(1827), + [anon_sym_var] = ACTIONS(1827), + [aux_sym_integer_token1] = ACTIONS(1827), + [aux_sym_integer_token2] = ACTIONS(1825), + [aux_sym_float_token1] = ACTIONS(1827), + [aux_sym_float_token2] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym_string_token1] = ACTIONS(1825), + [aux_sym_string_token3] = ACTIONS(1825), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [194] = { - [ts_builtin_sym_end] = ACTIONS(1470), - [sym_identifier] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_package] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_import] = ACTIONS(1473), - [anon_sym_using] = ACTIONS(1473), - [anon_sym_throw] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_RBRACE] = ACTIONS(1470), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_COLON] = ACTIONS(1470), - [anon_sym_cast] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DOLLARtype] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_untyped] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_RBRACK] = ACTIONS(1470), - [anon_sym_this] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1473), - [anon_sym_AT_COLON] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_GT_GT_GT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_EQ_GT] = ACTIONS(1470), - [anon_sym_QMARK_QMARK] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1473), - [sym__rangeOperator] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1473), - [anon_sym_macro] = ACTIONS(1473), - [anon_sym_abstract] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_public] = ACTIONS(1473), - [anon_sym_private] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym_overload] = ACTIONS(1473), - [anon_sym_override] = ACTIONS(1473), - [anon_sym_final] = ACTIONS(1473), - [anon_sym_class] = ACTIONS(1473), - [anon_sym_interface] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_function] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1473), - [aux_sym_integer_token1] = ACTIONS(1473), - [aux_sym_integer_token2] = ACTIONS(1470), - [aux_sym_float_token1] = ACTIONS(1473), - [aux_sym_float_token2] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [aux_sym_string_token1] = ACTIONS(1470), - [aux_sym_string_token3] = ACTIONS(1470), + [ts_builtin_sym_end] = ACTIONS(1829), + [sym_identifier] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(1829), + [anon_sym_package] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_using] = ACTIONS(1831), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_RPAREN] = ACTIONS(1829), + [anon_sym_switch] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1829), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_COLON] = ACTIONS(1829), + [anon_sym_cast] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_DOLLARtype] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_untyped] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_RBRACK] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1831), + [anon_sym_QMARK] = ACTIONS(1831), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_AT_COLON] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_catch] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_PERCENT] = ACTIONS(1829), + [anon_sym_SLASH] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_LT_LT] = ACTIONS(1829), + [anon_sym_GT_GT] = ACTIONS(1831), + [anon_sym_GT_GT_GT] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_LT_EQ] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(1829), + [anon_sym_EQ_GT] = ACTIONS(1829), + [anon_sym_QMARK_QMARK] = ACTIONS(1829), + [anon_sym_EQ] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + [anon_sym_null] = ACTIONS(1831), + [anon_sym_macro] = ACTIONS(1831), + [anon_sym_abstract] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym_overload] = ACTIONS(1831), + [anon_sym_override] = ACTIONS(1831), + [anon_sym_final] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_interface] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_typedef] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(1831), + [anon_sym_var] = ACTIONS(1831), + [aux_sym_integer_token1] = ACTIONS(1831), + [aux_sym_integer_token2] = ACTIONS(1829), + [aux_sym_float_token1] = ACTIONS(1831), + [aux_sym_float_token2] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym_string_token1] = ACTIONS(1829), + [aux_sym_string_token3] = ACTIONS(1829), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [195] = { - [ts_builtin_sym_end] = ACTIONS(1476), - [sym_identifier] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_package] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1478), - [anon_sym_throw] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_RPAREN] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_RBRACE] = ACTIONS(1476), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_COLON] = ACTIONS(1476), - [anon_sym_cast] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_untyped] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_RBRACK] = ACTIONS(1476), - [anon_sym_this] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_AT_COLON] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_GT_GT_GT] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_QMARK_QMARK] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [sym__rangeOperator] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1478), - [anon_sym_macro] = ACTIONS(1478), - [anon_sym_abstract] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_public] = ACTIONS(1478), - [anon_sym_private] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_overload] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_final] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_interface] = ACTIONS(1478), - [anon_sym_typedef] = ACTIONS(1478), - [anon_sym_function] = ACTIONS(1478), - [anon_sym_var] = ACTIONS(1478), - [aux_sym_integer_token1] = ACTIONS(1478), - [aux_sym_integer_token2] = ACTIONS(1476), - [aux_sym_float_token1] = ACTIONS(1478), - [aux_sym_float_token2] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [aux_sym_string_token1] = ACTIONS(1476), - [aux_sym_string_token3] = ACTIONS(1476), + [ts_builtin_sym_end] = ACTIONS(1343), + [sym_identifier] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_package] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_import] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_using] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_RBRACE] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_COLON] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1343), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_RBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_AT_COLON] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1345), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_public] = ACTIONS(1345), + [anon_sym_private] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym_overload] = ACTIONS(1345), + [anon_sym_override] = ACTIONS(1345), + [anon_sym_final] = ACTIONS(1345), + [anon_sym_class] = ACTIONS(1345), + [anon_sym_interface] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(1345), + [anon_sym_var] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [196] = { - [ts_builtin_sym_end] = ACTIONS(1480), - [sym_identifier] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_package] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_import] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_RPAREN] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_RBRACE] = ACTIONS(1480), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_COLON] = ACTIONS(1480), - [anon_sym_cast] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLARtype] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_untyped] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_RBRACK] = ACTIONS(1480), - [anon_sym_this] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_AT_COLON] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_PERCENT] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_GT_GT_GT] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_QMARK_QMARK] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1483), - [sym__rangeOperator] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_macro] = ACTIONS(1483), - [anon_sym_abstract] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_public] = ACTIONS(1483), - [anon_sym_private] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_inline] = ACTIONS(1483), - [anon_sym_overload] = ACTIONS(1483), - [anon_sym_override] = ACTIONS(1483), - [anon_sym_final] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1483), - [anon_sym_interface] = ACTIONS(1483), - [anon_sym_typedef] = ACTIONS(1483), - [anon_sym_function] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [aux_sym_integer_token1] = ACTIONS(1483), - [aux_sym_integer_token2] = ACTIONS(1480), - [aux_sym_float_token1] = ACTIONS(1483), - [aux_sym_float_token2] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [aux_sym_string_token1] = ACTIONS(1480), - [aux_sym_string_token3] = ACTIONS(1480), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym_identifier] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1833), + [anon_sym_package] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1835), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_RPAREN] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_COLON] = ACTIONS(1833), + [anon_sym_cast] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLARtype] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_untyped] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_RBRACK] = ACTIONS(1833), + [anon_sym_this] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_AT_COLON] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1835), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_EQ_EQ] = ACTIONS(1833), + [anon_sym_BANG_EQ] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1833), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_EQ_GT] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), + [anon_sym_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1835), + [anon_sym_macro] = ACTIONS(1835), + [anon_sym_abstract] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_private] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_inline] = ACTIONS(1835), + [anon_sym_overload] = ACTIONS(1835), + [anon_sym_override] = ACTIONS(1835), + [anon_sym_final] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_interface] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_typedef] = ACTIONS(1835), + [anon_sym_function] = ACTIONS(1835), + [anon_sym_var] = ACTIONS(1835), + [aux_sym_integer_token1] = ACTIONS(1835), + [aux_sym_integer_token2] = ACTIONS(1833), + [aux_sym_float_token1] = ACTIONS(1835), + [aux_sym_float_token2] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [aux_sym_string_token1] = ACTIONS(1833), + [aux_sym_string_token3] = ACTIONS(1833), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [197] = { - [ts_builtin_sym_end] = ACTIONS(1486), - [sym_identifier] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_package] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(1488), - [anon_sym_import] = ACTIONS(1488), - [anon_sym_using] = ACTIONS(1488), - [anon_sym_throw] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_RPAREN] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1486), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_COLON] = ACTIONS(1486), - [anon_sym_cast] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1486), - [anon_sym_DOLLARtype] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_untyped] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_RBRACK] = ACTIONS(1486), - [anon_sym_this] = ACTIONS(1488), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_AT_COLON] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_new] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1488), - [anon_sym_GT_GT_GT] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_CARET] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_PIPE_PIPE] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_EQ] = ACTIONS(1486), - [anon_sym_EQ_GT] = ACTIONS(1486), - [anon_sym_QMARK_QMARK] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1488), - [sym__rangeOperator] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_macro] = ACTIONS(1488), - [anon_sym_abstract] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_public] = ACTIONS(1488), - [anon_sym_private] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym_overload] = ACTIONS(1488), - [anon_sym_override] = ACTIONS(1488), - [anon_sym_final] = ACTIONS(1488), - [anon_sym_class] = ACTIONS(1488), - [anon_sym_interface] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_function] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [aux_sym_integer_token1] = ACTIONS(1488), - [aux_sym_integer_token2] = ACTIONS(1486), - [aux_sym_float_token1] = ACTIONS(1488), - [aux_sym_float_token2] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [aux_sym_string_token1] = ACTIONS(1486), - [aux_sym_string_token3] = ACTIONS(1486), + [sym__rhs_expression] = STATE(1034), + [sym__unaryExpression] = STATE(2882), + [sym_runtime_type_check_expression] = STATE(2882), + [sym_switch_expression] = STATE(2882), + [sym_cast_expression] = STATE(2882), + [sym_type_trace_expression] = STATE(2882), + [sym__parenthesized_expression] = STATE(2447), + [sym_range_expression] = STATE(2882), + [sym_subscript_expression] = STATE(2882), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1034), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_untyped] = ACTIONS(1841), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [198] = { - [ts_builtin_sym_end] = ACTIONS(1490), - [sym_identifier] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_package] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1492), - [anon_sym_throw] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_RPAREN] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_RBRACE] = ACTIONS(1490), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_COLON] = ACTIONS(1490), - [anon_sym_cast] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1490), - [anon_sym_DOLLARtype] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_untyped] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_RBRACK] = ACTIONS(1490), - [anon_sym_this] = ACTIONS(1492), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_AT_COLON] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1492), - [anon_sym_GT_GT_GT] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1490), - [anon_sym_BANG_EQ] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1490), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1490), - [anon_sym_EQ_GT] = ACTIONS(1490), - [anon_sym_QMARK_QMARK] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1492), - [sym__rangeOperator] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_macro] = ACTIONS(1492), - [anon_sym_abstract] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_public] = ACTIONS(1492), - [anon_sym_private] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym_overload] = ACTIONS(1492), - [anon_sym_override] = ACTIONS(1492), - [anon_sym_final] = ACTIONS(1492), - [anon_sym_class] = ACTIONS(1492), - [anon_sym_interface] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_function] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [aux_sym_integer_token1] = ACTIONS(1492), - [aux_sym_integer_token2] = ACTIONS(1490), - [aux_sym_float_token1] = ACTIONS(1492), - [aux_sym_float_token2] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [aux_sym_string_token1] = ACTIONS(1490), - [aux_sym_string_token3] = ACTIONS(1490), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym_identifier] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_package] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1847), + [anon_sym_throw] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_switch] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_COLON] = ACTIONS(1845), + [anon_sym_cast] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_DOLLARtype] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_untyped] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_RBRACK] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_AT_COLON] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_EQ_GT] = ACTIONS(1845), + [anon_sym_QMARK_QMARK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1847), + [anon_sym_macro] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_inline] = ACTIONS(1847), + [anon_sym_overload] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_final] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_interface] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_typedef] = ACTIONS(1847), + [anon_sym_function] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [aux_sym_integer_token1] = ACTIONS(1847), + [aux_sym_integer_token2] = ACTIONS(1845), + [aux_sym_float_token1] = ACTIONS(1847), + [aux_sym_float_token2] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [aux_sym_string_token1] = ACTIONS(1845), + [aux_sym_string_token3] = ACTIONS(1845), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [199] = { - [ts_builtin_sym_end] = ACTIONS(1494), - [sym_identifier] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_package] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1496), - [anon_sym_import] = ACTIONS(1496), - [anon_sym_using] = ACTIONS(1496), - [anon_sym_throw] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_RBRACE] = ACTIONS(1494), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_COLON] = ACTIONS(1494), - [anon_sym_cast] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLARtype] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_untyped] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_RBRACK] = ACTIONS(1494), - [anon_sym_this] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1496), - [anon_sym_AT_COLON] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1496), - [anon_sym_GT_GT_GT] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_PIPE_PIPE] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(1494), - [anon_sym_EQ_GT] = ACTIONS(1494), - [anon_sym_QMARK_QMARK] = ACTIONS(1494), - [anon_sym_EQ] = ACTIONS(1496), - [sym__rangeOperator] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_macro] = ACTIONS(1496), - [anon_sym_abstract] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_public] = ACTIONS(1496), - [anon_sym_private] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym_overload] = ACTIONS(1496), - [anon_sym_override] = ACTIONS(1496), - [anon_sym_final] = ACTIONS(1496), - [anon_sym_class] = ACTIONS(1496), - [anon_sym_interface] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [aux_sym_integer_token1] = ACTIONS(1496), - [aux_sym_integer_token2] = ACTIONS(1494), - [aux_sym_float_token1] = ACTIONS(1496), - [aux_sym_float_token2] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [aux_sym_string_token1] = ACTIONS(1494), - [aux_sym_string_token3] = ACTIONS(1494), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym_identifier] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_package] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1851), + [anon_sym_throw] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_COLON] = ACTIONS(1849), + [anon_sym_cast] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_DOLLARtype] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_untyped] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_RBRACK] = ACTIONS(1849), + [anon_sym_this] = ACTIONS(1851), + [anon_sym_QMARK] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_AT_COLON] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_catch] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1851), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_EQ_GT] = ACTIONS(1849), + [anon_sym_QMARK_QMARK] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1851), + [anon_sym_macro] = ACTIONS(1851), + [anon_sym_abstract] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_private] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_inline] = ACTIONS(1851), + [anon_sym_overload] = ACTIONS(1851), + [anon_sym_override] = ACTIONS(1851), + [anon_sym_final] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_interface] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(1851), + [anon_sym_var] = ACTIONS(1851), + [aux_sym_integer_token1] = ACTIONS(1851), + [aux_sym_integer_token2] = ACTIONS(1849), + [aux_sym_float_token1] = ACTIONS(1851), + [aux_sym_float_token2] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [aux_sym_string_token1] = ACTIONS(1849), + [aux_sym_string_token3] = ACTIONS(1849), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [200] = { - [ts_builtin_sym_end] = ACTIONS(1498), - [sym_identifier] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_package] = ACTIONS(1500), - [anon_sym_DOT] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(1500), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_RPAREN] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_RBRACE] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_COLON] = ACTIONS(1498), - [anon_sym_cast] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_DOLLARtype] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_untyped] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_RBRACK] = ACTIONS(1498), - [anon_sym_this] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_AT] = ACTIONS(1500), - [anon_sym_AT_COLON] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_GT_GT_GT] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1498), - [anon_sym_BANG_EQ] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1498), - [anon_sym_EQ_GT] = ACTIONS(1498), - [anon_sym_QMARK_QMARK] = ACTIONS(1498), - [anon_sym_EQ] = ACTIONS(1500), - [sym__rangeOperator] = ACTIONS(1498), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_macro] = ACTIONS(1500), - [anon_sym_abstract] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_public] = ACTIONS(1500), - [anon_sym_private] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_overload] = ACTIONS(1500), - [anon_sym_override] = ACTIONS(1500), - [anon_sym_final] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_interface] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [aux_sym_integer_token1] = ACTIONS(1500), - [aux_sym_integer_token2] = ACTIONS(1498), - [aux_sym_float_token1] = ACTIONS(1500), - [aux_sym_float_token2] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [aux_sym_string_token1] = ACTIONS(1498), - [aux_sym_string_token3] = ACTIONS(1498), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_package] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1855), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_COLON] = ACTIONS(1853), + [anon_sym_cast] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_DOLLARtype] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_untyped] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_RBRACK] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1855), + [anon_sym_QMARK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_AT_COLON] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_EQ_GT] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1853), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1855), + [anon_sym_macro] = ACTIONS(1855), + [anon_sym_abstract] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_overload] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_final] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_function] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1855), + [aux_sym_integer_token1] = ACTIONS(1855), + [aux_sym_integer_token2] = ACTIONS(1853), + [aux_sym_float_token1] = ACTIONS(1855), + [aux_sym_float_token2] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [aux_sym_string_token1] = ACTIONS(1853), + [aux_sym_string_token3] = ACTIONS(1853), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [201] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1502), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_RBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1502), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1857), + [anon_sym_package] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_COLON] = ACTIONS(1857), + [anon_sym_cast] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_DOLLARtype] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_untyped] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_RBRACK] = ACTIONS(1857), + [anon_sym_this] = ACTIONS(1859), + [anon_sym_QMARK] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_AT_COLON] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_EQ_GT] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1859), + [anon_sym_macro] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_inline] = ACTIONS(1859), + [anon_sym_overload] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_final] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_typedef] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [aux_sym_integer_token1] = ACTIONS(1859), + [aux_sym_integer_token2] = ACTIONS(1857), + [aux_sym_float_token1] = ACTIONS(1859), + [aux_sym_float_token2] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [aux_sym_string_token1] = ACTIONS(1857), + [aux_sym_string_token3] = ACTIONS(1857), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [202] = { - [ts_builtin_sym_end] = ACTIONS(1510), - [sym_identifier] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_package] = ACTIONS(1512), - [anon_sym_DOT] = ACTIONS(1512), - [anon_sym_import] = ACTIONS(1512), - [anon_sym_using] = ACTIONS(1512), - [anon_sym_throw] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_RPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_RBRACE] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_COLON] = ACTIONS(1510), - [anon_sym_cast] = ACTIONS(1512), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DOLLARtype] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_untyped] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_RBRACK] = ACTIONS(1510), - [anon_sym_this] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_AT_COLON] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_GT_GT_GT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_EQ_GT] = ACTIONS(1510), - [anon_sym_QMARK_QMARK] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1512), - [sym__rangeOperator] = ACTIONS(1510), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_macro] = ACTIONS(1512), - [anon_sym_abstract] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_public] = ACTIONS(1512), - [anon_sym_private] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym_overload] = ACTIONS(1512), - [anon_sym_override] = ACTIONS(1512), - [anon_sym_final] = ACTIONS(1512), - [anon_sym_class] = ACTIONS(1512), - [anon_sym_interface] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [aux_sym_integer_token1] = ACTIONS(1512), - [aux_sym_integer_token2] = ACTIONS(1510), - [aux_sym_float_token1] = ACTIONS(1512), - [aux_sym_float_token2] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), - [aux_sym_string_token3] = ACTIONS(1510), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym_identifier] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_package] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_COLON] = ACTIONS(1861), + [anon_sym_cast] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_DOLLARtype] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_untyped] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_RBRACK] = ACTIONS(1861), + [anon_sym_this] = ACTIONS(1863), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_AT_COLON] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1861), + [anon_sym_GT_GT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1861), + [anon_sym_AMP_AMP] = ACTIONS(1861), + [anon_sym_PIPE_PIPE] = ACTIONS(1861), + [anon_sym_EQ_EQ] = ACTIONS(1861), + [anon_sym_BANG_EQ] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1861), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1861), + [anon_sym_EQ_GT] = ACTIONS(1861), + [anon_sym_QMARK_QMARK] = ACTIONS(1861), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_macro] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_overload] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_final] = ACTIONS(1863), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_typedef] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [aux_sym_integer_token1] = ACTIONS(1863), + [aux_sym_integer_token2] = ACTIONS(1861), + [aux_sym_float_token1] = ACTIONS(1863), + [aux_sym_float_token2] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [aux_sym_string_token1] = ACTIONS(1861), + [aux_sym_string_token3] = ACTIONS(1861), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [203] = { - [ts_builtin_sym_end] = ACTIONS(1514), - [sym_identifier] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_package] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1516), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_throw] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_RBRACE] = ACTIONS(1514), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_COLON] = ACTIONS(1514), - [anon_sym_cast] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_DOLLARtype] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_untyped] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_RBRACK] = ACTIONS(1514), - [anon_sym_this] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_AT_COLON] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_new] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_GT_GT_GT] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1514), - [anon_sym_BANG_EQ] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1514), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1514), - [anon_sym_EQ_GT] = ACTIONS(1514), - [anon_sym_QMARK_QMARK] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1516), - [sym__rangeOperator] = ACTIONS(1514), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_macro] = ACTIONS(1516), - [anon_sym_abstract] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_public] = ACTIONS(1516), - [anon_sym_private] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym_overload] = ACTIONS(1516), - [anon_sym_override] = ACTIONS(1516), - [anon_sym_final] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(1516), - [anon_sym_interface] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_function] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [aux_sym_integer_token1] = ACTIONS(1516), - [aux_sym_integer_token2] = ACTIONS(1514), - [aux_sym_float_token1] = ACTIONS(1516), - [aux_sym_float_token2] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [aux_sym_string_token1] = ACTIONS(1514), - [aux_sym_string_token3] = ACTIONS(1514), + [ts_builtin_sym_end] = ACTIONS(1865), + [sym_identifier] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_package] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_using] = ACTIONS(1867), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_switch] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_COLON] = ACTIONS(1865), + [anon_sym_cast] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_DOLLARtype] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_untyped] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_RBRACK] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1867), + [anon_sym_QMARK] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_AT_COLON] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_PERCENT] = ACTIONS(1865), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1865), + [anon_sym_GT_GT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_EQ_GT] = ACTIONS(1865), + [anon_sym_QMARK_QMARK] = ACTIONS(1865), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1867), + [anon_sym_macro] = ACTIONS(1867), + [anon_sym_abstract] = ACTIONS(1867), + [anon_sym_static] = ACTIONS(1867), + [anon_sym_public] = ACTIONS(1867), + [anon_sym_private] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_inline] = ACTIONS(1867), + [anon_sym_overload] = ACTIONS(1867), + [anon_sym_override] = ACTIONS(1867), + [anon_sym_final] = ACTIONS(1867), + [anon_sym_class] = ACTIONS(1867), + [anon_sym_interface] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [anon_sym_typedef] = ACTIONS(1867), + [anon_sym_function] = ACTIONS(1867), + [anon_sym_var] = ACTIONS(1867), + [aux_sym_integer_token1] = ACTIONS(1867), + [aux_sym_integer_token2] = ACTIONS(1865), + [aux_sym_float_token1] = ACTIONS(1867), + [aux_sym_float_token2] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [aux_sym_string_token1] = ACTIONS(1865), + [aux_sym_string_token3] = ACTIONS(1865), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [204] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_package] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_using] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_RPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_RBRACE] = ACTIONS(1518), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_COLON] = ACTIONS(1518), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_RBRACK] = ACTIONS(1518), - [anon_sym_this] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AT_COLON] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_GT_GT_GT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [sym__rangeOperator] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [aux_sym_integer_token1] = ACTIONS(1520), - [aux_sym_integer_token2] = ACTIONS(1518), - [aux_sym_float_token1] = ACTIONS(1520), - [aux_sym_float_token2] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), - [aux_sym_string_token3] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym_identifier] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_package] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_using] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_switch] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_COLON] = ACTIONS(1869), + [anon_sym_cast] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_DOLLARtype] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_untyped] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_RBRACK] = ACTIONS(1869), + [anon_sym_this] = ACTIONS(1871), + [anon_sym_QMARK] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_AT_COLON] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_PERCENT] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1869), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_EQ_GT] = ACTIONS(1869), + [anon_sym_QMARK_QMARK] = ACTIONS(1869), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1871), + [anon_sym_macro] = ACTIONS(1871), + [anon_sym_abstract] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_private] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_inline] = ACTIONS(1871), + [anon_sym_overload] = ACTIONS(1871), + [anon_sym_override] = ACTIONS(1871), + [anon_sym_final] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_interface] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_typedef] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1871), + [anon_sym_var] = ACTIONS(1871), + [aux_sym_integer_token1] = ACTIONS(1871), + [aux_sym_integer_token2] = ACTIONS(1869), + [aux_sym_float_token1] = ACTIONS(1871), + [aux_sym_float_token2] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [aux_sym_string_token1] = ACTIONS(1869), + [aux_sym_string_token3] = ACTIONS(1869), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [205] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1524), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1526), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_QMARK_QMARK] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [sym__rangeOperator] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [aux_sym_integer_token1] = ACTIONS(1508), - [aux_sym_integer_token2] = ACTIONS(1506), - [aux_sym_float_token1] = ACTIONS(1508), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1506), - [aux_sym_string_token3] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1873), + [sym_identifier] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1873), + [anon_sym_package] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(1875), + [anon_sym_import] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_COLON] = ACTIONS(1873), + [anon_sym_cast] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_DOLLARtype] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_untyped] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_RBRACK] = ACTIONS(1873), + [anon_sym_this] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(1875), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_AT_COLON] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1875), + [anon_sym_GT_GT_GT] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1873), + [anon_sym_EQ_GT] = ACTIONS(1873), + [anon_sym_QMARK_QMARK] = ACTIONS(1873), + [anon_sym_EQ] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1875), + [anon_sym_macro] = ACTIONS(1875), + [anon_sym_abstract] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym_overload] = ACTIONS(1875), + [anon_sym_override] = ACTIONS(1875), + [anon_sym_final] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_function] = ACTIONS(1875), + [anon_sym_var] = ACTIONS(1875), + [aux_sym_integer_token1] = ACTIONS(1875), + [aux_sym_integer_token2] = ACTIONS(1873), + [aux_sym_float_token1] = ACTIONS(1875), + [aux_sym_float_token2] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [aux_sym_string_token1] = ACTIONS(1873), + [aux_sym_string_token3] = ACTIONS(1873), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [206] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_package] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_using] = ACTIONS(1530), - [anon_sym_throw] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_RPAREN] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_RBRACE] = ACTIONS(1528), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_COLON] = ACTIONS(1528), - [anon_sym_cast] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(1528), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_untyped] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_RBRACK] = ACTIONS(1528), - [anon_sym_this] = ACTIONS(1530), - [anon_sym_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_AT_COLON] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_GT_GT_GT] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1528), - [anon_sym_PIPE_PIPE] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_EQ_GT] = ACTIONS(1528), - [anon_sym_QMARK_QMARK] = ACTIONS(1528), - [anon_sym_EQ] = ACTIONS(1530), - [sym__rangeOperator] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_macro] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_private] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym_overload] = ACTIONS(1530), - [anon_sym_override] = ACTIONS(1530), - [anon_sym_final] = ACTIONS(1530), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_interface] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_function] = ACTIONS(1530), - [anon_sym_var] = ACTIONS(1530), - [aux_sym_integer_token1] = ACTIONS(1530), - [aux_sym_integer_token2] = ACTIONS(1528), - [aux_sym_float_token1] = ACTIONS(1530), - [aux_sym_float_token2] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [aux_sym_string_token1] = ACTIONS(1528), - [aux_sym_string_token3] = ACTIONS(1528), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(164), + [sym_runtime_type_check_expression] = STATE(164), + [sym_switch_expression] = STATE(164), + [sym_cast_expression] = STATE(164), + [sym_type_trace_expression] = STATE(164), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(164), + [sym_subscript_expression] = STATE(164), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(164), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1453), + [anon_sym_continue] = ACTIONS(1453), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [207] = { - [ts_builtin_sym_end] = ACTIONS(578), - [sym_identifier] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_package] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_import] = ACTIONS(580), - [anon_sym_using] = ACTIONS(580), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_RBRACE] = ACTIONS(578), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_COLON] = ACTIONS(578), - [anon_sym_cast] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_DOLLARtype] = ACTIONS(578), - [anon_sym_return] = ACTIONS(580), - [anon_sym_untyped] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_RBRACK] = ACTIONS(578), - [anon_sym_this] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_AT_COLON] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_new] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(578), - [anon_sym_DASH_DASH] = ACTIONS(578), - [anon_sym_PERCENT] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(578), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_GT_GT_GT] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(578), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(578), - [anon_sym_QMARK_QMARK] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [sym__rangeOperator] = ACTIONS(578), - [anon_sym_null] = ACTIONS(580), - [anon_sym_macro] = ACTIONS(580), - [anon_sym_abstract] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_inline] = ACTIONS(580), - [anon_sym_overload] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), - [anon_sym_class] = ACTIONS(580), - [anon_sym_interface] = ACTIONS(580), - [anon_sym_typedef] = ACTIONS(580), - [anon_sym_function] = ACTIONS(580), - [anon_sym_var] = ACTIONS(580), - [aux_sym_integer_token1] = ACTIONS(580), - [aux_sym_integer_token2] = ACTIONS(578), - [aux_sym_float_token1] = ACTIONS(580), - [aux_sym_float_token2] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [aux_sym_string_token1] = ACTIONS(578), - [aux_sym_string_token3] = ACTIONS(578), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym_identifier] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_package] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1879), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_COLON] = ACTIONS(1877), + [anon_sym_cast] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLARtype] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_untyped] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_RBRACK] = ACTIONS(1877), + [anon_sym_this] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_AT_COLON] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_EQ_GT] = ACTIONS(1877), + [anon_sym_QMARK_QMARK] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1879), + [anon_sym_macro] = ACTIONS(1879), + [anon_sym_abstract] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_overload] = ACTIONS(1879), + [anon_sym_override] = ACTIONS(1879), + [anon_sym_final] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_function] = ACTIONS(1879), + [anon_sym_var] = ACTIONS(1879), + [aux_sym_integer_token1] = ACTIONS(1879), + [aux_sym_integer_token2] = ACTIONS(1877), + [aux_sym_float_token1] = ACTIONS(1879), + [aux_sym_float_token2] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [aux_sym_string_token1] = ACTIONS(1877), + [aux_sym_string_token3] = ACTIONS(1877), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [208] = { - [ts_builtin_sym_end] = ACTIONS(1532), - [sym_identifier] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_package] = ACTIONS(1534), - [anon_sym_DOT] = ACTIONS(1534), - [anon_sym_import] = ACTIONS(1534), - [anon_sym_using] = ACTIONS(1534), - [anon_sym_throw] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_RPAREN] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1534), - [anon_sym_RBRACE] = ACTIONS(1532), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_COLON] = ACTIONS(1532), - [anon_sym_cast] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(1532), - [anon_sym_DOLLARtype] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_untyped] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_RBRACK] = ACTIONS(1532), - [anon_sym_this] = ACTIONS(1534), - [anon_sym_QMARK] = ACTIONS(1534), - [anon_sym_AT] = ACTIONS(1534), - [anon_sym_AT_COLON] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_new] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PERCENT] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_SLASH] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_LT_LT] = ACTIONS(1532), - [anon_sym_GT_GT] = ACTIONS(1534), - [anon_sym_GT_GT_GT] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_CARET] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_EQ_GT] = ACTIONS(1532), - [anon_sym_QMARK_QMARK] = ACTIONS(1532), - [anon_sym_EQ] = ACTIONS(1534), - [sym__rangeOperator] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1534), - [anon_sym_macro] = ACTIONS(1534), - [anon_sym_abstract] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_inline] = ACTIONS(1534), - [anon_sym_overload] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_final] = ACTIONS(1534), - [anon_sym_class] = ACTIONS(1534), - [anon_sym_interface] = ACTIONS(1534), - [anon_sym_typedef] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1534), - [anon_sym_var] = ACTIONS(1534), - [aux_sym_integer_token1] = ACTIONS(1534), - [aux_sym_integer_token2] = ACTIONS(1532), - [aux_sym_float_token1] = ACTIONS(1534), - [aux_sym_float_token2] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [aux_sym_string_token1] = ACTIONS(1532), - [aux_sym_string_token3] = ACTIONS(1532), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym_identifier] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_package] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(1883), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1883), + [anon_sym_throw] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1883), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_COLON] = ACTIONS(1881), + [anon_sym_cast] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLARtype] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_untyped] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_RBRACK] = ACTIONS(1881), + [anon_sym_this] = ACTIONS(1883), + [anon_sym_QMARK] = ACTIONS(1883), + [anon_sym_AT] = ACTIONS(1883), + [anon_sym_AT_COLON] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1883), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_EQ_GT] = ACTIONS(1881), + [anon_sym_QMARK_QMARK] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1883), + [anon_sym_macro] = ACTIONS(1883), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_inline] = ACTIONS(1883), + [anon_sym_overload] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_final] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1883), + [anon_sym_interface] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_typedef] = ACTIONS(1883), + [anon_sym_function] = ACTIONS(1883), + [anon_sym_var] = ACTIONS(1883), + [aux_sym_integer_token1] = ACTIONS(1883), + [aux_sym_integer_token2] = ACTIONS(1881), + [aux_sym_float_token1] = ACTIONS(1883), + [aux_sym_float_token2] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [aux_sym_string_token1] = ACTIONS(1881), + [aux_sym_string_token3] = ACTIONS(1881), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [209] = { - [sym_identifier] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_package] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_import] = ACTIONS(1394), - [anon_sym_using] = ACTIONS(1394), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_case] = ACTIONS(1394), - [anon_sym_default] = ACTIONS(1394), - [anon_sym_cast] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1392), - [anon_sym_DOLLARtype] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_untyped] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_this] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_AT_COLON] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_else] = ACTIONS(1394), - [anon_sym_elseif] = ACTIONS(1392), - [anon_sym_new] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_EQ_GT] = ACTIONS(1392), - [anon_sym_QMARK_QMARK] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1394), - [sym__rangeOperator] = ACTIONS(1392), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_macro] = ACTIONS(1394), - [anon_sym_abstract] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_overload] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_final] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1394), - [anon_sym_interface] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_function] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [aux_sym_integer_token1] = ACTIONS(1394), - [aux_sym_integer_token2] = ACTIONS(1392), - [aux_sym_float_token1] = ACTIONS(1394), - [aux_sym_float_token2] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [aux_sym_string_token1] = ACTIONS(1392), - [aux_sym_string_token3] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1392), + [sym__rhs_expression] = STATE(1192), + [sym__unaryExpression] = STATE(3552), + [sym_runtime_type_check_expression] = STATE(3552), + [sym_switch_expression] = STATE(3552), + [sym_cast_expression] = STATE(3552), + [sym_type_trace_expression] = STATE(3552), + [sym__parenthesized_expression] = STATE(2719), + [sym_range_expression] = STATE(3552), + [sym_subscript_expression] = STATE(3552), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_block] = STATE(3552), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1192), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1887), + [anon_sym_untyped] = ACTIONS(1889), + [anon_sym_break] = ACTIONS(1891), + [anon_sym_continue] = ACTIONS(1891), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [210] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1524), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_QMARK_QMARK] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [sym__rangeOperator] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [aux_sym_integer_token1] = ACTIONS(1508), - [aux_sym_integer_token2] = ACTIONS(1506), - [aux_sym_float_token1] = ACTIONS(1508), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1506), - [aux_sym_string_token3] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1471), + [sym_identifier] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1469), + [anon_sym_throw] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_RBRACE] = ACTIONS(1471), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_COLON] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_RBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_AT_COLON] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1469), + [anon_sym_GT_GT_GT] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_QMARK_QMARK] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_macro] = ACTIONS(1469), + [anon_sym_abstract] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_overload] = ACTIONS(1469), + [anon_sym_override] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [211] = { - [ts_builtin_sym_end] = ACTIONS(1536), - [sym_identifier] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_package] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1538), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_throw] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_RPAREN] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1538), - [anon_sym_RBRACE] = ACTIONS(1536), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_COLON] = ACTIONS(1536), - [anon_sym_cast] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_DOLLARtype] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_untyped] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_RBRACK] = ACTIONS(1536), - [anon_sym_this] = ACTIONS(1538), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(1538), - [anon_sym_AT_COLON] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_new] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1536), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_GT_GT_GT] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1536), - [anon_sym_PIPE_PIPE] = ACTIONS(1536), - [anon_sym_EQ_EQ] = ACTIONS(1536), - [anon_sym_BANG_EQ] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1536), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1536), - [anon_sym_EQ_GT] = ACTIONS(1536), - [anon_sym_QMARK_QMARK] = ACTIONS(1536), - [anon_sym_EQ] = ACTIONS(1538), - [sym__rangeOperator] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1538), - [anon_sym_macro] = ACTIONS(1538), - [anon_sym_abstract] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1538), - [anon_sym_private] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_inline] = ACTIONS(1538), - [anon_sym_overload] = ACTIONS(1538), - [anon_sym_override] = ACTIONS(1538), - [anon_sym_final] = ACTIONS(1538), - [anon_sym_class] = ACTIONS(1538), - [anon_sym_interface] = ACTIONS(1538), - [anon_sym_typedef] = ACTIONS(1538), - [anon_sym_function] = ACTIONS(1538), - [anon_sym_var] = ACTIONS(1538), - [aux_sym_integer_token1] = ACTIONS(1538), - [aux_sym_integer_token2] = ACTIONS(1536), - [aux_sym_float_token1] = ACTIONS(1538), - [aux_sym_float_token2] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [aux_sym_string_token1] = ACTIONS(1536), - [aux_sym_string_token3] = ACTIONS(1536), + [ts_builtin_sym_end] = ACTIONS(1893), + [sym_identifier] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1893), + [anon_sym_package] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1895), + [anon_sym_throw] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_RPAREN] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_COLON] = ACTIONS(1893), + [anon_sym_cast] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_DOLLARtype] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_untyped] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_RBRACK] = ACTIONS(1893), + [anon_sym_this] = ACTIONS(1895), + [anon_sym_QMARK] = ACTIONS(1895), + [anon_sym_AT] = ACTIONS(1895), + [anon_sym_AT_COLON] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1895), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PERCENT] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(1893), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_GT_GT_GT] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1895), + [anon_sym_GT_EQ] = ACTIONS(1893), + [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_QMARK_QMARK] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_macro] = ACTIONS(1895), + [anon_sym_abstract] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1895), + [anon_sym_public] = ACTIONS(1895), + [anon_sym_private] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_inline] = ACTIONS(1895), + [anon_sym_overload] = ACTIONS(1895), + [anon_sym_override] = ACTIONS(1895), + [anon_sym_final] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1895), + [anon_sym_interface] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_typedef] = ACTIONS(1895), + [anon_sym_function] = ACTIONS(1895), + [anon_sym_var] = ACTIONS(1895), + [aux_sym_integer_token1] = ACTIONS(1895), + [aux_sym_integer_token2] = ACTIONS(1893), + [aux_sym_float_token1] = ACTIONS(1895), + [aux_sym_float_token2] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym_string_token1] = ACTIONS(1893), + [aux_sym_string_token3] = ACTIONS(1893), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [212] = { - [sym_identifier] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_package] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_using] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_case] = ACTIONS(1406), - [anon_sym_default] = ACTIONS(1406), - [anon_sym_cast] = ACTIONS(1406), - [anon_sym_COMMA] = ACTIONS(1404), - [anon_sym_DOLLARtype] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_untyped] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_this] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_AT_COLON] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_else] = ACTIONS(1406), - [anon_sym_elseif] = ACTIONS(1404), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1406), - [anon_sym_GT_GT_GT] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1404), - [anon_sym_BANG_EQ] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_EQ_GT] = ACTIONS(1404), - [anon_sym_QMARK_QMARK] = ACTIONS(1404), - [anon_sym_EQ] = ACTIONS(1406), - [sym__rangeOperator] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_macro] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_overload] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_final] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_interface] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [aux_sym_integer_token1] = ACTIONS(1406), - [aux_sym_integer_token2] = ACTIONS(1404), - [aux_sym_float_token1] = ACTIONS(1406), - [aux_sym_float_token2] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym_string_token1] = ACTIONS(1404), - [aux_sym_string_token3] = ACTIONS(1404), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1404), + [ts_builtin_sym_end] = ACTIONS(1897), + [sym_identifier] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1897), + [anon_sym_package] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_import] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(1899), + [anon_sym_throw] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_RPAREN] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1899), + [anon_sym_RBRACE] = ACTIONS(1897), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_COLON] = ACTIONS(1897), + [anon_sym_cast] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DOLLARtype] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_untyped] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_RBRACK] = ACTIONS(1897), + [anon_sym_this] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_AT_COLON] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_EQ_GT] = ACTIONS(1897), + [anon_sym_QMARK_QMARK] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1899), + [anon_sym_macro] = ACTIONS(1899), + [anon_sym_abstract] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1899), + [anon_sym_public] = ACTIONS(1899), + [anon_sym_private] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_inline] = ACTIONS(1899), + [anon_sym_overload] = ACTIONS(1899), + [anon_sym_override] = ACTIONS(1899), + [anon_sym_final] = ACTIONS(1899), + [anon_sym_class] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_typedef] = ACTIONS(1899), + [anon_sym_function] = ACTIONS(1899), + [anon_sym_var] = ACTIONS(1899), + [aux_sym_integer_token1] = ACTIONS(1899), + [aux_sym_integer_token2] = ACTIONS(1897), + [aux_sym_float_token1] = ACTIONS(1899), + [aux_sym_float_token2] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [aux_sym_string_token1] = ACTIONS(1897), + [aux_sym_string_token3] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [213] = { - [ts_builtin_sym_end] = ACTIONS(1506), - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_COLON] = ACTIONS(1506), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_RBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_QMARK_QMARK] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [sym__rangeOperator] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [aux_sym_integer_token1] = ACTIONS(1508), - [aux_sym_integer_token2] = ACTIONS(1506), - [aux_sym_float_token1] = ACTIONS(1508), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1506), - [aux_sym_string_token3] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1901), + [sym_identifier] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1901), + [anon_sym_package] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_import] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_using] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_RPAREN] = ACTIONS(1901), + [anon_sym_switch] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_COLON] = ACTIONS(1901), + [anon_sym_cast] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLARtype] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_untyped] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_RBRACK] = ACTIONS(1901), + [anon_sym_this] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1903), + [anon_sym_AT] = ACTIONS(1903), + [anon_sym_AT_COLON] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_catch] = ACTIONS(1903), + [anon_sym_else] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_PERCENT] = ACTIONS(1901), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1901), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1901), + [anon_sym_AMP_AMP] = ACTIONS(1901), + [anon_sym_PIPE_PIPE] = ACTIONS(1901), + [anon_sym_EQ_EQ] = ACTIONS(1901), + [anon_sym_BANG_EQ] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1901), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_QMARK_QMARK] = ACTIONS(1901), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1903), + [anon_sym_macro] = ACTIONS(1903), + [anon_sym_abstract] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym_overload] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_typedef] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1903), + [anon_sym_var] = ACTIONS(1903), + [aux_sym_integer_token1] = ACTIONS(1903), + [aux_sym_integer_token2] = ACTIONS(1901), + [aux_sym_float_token1] = ACTIONS(1903), + [aux_sym_float_token2] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym_string_token1] = ACTIONS(1901), + [aux_sym_string_token3] = ACTIONS(1901), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [214] = { - [ts_builtin_sym_end] = ACTIONS(594), - [sym_identifier] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_package] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_using] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_RBRACE] = ACTIONS(594), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_COLON] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_RBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_COLON] = ACTIONS(594), - [anon_sym_if] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_GT_GT_GT] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_EQ_GT] = ACTIONS(594), - [anon_sym_QMARK_QMARK] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(592), - [sym__rangeOperator] = ACTIONS(594), - [anon_sym_null] = ACTIONS(592), - [anon_sym_macro] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_inline] = ACTIONS(592), - [anon_sym_overload] = ACTIONS(592), - [anon_sym_override] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1905), + [anon_sym_package] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_using] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_RPAREN] = ACTIONS(1905), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_RBRACE] = ACTIONS(1905), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_COLON] = ACTIONS(1905), + [anon_sym_cast] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1905), + [anon_sym_DOLLARtype] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_untyped] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_RBRACK] = ACTIONS(1905), + [anon_sym_this] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_AT_COLON] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_PERCENT] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_LT_LT] = ACTIONS(1905), + [anon_sym_GT_GT] = ACTIONS(1907), + [anon_sym_GT_GT_GT] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(1905), + [anon_sym_PIPE_PIPE] = ACTIONS(1905), + [anon_sym_EQ_EQ] = ACTIONS(1905), + [anon_sym_BANG_EQ] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(1905), + [anon_sym_GT] = ACTIONS(1907), + [anon_sym_GT_EQ] = ACTIONS(1905), + [anon_sym_EQ_GT] = ACTIONS(1905), + [anon_sym_QMARK_QMARK] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1907), + [anon_sym_macro] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym_overload] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_final] = ACTIONS(1907), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_interface] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_typedef] = ACTIONS(1907), + [anon_sym_function] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1907), + [aux_sym_integer_token1] = ACTIONS(1907), + [aux_sym_integer_token2] = ACTIONS(1905), + [aux_sym_float_token1] = ACTIONS(1907), + [aux_sym_float_token2] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym_string_token1] = ACTIONS(1905), + [aux_sym_string_token3] = ACTIONS(1905), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [215] = { - [ts_builtin_sym_end] = ACTIONS(1540), - [sym_identifier] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1540), - [anon_sym_package] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1542), - [anon_sym_import] = ACTIONS(1542), - [anon_sym_using] = ACTIONS(1542), - [anon_sym_throw] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_RPAREN] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1542), - [anon_sym_RBRACE] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_COLON] = ACTIONS(1540), - [anon_sym_cast] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1540), - [anon_sym_DOLLARtype] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_untyped] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_RBRACK] = ACTIONS(1540), - [anon_sym_this] = ACTIONS(1542), - [anon_sym_QMARK] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_AT_COLON] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1542), - [anon_sym_GT_GT_GT] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_EQ_GT] = ACTIONS(1540), - [anon_sym_QMARK_QMARK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1542), - [sym__rangeOperator] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1542), - [anon_sym_macro] = ACTIONS(1542), - [anon_sym_abstract] = ACTIONS(1542), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1542), - [anon_sym_private] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_inline] = ACTIONS(1542), - [anon_sym_overload] = ACTIONS(1542), - [anon_sym_override] = ACTIONS(1542), - [anon_sym_final] = ACTIONS(1542), - [anon_sym_class] = ACTIONS(1542), - [anon_sym_interface] = ACTIONS(1542), - [anon_sym_typedef] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1542), - [anon_sym_var] = ACTIONS(1542), - [aux_sym_integer_token1] = ACTIONS(1542), - [aux_sym_integer_token2] = ACTIONS(1540), - [aux_sym_float_token1] = ACTIONS(1542), - [aux_sym_float_token2] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [aux_sym_string_token1] = ACTIONS(1540), - [aux_sym_string_token3] = ACTIONS(1540), + [ts_builtin_sym_end] = ACTIONS(1909), + [sym_identifier] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(1909), + [anon_sym_package] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(1911), + [anon_sym_import] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_using] = ACTIONS(1911), + [anon_sym_throw] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_RPAREN] = ACTIONS(1909), + [anon_sym_switch] = ACTIONS(1911), + [anon_sym_RBRACE] = ACTIONS(1909), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_COLON] = ACTIONS(1909), + [anon_sym_cast] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_DOLLARtype] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_untyped] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_RBRACK] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1911), + [anon_sym_QMARK] = ACTIONS(1911), + [anon_sym_AT] = ACTIONS(1911), + [anon_sym_AT_COLON] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_catch] = ACTIONS(1911), + [anon_sym_else] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_new] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PERCENT] = ACTIONS(1909), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_LT_LT] = ACTIONS(1909), + [anon_sym_GT_GT] = ACTIONS(1911), + [anon_sym_GT_GT_GT] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_EQ_GT] = ACTIONS(1909), + [anon_sym_QMARK_QMARK] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1911), + [anon_sym_macro] = ACTIONS(1911), + [anon_sym_abstract] = ACTIONS(1911), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_private] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_overload] = ACTIONS(1911), + [anon_sym_override] = ACTIONS(1911), + [anon_sym_final] = ACTIONS(1911), + [anon_sym_class] = ACTIONS(1911), + [anon_sym_interface] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_typedef] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(1911), + [anon_sym_var] = ACTIONS(1911), + [aux_sym_integer_token1] = ACTIONS(1911), + [aux_sym_integer_token2] = ACTIONS(1909), + [aux_sym_float_token1] = ACTIONS(1911), + [aux_sym_float_token2] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym_string_token1] = ACTIONS(1909), + [aux_sym_string_token3] = ACTIONS(1909), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [216] = { - [ts_builtin_sym_end] = ACTIONS(1544), - [sym_identifier] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_package] = ACTIONS(1546), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(1546), - [anon_sym_using] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_RPAREN] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1546), - [anon_sym_RBRACE] = ACTIONS(1544), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_COLON] = ACTIONS(1544), - [anon_sym_cast] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1544), - [anon_sym_DOLLARtype] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_untyped] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_RBRACK] = ACTIONS(1544), - [anon_sym_this] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_AT] = ACTIONS(1546), - [anon_sym_AT_COLON] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_new] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_GT_GT_GT] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1544), - [anon_sym_PIPE_PIPE] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1544), - [anon_sym_EQ_GT] = ACTIONS(1544), - [anon_sym_QMARK_QMARK] = ACTIONS(1544), - [anon_sym_EQ] = ACTIONS(1546), - [sym__rangeOperator] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1546), - [anon_sym_macro] = ACTIONS(1546), - [anon_sym_abstract] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym_overload] = ACTIONS(1546), - [anon_sym_override] = ACTIONS(1546), - [anon_sym_final] = ACTIONS(1546), - [anon_sym_class] = ACTIONS(1546), - [anon_sym_interface] = ACTIONS(1546), - [anon_sym_typedef] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(1546), - [anon_sym_var] = ACTIONS(1546), - [aux_sym_integer_token1] = ACTIONS(1546), - [aux_sym_integer_token2] = ACTIONS(1544), - [aux_sym_float_token1] = ACTIONS(1546), - [aux_sym_float_token2] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [aux_sym_string_token1] = ACTIONS(1544), - [aux_sym_string_token3] = ACTIONS(1544), + [ts_builtin_sym_end] = ACTIONS(1913), + [sym_identifier] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_package] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(1915), + [anon_sym_import] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_using] = ACTIONS(1915), + [anon_sym_throw] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_RPAREN] = ACTIONS(1913), + [anon_sym_switch] = ACTIONS(1915), + [anon_sym_RBRACE] = ACTIONS(1913), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_COLON] = ACTIONS(1913), + [anon_sym_cast] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_DOLLARtype] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_untyped] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_RBRACK] = ACTIONS(1913), + [anon_sym_this] = ACTIONS(1915), + [anon_sym_QMARK] = ACTIONS(1915), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_AT_COLON] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_catch] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_EQ_GT] = ACTIONS(1913), + [anon_sym_QMARK_QMARK] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), + [anon_sym_null] = ACTIONS(1915), + [anon_sym_macro] = ACTIONS(1915), + [anon_sym_abstract] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_private] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_overload] = ACTIONS(1915), + [anon_sym_override] = ACTIONS(1915), + [anon_sym_final] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_interface] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_function] = ACTIONS(1915), + [anon_sym_var] = ACTIONS(1915), + [aux_sym_integer_token1] = ACTIONS(1915), + [aux_sym_integer_token2] = ACTIONS(1913), + [aux_sym_float_token1] = ACTIONS(1915), + [aux_sym_float_token2] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = ACTIONS(1915), + [aux_sym_string_token1] = ACTIONS(1913), + [aux_sym_string_token3] = ACTIONS(1913), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [217] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_RPAREN] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_RBRACE] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1502), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_RBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1502), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), + [ts_builtin_sym_end] = ACTIONS(1917), + [sym_identifier] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_package] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_import] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1919), + [anon_sym_throw] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_RPAREN] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1919), + [anon_sym_RBRACE] = ACTIONS(1917), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_COLON] = ACTIONS(1917), + [anon_sym_cast] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1917), + [anon_sym_DOLLARtype] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_untyped] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_RBRACK] = ACTIONS(1917), + [anon_sym_this] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1919), + [anon_sym_AT] = ACTIONS(1919), + [anon_sym_AT_COLON] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_PERCENT] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1917), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_GT_GT_GT] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_CARET] = ACTIONS(1917), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_PIPE_PIPE] = ACTIONS(1917), + [anon_sym_EQ_EQ] = ACTIONS(1917), + [anon_sym_BANG_EQ] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1917), + [anon_sym_GT] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1917), + [anon_sym_EQ_GT] = ACTIONS(1917), + [anon_sym_QMARK_QMARK] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), + [anon_sym_null] = ACTIONS(1919), + [anon_sym_macro] = ACTIONS(1919), + [anon_sym_abstract] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1919), + [anon_sym_public] = ACTIONS(1919), + [anon_sym_private] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_inline] = ACTIONS(1919), + [anon_sym_overload] = ACTIONS(1919), + [anon_sym_override] = ACTIONS(1919), + [anon_sym_final] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_typedef] = ACTIONS(1919), + [anon_sym_function] = ACTIONS(1919), + [anon_sym_var] = ACTIONS(1919), + [aux_sym_integer_token1] = ACTIONS(1919), + [aux_sym_integer_token2] = ACTIONS(1917), + [aux_sym_float_token1] = ACTIONS(1919), + [aux_sym_float_token2] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [aux_sym_string_token1] = ACTIONS(1917), + [aux_sym_string_token3] = ACTIONS(1917), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [218] = { - [ts_builtin_sym_end] = ACTIONS(1548), - [sym_identifier] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_package] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(1550), - [anon_sym_import] = ACTIONS(1550), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_throw] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_RPAREN] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1550), - [anon_sym_RBRACE] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_COLON] = ACTIONS(1548), - [anon_sym_cast] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_DOLLARtype] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_untyped] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_RBRACK] = ACTIONS(1548), - [anon_sym_this] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_AT] = ACTIONS(1550), - [anon_sym_AT_COLON] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1548), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_GT_GT_GT] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ_GT] = ACTIONS(1548), - [anon_sym_QMARK_QMARK] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1550), - [sym__rangeOperator] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1550), - [anon_sym_macro] = ACTIONS(1550), - [anon_sym_abstract] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_public] = ACTIONS(1550), - [anon_sym_private] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_inline] = ACTIONS(1550), - [anon_sym_overload] = ACTIONS(1550), - [anon_sym_override] = ACTIONS(1550), - [anon_sym_final] = ACTIONS(1550), - [anon_sym_class] = ACTIONS(1550), - [anon_sym_interface] = ACTIONS(1550), - [anon_sym_typedef] = ACTIONS(1550), - [anon_sym_function] = ACTIONS(1550), - [anon_sym_var] = ACTIONS(1550), - [aux_sym_integer_token1] = ACTIONS(1550), - [aux_sym_integer_token2] = ACTIONS(1548), - [aux_sym_float_token1] = ACTIONS(1550), - [aux_sym_float_token2] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [aux_sym_string_token1] = ACTIONS(1548), - [aux_sym_string_token3] = ACTIONS(1548), + [ts_builtin_sym_end] = ACTIONS(1921), + [sym_identifier] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1921), + [anon_sym_package] = ACTIONS(1923), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(1923), + [anon_sym_throw] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_RPAREN] = ACTIONS(1921), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_RBRACE] = ACTIONS(1921), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_COLON] = ACTIONS(1921), + [anon_sym_cast] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_DOLLARtype] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_untyped] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_RBRACK] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1923), + [anon_sym_QMARK] = ACTIONS(1923), + [anon_sym_AT] = ACTIONS(1923), + [anon_sym_AT_COLON] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_catch] = ACTIONS(1923), + [anon_sym_else] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_PERCENT] = ACTIONS(1921), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_GT_GT_GT] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP_AMP] = ACTIONS(1921), + [anon_sym_PIPE_PIPE] = ACTIONS(1921), + [anon_sym_EQ_EQ] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_LT_EQ] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(1921), + [anon_sym_EQ_GT] = ACTIONS(1921), + [anon_sym_QMARK_QMARK] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1923), + [anon_sym_macro] = ACTIONS(1923), + [anon_sym_abstract] = ACTIONS(1923), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_private] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym_inline] = ACTIONS(1923), + [anon_sym_overload] = ACTIONS(1923), + [anon_sym_override] = ACTIONS(1923), + [anon_sym_final] = ACTIONS(1923), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_interface] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_typedef] = ACTIONS(1923), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_var] = ACTIONS(1923), + [aux_sym_integer_token1] = ACTIONS(1923), + [aux_sym_integer_token2] = ACTIONS(1921), + [aux_sym_float_token1] = ACTIONS(1923), + [aux_sym_float_token2] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [aux_sym_string_token1] = ACTIONS(1921), + [aux_sym_string_token3] = ACTIONS(1921), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [219] = { - [ts_builtin_sym_end] = ACTIONS(1552), - [sym_identifier] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_package] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_import] = ACTIONS(1554), - [anon_sym_using] = ACTIONS(1554), - [anon_sym_throw] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_RPAREN] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1554), - [anon_sym_RBRACE] = ACTIONS(1552), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_COLON] = ACTIONS(1552), - [anon_sym_cast] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_DOLLARtype] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_untyped] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_RBRACK] = ACTIONS(1552), - [anon_sym_this] = ACTIONS(1554), - [anon_sym_QMARK] = ACTIONS(1554), - [anon_sym_AT] = ACTIONS(1554), - [anon_sym_AT_COLON] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PERCENT] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1554), - [anon_sym_GT_GT_GT] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_CARET] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1554), - [anon_sym_GT_EQ] = ACTIONS(1552), - [anon_sym_EQ_GT] = ACTIONS(1552), - [anon_sym_QMARK_QMARK] = ACTIONS(1552), - [anon_sym_EQ] = ACTIONS(1554), - [sym__rangeOperator] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1554), - [anon_sym_macro] = ACTIONS(1554), - [anon_sym_abstract] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_public] = ACTIONS(1554), - [anon_sym_private] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_inline] = ACTIONS(1554), - [anon_sym_overload] = ACTIONS(1554), - [anon_sym_override] = ACTIONS(1554), - [anon_sym_final] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1554), - [anon_sym_interface] = ACTIONS(1554), - [anon_sym_typedef] = ACTIONS(1554), - [anon_sym_function] = ACTIONS(1554), - [anon_sym_var] = ACTIONS(1554), - [aux_sym_integer_token1] = ACTIONS(1554), - [aux_sym_integer_token2] = ACTIONS(1552), - [aux_sym_float_token1] = ACTIONS(1554), - [aux_sym_float_token2] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [aux_sym_string_token1] = ACTIONS(1552), - [aux_sym_string_token3] = ACTIONS(1552), + [ts_builtin_sym_end] = ACTIONS(1925), + [sym_identifier] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(1927), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_using] = ACTIONS(1927), + [anon_sym_throw] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_RPAREN] = ACTIONS(1925), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_RBRACE] = ACTIONS(1925), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_COLON] = ACTIONS(1925), + [anon_sym_cast] = ACTIONS(1927), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_DOLLARtype] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_untyped] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_RBRACK] = ACTIONS(1925), + [anon_sym_this] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1927), + [anon_sym_AT] = ACTIONS(1927), + [anon_sym_AT_COLON] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_PERCENT] = ACTIONS(1925), + [anon_sym_SLASH] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_GT_GT_GT] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_EQ_EQ] = ACTIONS(1925), + [anon_sym_BANG_EQ] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1925), + [anon_sym_EQ_GT] = ACTIONS(1925), + [anon_sym_QMARK_QMARK] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1925), + [anon_sym_null] = ACTIONS(1927), + [anon_sym_macro] = ACTIONS(1927), + [anon_sym_abstract] = ACTIONS(1927), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_private] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_inline] = ACTIONS(1927), + [anon_sym_overload] = ACTIONS(1927), + [anon_sym_override] = ACTIONS(1927), + [anon_sym_final] = ACTIONS(1927), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_typedef] = ACTIONS(1927), + [anon_sym_function] = ACTIONS(1927), + [anon_sym_var] = ACTIONS(1927), + [aux_sym_integer_token1] = ACTIONS(1927), + [aux_sym_integer_token2] = ACTIONS(1925), + [aux_sym_float_token1] = ACTIONS(1927), + [aux_sym_float_token2] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [aux_sym_string_token1] = ACTIONS(1925), + [aux_sym_string_token3] = ACTIONS(1925), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [220] = { - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_package] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_import] = ACTIONS(1398), - [anon_sym_using] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_case] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_cast] = ACTIONS(1398), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_DOLLARtype] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_untyped] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_this] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_AT_COLON] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_elseif] = ACTIONS(1396), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_EQ_GT] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1398), - [sym__rangeOperator] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_macro] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_public] = ACTIONS(1398), - [anon_sym_private] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_overload] = ACTIONS(1398), - [anon_sym_override] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_interface] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [aux_sym_integer_token1] = ACTIONS(1398), - [aux_sym_integer_token2] = ACTIONS(1396), - [aux_sym_float_token1] = ACTIONS(1398), - [aux_sym_float_token2] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [aux_sym_string_token1] = ACTIONS(1396), - [aux_sym_string_token3] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1396), + [ts_builtin_sym_end] = ACTIONS(1929), + [sym_identifier] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1929), + [anon_sym_package] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_RPAREN] = ACTIONS(1929), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_RBRACE] = ACTIONS(1929), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_COLON] = ACTIONS(1929), + [anon_sym_cast] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_DOLLARtype] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_untyped] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_RBRACK] = ACTIONS(1929), + [anon_sym_this] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_AT] = ACTIONS(1931), + [anon_sym_AT_COLON] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [anon_sym_PERCENT] = ACTIONS(1929), + [anon_sym_SLASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1931), + [anon_sym_GT_GT_GT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1931), + [anon_sym_GT_EQ] = ACTIONS(1929), + [anon_sym_EQ_GT] = ACTIONS(1929), + [anon_sym_QMARK_QMARK] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [anon_sym_null] = ACTIONS(1931), + [anon_sym_macro] = ACTIONS(1931), + [anon_sym_abstract] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_overload] = ACTIONS(1931), + [anon_sym_override] = ACTIONS(1931), + [anon_sym_final] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_function] = ACTIONS(1931), + [anon_sym_var] = ACTIONS(1931), + [aux_sym_integer_token1] = ACTIONS(1931), + [aux_sym_integer_token2] = ACTIONS(1929), + [aux_sym_float_token1] = ACTIONS(1931), + [aux_sym_float_token2] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [aux_sym_string_token1] = ACTIONS(1929), + [aux_sym_string_token3] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [221] = { - [ts_builtin_sym_end] = ACTIONS(1556), - [sym_identifier] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_package] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_import] = ACTIONS(1558), - [anon_sym_using] = ACTIONS(1558), - [anon_sym_throw] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_RPAREN] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1558), - [anon_sym_RBRACE] = ACTIONS(1556), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_COLON] = ACTIONS(1556), - [anon_sym_cast] = ACTIONS(1558), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_DOLLARtype] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_untyped] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_RBRACK] = ACTIONS(1556), - [anon_sym_this] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(1558), - [anon_sym_AT] = ACTIONS(1558), - [anon_sym_AT_COLON] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1558), - [anon_sym_GT_GT_GT] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1556), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_EQ_GT] = ACTIONS(1556), - [anon_sym_QMARK_QMARK] = ACTIONS(1556), - [anon_sym_EQ] = ACTIONS(1558), - [sym__rangeOperator] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1558), - [anon_sym_macro] = ACTIONS(1558), - [anon_sym_abstract] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_public] = ACTIONS(1558), - [anon_sym_private] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_inline] = ACTIONS(1558), - [anon_sym_overload] = ACTIONS(1558), - [anon_sym_override] = ACTIONS(1558), - [anon_sym_final] = ACTIONS(1558), - [anon_sym_class] = ACTIONS(1558), - [anon_sym_interface] = ACTIONS(1558), - [anon_sym_typedef] = ACTIONS(1558), - [anon_sym_function] = ACTIONS(1558), - [anon_sym_var] = ACTIONS(1558), - [aux_sym_integer_token1] = ACTIONS(1558), - [aux_sym_integer_token2] = ACTIONS(1556), - [aux_sym_float_token1] = ACTIONS(1558), - [aux_sym_float_token2] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [aux_sym_string_token1] = ACTIONS(1556), - [aux_sym_string_token3] = ACTIONS(1556), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(170), + [sym_runtime_type_check_expression] = STATE(170), + [sym_switch_expression] = STATE(170), + [sym_cast_expression] = STATE(170), + [sym_type_trace_expression] = STATE(170), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(170), + [sym_subscript_expression] = STATE(170), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(170), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1735), + [anon_sym_continue] = ACTIONS(1735), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [222] = { - [ts_builtin_sym_end] = ACTIONS(1560), - [sym_identifier] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1562), - [anon_sym_DOT] = ACTIONS(1562), - [anon_sym_import] = ACTIONS(1562), - [anon_sym_using] = ACTIONS(1562), - [anon_sym_throw] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1562), - [anon_sym_RBRACE] = ACTIONS(1560), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_COLON] = ACTIONS(1560), - [anon_sym_cast] = ACTIONS(1562), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_DOLLARtype] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_untyped] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_RBRACK] = ACTIONS(1560), - [anon_sym_this] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_AT] = ACTIONS(1562), - [anon_sym_AT_COLON] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_GT_GT_GT] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_EQ_GT] = ACTIONS(1560), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_EQ] = ACTIONS(1562), - [sym__rangeOperator] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1562), - [anon_sym_macro] = ACTIONS(1562), - [anon_sym_abstract] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_inline] = ACTIONS(1562), - [anon_sym_overload] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_final] = ACTIONS(1562), - [anon_sym_class] = ACTIONS(1562), - [anon_sym_interface] = ACTIONS(1562), - [anon_sym_typedef] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1562), - [anon_sym_var] = ACTIONS(1562), - [aux_sym_integer_token1] = ACTIONS(1562), - [aux_sym_integer_token2] = ACTIONS(1560), - [aux_sym_float_token1] = ACTIONS(1562), - [aux_sym_float_token2] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [aux_sym_string_token1] = ACTIONS(1560), - [aux_sym_string_token3] = ACTIONS(1560), + [ts_builtin_sym_end] = ACTIONS(1933), + [sym_identifier] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_package] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_RPAREN] = ACTIONS(1933), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_RBRACE] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_COLON] = ACTIONS(1933), + [anon_sym_cast] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_DOLLARtype] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_untyped] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_RBRACK] = ACTIONS(1933), + [anon_sym_this] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1935), + [anon_sym_AT_COLON] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PERCENT] = ACTIONS(1933), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_LT_LT] = ACTIONS(1933), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_GT_GT_GT] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_PIPE_PIPE] = ACTIONS(1933), + [anon_sym_EQ_EQ] = ACTIONS(1933), + [anon_sym_BANG_EQ] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1933), + [anon_sym_GT] = ACTIONS(1935), + [anon_sym_GT_EQ] = ACTIONS(1933), + [anon_sym_EQ_GT] = ACTIONS(1933), + [anon_sym_QMARK_QMARK] = ACTIONS(1933), + [anon_sym_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1935), + [anon_sym_macro] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym_overload] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_final] = ACTIONS(1935), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_typedef] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [aux_sym_integer_token1] = ACTIONS(1935), + [aux_sym_integer_token2] = ACTIONS(1933), + [aux_sym_float_token1] = ACTIONS(1935), + [aux_sym_float_token2] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [aux_sym_string_token1] = ACTIONS(1933), + [aux_sym_string_token3] = ACTIONS(1933), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [223] = { - [sym_identifier] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_package] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_case] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_cast] = ACTIONS(1402), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_DOLLARtype] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_untyped] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_this] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_AT_COLON] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_else] = ACTIONS(1402), - [anon_sym_elseif] = ACTIONS(1400), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_GT] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [sym__rangeOperator] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_macro] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_overload] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_final] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [aux_sym_integer_token1] = ACTIONS(1402), - [aux_sym_integer_token2] = ACTIONS(1400), - [aux_sym_float_token1] = ACTIONS(1402), - [aux_sym_float_token2] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [aux_sym_string_token1] = ACTIONS(1400), - [aux_sym_string_token3] = ACTIONS(1400), + [ts_builtin_sym_end] = ACTIONS(1455), + [sym_identifier] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_package] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_RBRACE] = ACTIONS(1455), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_COLON] = ACTIONS(1455), + [anon_sym_cast] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_DOLLARtype] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_untyped] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_RBRACK] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_AT_COLON] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_catch] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_GT_GT_GT] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_QMARK] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_macro] = ACTIONS(1457), + [anon_sym_abstract] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [anon_sym_overload] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_final] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [aux_sym_integer_token1] = ACTIONS(1457), + [aux_sym_integer_token2] = ACTIONS(1455), + [aux_sym_float_token1] = ACTIONS(1457), + [aux_sym_float_token2] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [aux_sym_string_token1] = ACTIONS(1455), + [aux_sym_string_token3] = ACTIONS(1455), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1400), [sym__closing_brace_unmarker] = ACTIONS(3), }, [224] = { - [ts_builtin_sym_end] = ACTIONS(1564), - [sym_identifier] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_package] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_import] = ACTIONS(1566), - [anon_sym_using] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_RPAREN] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1566), - [anon_sym_RBRACE] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_COLON] = ACTIONS(1564), - [anon_sym_cast] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_untyped] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_RBRACK] = ACTIONS(1564), - [anon_sym_this] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_AT_COLON] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_new] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_PERCENT] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1566), - [anon_sym_GT_GT_GT] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1564), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_EQ_GT] = ACTIONS(1564), - [anon_sym_QMARK_QMARK] = ACTIONS(1564), - [anon_sym_EQ] = ACTIONS(1566), - [sym__rangeOperator] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1566), - [anon_sym_macro] = ACTIONS(1566), - [anon_sym_abstract] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1566), - [anon_sym_private] = ACTIONS(1566), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_inline] = ACTIONS(1566), - [anon_sym_overload] = ACTIONS(1566), - [anon_sym_override] = ACTIONS(1566), - [anon_sym_final] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(1566), - [anon_sym_interface] = ACTIONS(1566), - [anon_sym_typedef] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(1566), - [anon_sym_var] = ACTIONS(1566), - [aux_sym_integer_token1] = ACTIONS(1566), - [aux_sym_integer_token2] = ACTIONS(1564), - [aux_sym_float_token1] = ACTIONS(1566), - [aux_sym_float_token2] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [aux_sym_string_token1] = ACTIONS(1564), - [aux_sym_string_token3] = ACTIONS(1564), + [ts_builtin_sym_end] = ACTIONS(1937), + [sym_identifier] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(1937), + [anon_sym_package] = ACTIONS(1939), + [anon_sym_DOT] = ACTIONS(1939), + [anon_sym_import] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_throw] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_RPAREN] = ACTIONS(1937), + [anon_sym_switch] = ACTIONS(1939), + [anon_sym_RBRACE] = ACTIONS(1937), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_COLON] = ACTIONS(1937), + [anon_sym_cast] = ACTIONS(1939), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_DOLLARtype] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_untyped] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_RBRACK] = ACTIONS(1937), + [anon_sym_this] = ACTIONS(1939), + [anon_sym_QMARK] = ACTIONS(1939), + [anon_sym_AT] = ACTIONS(1939), + [anon_sym_AT_COLON] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(1939), + [anon_sym_else] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1937), + [anon_sym_DASH_DASH] = ACTIONS(1937), + [anon_sym_PERCENT] = ACTIONS(1937), + [anon_sym_SLASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_LT_LT] = ACTIONS(1937), + [anon_sym_GT_GT] = ACTIONS(1939), + [anon_sym_GT_GT_GT] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1937), + [anon_sym_AMP_AMP] = ACTIONS(1937), + [anon_sym_PIPE_PIPE] = ACTIONS(1937), + [anon_sym_EQ_EQ] = ACTIONS(1937), + [anon_sym_BANG_EQ] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_LT_EQ] = ACTIONS(1937), + [anon_sym_GT] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(1937), + [anon_sym_EQ_GT] = ACTIONS(1937), + [anon_sym_QMARK_QMARK] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1937), + [anon_sym_null] = ACTIONS(1939), + [anon_sym_macro] = ACTIONS(1939), + [anon_sym_abstract] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_private] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym_overload] = ACTIONS(1939), + [anon_sym_override] = ACTIONS(1939), + [anon_sym_final] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_interface] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_function] = ACTIONS(1939), + [anon_sym_var] = ACTIONS(1939), + [aux_sym_integer_token1] = ACTIONS(1939), + [aux_sym_integer_token2] = ACTIONS(1937), + [aux_sym_float_token1] = ACTIONS(1939), + [aux_sym_float_token2] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [aux_sym_string_token1] = ACTIONS(1937), + [aux_sym_string_token3] = ACTIONS(1937), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [225] = { - [ts_builtin_sym_end] = ACTIONS(1568), - [sym_identifier] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_package] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(1570), - [anon_sym_using] = ACTIONS(1570), - [anon_sym_throw] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_RPAREN] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1570), - [anon_sym_RBRACE] = ACTIONS(1568), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_COLON] = ACTIONS(1568), - [anon_sym_cast] = ACTIONS(1570), - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_DOLLARtype] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_untyped] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_RBRACK] = ACTIONS(1568), - [anon_sym_this] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(1570), - [anon_sym_AT] = ACTIONS(1570), - [anon_sym_AT_COLON] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_DASH_DASH] = ACTIONS(1568), - [anon_sym_PERCENT] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_LT_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1570), - [anon_sym_GT_GT_GT] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_LT_EQ] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_EQ_GT] = ACTIONS(1568), - [anon_sym_QMARK_QMARK] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1570), - [sym__rangeOperator] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1570), - [anon_sym_macro] = ACTIONS(1570), - [anon_sym_abstract] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_public] = ACTIONS(1570), - [anon_sym_private] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_inline] = ACTIONS(1570), - [anon_sym_overload] = ACTIONS(1570), - [anon_sym_override] = ACTIONS(1570), - [anon_sym_final] = ACTIONS(1570), - [anon_sym_class] = ACTIONS(1570), - [anon_sym_interface] = ACTIONS(1570), - [anon_sym_typedef] = ACTIONS(1570), - [anon_sym_function] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [aux_sym_integer_token1] = ACTIONS(1570), - [aux_sym_integer_token2] = ACTIONS(1568), - [aux_sym_float_token1] = ACTIONS(1570), - [aux_sym_float_token2] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [aux_sym_string_token1] = ACTIONS(1568), - [aux_sym_string_token3] = ACTIONS(1568), + [ts_builtin_sym_end] = ACTIONS(1941), + [sym_identifier] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(1941), + [anon_sym_package] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_import] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_RPAREN] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1943), + [anon_sym_RBRACE] = ACTIONS(1941), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_COLON] = ACTIONS(1941), + [anon_sym_cast] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_DOLLARtype] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_untyped] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_RBRACK] = ACTIONS(1941), + [anon_sym_this] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1943), + [anon_sym_AT] = ACTIONS(1943), + [anon_sym_AT_COLON] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_PERCENT] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1941), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_GT_GT_GT] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_EQ_GT] = ACTIONS(1941), + [anon_sym_QMARK_QMARK] = ACTIONS(1941), + [anon_sym_EQ] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1943), + [anon_sym_macro] = ACTIONS(1943), + [anon_sym_abstract] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_private] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym_overload] = ACTIONS(1943), + [anon_sym_override] = ACTIONS(1943), + [anon_sym_final] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_interface] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_function] = ACTIONS(1943), + [anon_sym_var] = ACTIONS(1943), + [aux_sym_integer_token1] = ACTIONS(1943), + [aux_sym_integer_token2] = ACTIONS(1941), + [aux_sym_float_token1] = ACTIONS(1943), + [aux_sym_float_token2] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [aux_sym_string_token1] = ACTIONS(1941), + [aux_sym_string_token3] = ACTIONS(1941), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [226] = { - [ts_builtin_sym_end] = ACTIONS(1572), - [sym_identifier] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_package] = ACTIONS(1575), - [anon_sym_DOT] = ACTIONS(1575), - [anon_sym_import] = ACTIONS(1575), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_throw] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_RPAREN] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_RBRACE] = ACTIONS(1572), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_COLON] = ACTIONS(1572), - [anon_sym_cast] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_DOLLARtype] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_untyped] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_RBRACK] = ACTIONS(1572), - [anon_sym_this] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1575), - [anon_sym_AT] = ACTIONS(1575), - [anon_sym_AT_COLON] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_PERCENT] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1575), - [anon_sym_GT_GT_GT] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(1572), - [anon_sym_QMARK_QMARK] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1575), - [sym__rangeOperator] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_macro] = ACTIONS(1575), - [anon_sym_abstract] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_public] = ACTIONS(1575), - [anon_sym_private] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [anon_sym_overload] = ACTIONS(1575), - [anon_sym_override] = ACTIONS(1575), - [anon_sym_final] = ACTIONS(1575), - [anon_sym_class] = ACTIONS(1575), - [anon_sym_interface] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1575), - [anon_sym_function] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [aux_sym_integer_token1] = ACTIONS(1575), - [aux_sym_integer_token2] = ACTIONS(1572), - [aux_sym_float_token1] = ACTIONS(1575), - [aux_sym_float_token2] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym_string_token1] = ACTIONS(1572), - [aux_sym_string_token3] = ACTIONS(1572), + [ts_builtin_sym_end] = ACTIONS(1945), + [sym_identifier] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_RPAREN] = ACTIONS(1945), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_RBRACE] = ACTIONS(1945), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_COLON] = ACTIONS(1945), + [anon_sym_cast] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_DOLLARtype] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_untyped] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_RBRACK] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_QMARK] = ACTIONS(1947), + [anon_sym_AT] = ACTIONS(1947), + [anon_sym_AT_COLON] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_EQ_GT] = ACTIONS(1945), + [anon_sym_QMARK_QMARK] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_macro] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym_overload] = ACTIONS(1947), + [anon_sym_override] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_interface] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_var] = ACTIONS(1947), + [aux_sym_integer_token1] = ACTIONS(1947), + [aux_sym_integer_token2] = ACTIONS(1945), + [aux_sym_float_token1] = ACTIONS(1947), + [aux_sym_float_token2] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym_string_token1] = ACTIONS(1945), + [aux_sym_string_token3] = ACTIONS(1945), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [227] = { - [ts_builtin_sym_end] = ACTIONS(1578), - [sym_identifier] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_package] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1580), - [anon_sym_import] = ACTIONS(1580), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_throw] = ACTIONS(1580), + [sym__rhs_expression] = STATE(879), + [sym__unaryExpression] = STATE(162), + [sym_runtime_type_check_expression] = STATE(162), + [sym_switch_expression] = STATE(162), + [sym_cast_expression] = STATE(162), + [sym_type_trace_expression] = STATE(162), + [sym__parenthesized_expression] = STATE(975), + [sym_range_expression] = STATE(162), + [sym_subscript_expression] = STATE(162), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(879), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [aux_sym__parenthesized_expression_repeat1] = STATE(162), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_RPAREN] = ACTIONS(1578), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_RBRACE] = ACTIONS(1578), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_COLON] = ACTIONS(1578), - [anon_sym_cast] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1578), - [anon_sym_DOLLARtype] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_untyped] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_RBRACK] = ACTIONS(1578), - [anon_sym_this] = ACTIONS(1580), - [anon_sym_QMARK] = ACTIONS(1580), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_AT_COLON] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_new] = ACTIONS(1580), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_PERCENT] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_LT_LT] = ACTIONS(1578), - [anon_sym_GT_GT] = ACTIONS(1580), - [anon_sym_GT_GT_GT] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_CARET] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1578), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1578), - [anon_sym_EQ_GT] = ACTIONS(1578), - [anon_sym_QMARK_QMARK] = ACTIONS(1578), - [anon_sym_EQ] = ACTIONS(1580), - [sym__rangeOperator] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_macro] = ACTIONS(1580), - [anon_sym_abstract] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_inline] = ACTIONS(1580), - [anon_sym_overload] = ACTIONS(1580), - [anon_sym_override] = ACTIONS(1580), - [anon_sym_final] = ACTIONS(1580), - [anon_sym_class] = ACTIONS(1580), - [anon_sym_interface] = ACTIONS(1580), - [anon_sym_typedef] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [aux_sym_integer_token1] = ACTIONS(1580), - [aux_sym_integer_token2] = ACTIONS(1578), - [aux_sym_float_token1] = ACTIONS(1580), - [aux_sym_float_token2] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [aux_sym_string_token1] = ACTIONS(1578), - [aux_sym_string_token3] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1359), + [anon_sym_untyped] = ACTIONS(1361), + [anon_sym_break] = ACTIONS(1632), + [anon_sym_continue] = ACTIONS(1632), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [228] = { - [ts_builtin_sym_end] = ACTIONS(1582), - [sym_identifier] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_package] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_import] = ACTIONS(1584), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_throw] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_RPAREN] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_RBRACE] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_COLON] = ACTIONS(1582), - [anon_sym_cast] = ACTIONS(1584), - [anon_sym_COMMA] = ACTIONS(1582), - [anon_sym_DOLLARtype] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_untyped] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_RBRACK] = ACTIONS(1582), - [anon_sym_this] = ACTIONS(1584), - [anon_sym_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_AT_COLON] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_new] = ACTIONS(1584), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_GT_GT_GT] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_EQ_GT] = ACTIONS(1582), - [anon_sym_QMARK_QMARK] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1584), - [sym__rangeOperator] = ACTIONS(1582), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_macro] = ACTIONS(1584), - [anon_sym_abstract] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_public] = ACTIONS(1584), - [anon_sym_private] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_inline] = ACTIONS(1584), - [anon_sym_overload] = ACTIONS(1584), - [anon_sym_override] = ACTIONS(1584), - [anon_sym_final] = ACTIONS(1584), - [anon_sym_class] = ACTIONS(1584), - [anon_sym_interface] = ACTIONS(1584), - [anon_sym_typedef] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [aux_sym_integer_token1] = ACTIONS(1584), - [aux_sym_integer_token2] = ACTIONS(1582), - [aux_sym_float_token1] = ACTIONS(1584), - [aux_sym_float_token2] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym_string_token1] = ACTIONS(1582), - [aux_sym_string_token3] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1949), + [sym_identifier] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(1949), + [anon_sym_package] = ACTIONS(1951), + [anon_sym_DOT] = ACTIONS(1951), + [anon_sym_import] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_using] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_RPAREN] = ACTIONS(1949), + [anon_sym_switch] = ACTIONS(1951), + [anon_sym_RBRACE] = ACTIONS(1949), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_COLON] = ACTIONS(1949), + [anon_sym_cast] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_DOLLARtype] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_untyped] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_RBRACK] = ACTIONS(1949), + [anon_sym_this] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1951), + [anon_sym_AT] = ACTIONS(1951), + [anon_sym_AT_COLON] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1951), + [anon_sym_catch] = ACTIONS(1951), + [anon_sym_else] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_do] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PERCENT] = ACTIONS(1949), + [anon_sym_SLASH] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_LT_LT] = ACTIONS(1949), + [anon_sym_GT_GT] = ACTIONS(1951), + [anon_sym_GT_GT_GT] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1949), + [anon_sym_AMP_AMP] = ACTIONS(1949), + [anon_sym_PIPE_PIPE] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1951), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [anon_sym_macro] = ACTIONS(1951), + [anon_sym_abstract] = ACTIONS(1951), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_public] = ACTIONS(1951), + [anon_sym_private] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym_overload] = ACTIONS(1951), + [anon_sym_override] = ACTIONS(1951), + [anon_sym_final] = ACTIONS(1951), + [anon_sym_class] = ACTIONS(1951), + [anon_sym_interface] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1951), + [anon_sym_typedef] = ACTIONS(1951), + [anon_sym_function] = ACTIONS(1951), + [anon_sym_var] = ACTIONS(1951), + [aux_sym_integer_token1] = ACTIONS(1951), + [aux_sym_integer_token2] = ACTIONS(1949), + [aux_sym_float_token1] = ACTIONS(1951), + [aux_sym_float_token2] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [aux_sym_string_token1] = ACTIONS(1949), + [aux_sym_string_token3] = ACTIONS(1949), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [229] = { - [sym_identifier] = ACTIONS(1488), - [anon_sym_POUND] = ACTIONS(1486), - [anon_sym_package] = ACTIONS(1488), - [anon_sym_DOT] = ACTIONS(1488), - [anon_sym_import] = ACTIONS(1488), - [anon_sym_using] = ACTIONS(1488), - [anon_sym_throw] = ACTIONS(1488), - [anon_sym_LPAREN] = ACTIONS(1486), - [anon_sym_switch] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_case] = ACTIONS(1488), - [anon_sym_COLON] = ACTIONS(1486), - [anon_sym_default] = ACTIONS(1488), - [anon_sym_cast] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1486), - [anon_sym_DOLLARtype] = ACTIONS(1486), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_untyped] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1486), - [anon_sym_this] = ACTIONS(1488), - [anon_sym_QMARK] = ACTIONS(1488), - [anon_sym_AT] = ACTIONS(1488), - [anon_sym_AT_COLON] = ACTIONS(1486), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_new] = ACTIONS(1488), - [anon_sym_TILDE] = ACTIONS(1486), - [anon_sym_BANG] = ACTIONS(1488), - [anon_sym_DASH] = ACTIONS(1488), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_PERCENT] = ACTIONS(1486), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_SLASH] = ACTIONS(1488), - [anon_sym_PLUS] = ACTIONS(1488), - [anon_sym_LT_LT] = ACTIONS(1486), - [anon_sym_GT_GT] = ACTIONS(1488), - [anon_sym_GT_GT_GT] = ACTIONS(1486), - [anon_sym_AMP] = ACTIONS(1488), - [anon_sym_PIPE] = ACTIONS(1488), - [anon_sym_CARET] = ACTIONS(1486), - [anon_sym_AMP_AMP] = ACTIONS(1486), - [anon_sym_PIPE_PIPE] = ACTIONS(1486), - [anon_sym_EQ_EQ] = ACTIONS(1486), - [anon_sym_BANG_EQ] = ACTIONS(1486), - [anon_sym_LT] = ACTIONS(1488), - [anon_sym_LT_EQ] = ACTIONS(1486), - [anon_sym_GT] = ACTIONS(1488), - [anon_sym_GT_EQ] = ACTIONS(1486), - [anon_sym_EQ_GT] = ACTIONS(1486), - [anon_sym_QMARK_QMARK] = ACTIONS(1486), - [anon_sym_EQ] = ACTIONS(1488), - [sym__rangeOperator] = ACTIONS(1486), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_macro] = ACTIONS(1488), - [anon_sym_abstract] = ACTIONS(1488), - [anon_sym_static] = ACTIONS(1488), - [anon_sym_public] = ACTIONS(1488), - [anon_sym_private] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_inline] = ACTIONS(1488), - [anon_sym_overload] = ACTIONS(1488), - [anon_sym_override] = ACTIONS(1488), - [anon_sym_final] = ACTIONS(1488), - [anon_sym_class] = ACTIONS(1488), - [anon_sym_interface] = ACTIONS(1488), - [anon_sym_typedef] = ACTIONS(1488), - [anon_sym_function] = ACTIONS(1488), - [anon_sym_var] = ACTIONS(1488), - [aux_sym_integer_token1] = ACTIONS(1488), - [aux_sym_integer_token2] = ACTIONS(1486), - [aux_sym_float_token1] = ACTIONS(1488), - [aux_sym_float_token2] = ACTIONS(1486), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [aux_sym_string_token1] = ACTIONS(1486), - [aux_sym_string_token3] = ACTIONS(1486), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1486), + [ts_builtin_sym_end] = ACTIONS(1953), + [sym_identifier] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(1953), + [anon_sym_package] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_import] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1955), + [anon_sym_throw] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_RPAREN] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1955), + [anon_sym_RBRACE] = ACTIONS(1953), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_COLON] = ACTIONS(1953), + [anon_sym_cast] = ACTIONS(1955), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_DOLLARtype] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_untyped] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_RBRACK] = ACTIONS(1953), + [anon_sym_this] = ACTIONS(1955), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_AT] = ACTIONS(1955), + [anon_sym_AT_COLON] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1955), + [anon_sym_catch] = ACTIONS(1955), + [anon_sym_else] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_do] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1953), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PERCENT] = ACTIONS(1953), + [anon_sym_SLASH] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1953), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1953), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_EQ_GT] = ACTIONS(1953), + [anon_sym_QMARK_QMARK] = ACTIONS(1953), + [anon_sym_EQ] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [anon_sym_macro] = ACTIONS(1955), + [anon_sym_abstract] = ACTIONS(1955), + [anon_sym_static] = ACTIONS(1955), + [anon_sym_public] = ACTIONS(1955), + [anon_sym_private] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1955), + [anon_sym_inline] = ACTIONS(1955), + [anon_sym_overload] = ACTIONS(1955), + [anon_sym_override] = ACTIONS(1955), + [anon_sym_final] = ACTIONS(1955), + [anon_sym_class] = ACTIONS(1955), + [anon_sym_interface] = ACTIONS(1955), + [anon_sym_enum] = ACTIONS(1955), + [anon_sym_typedef] = ACTIONS(1955), + [anon_sym_function] = ACTIONS(1955), + [anon_sym_var] = ACTIONS(1955), + [aux_sym_integer_token1] = ACTIONS(1955), + [aux_sym_integer_token2] = ACTIONS(1953), + [aux_sym_float_token1] = ACTIONS(1955), + [aux_sym_float_token2] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [aux_sym_string_token1] = ACTIONS(1953), + [aux_sym_string_token3] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [230] = { - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_QMARK_QMARK] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [sym__rangeOperator] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [aux_sym_integer_token1] = ACTIONS(1508), - [aux_sym_integer_token2] = ACTIONS(1506), - [aux_sym_float_token1] = ACTIONS(1508), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1506), - [aux_sym_string_token3] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1957), + [sym_identifier] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1959), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_import] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_using] = ACTIONS(1959), + [anon_sym_throw] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_RPAREN] = ACTIONS(1957), + [anon_sym_switch] = ACTIONS(1959), + [anon_sym_RBRACE] = ACTIONS(1957), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_COLON] = ACTIONS(1957), + [anon_sym_cast] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_DOLLARtype] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_untyped] = ACTIONS(1959), + [anon_sym_break] = ACTIONS(1959), + [anon_sym_continue] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_RBRACK] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1959), + [anon_sym_AT] = ACTIONS(1959), + [anon_sym_AT_COLON] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1959), + [anon_sym_catch] = ACTIONS(1959), + [anon_sym_else] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_do] = ACTIONS(1959), + [anon_sym_new] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1957), + [anon_sym_EQ_GT] = ACTIONS(1957), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1959), + [anon_sym_macro] = ACTIONS(1959), + [anon_sym_abstract] = ACTIONS(1959), + [anon_sym_static] = ACTIONS(1959), + [anon_sym_public] = ACTIONS(1959), + [anon_sym_private] = ACTIONS(1959), + [anon_sym_extern] = ACTIONS(1959), + [anon_sym_inline] = ACTIONS(1959), + [anon_sym_overload] = ACTIONS(1959), + [anon_sym_override] = ACTIONS(1959), + [anon_sym_final] = ACTIONS(1959), + [anon_sym_class] = ACTIONS(1959), + [anon_sym_interface] = ACTIONS(1959), + [anon_sym_enum] = ACTIONS(1959), + [anon_sym_typedef] = ACTIONS(1959), + [anon_sym_function] = ACTIONS(1959), + [anon_sym_var] = ACTIONS(1959), + [aux_sym_integer_token1] = ACTIONS(1959), + [aux_sym_integer_token2] = ACTIONS(1957), + [aux_sym_float_token1] = ACTIONS(1959), + [aux_sym_float_token2] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [aux_sym_string_token1] = ACTIONS(1957), + [aux_sym_string_token3] = ACTIONS(1957), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [231] = { - [sym_identifier] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_package] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_import] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_throw] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_cast] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_DOLLARtype] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_untyped] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_this] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_AT_COLON] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1414), - [anon_sym_GT_GT_GT] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_EQ_GT] = ACTIONS(1412), - [anon_sym_QMARK_QMARK] = ACTIONS(1412), - [anon_sym_EQ] = ACTIONS(1414), - [sym__rangeOperator] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_macro] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_public] = ACTIONS(1414), - [anon_sym_private] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_overload] = ACTIONS(1414), - [anon_sym_override] = ACTIONS(1414), - [anon_sym_final] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_interface] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_function] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [aux_sym_integer_token1] = ACTIONS(1414), - [aux_sym_integer_token2] = ACTIONS(1412), - [aux_sym_float_token1] = ACTIONS(1414), - [aux_sym_float_token2] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym_string_token1] = ACTIONS(1412), - [aux_sym_string_token3] = ACTIONS(1412), + [sym__rhs_expression] = STATE(1136), + [sym__unaryExpression] = STATE(3618), + [sym_runtime_type_check_expression] = STATE(3618), + [sym_switch_expression] = STATE(3618), + [sym_cast_expression] = STATE(3618), + [sym_type_trace_expression] = STATE(3618), + [sym__parenthesized_expression] = STATE(2615), + [sym_range_expression] = STATE(3618), + [sym_subscript_expression] = STATE(3618), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym_block] = STATE(3618), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1136), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1885), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1961), + [anon_sym_untyped] = ACTIONS(1963), + [anon_sym_break] = ACTIONS(1965), + [anon_sym_continue] = ACTIONS(1965), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1412), - [sym__closing_brace_marker] = ACTIONS(1412), [sym__closing_brace_unmarker] = ACTIONS(3), }, [232] = { - [sym_identifier] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_package] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1466), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1466), - [anon_sym_throw] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_cast] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_DOLLARtype] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_untyped] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_this] = ACTIONS(1466), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1466), - [anon_sym_AT_COLON] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_GT_GT_GT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_PIPE_PIPE] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_QMARK_QMARK] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1466), - [sym__rangeOperator] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1466), - [anon_sym_macro] = ACTIONS(1466), - [anon_sym_abstract] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_public] = ACTIONS(1466), - [anon_sym_private] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym_overload] = ACTIONS(1466), - [anon_sym_override] = ACTIONS(1466), - [anon_sym_final] = ACTIONS(1466), - [anon_sym_class] = ACTIONS(1466), - [anon_sym_interface] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(1466), - [anon_sym_var] = ACTIONS(1466), - [aux_sym_integer_token1] = ACTIONS(1466), - [aux_sym_integer_token2] = ACTIONS(1464), - [aux_sym_float_token1] = ACTIONS(1466), - [aux_sym_float_token2] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [aux_sym_string_token1] = ACTIONS(1464), - [aux_sym_string_token3] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1464), - [sym__closing_brace_marker] = ACTIONS(1464), + [ts_builtin_sym_end] = ACTIONS(1967), + [sym_identifier] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_package] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_using] = ACTIONS(1969), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_RPAREN] = ACTIONS(1967), + [anon_sym_switch] = ACTIONS(1969), + [anon_sym_RBRACE] = ACTIONS(1967), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_COLON] = ACTIONS(1967), + [anon_sym_cast] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_DOLLARtype] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_untyped] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_RBRACK] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_AT_COLON] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PERCENT] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_LT_LT] = ACTIONS(1967), + [anon_sym_GT_GT] = ACTIONS(1969), + [anon_sym_GT_GT_GT] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1969), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(1967), + [anon_sym_QMARK_QMARK] = ACTIONS(1967), + [anon_sym_EQ] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1969), + [anon_sym_macro] = ACTIONS(1969), + [anon_sym_abstract] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_inline] = ACTIONS(1969), + [anon_sym_overload] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_final] = ACTIONS(1969), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_interface] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_typedef] = ACTIONS(1969), + [anon_sym_function] = ACTIONS(1969), + [anon_sym_var] = ACTIONS(1969), + [aux_sym_integer_token1] = ACTIONS(1969), + [aux_sym_integer_token2] = ACTIONS(1967), + [aux_sym_float_token1] = ACTIONS(1969), + [aux_sym_float_token2] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [aux_sym_string_token1] = ACTIONS(1967), + [aux_sym_string_token3] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [233] = { - [sym_identifier] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_package] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_using] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_this] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AT_COLON] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_GT_GT_GT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [sym__rangeOperator] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [aux_sym_integer_token1] = ACTIONS(1520), - [aux_sym_integer_token2] = ACTIONS(1518), - [aux_sym_float_token1] = ACTIONS(1520), - [aux_sym_float_token2] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), - [aux_sym_string_token3] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1518), - [sym__closing_brace_marker] = ACTIONS(1518), + [ts_builtin_sym_end] = ACTIONS(1971), + [sym_identifier] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_using] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_RPAREN] = ACTIONS(1971), + [anon_sym_switch] = ACTIONS(1973), + [anon_sym_RBRACE] = ACTIONS(1971), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_COLON] = ACTIONS(1971), + [anon_sym_cast] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_DOLLARtype] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_untyped] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_RBRACK] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_AT_COLON] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_GT_GT_GT] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_BANG_EQ] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(1971), + [anon_sym_QMARK_QMARK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [anon_sym_macro] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_inline] = ACTIONS(1973), + [anon_sym_overload] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_class] = ACTIONS(1973), + [anon_sym_interface] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_typedef] = ACTIONS(1973), + [anon_sym_function] = ACTIONS(1973), + [anon_sym_var] = ACTIONS(1973), + [aux_sym_integer_token1] = ACTIONS(1973), + [aux_sym_integer_token2] = ACTIONS(1971), + [aux_sym_float_token1] = ACTIONS(1973), + [aux_sym_float_token2] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1971), + [aux_sym_string_token3] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [234] = { - [sym_identifier] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_package] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_using] = ACTIONS(1530), - [anon_sym_throw] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_cast] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(1528), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_untyped] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_this] = ACTIONS(1530), - [anon_sym_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_AT_COLON] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_GT_GT_GT] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1528), - [anon_sym_PIPE_PIPE] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_EQ_GT] = ACTIONS(1528), - [anon_sym_QMARK_QMARK] = ACTIONS(1528), - [anon_sym_EQ] = ACTIONS(1530), - [sym__rangeOperator] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_macro] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_private] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym_overload] = ACTIONS(1530), - [anon_sym_override] = ACTIONS(1530), - [anon_sym_final] = ACTIONS(1530), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_interface] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_function] = ACTIONS(1530), - [anon_sym_var] = ACTIONS(1530), - [aux_sym_integer_token1] = ACTIONS(1530), - [aux_sym_integer_token2] = ACTIONS(1528), - [aux_sym_float_token1] = ACTIONS(1530), - [aux_sym_float_token2] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [aux_sym_string_token1] = ACTIONS(1528), - [aux_sym_string_token3] = ACTIONS(1528), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1528), - [sym__closing_brace_marker] = ACTIONS(1528), + [ts_builtin_sym_end] = ACTIONS(1975), + [sym_identifier] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_package] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(1977), + [anon_sym_import] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_using] = ACTIONS(1977), + [anon_sym_throw] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_RPAREN] = ACTIONS(1975), + [anon_sym_switch] = ACTIONS(1977), + [anon_sym_RBRACE] = ACTIONS(1975), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_COLON] = ACTIONS(1975), + [anon_sym_cast] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_DOLLARtype] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_untyped] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_RBRACK] = ACTIONS(1975), + [anon_sym_this] = ACTIONS(1977), + [anon_sym_QMARK] = ACTIONS(1977), + [anon_sym_AT] = ACTIONS(1977), + [anon_sym_AT_COLON] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1977), + [anon_sym_GT_GT_GT] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_BANG_EQ] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_LT_EQ] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1977), + [anon_sym_GT_EQ] = ACTIONS(1975), + [anon_sym_EQ_GT] = ACTIONS(1975), + [anon_sym_QMARK_QMARK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [anon_sym_macro] = ACTIONS(1977), + [anon_sym_abstract] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_public] = ACTIONS(1977), + [anon_sym_private] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_inline] = ACTIONS(1977), + [anon_sym_overload] = ACTIONS(1977), + [anon_sym_override] = ACTIONS(1977), + [anon_sym_final] = ACTIONS(1977), + [anon_sym_class] = ACTIONS(1977), + [anon_sym_interface] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_typedef] = ACTIONS(1977), + [anon_sym_function] = ACTIONS(1977), + [anon_sym_var] = ACTIONS(1977), + [aux_sym_integer_token1] = ACTIONS(1977), + [aux_sym_integer_token2] = ACTIONS(1975), + [aux_sym_float_token1] = ACTIONS(1977), + [aux_sym_float_token2] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [aux_sym_string_token1] = ACTIONS(1975), + [aux_sym_string_token3] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [235] = { - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_COLON] = ACTIONS(1524), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_QMARK_QMARK] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [sym__rangeOperator] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [aux_sym_integer_token1] = ACTIONS(1508), - [aux_sym_integer_token2] = ACTIONS(1506), - [aux_sym_float_token1] = ACTIONS(1508), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1506), - [aux_sym_string_token3] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1979), + [sym_identifier] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_package] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_import] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_using] = ACTIONS(1981), + [anon_sym_throw] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_RPAREN] = ACTIONS(1979), + [anon_sym_switch] = ACTIONS(1981), + [anon_sym_RBRACE] = ACTIONS(1979), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_COLON] = ACTIONS(1979), + [anon_sym_cast] = ACTIONS(1981), + [anon_sym_COMMA] = ACTIONS(1979), + [anon_sym_DOLLARtype] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_untyped] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_RBRACK] = ACTIONS(1979), + [anon_sym_this] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1981), + [anon_sym_AT_COLON] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_PLUS_PLUS] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_PERCENT] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_LT_LT] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(1981), + [anon_sym_GT_GT_GT] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym_AMP_AMP] = ACTIONS(1979), + [anon_sym_PIPE_PIPE] = ACTIONS(1979), + [anon_sym_EQ_EQ] = ACTIONS(1979), + [anon_sym_BANG_EQ] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_LT_EQ] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1981), + [anon_sym_GT_EQ] = ACTIONS(1979), + [anon_sym_EQ_GT] = ACTIONS(1979), + [anon_sym_QMARK_QMARK] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1979), + [anon_sym_null] = ACTIONS(1981), + [anon_sym_macro] = ACTIONS(1981), + [anon_sym_abstract] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_public] = ACTIONS(1981), + [anon_sym_private] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_inline] = ACTIONS(1981), + [anon_sym_overload] = ACTIONS(1981), + [anon_sym_override] = ACTIONS(1981), + [anon_sym_final] = ACTIONS(1981), + [anon_sym_class] = ACTIONS(1981), + [anon_sym_interface] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_typedef] = ACTIONS(1981), + [anon_sym_function] = ACTIONS(1981), + [anon_sym_var] = ACTIONS(1981), + [aux_sym_integer_token1] = ACTIONS(1981), + [aux_sym_integer_token2] = ACTIONS(1979), + [aux_sym_float_token1] = ACTIONS(1981), + [aux_sym_float_token2] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym_string_token1] = ACTIONS(1979), + [aux_sym_string_token3] = ACTIONS(1979), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [236] = { - [sym_identifier] = ACTIONS(1462), - [anon_sym_POUND] = ACTIONS(1460), - [anon_sym_package] = ACTIONS(1462), - [anon_sym_DOT] = ACTIONS(1462), - [anon_sym_import] = ACTIONS(1462), - [anon_sym_using] = ACTIONS(1462), - [anon_sym_throw] = ACTIONS(1462), - [anon_sym_LPAREN] = ACTIONS(1460), - [anon_sym_switch] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1460), - [anon_sym_case] = ACTIONS(1462), - [anon_sym_COLON] = ACTIONS(1460), - [anon_sym_default] = ACTIONS(1462), - [anon_sym_cast] = ACTIONS(1462), - [anon_sym_COMMA] = ACTIONS(1460), - [anon_sym_DOLLARtype] = ACTIONS(1460), - [anon_sym_return] = ACTIONS(1462), - [anon_sym_untyped] = ACTIONS(1462), - [anon_sym_break] = ACTIONS(1462), - [anon_sym_continue] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1460), - [anon_sym_this] = ACTIONS(1462), - [anon_sym_QMARK] = ACTIONS(1462), - [anon_sym_AT] = ACTIONS(1462), - [anon_sym_AT_COLON] = ACTIONS(1460), - [anon_sym_if] = ACTIONS(1462), - [anon_sym_new] = ACTIONS(1462), - [anon_sym_TILDE] = ACTIONS(1460), - [anon_sym_BANG] = ACTIONS(1462), - [anon_sym_DASH] = ACTIONS(1462), - [anon_sym_PLUS_PLUS] = ACTIONS(1460), - [anon_sym_DASH_DASH] = ACTIONS(1460), - [anon_sym_PERCENT] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1460), - [anon_sym_SLASH] = ACTIONS(1462), - [anon_sym_PLUS] = ACTIONS(1462), - [anon_sym_LT_LT] = ACTIONS(1460), - [anon_sym_GT_GT] = ACTIONS(1462), - [anon_sym_GT_GT_GT] = ACTIONS(1460), - [anon_sym_AMP] = ACTIONS(1462), - [anon_sym_PIPE] = ACTIONS(1462), - [anon_sym_CARET] = ACTIONS(1460), - [anon_sym_AMP_AMP] = ACTIONS(1460), - [anon_sym_PIPE_PIPE] = ACTIONS(1460), - [anon_sym_EQ_EQ] = ACTIONS(1460), - [anon_sym_BANG_EQ] = ACTIONS(1460), - [anon_sym_LT] = ACTIONS(1462), - [anon_sym_LT_EQ] = ACTIONS(1460), - [anon_sym_GT] = ACTIONS(1462), - [anon_sym_GT_EQ] = ACTIONS(1460), - [anon_sym_EQ_GT] = ACTIONS(1460), - [anon_sym_QMARK_QMARK] = ACTIONS(1460), - [anon_sym_EQ] = ACTIONS(1462), - [sym__rangeOperator] = ACTIONS(1460), - [anon_sym_null] = ACTIONS(1462), - [anon_sym_macro] = ACTIONS(1462), - [anon_sym_abstract] = ACTIONS(1462), - [anon_sym_static] = ACTIONS(1462), - [anon_sym_public] = ACTIONS(1462), - [anon_sym_private] = ACTIONS(1462), - [anon_sym_extern] = ACTIONS(1462), - [anon_sym_inline] = ACTIONS(1462), - [anon_sym_overload] = ACTIONS(1462), - [anon_sym_override] = ACTIONS(1462), - [anon_sym_final] = ACTIONS(1462), - [anon_sym_class] = ACTIONS(1462), - [anon_sym_interface] = ACTIONS(1462), - [anon_sym_typedef] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(1462), - [anon_sym_var] = ACTIONS(1462), - [aux_sym_integer_token1] = ACTIONS(1462), - [aux_sym_integer_token2] = ACTIONS(1460), - [aux_sym_float_token1] = ACTIONS(1462), - [aux_sym_float_token2] = ACTIONS(1460), - [anon_sym_true] = ACTIONS(1462), - [anon_sym_false] = ACTIONS(1462), - [aux_sym_string_token1] = ACTIONS(1460), - [aux_sym_string_token3] = ACTIONS(1460), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1460), + [ts_builtin_sym_end] = ACTIONS(1983), + [sym_identifier] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_package] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_using] = ACTIONS(1985), + [anon_sym_throw] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_RPAREN] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1985), + [anon_sym_RBRACE] = ACTIONS(1983), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_COLON] = ACTIONS(1983), + [anon_sym_cast] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_DOLLARtype] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_untyped] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_RBRACK] = ACTIONS(1983), + [anon_sym_this] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_AT] = ACTIONS(1985), + [anon_sym_AT_COLON] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1983), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_PERCENT] = ACTIONS(1983), + [anon_sym_SLASH] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1985), + [anon_sym_LT_LT] = ACTIONS(1983), + [anon_sym_GT_GT] = ACTIONS(1985), + [anon_sym_GT_GT_GT] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1985), + [anon_sym_CARET] = ACTIONS(1983), + [anon_sym_AMP_AMP] = ACTIONS(1983), + [anon_sym_PIPE_PIPE] = ACTIONS(1983), + [anon_sym_EQ_EQ] = ACTIONS(1983), + [anon_sym_BANG_EQ] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1985), + [anon_sym_GT_EQ] = ACTIONS(1983), + [anon_sym_EQ_GT] = ACTIONS(1983), + [anon_sym_QMARK_QMARK] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_null] = ACTIONS(1985), + [anon_sym_macro] = ACTIONS(1985), + [anon_sym_abstract] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_public] = ACTIONS(1985), + [anon_sym_private] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_inline] = ACTIONS(1985), + [anon_sym_overload] = ACTIONS(1985), + [anon_sym_override] = ACTIONS(1985), + [anon_sym_final] = ACTIONS(1985), + [anon_sym_class] = ACTIONS(1985), + [anon_sym_interface] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_typedef] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_var] = ACTIONS(1985), + [aux_sym_integer_token1] = ACTIONS(1985), + [aux_sym_integer_token2] = ACTIONS(1983), + [aux_sym_float_token1] = ACTIONS(1985), + [aux_sym_float_token2] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [aux_sym_string_token1] = ACTIONS(1983), + [aux_sym_string_token3] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [237] = { - [sym_identifier] = ACTIONS(1584), - [anon_sym_POUND] = ACTIONS(1582), - [anon_sym_package] = ACTIONS(1584), - [anon_sym_DOT] = ACTIONS(1584), - [anon_sym_import] = ACTIONS(1584), - [anon_sym_using] = ACTIONS(1584), - [anon_sym_throw] = ACTIONS(1584), - [anon_sym_LPAREN] = ACTIONS(1582), - [anon_sym_switch] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1582), - [anon_sym_case] = ACTIONS(1584), - [anon_sym_default] = ACTIONS(1584), - [anon_sym_cast] = ACTIONS(1584), - [anon_sym_COMMA] = ACTIONS(1582), - [anon_sym_DOLLARtype] = ACTIONS(1582), - [anon_sym_return] = ACTIONS(1584), - [anon_sym_untyped] = ACTIONS(1584), - [anon_sym_break] = ACTIONS(1584), - [anon_sym_continue] = ACTIONS(1584), - [anon_sym_LBRACK] = ACTIONS(1582), - [anon_sym_this] = ACTIONS(1584), - [anon_sym_QMARK] = ACTIONS(1584), - [anon_sym_AT] = ACTIONS(1584), - [anon_sym_AT_COLON] = ACTIONS(1582), - [anon_sym_if] = ACTIONS(1584), - [anon_sym_new] = ACTIONS(1584), - [anon_sym_TILDE] = ACTIONS(1582), - [anon_sym_BANG] = ACTIONS(1584), - [anon_sym_DASH] = ACTIONS(1584), - [anon_sym_PLUS_PLUS] = ACTIONS(1582), - [anon_sym_DASH_DASH] = ACTIONS(1582), - [anon_sym_PERCENT] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1582), - [anon_sym_SLASH] = ACTIONS(1584), - [anon_sym_PLUS] = ACTIONS(1584), - [anon_sym_LT_LT] = ACTIONS(1582), - [anon_sym_GT_GT] = ACTIONS(1584), - [anon_sym_GT_GT_GT] = ACTIONS(1582), - [anon_sym_AMP] = ACTIONS(1584), - [anon_sym_PIPE] = ACTIONS(1584), - [anon_sym_CARET] = ACTIONS(1582), - [anon_sym_AMP_AMP] = ACTIONS(1582), - [anon_sym_PIPE_PIPE] = ACTIONS(1582), - [anon_sym_EQ_EQ] = ACTIONS(1582), - [anon_sym_BANG_EQ] = ACTIONS(1582), - [anon_sym_LT] = ACTIONS(1584), - [anon_sym_LT_EQ] = ACTIONS(1582), - [anon_sym_GT] = ACTIONS(1584), - [anon_sym_GT_EQ] = ACTIONS(1582), - [anon_sym_EQ_GT] = ACTIONS(1582), - [anon_sym_QMARK_QMARK] = ACTIONS(1582), - [anon_sym_EQ] = ACTIONS(1584), - [sym__rangeOperator] = ACTIONS(1582), - [anon_sym_null] = ACTIONS(1584), - [anon_sym_macro] = ACTIONS(1584), - [anon_sym_abstract] = ACTIONS(1584), - [anon_sym_static] = ACTIONS(1584), - [anon_sym_public] = ACTIONS(1584), - [anon_sym_private] = ACTIONS(1584), - [anon_sym_extern] = ACTIONS(1584), - [anon_sym_inline] = ACTIONS(1584), - [anon_sym_overload] = ACTIONS(1584), - [anon_sym_override] = ACTIONS(1584), - [anon_sym_final] = ACTIONS(1584), - [anon_sym_class] = ACTIONS(1584), - [anon_sym_interface] = ACTIONS(1584), - [anon_sym_typedef] = ACTIONS(1584), - [anon_sym_function] = ACTIONS(1584), - [anon_sym_var] = ACTIONS(1584), - [aux_sym_integer_token1] = ACTIONS(1584), - [aux_sym_integer_token2] = ACTIONS(1582), - [aux_sym_float_token1] = ACTIONS(1584), - [aux_sym_float_token2] = ACTIONS(1582), - [anon_sym_true] = ACTIONS(1584), - [anon_sym_false] = ACTIONS(1584), - [aux_sym_string_token1] = ACTIONS(1582), - [aux_sym_string_token3] = ACTIONS(1582), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1582), + [ts_builtin_sym_end] = ACTIONS(1987), + [sym_identifier] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_package] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(1990), + [anon_sym_import] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_using] = ACTIONS(1990), + [anon_sym_throw] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_RPAREN] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1987), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_COLON] = ACTIONS(1987), + [anon_sym_cast] = ACTIONS(1990), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_DOLLARtype] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_untyped] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_RBRACK] = ACTIONS(1987), + [anon_sym_this] = ACTIONS(1990), + [anon_sym_QMARK] = ACTIONS(1990), + [anon_sym_AT] = ACTIONS(1990), + [anon_sym_AT_COLON] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1990), + [anon_sym_catch] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_LT_LT] = ACTIONS(1987), + [anon_sym_GT_GT] = ACTIONS(1990), + [anon_sym_GT_GT_GT] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1987), + [anon_sym_AMP_AMP] = ACTIONS(1987), + [anon_sym_PIPE_PIPE] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_EQ_GT] = ACTIONS(1987), + [anon_sym_QMARK_QMARK] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1990), + [anon_sym_macro] = ACTIONS(1990), + [anon_sym_abstract] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_public] = ACTIONS(1990), + [anon_sym_private] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_overload] = ACTIONS(1990), + [anon_sym_override] = ACTIONS(1990), + [anon_sym_final] = ACTIONS(1990), + [anon_sym_class] = ACTIONS(1990), + [anon_sym_interface] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_function] = ACTIONS(1990), + [anon_sym_var] = ACTIONS(1990), + [aux_sym_integer_token1] = ACTIONS(1990), + [aux_sym_integer_token2] = ACTIONS(1987), + [aux_sym_float_token1] = ACTIONS(1990), + [aux_sym_float_token2] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [aux_sym_string_token1] = ACTIONS(1987), + [aux_sym_string_token3] = ACTIONS(1987), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [238] = { - [sym_identifier] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(1506), - [anon_sym_package] = ACTIONS(1508), - [anon_sym_DOT] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1508), - [anon_sym_using] = ACTIONS(1508), - [anon_sym_throw] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1508), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_case] = ACTIONS(1508), - [anon_sym_default] = ACTIONS(1508), - [anon_sym_cast] = ACTIONS(1508), - [anon_sym_COMMA] = ACTIONS(1506), - [anon_sym_DOLLARtype] = ACTIONS(1506), - [anon_sym_return] = ACTIONS(1508), - [anon_sym_untyped] = ACTIONS(1508), - [anon_sym_break] = ACTIONS(1508), - [anon_sym_continue] = ACTIONS(1508), - [anon_sym_LBRACK] = ACTIONS(1506), - [anon_sym_this] = ACTIONS(1508), - [anon_sym_QMARK] = ACTIONS(1508), - [anon_sym_AT] = ACTIONS(1508), - [anon_sym_AT_COLON] = ACTIONS(1506), - [anon_sym_if] = ACTIONS(1508), - [anon_sym_new] = ACTIONS(1508), - [anon_sym_TILDE] = ACTIONS(1506), - [anon_sym_BANG] = ACTIONS(1508), - [anon_sym_DASH] = ACTIONS(1508), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [anon_sym_PERCENT] = ACTIONS(1506), - [anon_sym_STAR] = ACTIONS(1506), - [anon_sym_SLASH] = ACTIONS(1508), - [anon_sym_PLUS] = ACTIONS(1508), - [anon_sym_LT_LT] = ACTIONS(1506), - [anon_sym_GT_GT] = ACTIONS(1508), - [anon_sym_GT_GT_GT] = ACTIONS(1506), - [anon_sym_AMP] = ACTIONS(1508), - [anon_sym_PIPE] = ACTIONS(1508), - [anon_sym_CARET] = ACTIONS(1506), - [anon_sym_AMP_AMP] = ACTIONS(1506), - [anon_sym_PIPE_PIPE] = ACTIONS(1506), - [anon_sym_EQ_EQ] = ACTIONS(1506), - [anon_sym_BANG_EQ] = ACTIONS(1506), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1506), - [anon_sym_GT] = ACTIONS(1508), - [anon_sym_GT_EQ] = ACTIONS(1506), - [anon_sym_EQ_GT] = ACTIONS(1506), - [anon_sym_QMARK_QMARK] = ACTIONS(1506), - [anon_sym_EQ] = ACTIONS(1508), - [sym__rangeOperator] = ACTIONS(1506), - [anon_sym_null] = ACTIONS(1508), - [anon_sym_macro] = ACTIONS(1508), - [anon_sym_abstract] = ACTIONS(1508), - [anon_sym_static] = ACTIONS(1508), - [anon_sym_public] = ACTIONS(1508), - [anon_sym_private] = ACTIONS(1508), - [anon_sym_extern] = ACTIONS(1508), - [anon_sym_inline] = ACTIONS(1508), - [anon_sym_overload] = ACTIONS(1508), - [anon_sym_override] = ACTIONS(1508), - [anon_sym_final] = ACTIONS(1508), - [anon_sym_class] = ACTIONS(1508), - [anon_sym_interface] = ACTIONS(1508), - [anon_sym_typedef] = ACTIONS(1508), - [anon_sym_function] = ACTIONS(1508), - [anon_sym_var] = ACTIONS(1508), - [aux_sym_integer_token1] = ACTIONS(1508), - [aux_sym_integer_token2] = ACTIONS(1506), - [aux_sym_float_token1] = ACTIONS(1508), - [aux_sym_float_token2] = ACTIONS(1506), - [anon_sym_true] = ACTIONS(1508), - [anon_sym_false] = ACTIONS(1508), - [aux_sym_string_token1] = ACTIONS(1506), - [aux_sym_string_token3] = ACTIONS(1506), + [ts_builtin_sym_end] = ACTIONS(1993), + [sym_identifier] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1993), + [anon_sym_package] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1995), + [anon_sym_throw] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_RPAREN] = ACTIONS(1993), + [anon_sym_switch] = ACTIONS(1995), + [anon_sym_RBRACE] = ACTIONS(1993), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_COLON] = ACTIONS(1993), + [anon_sym_cast] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_DOLLARtype] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_untyped] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_RBRACK] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1995), + [anon_sym_AT_COLON] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_catch] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1995), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_PERCENT] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(1993), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_AMP_AMP] = ACTIONS(1993), + [anon_sym_PIPE_PIPE] = ACTIONS(1993), + [anon_sym_EQ_EQ] = ACTIONS(1993), + [anon_sym_BANG_EQ] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_GT_EQ] = ACTIONS(1993), + [anon_sym_EQ_GT] = ACTIONS(1993), + [anon_sym_QMARK_QMARK] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), + [anon_sym_null] = ACTIONS(1995), + [anon_sym_macro] = ACTIONS(1995), + [anon_sym_abstract] = ACTIONS(1995), + [anon_sym_static] = ACTIONS(1995), + [anon_sym_public] = ACTIONS(1995), + [anon_sym_private] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1995), + [anon_sym_inline] = ACTIONS(1995), + [anon_sym_overload] = ACTIONS(1995), + [anon_sym_override] = ACTIONS(1995), + [anon_sym_final] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_interface] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_typedef] = ACTIONS(1995), + [anon_sym_function] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1995), + [aux_sym_integer_token1] = ACTIONS(1995), + [aux_sym_integer_token2] = ACTIONS(1993), + [aux_sym_float_token1] = ACTIONS(1995), + [aux_sym_float_token2] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [aux_sym_string_token1] = ACTIONS(1993), + [aux_sym_string_token3] = ACTIONS(1993), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [239] = { - [sym_identifier] = ACTIONS(1454), - [anon_sym_POUND] = ACTIONS(1452), - [anon_sym_package] = ACTIONS(1454), - [anon_sym_DOT] = ACTIONS(1454), - [anon_sym_import] = ACTIONS(1454), - [anon_sym_using] = ACTIONS(1454), - [anon_sym_throw] = ACTIONS(1454), - [anon_sym_LPAREN] = ACTIONS(1452), - [anon_sym_switch] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1452), - [anon_sym_case] = ACTIONS(1454), - [anon_sym_default] = ACTIONS(1454), - [anon_sym_cast] = ACTIONS(1454), - [anon_sym_COMMA] = ACTIONS(1452), - [anon_sym_DOLLARtype] = ACTIONS(1452), - [anon_sym_return] = ACTIONS(1454), - [anon_sym_untyped] = ACTIONS(1454), - [anon_sym_break] = ACTIONS(1454), - [anon_sym_continue] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1452), - [anon_sym_this] = ACTIONS(1454), - [anon_sym_QMARK] = ACTIONS(1454), - [anon_sym_AT] = ACTIONS(1454), - [anon_sym_AT_COLON] = ACTIONS(1452), - [anon_sym_if] = ACTIONS(1454), - [anon_sym_new] = ACTIONS(1454), - [anon_sym_TILDE] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(1454), - [anon_sym_DASH] = ACTIONS(1454), - [anon_sym_PLUS_PLUS] = ACTIONS(1452), - [anon_sym_DASH_DASH] = ACTIONS(1452), - [anon_sym_PERCENT] = ACTIONS(1452), - [anon_sym_STAR] = ACTIONS(1452), - [anon_sym_SLASH] = ACTIONS(1454), - [anon_sym_PLUS] = ACTIONS(1454), - [anon_sym_LT_LT] = ACTIONS(1452), - [anon_sym_GT_GT] = ACTIONS(1454), - [anon_sym_GT_GT_GT] = ACTIONS(1452), - [anon_sym_AMP] = ACTIONS(1454), - [anon_sym_PIPE] = ACTIONS(1454), - [anon_sym_CARET] = ACTIONS(1452), - [anon_sym_AMP_AMP] = ACTIONS(1452), - [anon_sym_PIPE_PIPE] = ACTIONS(1452), - [anon_sym_EQ_EQ] = ACTIONS(1452), - [anon_sym_BANG_EQ] = ACTIONS(1452), - [anon_sym_LT] = ACTIONS(1454), - [anon_sym_LT_EQ] = ACTIONS(1452), - [anon_sym_GT] = ACTIONS(1454), - [anon_sym_GT_EQ] = ACTIONS(1452), - [anon_sym_EQ_GT] = ACTIONS(1452), - [anon_sym_QMARK_QMARK] = ACTIONS(1452), - [anon_sym_EQ] = ACTIONS(1454), - [sym__rangeOperator] = ACTIONS(1452), - [anon_sym_null] = ACTIONS(1454), - [anon_sym_macro] = ACTIONS(1454), - [anon_sym_abstract] = ACTIONS(1454), - [anon_sym_static] = ACTIONS(1454), - [anon_sym_public] = ACTIONS(1454), - [anon_sym_private] = ACTIONS(1454), - [anon_sym_extern] = ACTIONS(1454), - [anon_sym_inline] = ACTIONS(1454), - [anon_sym_overload] = ACTIONS(1454), - [anon_sym_override] = ACTIONS(1454), - [anon_sym_final] = ACTIONS(1454), - [anon_sym_class] = ACTIONS(1454), - [anon_sym_interface] = ACTIONS(1454), - [anon_sym_typedef] = ACTIONS(1454), - [anon_sym_function] = ACTIONS(1454), - [anon_sym_var] = ACTIONS(1454), - [aux_sym_integer_token1] = ACTIONS(1454), - [aux_sym_integer_token2] = ACTIONS(1452), - [aux_sym_float_token1] = ACTIONS(1454), - [aux_sym_float_token2] = ACTIONS(1452), - [anon_sym_true] = ACTIONS(1454), - [anon_sym_false] = ACTIONS(1454), - [aux_sym_string_token1] = ACTIONS(1452), - [aux_sym_string_token3] = ACTIONS(1452), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1452), + [ts_builtin_sym_end] = ACTIONS(1371), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_RBRACE] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_COLON] = ACTIONS(1371), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [240] = { - [sym_identifier] = ACTIONS(1458), - [anon_sym_POUND] = ACTIONS(1456), - [anon_sym_package] = ACTIONS(1458), - [anon_sym_DOT] = ACTIONS(1458), - [anon_sym_import] = ACTIONS(1458), - [anon_sym_using] = ACTIONS(1458), - [anon_sym_throw] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(1456), - [anon_sym_switch] = ACTIONS(1458), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_case] = ACTIONS(1458), - [anon_sym_default] = ACTIONS(1458), - [anon_sym_cast] = ACTIONS(1458), - [anon_sym_COMMA] = ACTIONS(1456), - [anon_sym_DOLLARtype] = ACTIONS(1456), - [anon_sym_return] = ACTIONS(1458), - [anon_sym_untyped] = ACTIONS(1458), - [anon_sym_break] = ACTIONS(1458), - [anon_sym_continue] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1456), - [anon_sym_this] = ACTIONS(1458), - [anon_sym_QMARK] = ACTIONS(1458), - [anon_sym_AT] = ACTIONS(1458), - [anon_sym_AT_COLON] = ACTIONS(1456), - [anon_sym_if] = ACTIONS(1458), - [anon_sym_new] = ACTIONS(1458), - [anon_sym_TILDE] = ACTIONS(1456), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_DASH] = ACTIONS(1458), - [anon_sym_PLUS_PLUS] = ACTIONS(1456), - [anon_sym_DASH_DASH] = ACTIONS(1456), - [anon_sym_PERCENT] = ACTIONS(1456), - [anon_sym_STAR] = ACTIONS(1456), - [anon_sym_SLASH] = ACTIONS(1458), - [anon_sym_PLUS] = ACTIONS(1458), - [anon_sym_LT_LT] = ACTIONS(1456), - [anon_sym_GT_GT] = ACTIONS(1458), - [anon_sym_GT_GT_GT] = ACTIONS(1456), - [anon_sym_AMP] = ACTIONS(1458), - [anon_sym_PIPE] = ACTIONS(1458), - [anon_sym_CARET] = ACTIONS(1456), - [anon_sym_AMP_AMP] = ACTIONS(1456), - [anon_sym_PIPE_PIPE] = ACTIONS(1456), - [anon_sym_EQ_EQ] = ACTIONS(1456), - [anon_sym_BANG_EQ] = ACTIONS(1456), - [anon_sym_LT] = ACTIONS(1458), - [anon_sym_LT_EQ] = ACTIONS(1456), - [anon_sym_GT] = ACTIONS(1458), - [anon_sym_GT_EQ] = ACTIONS(1456), - [anon_sym_EQ_GT] = ACTIONS(1456), - [anon_sym_QMARK_QMARK] = ACTIONS(1456), - [anon_sym_EQ] = ACTIONS(1458), - [sym__rangeOperator] = ACTIONS(1456), - [anon_sym_null] = ACTIONS(1458), - [anon_sym_macro] = ACTIONS(1458), - [anon_sym_abstract] = ACTIONS(1458), - [anon_sym_static] = ACTIONS(1458), - [anon_sym_public] = ACTIONS(1458), - [anon_sym_private] = ACTIONS(1458), - [anon_sym_extern] = ACTIONS(1458), - [anon_sym_inline] = ACTIONS(1458), - [anon_sym_overload] = ACTIONS(1458), - [anon_sym_override] = ACTIONS(1458), - [anon_sym_final] = ACTIONS(1458), - [anon_sym_class] = ACTIONS(1458), - [anon_sym_interface] = ACTIONS(1458), - [anon_sym_typedef] = ACTIONS(1458), - [anon_sym_function] = ACTIONS(1458), - [anon_sym_var] = ACTIONS(1458), - [aux_sym_integer_token1] = ACTIONS(1458), - [aux_sym_integer_token2] = ACTIONS(1456), - [aux_sym_float_token1] = ACTIONS(1458), - [aux_sym_float_token2] = ACTIONS(1456), - [anon_sym_true] = ACTIONS(1458), - [anon_sym_false] = ACTIONS(1458), - [aux_sym_string_token1] = ACTIONS(1456), - [aux_sym_string_token3] = ACTIONS(1456), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1456), + [sym__rhs_expression] = STATE(1283), + [sym__unaryExpression] = STATE(3528), + [sym_runtime_type_check_expression] = STATE(3528), + [sym_switch_expression] = STATE(3528), + [sym_cast_expression] = STATE(3528), + [sym_type_trace_expression] = STATE(3528), + [sym__parenthesized_expression] = STATE(2629), + [sym_range_expression] = STATE(3528), + [sym_subscript_expression] = STATE(3528), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1283), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(1999), + [anon_sym_untyped] = ACTIONS(2001), + [anon_sym_break] = ACTIONS(2003), + [anon_sym_continue] = ACTIONS(2003), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [241] = { - [sym_identifier] = ACTIONS(1478), - [anon_sym_POUND] = ACTIONS(1476), - [anon_sym_package] = ACTIONS(1478), - [anon_sym_DOT] = ACTIONS(1478), - [anon_sym_import] = ACTIONS(1478), - [anon_sym_using] = ACTIONS(1478), - [anon_sym_throw] = ACTIONS(1478), - [anon_sym_LPAREN] = ACTIONS(1476), - [anon_sym_switch] = ACTIONS(1478), - [anon_sym_LBRACE] = ACTIONS(1476), - [anon_sym_case] = ACTIONS(1478), - [anon_sym_default] = ACTIONS(1478), - [anon_sym_cast] = ACTIONS(1478), - [anon_sym_COMMA] = ACTIONS(1476), - [anon_sym_DOLLARtype] = ACTIONS(1476), - [anon_sym_return] = ACTIONS(1478), - [anon_sym_untyped] = ACTIONS(1478), - [anon_sym_break] = ACTIONS(1478), - [anon_sym_continue] = ACTIONS(1478), - [anon_sym_LBRACK] = ACTIONS(1476), - [anon_sym_this] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(1478), - [anon_sym_AT_COLON] = ACTIONS(1476), - [anon_sym_if] = ACTIONS(1478), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_TILDE] = ACTIONS(1476), - [anon_sym_BANG] = ACTIONS(1478), - [anon_sym_DASH] = ACTIONS(1478), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_PERCENT] = ACTIONS(1476), - [anon_sym_STAR] = ACTIONS(1476), - [anon_sym_SLASH] = ACTIONS(1478), - [anon_sym_PLUS] = ACTIONS(1478), - [anon_sym_LT_LT] = ACTIONS(1476), - [anon_sym_GT_GT] = ACTIONS(1478), - [anon_sym_GT_GT_GT] = ACTIONS(1476), - [anon_sym_AMP] = ACTIONS(1478), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_CARET] = ACTIONS(1476), - [anon_sym_AMP_AMP] = ACTIONS(1476), - [anon_sym_PIPE_PIPE] = ACTIONS(1476), - [anon_sym_EQ_EQ] = ACTIONS(1476), - [anon_sym_BANG_EQ] = ACTIONS(1476), - [anon_sym_LT] = ACTIONS(1478), - [anon_sym_LT_EQ] = ACTIONS(1476), - [anon_sym_GT] = ACTIONS(1478), - [anon_sym_GT_EQ] = ACTIONS(1476), - [anon_sym_EQ_GT] = ACTIONS(1476), - [anon_sym_QMARK_QMARK] = ACTIONS(1476), - [anon_sym_EQ] = ACTIONS(1478), - [sym__rangeOperator] = ACTIONS(1476), - [anon_sym_null] = ACTIONS(1478), - [anon_sym_macro] = ACTIONS(1478), - [anon_sym_abstract] = ACTIONS(1478), - [anon_sym_static] = ACTIONS(1478), - [anon_sym_public] = ACTIONS(1478), - [anon_sym_private] = ACTIONS(1478), - [anon_sym_extern] = ACTIONS(1478), - [anon_sym_inline] = ACTIONS(1478), - [anon_sym_overload] = ACTIONS(1478), - [anon_sym_override] = ACTIONS(1478), - [anon_sym_final] = ACTIONS(1478), - [anon_sym_class] = ACTIONS(1478), - [anon_sym_interface] = ACTIONS(1478), - [anon_sym_typedef] = ACTIONS(1478), - [anon_sym_function] = ACTIONS(1478), - [anon_sym_var] = ACTIONS(1478), - [aux_sym_integer_token1] = ACTIONS(1478), - [aux_sym_integer_token2] = ACTIONS(1476), - [aux_sym_float_token1] = ACTIONS(1478), - [aux_sym_float_token2] = ACTIONS(1476), - [anon_sym_true] = ACTIONS(1478), - [anon_sym_false] = ACTIONS(1478), - [aux_sym_string_token1] = ACTIONS(1476), - [aux_sym_string_token3] = ACTIONS(1476), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1476), + [sym__rhs_expression] = STATE(1130), + [sym__unaryExpression] = STATE(1774), + [sym_runtime_type_check_expression] = STATE(1774), + [sym_switch_expression] = STATE(1774), + [sym_cast_expression] = STATE(1774), + [sym_type_trace_expression] = STATE(1774), + [sym__parenthesized_expression] = STATE(1555), + [sym_range_expression] = STATE(1774), + [sym_subscript_expression] = STATE(1774), + [sym_member_expression] = STATE(1563), + [sym__lhs_expression] = STATE(2822), + [sym__call] = STATE(2000), + [sym__constructor_call] = STATE(2023), + [sym_call_expression] = STATE(1130), + [sym_operator] = STATE(2032), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1843), + [sym_integer] = STATE(1662), + [sym_float] = STATE(1843), + [sym_bool] = STATE(1843), + [sym_string] = STATE(1609), + [sym_null] = STATE(1843), + [sym_array] = STATE(1843), + [sym_map] = STATE(1843), + [sym_object] = STATE(1843), + [sym_pair] = STATE(1843), + [sym_identifier] = ACTIONS(2005), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_cast] = ACTIONS(2013), + [anon_sym_DOLLARtype] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2017), + [anon_sym_untyped] = ACTIONS(2019), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_this] = ACTIONS(2025), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(2029), + [aux_sym_integer_token1] = ACTIONS(2031), + [aux_sym_integer_token2] = ACTIONS(2033), + [aux_sym_float_token1] = ACTIONS(2035), + [aux_sym_float_token2] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [aux_sym_string_token1] = ACTIONS(2041), + [aux_sym_string_token3] = ACTIONS(2043), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [242] = { - [sym_identifier] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1424), - [anon_sym_package] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1426), - [anon_sym_import] = ACTIONS(1426), - [anon_sym_using] = ACTIONS(1426), - [anon_sym_throw] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1424), - [anon_sym_switch] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1424), - [anon_sym_case] = ACTIONS(1426), - [anon_sym_default] = ACTIONS(1426), - [anon_sym_cast] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1424), - [anon_sym_DOLLARtype] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1426), - [anon_sym_untyped] = ACTIONS(1426), - [anon_sym_break] = ACTIONS(1426), - [anon_sym_continue] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1424), - [anon_sym_this] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(1426), - [anon_sym_AT] = ACTIONS(1426), - [anon_sym_AT_COLON] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1426), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_TILDE] = ACTIONS(1424), - [anon_sym_BANG] = ACTIONS(1426), - [anon_sym_DASH] = ACTIONS(1426), - [anon_sym_PLUS_PLUS] = ACTIONS(1424), - [anon_sym_DASH_DASH] = ACTIONS(1424), - [anon_sym_PERCENT] = ACTIONS(1424), - [anon_sym_STAR] = ACTIONS(1424), - [anon_sym_SLASH] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1426), - [anon_sym_LT_LT] = ACTIONS(1424), - [anon_sym_GT_GT] = ACTIONS(1426), - [anon_sym_GT_GT_GT] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1426), - [anon_sym_PIPE] = ACTIONS(1426), - [anon_sym_CARET] = ACTIONS(1424), - [anon_sym_AMP_AMP] = ACTIONS(1424), - [anon_sym_PIPE_PIPE] = ACTIONS(1424), - [anon_sym_EQ_EQ] = ACTIONS(1424), - [anon_sym_BANG_EQ] = ACTIONS(1424), - [anon_sym_LT] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1424), - [anon_sym_GT] = ACTIONS(1426), - [anon_sym_GT_EQ] = ACTIONS(1424), - [anon_sym_EQ_GT] = ACTIONS(1424), - [anon_sym_QMARK_QMARK] = ACTIONS(1424), - [anon_sym_EQ] = ACTIONS(1426), - [sym__rangeOperator] = ACTIONS(1424), - [anon_sym_null] = ACTIONS(1426), - [anon_sym_macro] = ACTIONS(1426), - [anon_sym_abstract] = ACTIONS(1426), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_extern] = ACTIONS(1426), - [anon_sym_inline] = ACTIONS(1426), - [anon_sym_overload] = ACTIONS(1426), - [anon_sym_override] = ACTIONS(1426), - [anon_sym_final] = ACTIONS(1426), - [anon_sym_class] = ACTIONS(1426), - [anon_sym_interface] = ACTIONS(1426), - [anon_sym_typedef] = ACTIONS(1426), - [anon_sym_function] = ACTIONS(1426), - [anon_sym_var] = ACTIONS(1426), - [aux_sym_integer_token1] = ACTIONS(1426), - [aux_sym_integer_token2] = ACTIONS(1424), - [aux_sym_float_token1] = ACTIONS(1426), - [aux_sym_float_token2] = ACTIONS(1424), - [anon_sym_true] = ACTIONS(1426), - [anon_sym_false] = ACTIONS(1426), - [aux_sym_string_token1] = ACTIONS(1424), - [aux_sym_string_token3] = ACTIONS(1424), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1424), + [sym__rhs_expression] = STATE(121), + [sym__unaryExpression] = STATE(381), + [sym_runtime_type_check_expression] = STATE(381), + [sym_switch_expression] = STATE(381), + [sym_cast_expression] = STATE(381), + [sym_type_trace_expression] = STATE(381), + [sym__parenthesized_expression] = STATE(259), + [sym_range_expression] = STATE(381), + [sym_subscript_expression] = STATE(381), + [sym_member_expression] = STATE(379), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(121), + [sym_operator] = STATE(1988), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(564), + [sym_integer] = STATE(327), + [sym_float] = STATE(564), + [sym_bool] = STATE(564), + [sym_string] = STATE(408), + [sym_null] = STATE(564), + [sym_array] = STATE(564), + [sym_map] = STATE(564), + [sym_object] = STATE(564), + [sym_pair] = STATE(564), + [sym_identifier] = ACTIONS(2045), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(2049), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_untyped] = ACTIONS(2053), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [243] = { - [sym_identifier] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_package] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_using] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_COMMA] = ACTIONS(1518), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_this] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AT_COLON] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_GT_GT_GT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [sym__rangeOperator] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [aux_sym_integer_token1] = ACTIONS(1520), - [aux_sym_integer_token2] = ACTIONS(1518), - [aux_sym_float_token1] = ACTIONS(1520), - [aux_sym_float_token2] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), - [aux_sym_string_token3] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1518), + [sym__rhs_expression] = STATE(1145), + [sym__unaryExpression] = STATE(3509), + [sym_runtime_type_check_expression] = STATE(3509), + [sym_switch_expression] = STATE(3509), + [sym_cast_expression] = STATE(3509), + [sym_type_trace_expression] = STATE(3509), + [sym__parenthesized_expression] = STATE(2652), + [sym_range_expression] = STATE(3509), + [sym_subscript_expression] = STATE(3509), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1145), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_untyped] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [244] = { - [sym_identifier] = ACTIONS(1492), - [anon_sym_POUND] = ACTIONS(1490), - [anon_sym_package] = ACTIONS(1492), - [anon_sym_DOT] = ACTIONS(1492), - [anon_sym_import] = ACTIONS(1492), - [anon_sym_using] = ACTIONS(1492), - [anon_sym_throw] = ACTIONS(1492), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_switch] = ACTIONS(1492), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_case] = ACTIONS(1492), - [anon_sym_default] = ACTIONS(1492), - [anon_sym_cast] = ACTIONS(1492), - [anon_sym_COMMA] = ACTIONS(1490), - [anon_sym_DOLLARtype] = ACTIONS(1490), - [anon_sym_return] = ACTIONS(1492), - [anon_sym_untyped] = ACTIONS(1492), - [anon_sym_break] = ACTIONS(1492), - [anon_sym_continue] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_this] = ACTIONS(1492), - [anon_sym_QMARK] = ACTIONS(1492), - [anon_sym_AT] = ACTIONS(1492), - [anon_sym_AT_COLON] = ACTIONS(1490), - [anon_sym_if] = ACTIONS(1492), - [anon_sym_new] = ACTIONS(1492), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_BANG] = ACTIONS(1492), - [anon_sym_DASH] = ACTIONS(1492), - [anon_sym_PLUS_PLUS] = ACTIONS(1490), - [anon_sym_DASH_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1490), - [anon_sym_STAR] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(1492), - [anon_sym_PLUS] = ACTIONS(1492), - [anon_sym_LT_LT] = ACTIONS(1490), - [anon_sym_GT_GT] = ACTIONS(1492), - [anon_sym_GT_GT_GT] = ACTIONS(1490), - [anon_sym_AMP] = ACTIONS(1492), - [anon_sym_PIPE] = ACTIONS(1492), - [anon_sym_CARET] = ACTIONS(1490), - [anon_sym_AMP_AMP] = ACTIONS(1490), - [anon_sym_PIPE_PIPE] = ACTIONS(1490), - [anon_sym_EQ_EQ] = ACTIONS(1490), - [anon_sym_BANG_EQ] = ACTIONS(1490), - [anon_sym_LT] = ACTIONS(1492), - [anon_sym_LT_EQ] = ACTIONS(1490), - [anon_sym_GT] = ACTIONS(1492), - [anon_sym_GT_EQ] = ACTIONS(1490), - [anon_sym_EQ_GT] = ACTIONS(1490), - [anon_sym_QMARK_QMARK] = ACTIONS(1490), - [anon_sym_EQ] = ACTIONS(1492), - [sym__rangeOperator] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1492), - [anon_sym_macro] = ACTIONS(1492), - [anon_sym_abstract] = ACTIONS(1492), - [anon_sym_static] = ACTIONS(1492), - [anon_sym_public] = ACTIONS(1492), - [anon_sym_private] = ACTIONS(1492), - [anon_sym_extern] = ACTIONS(1492), - [anon_sym_inline] = ACTIONS(1492), - [anon_sym_overload] = ACTIONS(1492), - [anon_sym_override] = ACTIONS(1492), - [anon_sym_final] = ACTIONS(1492), - [anon_sym_class] = ACTIONS(1492), - [anon_sym_interface] = ACTIONS(1492), - [anon_sym_typedef] = ACTIONS(1492), - [anon_sym_function] = ACTIONS(1492), - [anon_sym_var] = ACTIONS(1492), - [aux_sym_integer_token1] = ACTIONS(1492), - [aux_sym_integer_token2] = ACTIONS(1490), - [aux_sym_float_token1] = ACTIONS(1492), - [aux_sym_float_token2] = ACTIONS(1490), - [anon_sym_true] = ACTIONS(1492), - [anon_sym_false] = ACTIONS(1492), - [aux_sym_string_token1] = ACTIONS(1490), - [aux_sym_string_token3] = ACTIONS(1490), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1490), + [sym__rhs_expression] = STATE(1146), + [sym__unaryExpression] = STATE(3659), + [sym_runtime_type_check_expression] = STATE(3659), + [sym_switch_expression] = STATE(3659), + [sym_cast_expression] = STATE(3659), + [sym_type_trace_expression] = STATE(3659), + [sym__parenthesized_expression] = STATE(2657), + [sym_range_expression] = STATE(3659), + [sym_subscript_expression] = STATE(3659), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1146), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_untyped] = ACTIONS(2063), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [245] = { - [sym_identifier] = ACTIONS(1558), - [anon_sym_POUND] = ACTIONS(1556), - [anon_sym_package] = ACTIONS(1558), - [anon_sym_DOT] = ACTIONS(1558), - [anon_sym_import] = ACTIONS(1558), - [anon_sym_using] = ACTIONS(1558), - [anon_sym_throw] = ACTIONS(1558), - [anon_sym_LPAREN] = ACTIONS(1556), - [anon_sym_switch] = ACTIONS(1558), - [anon_sym_LBRACE] = ACTIONS(1556), - [anon_sym_case] = ACTIONS(1558), - [anon_sym_default] = ACTIONS(1558), - [anon_sym_cast] = ACTIONS(1558), - [anon_sym_COMMA] = ACTIONS(1556), - [anon_sym_DOLLARtype] = ACTIONS(1556), - [anon_sym_return] = ACTIONS(1558), - [anon_sym_untyped] = ACTIONS(1558), - [anon_sym_break] = ACTIONS(1558), - [anon_sym_continue] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1556), - [anon_sym_this] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(1558), - [anon_sym_AT] = ACTIONS(1558), - [anon_sym_AT_COLON] = ACTIONS(1556), - [anon_sym_if] = ACTIONS(1558), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_TILDE] = ACTIONS(1556), - [anon_sym_BANG] = ACTIONS(1558), - [anon_sym_DASH] = ACTIONS(1558), - [anon_sym_PLUS_PLUS] = ACTIONS(1556), - [anon_sym_DASH_DASH] = ACTIONS(1556), - [anon_sym_PERCENT] = ACTIONS(1556), - [anon_sym_STAR] = ACTIONS(1556), - [anon_sym_SLASH] = ACTIONS(1558), - [anon_sym_PLUS] = ACTIONS(1558), - [anon_sym_LT_LT] = ACTIONS(1556), - [anon_sym_GT_GT] = ACTIONS(1558), - [anon_sym_GT_GT_GT] = ACTIONS(1556), - [anon_sym_AMP] = ACTIONS(1558), - [anon_sym_PIPE] = ACTIONS(1558), - [anon_sym_CARET] = ACTIONS(1556), - [anon_sym_AMP_AMP] = ACTIONS(1556), - [anon_sym_PIPE_PIPE] = ACTIONS(1556), - [anon_sym_EQ_EQ] = ACTIONS(1556), - [anon_sym_BANG_EQ] = ACTIONS(1556), - [anon_sym_LT] = ACTIONS(1558), - [anon_sym_LT_EQ] = ACTIONS(1556), - [anon_sym_GT] = ACTIONS(1558), - [anon_sym_GT_EQ] = ACTIONS(1556), - [anon_sym_EQ_GT] = ACTIONS(1556), - [anon_sym_QMARK_QMARK] = ACTIONS(1556), - [anon_sym_EQ] = ACTIONS(1558), - [sym__rangeOperator] = ACTIONS(1556), - [anon_sym_null] = ACTIONS(1558), - [anon_sym_macro] = ACTIONS(1558), - [anon_sym_abstract] = ACTIONS(1558), - [anon_sym_static] = ACTIONS(1558), - [anon_sym_public] = ACTIONS(1558), - [anon_sym_private] = ACTIONS(1558), - [anon_sym_extern] = ACTIONS(1558), - [anon_sym_inline] = ACTIONS(1558), - [anon_sym_overload] = ACTIONS(1558), - [anon_sym_override] = ACTIONS(1558), - [anon_sym_final] = ACTIONS(1558), - [anon_sym_class] = ACTIONS(1558), - [anon_sym_interface] = ACTIONS(1558), - [anon_sym_typedef] = ACTIONS(1558), - [anon_sym_function] = ACTIONS(1558), - [anon_sym_var] = ACTIONS(1558), - [aux_sym_integer_token1] = ACTIONS(1558), - [aux_sym_integer_token2] = ACTIONS(1556), - [aux_sym_float_token1] = ACTIONS(1558), - [aux_sym_float_token2] = ACTIONS(1556), - [anon_sym_true] = ACTIONS(1558), - [anon_sym_false] = ACTIONS(1558), - [aux_sym_string_token1] = ACTIONS(1556), - [aux_sym_string_token3] = ACTIONS(1556), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1556), + [sym__rhs_expression] = STATE(1160), + [sym__unaryExpression] = STATE(3386), + [sym_runtime_type_check_expression] = STATE(3386), + [sym_switch_expression] = STATE(3386), + [sym_cast_expression] = STATE(3386), + [sym_type_trace_expression] = STATE(3386), + [sym__parenthesized_expression] = STATE(2677), + [sym_range_expression] = STATE(3386), + [sym_subscript_expression] = STATE(3386), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1160), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_untyped] = ACTIONS(2069), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [246] = { - [sym_identifier] = ACTIONS(1562), - [anon_sym_POUND] = ACTIONS(1560), - [anon_sym_package] = ACTIONS(1562), - [anon_sym_DOT] = ACTIONS(1562), - [anon_sym_import] = ACTIONS(1562), - [anon_sym_using] = ACTIONS(1562), - [anon_sym_throw] = ACTIONS(1562), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_switch] = ACTIONS(1562), - [anon_sym_LBRACE] = ACTIONS(1560), - [anon_sym_case] = ACTIONS(1562), - [anon_sym_default] = ACTIONS(1562), - [anon_sym_cast] = ACTIONS(1562), - [anon_sym_COMMA] = ACTIONS(1560), - [anon_sym_DOLLARtype] = ACTIONS(1560), - [anon_sym_return] = ACTIONS(1562), - [anon_sym_untyped] = ACTIONS(1562), - [anon_sym_break] = ACTIONS(1562), - [anon_sym_continue] = ACTIONS(1562), - [anon_sym_LBRACK] = ACTIONS(1560), - [anon_sym_this] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(1562), - [anon_sym_AT] = ACTIONS(1562), - [anon_sym_AT_COLON] = ACTIONS(1560), - [anon_sym_if] = ACTIONS(1562), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_TILDE] = ACTIONS(1560), - [anon_sym_BANG] = ACTIONS(1562), - [anon_sym_DASH] = ACTIONS(1562), - [anon_sym_PLUS_PLUS] = ACTIONS(1560), - [anon_sym_DASH_DASH] = ACTIONS(1560), - [anon_sym_PERCENT] = ACTIONS(1560), - [anon_sym_STAR] = ACTIONS(1560), - [anon_sym_SLASH] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(1562), - [anon_sym_LT_LT] = ACTIONS(1560), - [anon_sym_GT_GT] = ACTIONS(1562), - [anon_sym_GT_GT_GT] = ACTIONS(1560), - [anon_sym_AMP] = ACTIONS(1562), - [anon_sym_PIPE] = ACTIONS(1562), - [anon_sym_CARET] = ACTIONS(1560), - [anon_sym_AMP_AMP] = ACTIONS(1560), - [anon_sym_PIPE_PIPE] = ACTIONS(1560), - [anon_sym_EQ_EQ] = ACTIONS(1560), - [anon_sym_BANG_EQ] = ACTIONS(1560), - [anon_sym_LT] = ACTIONS(1562), - [anon_sym_LT_EQ] = ACTIONS(1560), - [anon_sym_GT] = ACTIONS(1562), - [anon_sym_GT_EQ] = ACTIONS(1560), - [anon_sym_EQ_GT] = ACTIONS(1560), - [anon_sym_QMARK_QMARK] = ACTIONS(1560), - [anon_sym_EQ] = ACTIONS(1562), - [sym__rangeOperator] = ACTIONS(1560), - [anon_sym_null] = ACTIONS(1562), - [anon_sym_macro] = ACTIONS(1562), - [anon_sym_abstract] = ACTIONS(1562), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_extern] = ACTIONS(1562), - [anon_sym_inline] = ACTIONS(1562), - [anon_sym_overload] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_final] = ACTIONS(1562), - [anon_sym_class] = ACTIONS(1562), - [anon_sym_interface] = ACTIONS(1562), - [anon_sym_typedef] = ACTIONS(1562), - [anon_sym_function] = ACTIONS(1562), - [anon_sym_var] = ACTIONS(1562), - [aux_sym_integer_token1] = ACTIONS(1562), - [aux_sym_integer_token2] = ACTIONS(1560), - [aux_sym_float_token1] = ACTIONS(1562), - [aux_sym_float_token2] = ACTIONS(1560), - [anon_sym_true] = ACTIONS(1562), - [anon_sym_false] = ACTIONS(1562), - [aux_sym_string_token1] = ACTIONS(1560), - [aux_sym_string_token3] = ACTIONS(1560), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1560), + [sym__rhs_expression] = STATE(1168), + [sym__unaryExpression] = STATE(3615), + [sym_runtime_type_check_expression] = STATE(3615), + [sym_switch_expression] = STATE(3615), + [sym_cast_expression] = STATE(3615), + [sym_type_trace_expression] = STATE(3615), + [sym__parenthesized_expression] = STATE(2682), + [sym_range_expression] = STATE(3615), + [sym_subscript_expression] = STATE(3615), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1168), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2073), + [anon_sym_untyped] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2077), + [anon_sym_continue] = ACTIONS(2077), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [247] = { - [sym_identifier] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1444), - [anon_sym_package] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1446), - [anon_sym_import] = ACTIONS(1446), - [anon_sym_using] = ACTIONS(1446), - [anon_sym_throw] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1444), - [anon_sym_switch] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1444), - [anon_sym_case] = ACTIONS(1446), - [anon_sym_default] = ACTIONS(1446), - [anon_sym_cast] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1444), - [anon_sym_DOLLARtype] = ACTIONS(1444), - [anon_sym_return] = ACTIONS(1446), - [anon_sym_untyped] = ACTIONS(1446), - [anon_sym_break] = ACTIONS(1446), - [anon_sym_continue] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1444), - [anon_sym_this] = ACTIONS(1446), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_AT] = ACTIONS(1446), - [anon_sym_AT_COLON] = ACTIONS(1444), - [anon_sym_if] = ACTIONS(1446), - [anon_sym_new] = ACTIONS(1446), - [anon_sym_TILDE] = ACTIONS(1444), - [anon_sym_BANG] = ACTIONS(1446), - [anon_sym_DASH] = ACTIONS(1446), - [anon_sym_PLUS_PLUS] = ACTIONS(1444), - [anon_sym_DASH_DASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1446), - [anon_sym_GT_GT_GT] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1446), - [anon_sym_PIPE] = ACTIONS(1446), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1444), - [anon_sym_PIPE_PIPE] = ACTIONS(1444), - [anon_sym_EQ_EQ] = ACTIONS(1444), - [anon_sym_BANG_EQ] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1444), - [anon_sym_GT] = ACTIONS(1446), - [anon_sym_GT_EQ] = ACTIONS(1444), - [anon_sym_EQ_GT] = ACTIONS(1444), - [anon_sym_QMARK_QMARK] = ACTIONS(1444), - [anon_sym_EQ] = ACTIONS(1446), - [sym__rangeOperator] = ACTIONS(1444), - [anon_sym_null] = ACTIONS(1446), - [anon_sym_macro] = ACTIONS(1446), - [anon_sym_abstract] = ACTIONS(1446), - [anon_sym_static] = ACTIONS(1446), - [anon_sym_public] = ACTIONS(1446), - [anon_sym_private] = ACTIONS(1446), - [anon_sym_extern] = ACTIONS(1446), - [anon_sym_inline] = ACTIONS(1446), - [anon_sym_overload] = ACTIONS(1446), - [anon_sym_override] = ACTIONS(1446), - [anon_sym_final] = ACTIONS(1446), - [anon_sym_class] = ACTIONS(1446), - [anon_sym_interface] = ACTIONS(1446), - [anon_sym_typedef] = ACTIONS(1446), - [anon_sym_function] = ACTIONS(1446), - [anon_sym_var] = ACTIONS(1446), - [aux_sym_integer_token1] = ACTIONS(1446), - [aux_sym_integer_token2] = ACTIONS(1444), - [aux_sym_float_token1] = ACTIONS(1446), - [aux_sym_float_token2] = ACTIONS(1444), - [anon_sym_true] = ACTIONS(1446), - [anon_sym_false] = ACTIONS(1446), - [aux_sym_string_token1] = ACTIONS(1444), - [aux_sym_string_token3] = ACTIONS(1444), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1444), + [sym__rhs_expression] = STATE(1169), + [sym__unaryExpression] = STATE(3339), + [sym_runtime_type_check_expression] = STATE(3339), + [sym_switch_expression] = STATE(3339), + [sym_cast_expression] = STATE(3339), + [sym_type_trace_expression] = STATE(3339), + [sym__parenthesized_expression] = STATE(2685), + [sym_range_expression] = STATE(3339), + [sym_subscript_expression] = STATE(3339), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1169), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2079), + [anon_sym_untyped] = ACTIONS(2081), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [248] = { - [sym_identifier] = ACTIONS(1570), - [anon_sym_POUND] = ACTIONS(1568), - [anon_sym_package] = ACTIONS(1570), - [anon_sym_DOT] = ACTIONS(1570), - [anon_sym_import] = ACTIONS(1570), - [anon_sym_using] = ACTIONS(1570), - [anon_sym_throw] = ACTIONS(1570), - [anon_sym_LPAREN] = ACTIONS(1568), - [anon_sym_switch] = ACTIONS(1570), - [anon_sym_LBRACE] = ACTIONS(1568), - [anon_sym_case] = ACTIONS(1570), - [anon_sym_default] = ACTIONS(1570), - [anon_sym_cast] = ACTIONS(1570), - [anon_sym_COMMA] = ACTIONS(1568), - [anon_sym_DOLLARtype] = ACTIONS(1568), - [anon_sym_return] = ACTIONS(1570), - [anon_sym_untyped] = ACTIONS(1570), - [anon_sym_break] = ACTIONS(1570), - [anon_sym_continue] = ACTIONS(1570), - [anon_sym_LBRACK] = ACTIONS(1568), - [anon_sym_this] = ACTIONS(1570), - [anon_sym_QMARK] = ACTIONS(1570), - [anon_sym_AT] = ACTIONS(1570), - [anon_sym_AT_COLON] = ACTIONS(1568), - [anon_sym_if] = ACTIONS(1570), - [anon_sym_new] = ACTIONS(1570), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_BANG] = ACTIONS(1570), - [anon_sym_DASH] = ACTIONS(1570), - [anon_sym_PLUS_PLUS] = ACTIONS(1568), - [anon_sym_DASH_DASH] = ACTIONS(1568), - [anon_sym_PERCENT] = ACTIONS(1568), - [anon_sym_STAR] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1570), - [anon_sym_PLUS] = ACTIONS(1570), - [anon_sym_LT_LT] = ACTIONS(1568), - [anon_sym_GT_GT] = ACTIONS(1570), - [anon_sym_GT_GT_GT] = ACTIONS(1568), - [anon_sym_AMP] = ACTIONS(1570), - [anon_sym_PIPE] = ACTIONS(1570), - [anon_sym_CARET] = ACTIONS(1568), - [anon_sym_AMP_AMP] = ACTIONS(1568), - [anon_sym_PIPE_PIPE] = ACTIONS(1568), - [anon_sym_EQ_EQ] = ACTIONS(1568), - [anon_sym_BANG_EQ] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(1570), - [anon_sym_LT_EQ] = ACTIONS(1568), - [anon_sym_GT] = ACTIONS(1570), - [anon_sym_GT_EQ] = ACTIONS(1568), - [anon_sym_EQ_GT] = ACTIONS(1568), - [anon_sym_QMARK_QMARK] = ACTIONS(1568), - [anon_sym_EQ] = ACTIONS(1570), - [sym__rangeOperator] = ACTIONS(1568), - [anon_sym_null] = ACTIONS(1570), - [anon_sym_macro] = ACTIONS(1570), - [anon_sym_abstract] = ACTIONS(1570), - [anon_sym_static] = ACTIONS(1570), - [anon_sym_public] = ACTIONS(1570), - [anon_sym_private] = ACTIONS(1570), - [anon_sym_extern] = ACTIONS(1570), - [anon_sym_inline] = ACTIONS(1570), - [anon_sym_overload] = ACTIONS(1570), - [anon_sym_override] = ACTIONS(1570), - [anon_sym_final] = ACTIONS(1570), - [anon_sym_class] = ACTIONS(1570), - [anon_sym_interface] = ACTIONS(1570), - [anon_sym_typedef] = ACTIONS(1570), - [anon_sym_function] = ACTIONS(1570), - [anon_sym_var] = ACTIONS(1570), - [aux_sym_integer_token1] = ACTIONS(1570), - [aux_sym_integer_token2] = ACTIONS(1568), - [aux_sym_float_token1] = ACTIONS(1570), - [aux_sym_float_token2] = ACTIONS(1568), - [anon_sym_true] = ACTIONS(1570), - [anon_sym_false] = ACTIONS(1570), - [aux_sym_string_token1] = ACTIONS(1568), - [aux_sym_string_token3] = ACTIONS(1568), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1568), + [sym__rhs_expression] = STATE(1179), + [sym__unaryExpression] = STATE(3358), + [sym_runtime_type_check_expression] = STATE(3358), + [sym_switch_expression] = STATE(3358), + [sym_cast_expression] = STATE(3358), + [sym_type_trace_expression] = STATE(3358), + [sym__parenthesized_expression] = STATE(2726), + [sym_range_expression] = STATE(3358), + [sym_subscript_expression] = STATE(3358), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1179), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2085), + [anon_sym_untyped] = ACTIONS(2087), + [anon_sym_break] = ACTIONS(2089), + [anon_sym_continue] = ACTIONS(2089), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [249] = { - [sym_identifier] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1440), - [anon_sym_package] = ACTIONS(1442), - [anon_sym_DOT] = ACTIONS(1442), - [anon_sym_import] = ACTIONS(1442), - [anon_sym_using] = ACTIONS(1442), - [anon_sym_throw] = ACTIONS(1442), - [anon_sym_LPAREN] = ACTIONS(1440), - [anon_sym_switch] = ACTIONS(1442), - [anon_sym_LBRACE] = ACTIONS(1440), - [anon_sym_case] = ACTIONS(1442), - [anon_sym_default] = ACTIONS(1442), - [anon_sym_cast] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_DOLLARtype] = ACTIONS(1440), - [anon_sym_return] = ACTIONS(1442), - [anon_sym_untyped] = ACTIONS(1442), - [anon_sym_break] = ACTIONS(1442), - [anon_sym_continue] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1440), - [anon_sym_this] = ACTIONS(1442), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(1442), - [anon_sym_AT_COLON] = ACTIONS(1440), - [anon_sym_if] = ACTIONS(1442), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_TILDE] = ACTIONS(1440), - [anon_sym_BANG] = ACTIONS(1442), - [anon_sym_DASH] = ACTIONS(1442), - [anon_sym_PLUS_PLUS] = ACTIONS(1440), - [anon_sym_DASH_DASH] = ACTIONS(1440), - [anon_sym_PERCENT] = ACTIONS(1440), - [anon_sym_STAR] = ACTIONS(1440), - [anon_sym_SLASH] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1440), - [anon_sym_GT_GT] = ACTIONS(1442), - [anon_sym_GT_GT_GT] = ACTIONS(1440), - [anon_sym_AMP] = ACTIONS(1442), - [anon_sym_PIPE] = ACTIONS(1442), - [anon_sym_CARET] = ACTIONS(1440), - [anon_sym_AMP_AMP] = ACTIONS(1440), - [anon_sym_PIPE_PIPE] = ACTIONS(1440), - [anon_sym_EQ_EQ] = ACTIONS(1440), - [anon_sym_BANG_EQ] = ACTIONS(1440), - [anon_sym_LT] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1440), - [anon_sym_GT] = ACTIONS(1442), - [anon_sym_GT_EQ] = ACTIONS(1440), - [anon_sym_EQ_GT] = ACTIONS(1440), - [anon_sym_QMARK_QMARK] = ACTIONS(1440), - [anon_sym_EQ] = ACTIONS(1442), - [sym__rangeOperator] = ACTIONS(1440), - [anon_sym_null] = ACTIONS(1442), - [anon_sym_macro] = ACTIONS(1442), - [anon_sym_abstract] = ACTIONS(1442), - [anon_sym_static] = ACTIONS(1442), - [anon_sym_public] = ACTIONS(1442), - [anon_sym_private] = ACTIONS(1442), - [anon_sym_extern] = ACTIONS(1442), - [anon_sym_inline] = ACTIONS(1442), - [anon_sym_overload] = ACTIONS(1442), - [anon_sym_override] = ACTIONS(1442), - [anon_sym_final] = ACTIONS(1442), - [anon_sym_class] = ACTIONS(1442), - [anon_sym_interface] = ACTIONS(1442), - [anon_sym_typedef] = ACTIONS(1442), - [anon_sym_function] = ACTIONS(1442), - [anon_sym_var] = ACTIONS(1442), - [aux_sym_integer_token1] = ACTIONS(1442), - [aux_sym_integer_token2] = ACTIONS(1440), - [aux_sym_float_token1] = ACTIONS(1442), - [aux_sym_float_token2] = ACTIONS(1440), - [anon_sym_true] = ACTIONS(1442), - [anon_sym_false] = ACTIONS(1442), - [aux_sym_string_token1] = ACTIONS(1440), - [aux_sym_string_token3] = ACTIONS(1440), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1440), + [sym__rhs_expression] = STATE(1090), + [sym__unaryExpression] = STATE(722), + [sym_runtime_type_check_expression] = STATE(722), + [sym_switch_expression] = STATE(722), + [sym_cast_expression] = STATE(722), + [sym_type_trace_expression] = STATE(722), + [sym__parenthesized_expression] = STATE(626), + [sym_range_expression] = STATE(722), + [sym_subscript_expression] = STATE(722), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1090), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2091), + [anon_sym_untyped] = ACTIONS(2093), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [250] = { - [sym_identifier] = ACTIONS(1438), - [anon_sym_POUND] = ACTIONS(1436), - [anon_sym_package] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1438), - [anon_sym_import] = ACTIONS(1438), - [anon_sym_using] = ACTIONS(1438), - [anon_sym_throw] = ACTIONS(1438), - [anon_sym_LPAREN] = ACTIONS(1436), - [anon_sym_switch] = ACTIONS(1438), - [anon_sym_LBRACE] = ACTIONS(1436), - [anon_sym_case] = ACTIONS(1438), - [anon_sym_default] = ACTIONS(1438), - [anon_sym_cast] = ACTIONS(1438), - [anon_sym_COMMA] = ACTIONS(1436), - [anon_sym_DOLLARtype] = ACTIONS(1436), - [anon_sym_return] = ACTIONS(1438), - [anon_sym_untyped] = ACTIONS(1438), - [anon_sym_break] = ACTIONS(1438), - [anon_sym_continue] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1436), - [anon_sym_this] = ACTIONS(1438), - [anon_sym_QMARK] = ACTIONS(1438), - [anon_sym_AT] = ACTIONS(1438), - [anon_sym_AT_COLON] = ACTIONS(1436), - [anon_sym_if] = ACTIONS(1438), - [anon_sym_new] = ACTIONS(1438), - [anon_sym_TILDE] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1438), - [anon_sym_DASH] = ACTIONS(1438), - [anon_sym_PLUS_PLUS] = ACTIONS(1436), - [anon_sym_DASH_DASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_PLUS] = ACTIONS(1438), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1438), - [anon_sym_GT_GT_GT] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1438), - [anon_sym_PIPE] = ACTIONS(1438), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1436), - [anon_sym_PIPE_PIPE] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1436), - [anon_sym_BANG_EQ] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1438), - [anon_sym_LT_EQ] = ACTIONS(1436), - [anon_sym_GT] = ACTIONS(1438), - [anon_sym_GT_EQ] = ACTIONS(1436), - [anon_sym_EQ_GT] = ACTIONS(1436), - [anon_sym_QMARK_QMARK] = ACTIONS(1436), - [anon_sym_EQ] = ACTIONS(1438), - [sym__rangeOperator] = ACTIONS(1436), - [anon_sym_null] = ACTIONS(1438), - [anon_sym_macro] = ACTIONS(1438), - [anon_sym_abstract] = ACTIONS(1438), - [anon_sym_static] = ACTIONS(1438), - [anon_sym_public] = ACTIONS(1438), - [anon_sym_private] = ACTIONS(1438), - [anon_sym_extern] = ACTIONS(1438), - [anon_sym_inline] = ACTIONS(1438), - [anon_sym_overload] = ACTIONS(1438), - [anon_sym_override] = ACTIONS(1438), - [anon_sym_final] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(1438), - [anon_sym_interface] = ACTIONS(1438), - [anon_sym_typedef] = ACTIONS(1438), - [anon_sym_function] = ACTIONS(1438), - [anon_sym_var] = ACTIONS(1438), - [aux_sym_integer_token1] = ACTIONS(1438), - [aux_sym_integer_token2] = ACTIONS(1436), - [aux_sym_float_token1] = ACTIONS(1438), - [aux_sym_float_token2] = ACTIONS(1436), - [anon_sym_true] = ACTIONS(1438), - [anon_sym_false] = ACTIONS(1438), - [aux_sym_string_token1] = ACTIONS(1436), - [aux_sym_string_token3] = ACTIONS(1436), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1436), + [sym__rhs_expression] = STATE(1039), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1039), + [sym_operator] = STATE(1866), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1976), + [sym_integer] = STATE(163), + [sym_float] = STATE(1976), + [sym_bool] = STATE(1976), + [sym_string] = STATE(1925), + [sym_null] = STATE(1976), + [sym_array] = STATE(1976), + [sym_map] = STATE(1976), + [sym_object] = STATE(1976), + [sym_pair] = STATE(1976), + [sym_identifier] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2099), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2101), + [anon_sym_untyped] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [251] = { - [sym_identifier] = ACTIONS(1500), - [anon_sym_POUND] = ACTIONS(1498), - [anon_sym_package] = ACTIONS(1500), - [anon_sym_DOT] = ACTIONS(1500), - [anon_sym_import] = ACTIONS(1500), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_throw] = ACTIONS(1500), - [anon_sym_LPAREN] = ACTIONS(1498), - [anon_sym_switch] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1498), - [anon_sym_case] = ACTIONS(1500), - [anon_sym_default] = ACTIONS(1500), - [anon_sym_cast] = ACTIONS(1500), - [anon_sym_COMMA] = ACTIONS(1498), - [anon_sym_DOLLARtype] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_untyped] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1498), - [anon_sym_this] = ACTIONS(1500), - [anon_sym_QMARK] = ACTIONS(1500), - [anon_sym_AT] = ACTIONS(1500), - [anon_sym_AT_COLON] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_new] = ACTIONS(1500), - [anon_sym_TILDE] = ACTIONS(1498), - [anon_sym_BANG] = ACTIONS(1500), - [anon_sym_DASH] = ACTIONS(1500), - [anon_sym_PLUS_PLUS] = ACTIONS(1498), - [anon_sym_DASH_DASH] = ACTIONS(1498), - [anon_sym_PERCENT] = ACTIONS(1498), - [anon_sym_STAR] = ACTIONS(1498), - [anon_sym_SLASH] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1500), - [anon_sym_LT_LT] = ACTIONS(1498), - [anon_sym_GT_GT] = ACTIONS(1500), - [anon_sym_GT_GT_GT] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(1500), - [anon_sym_PIPE] = ACTIONS(1500), - [anon_sym_CARET] = ACTIONS(1498), - [anon_sym_AMP_AMP] = ACTIONS(1498), - [anon_sym_PIPE_PIPE] = ACTIONS(1498), - [anon_sym_EQ_EQ] = ACTIONS(1498), - [anon_sym_BANG_EQ] = ACTIONS(1498), - [anon_sym_LT] = ACTIONS(1500), - [anon_sym_LT_EQ] = ACTIONS(1498), - [anon_sym_GT] = ACTIONS(1500), - [anon_sym_GT_EQ] = ACTIONS(1498), - [anon_sym_EQ_GT] = ACTIONS(1498), - [anon_sym_QMARK_QMARK] = ACTIONS(1498), - [anon_sym_EQ] = ACTIONS(1500), - [sym__rangeOperator] = ACTIONS(1498), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_macro] = ACTIONS(1500), - [anon_sym_abstract] = ACTIONS(1500), - [anon_sym_static] = ACTIONS(1500), - [anon_sym_public] = ACTIONS(1500), - [anon_sym_private] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_inline] = ACTIONS(1500), - [anon_sym_overload] = ACTIONS(1500), - [anon_sym_override] = ACTIONS(1500), - [anon_sym_final] = ACTIONS(1500), - [anon_sym_class] = ACTIONS(1500), - [anon_sym_interface] = ACTIONS(1500), - [anon_sym_typedef] = ACTIONS(1500), - [anon_sym_function] = ACTIONS(1500), - [anon_sym_var] = ACTIONS(1500), - [aux_sym_integer_token1] = ACTIONS(1500), - [aux_sym_integer_token2] = ACTIONS(1498), - [aux_sym_float_token1] = ACTIONS(1500), - [aux_sym_float_token2] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [aux_sym_string_token1] = ACTIONS(1498), - [aux_sym_string_token3] = ACTIONS(1498), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1498), + [sym__rhs_expression] = STATE(1086), + [sym__unaryExpression] = STATE(1774), + [sym_runtime_type_check_expression] = STATE(1774), + [sym_switch_expression] = STATE(1774), + [sym_cast_expression] = STATE(1774), + [sym_type_trace_expression] = STATE(1774), + [sym__parenthesized_expression] = STATE(1555), + [sym_range_expression] = STATE(1774), + [sym_subscript_expression] = STATE(1774), + [sym_member_expression] = STATE(1563), + [sym__lhs_expression] = STATE(2822), + [sym__call] = STATE(2000), + [sym__constructor_call] = STATE(2023), + [sym_call_expression] = STATE(1086), + [sym_operator] = STATE(1815), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1948), + [sym_integer] = STATE(1662), + [sym_float] = STATE(1948), + [sym_bool] = STATE(1948), + [sym_string] = STATE(1609), + [sym_null] = STATE(1948), + [sym_array] = STATE(1948), + [sym_map] = STATE(1948), + [sym_object] = STATE(1948), + [sym_pair] = STATE(1948), + [sym_identifier] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(2109), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_cast] = ACTIONS(2111), + [anon_sym_DOLLARtype] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2113), + [anon_sym_untyped] = ACTIONS(2115), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_this] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(2029), + [aux_sym_integer_token1] = ACTIONS(2031), + [aux_sym_integer_token2] = ACTIONS(2033), + [aux_sym_float_token1] = ACTIONS(2035), + [aux_sym_float_token2] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [aux_sym_string_token1] = ACTIONS(2041), + [aux_sym_string_token3] = ACTIONS(2043), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [252] = { - [sym_identifier] = ACTIONS(1542), - [anon_sym_POUND] = ACTIONS(1540), - [anon_sym_package] = ACTIONS(1542), - [anon_sym_DOT] = ACTIONS(1542), - [anon_sym_import] = ACTIONS(1542), - [anon_sym_using] = ACTIONS(1542), - [anon_sym_throw] = ACTIONS(1542), - [anon_sym_LPAREN] = ACTIONS(1540), - [anon_sym_switch] = ACTIONS(1542), - [anon_sym_LBRACE] = ACTIONS(1540), - [anon_sym_case] = ACTIONS(1542), - [anon_sym_default] = ACTIONS(1542), - [anon_sym_cast] = ACTIONS(1542), - [anon_sym_COMMA] = ACTIONS(1540), - [anon_sym_DOLLARtype] = ACTIONS(1540), - [anon_sym_return] = ACTIONS(1542), - [anon_sym_untyped] = ACTIONS(1542), - [anon_sym_break] = ACTIONS(1542), - [anon_sym_continue] = ACTIONS(1542), - [anon_sym_LBRACK] = ACTIONS(1540), - [anon_sym_this] = ACTIONS(1542), - [anon_sym_QMARK] = ACTIONS(1542), - [anon_sym_AT] = ACTIONS(1542), - [anon_sym_AT_COLON] = ACTIONS(1540), - [anon_sym_if] = ACTIONS(1542), - [anon_sym_new] = ACTIONS(1542), - [anon_sym_TILDE] = ACTIONS(1540), - [anon_sym_BANG] = ACTIONS(1542), - [anon_sym_DASH] = ACTIONS(1542), - [anon_sym_PLUS_PLUS] = ACTIONS(1540), - [anon_sym_DASH_DASH] = ACTIONS(1540), - [anon_sym_PERCENT] = ACTIONS(1540), - [anon_sym_STAR] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1542), - [anon_sym_PLUS] = ACTIONS(1542), - [anon_sym_LT_LT] = ACTIONS(1540), - [anon_sym_GT_GT] = ACTIONS(1542), - [anon_sym_GT_GT_GT] = ACTIONS(1540), - [anon_sym_AMP] = ACTIONS(1542), - [anon_sym_PIPE] = ACTIONS(1542), - [anon_sym_CARET] = ACTIONS(1540), - [anon_sym_AMP_AMP] = ACTIONS(1540), - [anon_sym_PIPE_PIPE] = ACTIONS(1540), - [anon_sym_EQ_EQ] = ACTIONS(1540), - [anon_sym_BANG_EQ] = ACTIONS(1540), - [anon_sym_LT] = ACTIONS(1542), - [anon_sym_LT_EQ] = ACTIONS(1540), - [anon_sym_GT] = ACTIONS(1542), - [anon_sym_GT_EQ] = ACTIONS(1540), - [anon_sym_EQ_GT] = ACTIONS(1540), - [anon_sym_QMARK_QMARK] = ACTIONS(1540), - [anon_sym_EQ] = ACTIONS(1542), - [sym__rangeOperator] = ACTIONS(1540), - [anon_sym_null] = ACTIONS(1542), - [anon_sym_macro] = ACTIONS(1542), - [anon_sym_abstract] = ACTIONS(1542), - [anon_sym_static] = ACTIONS(1542), - [anon_sym_public] = ACTIONS(1542), - [anon_sym_private] = ACTIONS(1542), - [anon_sym_extern] = ACTIONS(1542), - [anon_sym_inline] = ACTIONS(1542), - [anon_sym_overload] = ACTIONS(1542), - [anon_sym_override] = ACTIONS(1542), - [anon_sym_final] = ACTIONS(1542), - [anon_sym_class] = ACTIONS(1542), - [anon_sym_interface] = ACTIONS(1542), - [anon_sym_typedef] = ACTIONS(1542), - [anon_sym_function] = ACTIONS(1542), - [anon_sym_var] = ACTIONS(1542), - [aux_sym_integer_token1] = ACTIONS(1542), - [aux_sym_integer_token2] = ACTIONS(1540), - [aux_sym_float_token1] = ACTIONS(1542), - [aux_sym_float_token2] = ACTIONS(1540), - [anon_sym_true] = ACTIONS(1542), - [anon_sym_false] = ACTIONS(1542), - [aux_sym_string_token1] = ACTIONS(1540), - [aux_sym_string_token3] = ACTIONS(1540), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1540), + [sym__rhs_expression] = STATE(1170), + [sym__unaryExpression] = STATE(3407), + [sym_runtime_type_check_expression] = STATE(3407), + [sym_switch_expression] = STATE(3407), + [sym_cast_expression] = STATE(3407), + [sym_type_trace_expression] = STATE(3407), + [sym__parenthesized_expression] = STATE(2637), + [sym_range_expression] = STATE(3407), + [sym_subscript_expression] = STATE(3407), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2500), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1170), + [sym_operator] = STATE(1836), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1796), + [sym_integer] = STATE(163), + [sym_float] = STATE(1796), + [sym_bool] = STATE(1796), + [sym_string] = STATE(1630), + [sym_null] = STATE(1796), + [sym_array] = STATE(1796), + [sym_map] = STATE(1796), + [sym_object] = STATE(1796), + [sym_pair] = STATE(1796), + [sym_identifier] = ACTIONS(2119), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2121), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2123), + [anon_sym_untyped] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2127), + [anon_sym_continue] = ACTIONS(2127), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [253] = { - [sym_identifier] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1416), - [anon_sym_package] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1418), - [anon_sym_import] = ACTIONS(1418), - [anon_sym_using] = ACTIONS(1418), - [anon_sym_throw] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1416), - [anon_sym_switch] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1416), - [anon_sym_case] = ACTIONS(1418), - [anon_sym_default] = ACTIONS(1418), - [anon_sym_cast] = ACTIONS(1418), - [anon_sym_COMMA] = ACTIONS(1416), - [anon_sym_DOLLARtype] = ACTIONS(1416), - [anon_sym_return] = ACTIONS(1418), - [anon_sym_untyped] = ACTIONS(1418), - [anon_sym_break] = ACTIONS(1418), - [anon_sym_continue] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1416), - [anon_sym_this] = ACTIONS(1418), - [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(1418), - [anon_sym_AT_COLON] = ACTIONS(1416), - [anon_sym_if] = ACTIONS(1418), - [anon_sym_new] = ACTIONS(1418), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1418), - [anon_sym_DASH] = ACTIONS(1418), - [anon_sym_PLUS_PLUS] = ACTIONS(1416), - [anon_sym_DASH_DASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1418), - [anon_sym_GT_GT_GT] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1418), - [anon_sym_PIPE] = ACTIONS(1418), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1416), - [anon_sym_PIPE_PIPE] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1416), - [anon_sym_BANG_EQ] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1418), - [anon_sym_LT_EQ] = ACTIONS(1416), - [anon_sym_GT] = ACTIONS(1418), - [anon_sym_GT_EQ] = ACTIONS(1416), - [anon_sym_EQ_GT] = ACTIONS(1416), - [anon_sym_QMARK_QMARK] = ACTIONS(1416), - [anon_sym_EQ] = ACTIONS(1418), - [sym__rangeOperator] = ACTIONS(1416), - [anon_sym_null] = ACTIONS(1418), - [anon_sym_macro] = ACTIONS(1418), - [anon_sym_abstract] = ACTIONS(1418), - [anon_sym_static] = ACTIONS(1418), - [anon_sym_public] = ACTIONS(1418), - [anon_sym_private] = ACTIONS(1418), - [anon_sym_extern] = ACTIONS(1418), - [anon_sym_inline] = ACTIONS(1418), - [anon_sym_overload] = ACTIONS(1418), - [anon_sym_override] = ACTIONS(1418), - [anon_sym_final] = ACTIONS(1418), - [anon_sym_class] = ACTIONS(1418), - [anon_sym_interface] = ACTIONS(1418), - [anon_sym_typedef] = ACTIONS(1418), - [anon_sym_function] = ACTIONS(1418), - [anon_sym_var] = ACTIONS(1418), - [aux_sym_integer_token1] = ACTIONS(1418), - [aux_sym_integer_token2] = ACTIONS(1416), - [aux_sym_float_token1] = ACTIONS(1418), - [aux_sym_float_token2] = ACTIONS(1416), - [anon_sym_true] = ACTIONS(1418), - [anon_sym_false] = ACTIONS(1418), - [aux_sym_string_token1] = ACTIONS(1416), - [aux_sym_string_token3] = ACTIONS(1416), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1416), + [sym__rhs_expression] = STATE(1002), + [sym__unaryExpression] = STATE(552), + [sym_runtime_type_check_expression] = STATE(552), + [sym_switch_expression] = STATE(552), + [sym_cast_expression] = STATE(552), + [sym_type_trace_expression] = STATE(552), + [sym__parenthesized_expression] = STATE(404), + [sym_range_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_member_expression] = STATE(379), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(1002), + [sym_operator] = STATE(1951), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1428), + [sym_integer] = STATE(327), + [sym_float] = STATE(1428), + [sym_bool] = STATE(1428), + [sym_string] = STATE(1378), + [sym_null] = STATE(1428), + [sym_array] = STATE(1428), + [sym_map] = STATE(1428), + [sym_object] = STATE(1428), + [sym_pair] = STATE(1428), + [sym_identifier] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(2131), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(2133), + [anon_sym_untyped] = ACTIONS(2135), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [254] = { - [sym_identifier] = ACTIONS(1512), - [anon_sym_POUND] = ACTIONS(1510), - [anon_sym_package] = ACTIONS(1512), - [anon_sym_DOT] = ACTIONS(1512), - [anon_sym_import] = ACTIONS(1512), - [anon_sym_using] = ACTIONS(1512), - [anon_sym_throw] = ACTIONS(1512), - [anon_sym_LPAREN] = ACTIONS(1510), - [anon_sym_switch] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1510), - [anon_sym_case] = ACTIONS(1512), - [anon_sym_default] = ACTIONS(1512), - [anon_sym_cast] = ACTIONS(1512), - [anon_sym_COMMA] = ACTIONS(1510), - [anon_sym_DOLLARtype] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_untyped] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1510), - [anon_sym_this] = ACTIONS(1512), - [anon_sym_QMARK] = ACTIONS(1512), - [anon_sym_AT] = ACTIONS(1512), - [anon_sym_AT_COLON] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_new] = ACTIONS(1512), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_BANG] = ACTIONS(1512), - [anon_sym_DASH] = ACTIONS(1512), - [anon_sym_PLUS_PLUS] = ACTIONS(1510), - [anon_sym_DASH_DASH] = ACTIONS(1510), - [anon_sym_PERCENT] = ACTIONS(1510), - [anon_sym_STAR] = ACTIONS(1510), - [anon_sym_SLASH] = ACTIONS(1512), - [anon_sym_PLUS] = ACTIONS(1512), - [anon_sym_LT_LT] = ACTIONS(1510), - [anon_sym_GT_GT] = ACTIONS(1512), - [anon_sym_GT_GT_GT] = ACTIONS(1510), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1512), - [anon_sym_CARET] = ACTIONS(1510), - [anon_sym_AMP_AMP] = ACTIONS(1510), - [anon_sym_PIPE_PIPE] = ACTIONS(1510), - [anon_sym_EQ_EQ] = ACTIONS(1510), - [anon_sym_BANG_EQ] = ACTIONS(1510), - [anon_sym_LT] = ACTIONS(1512), - [anon_sym_LT_EQ] = ACTIONS(1510), - [anon_sym_GT] = ACTIONS(1512), - [anon_sym_GT_EQ] = ACTIONS(1510), - [anon_sym_EQ_GT] = ACTIONS(1510), - [anon_sym_QMARK_QMARK] = ACTIONS(1510), - [anon_sym_EQ] = ACTIONS(1512), - [sym__rangeOperator] = ACTIONS(1510), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_macro] = ACTIONS(1512), - [anon_sym_abstract] = ACTIONS(1512), - [anon_sym_static] = ACTIONS(1512), - [anon_sym_public] = ACTIONS(1512), - [anon_sym_private] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_inline] = ACTIONS(1512), - [anon_sym_overload] = ACTIONS(1512), - [anon_sym_override] = ACTIONS(1512), - [anon_sym_final] = ACTIONS(1512), - [anon_sym_class] = ACTIONS(1512), - [anon_sym_interface] = ACTIONS(1512), - [anon_sym_typedef] = ACTIONS(1512), - [anon_sym_function] = ACTIONS(1512), - [anon_sym_var] = ACTIONS(1512), - [aux_sym_integer_token1] = ACTIONS(1512), - [aux_sym_integer_token2] = ACTIONS(1510), - [aux_sym_float_token1] = ACTIONS(1512), - [aux_sym_float_token2] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [aux_sym_string_token1] = ACTIONS(1510), - [aux_sym_string_token3] = ACTIONS(1510), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1510), + [sym__rhs_expression] = STATE(1103), + [sym__unaryExpression] = STATE(381), + [sym_runtime_type_check_expression] = STATE(381), + [sym_switch_expression] = STATE(381), + [sym_cast_expression] = STATE(381), + [sym_type_trace_expression] = STATE(381), + [sym__parenthesized_expression] = STATE(259), + [sym_range_expression] = STATE(381), + [sym_subscript_expression] = STATE(381), + [sym_member_expression] = STATE(379), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(1103), + [sym_operator] = STATE(1804), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1428), + [sym_integer] = STATE(327), + [sym_float] = STATE(1428), + [sym_bool] = STATE(1428), + [sym_string] = STATE(1378), + [sym_null] = STATE(1428), + [sym_array] = STATE(1428), + [sym_map] = STATE(1428), + [sym_object] = STATE(1428), + [sym_pair] = STATE(1428), + [sym_identifier] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(1542), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(1546), + [anon_sym_untyped] = ACTIONS(1548), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [255] = { - [sym_identifier] = ACTIONS(1450), - [anon_sym_POUND] = ACTIONS(1448), - [anon_sym_package] = ACTIONS(1450), - [anon_sym_DOT] = ACTIONS(1450), - [anon_sym_import] = ACTIONS(1450), - [anon_sym_using] = ACTIONS(1450), - [anon_sym_throw] = ACTIONS(1450), - [anon_sym_LPAREN] = ACTIONS(1448), - [anon_sym_switch] = ACTIONS(1450), - [anon_sym_LBRACE] = ACTIONS(1448), - [anon_sym_case] = ACTIONS(1450), - [anon_sym_default] = ACTIONS(1450), - [anon_sym_cast] = ACTIONS(1450), - [anon_sym_COMMA] = ACTIONS(1448), - [anon_sym_DOLLARtype] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1450), - [anon_sym_untyped] = ACTIONS(1450), - [anon_sym_break] = ACTIONS(1450), - [anon_sym_continue] = ACTIONS(1450), - [anon_sym_LBRACK] = ACTIONS(1448), - [anon_sym_this] = ACTIONS(1450), - [anon_sym_QMARK] = ACTIONS(1450), - [anon_sym_AT] = ACTIONS(1450), - [anon_sym_AT_COLON] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1450), - [anon_sym_new] = ACTIONS(1450), - [anon_sym_TILDE] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1450), - [anon_sym_DASH] = ACTIONS(1450), - [anon_sym_PLUS_PLUS] = ACTIONS(1448), - [anon_sym_DASH_DASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1450), - [anon_sym_PLUS] = ACTIONS(1450), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1450), - [anon_sym_GT_GT_GT] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1450), - [anon_sym_PIPE] = ACTIONS(1450), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1448), - [anon_sym_PIPE_PIPE] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1448), - [anon_sym_BANG_EQ] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1450), - [anon_sym_LT_EQ] = ACTIONS(1448), - [anon_sym_GT] = ACTIONS(1450), - [anon_sym_GT_EQ] = ACTIONS(1448), - [anon_sym_EQ_GT] = ACTIONS(1448), - [anon_sym_QMARK_QMARK] = ACTIONS(1448), - [anon_sym_EQ] = ACTIONS(1450), - [sym__rangeOperator] = ACTIONS(1448), - [anon_sym_null] = ACTIONS(1450), - [anon_sym_macro] = ACTIONS(1450), - [anon_sym_abstract] = ACTIONS(1450), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_public] = ACTIONS(1450), - [anon_sym_private] = ACTIONS(1450), - [anon_sym_extern] = ACTIONS(1450), - [anon_sym_inline] = ACTIONS(1450), - [anon_sym_overload] = ACTIONS(1450), - [anon_sym_override] = ACTIONS(1450), - [anon_sym_final] = ACTIONS(1450), - [anon_sym_class] = ACTIONS(1450), - [anon_sym_interface] = ACTIONS(1450), - [anon_sym_typedef] = ACTIONS(1450), - [anon_sym_function] = ACTIONS(1450), - [anon_sym_var] = ACTIONS(1450), - [aux_sym_integer_token1] = ACTIONS(1450), - [aux_sym_integer_token2] = ACTIONS(1448), - [aux_sym_float_token1] = ACTIONS(1450), - [aux_sym_float_token2] = ACTIONS(1448), - [anon_sym_true] = ACTIONS(1450), - [anon_sym_false] = ACTIONS(1450), - [aux_sym_string_token1] = ACTIONS(1448), - [aux_sym_string_token3] = ACTIONS(1448), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1448), + [sym__rhs_expression] = STATE(1142), + [sym__unaryExpression] = STATE(3634), + [sym_runtime_type_check_expression] = STATE(3634), + [sym_switch_expression] = STATE(3634), + [sym_cast_expression] = STATE(3634), + [sym_type_trace_expression] = STATE(3634), + [sym__parenthesized_expression] = STATE(2660), + [sym_range_expression] = STATE(3634), + [sym_subscript_expression] = STATE(3634), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1142), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2139), + [anon_sym_untyped] = ACTIONS(2141), + [anon_sym_break] = ACTIONS(2143), + [anon_sym_continue] = ACTIONS(2143), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [256] = { - [sym_identifier] = ACTIONS(1538), - [anon_sym_POUND] = ACTIONS(1536), - [anon_sym_package] = ACTIONS(1538), - [anon_sym_DOT] = ACTIONS(1538), - [anon_sym_import] = ACTIONS(1538), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_throw] = ACTIONS(1538), - [anon_sym_LPAREN] = ACTIONS(1536), - [anon_sym_switch] = ACTIONS(1538), - [anon_sym_LBRACE] = ACTIONS(1536), - [anon_sym_case] = ACTIONS(1538), - [anon_sym_default] = ACTIONS(1538), - [anon_sym_cast] = ACTIONS(1538), - [anon_sym_COMMA] = ACTIONS(1536), - [anon_sym_DOLLARtype] = ACTIONS(1536), - [anon_sym_return] = ACTIONS(1538), - [anon_sym_untyped] = ACTIONS(1538), - [anon_sym_break] = ACTIONS(1538), - [anon_sym_continue] = ACTIONS(1538), - [anon_sym_LBRACK] = ACTIONS(1536), - [anon_sym_this] = ACTIONS(1538), - [anon_sym_QMARK] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(1538), - [anon_sym_AT_COLON] = ACTIONS(1536), - [anon_sym_if] = ACTIONS(1538), - [anon_sym_new] = ACTIONS(1538), - [anon_sym_TILDE] = ACTIONS(1536), - [anon_sym_BANG] = ACTIONS(1538), - [anon_sym_DASH] = ACTIONS(1538), - [anon_sym_PLUS_PLUS] = ACTIONS(1536), - [anon_sym_DASH_DASH] = ACTIONS(1536), - [anon_sym_PERCENT] = ACTIONS(1536), - [anon_sym_STAR] = ACTIONS(1536), - [anon_sym_SLASH] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1538), - [anon_sym_LT_LT] = ACTIONS(1536), - [anon_sym_GT_GT] = ACTIONS(1538), - [anon_sym_GT_GT_GT] = ACTIONS(1536), - [anon_sym_AMP] = ACTIONS(1538), - [anon_sym_PIPE] = ACTIONS(1538), - [anon_sym_CARET] = ACTIONS(1536), - [anon_sym_AMP_AMP] = ACTIONS(1536), - [anon_sym_PIPE_PIPE] = ACTIONS(1536), - [anon_sym_EQ_EQ] = ACTIONS(1536), - [anon_sym_BANG_EQ] = ACTIONS(1536), - [anon_sym_LT] = ACTIONS(1538), - [anon_sym_LT_EQ] = ACTIONS(1536), - [anon_sym_GT] = ACTIONS(1538), - [anon_sym_GT_EQ] = ACTIONS(1536), - [anon_sym_EQ_GT] = ACTIONS(1536), - [anon_sym_QMARK_QMARK] = ACTIONS(1536), - [anon_sym_EQ] = ACTIONS(1538), - [sym__rangeOperator] = ACTIONS(1536), - [anon_sym_null] = ACTIONS(1538), - [anon_sym_macro] = ACTIONS(1538), - [anon_sym_abstract] = ACTIONS(1538), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_public] = ACTIONS(1538), - [anon_sym_private] = ACTIONS(1538), - [anon_sym_extern] = ACTIONS(1538), - [anon_sym_inline] = ACTIONS(1538), - [anon_sym_overload] = ACTIONS(1538), - [anon_sym_override] = ACTIONS(1538), - [anon_sym_final] = ACTIONS(1538), - [anon_sym_class] = ACTIONS(1538), - [anon_sym_interface] = ACTIONS(1538), - [anon_sym_typedef] = ACTIONS(1538), - [anon_sym_function] = ACTIONS(1538), - [anon_sym_var] = ACTIONS(1538), - [aux_sym_integer_token1] = ACTIONS(1538), - [aux_sym_integer_token2] = ACTIONS(1536), - [aux_sym_float_token1] = ACTIONS(1538), - [aux_sym_float_token2] = ACTIONS(1536), - [anon_sym_true] = ACTIONS(1538), - [anon_sym_false] = ACTIONS(1538), - [aux_sym_string_token1] = ACTIONS(1536), - [aux_sym_string_token3] = ACTIONS(1536), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1536), + [sym__rhs_expression] = STATE(1041), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1041), + [sym_operator] = STATE(1867), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1976), + [sym_integer] = STATE(163), + [sym_float] = STATE(1976), + [sym_bool] = STATE(1976), + [sym_string] = STATE(1925), + [sym_null] = STATE(1976), + [sym_array] = STATE(1976), + [sym_map] = STATE(1976), + [sym_object] = STATE(1976), + [sym_pair] = STATE(1976), + [sym_identifier] = ACTIONS(2097), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2145), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2147), + [anon_sym_untyped] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [257] = { - [sym_identifier] = ACTIONS(1483), - [anon_sym_POUND] = ACTIONS(1480), - [anon_sym_package] = ACTIONS(1483), - [anon_sym_DOT] = ACTIONS(1483), - [anon_sym_import] = ACTIONS(1483), - [anon_sym_using] = ACTIONS(1483), - [anon_sym_throw] = ACTIONS(1483), - [anon_sym_LPAREN] = ACTIONS(1480), - [anon_sym_switch] = ACTIONS(1483), - [anon_sym_LBRACE] = ACTIONS(1480), - [anon_sym_case] = ACTIONS(1483), - [anon_sym_default] = ACTIONS(1483), - [anon_sym_cast] = ACTIONS(1483), - [anon_sym_COMMA] = ACTIONS(1480), - [anon_sym_DOLLARtype] = ACTIONS(1480), - [anon_sym_return] = ACTIONS(1483), - [anon_sym_untyped] = ACTIONS(1483), - [anon_sym_break] = ACTIONS(1483), - [anon_sym_continue] = ACTIONS(1483), - [anon_sym_LBRACK] = ACTIONS(1480), - [anon_sym_this] = ACTIONS(1483), - [anon_sym_QMARK] = ACTIONS(1483), - [anon_sym_AT] = ACTIONS(1483), - [anon_sym_AT_COLON] = ACTIONS(1480), - [anon_sym_if] = ACTIONS(1483), - [anon_sym_new] = ACTIONS(1483), - [anon_sym_TILDE] = ACTIONS(1480), - [anon_sym_BANG] = ACTIONS(1483), - [anon_sym_DASH] = ACTIONS(1483), - [anon_sym_PLUS_PLUS] = ACTIONS(1480), - [anon_sym_DASH_DASH] = ACTIONS(1480), - [anon_sym_PERCENT] = ACTIONS(1480), - [anon_sym_STAR] = ACTIONS(1480), - [anon_sym_SLASH] = ACTIONS(1483), - [anon_sym_PLUS] = ACTIONS(1483), - [anon_sym_LT_LT] = ACTIONS(1480), - [anon_sym_GT_GT] = ACTIONS(1483), - [anon_sym_GT_GT_GT] = ACTIONS(1480), - [anon_sym_AMP] = ACTIONS(1483), - [anon_sym_PIPE] = ACTIONS(1483), - [anon_sym_CARET] = ACTIONS(1480), - [anon_sym_AMP_AMP] = ACTIONS(1480), - [anon_sym_PIPE_PIPE] = ACTIONS(1480), - [anon_sym_EQ_EQ] = ACTIONS(1480), - [anon_sym_BANG_EQ] = ACTIONS(1480), - [anon_sym_LT] = ACTIONS(1483), - [anon_sym_LT_EQ] = ACTIONS(1480), - [anon_sym_GT] = ACTIONS(1483), - [anon_sym_GT_EQ] = ACTIONS(1480), - [anon_sym_EQ_GT] = ACTIONS(1480), - [anon_sym_QMARK_QMARK] = ACTIONS(1480), - [anon_sym_EQ] = ACTIONS(1483), - [sym__rangeOperator] = ACTIONS(1480), - [anon_sym_null] = ACTIONS(1483), - [anon_sym_macro] = ACTIONS(1483), - [anon_sym_abstract] = ACTIONS(1483), - [anon_sym_static] = ACTIONS(1483), - [anon_sym_public] = ACTIONS(1483), - [anon_sym_private] = ACTIONS(1483), - [anon_sym_extern] = ACTIONS(1483), - [anon_sym_inline] = ACTIONS(1483), - [anon_sym_overload] = ACTIONS(1483), - [anon_sym_override] = ACTIONS(1483), - [anon_sym_final] = ACTIONS(1483), - [anon_sym_class] = ACTIONS(1483), - [anon_sym_interface] = ACTIONS(1483), - [anon_sym_typedef] = ACTIONS(1483), - [anon_sym_function] = ACTIONS(1483), - [anon_sym_var] = ACTIONS(1483), - [aux_sym_integer_token1] = ACTIONS(1483), - [aux_sym_integer_token2] = ACTIONS(1480), - [aux_sym_float_token1] = ACTIONS(1483), - [aux_sym_float_token2] = ACTIONS(1480), - [anon_sym_true] = ACTIONS(1483), - [anon_sym_false] = ACTIONS(1483), - [aux_sym_string_token1] = ACTIONS(1480), - [aux_sym_string_token3] = ACTIONS(1480), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1480), + [sym__rhs_expression] = STATE(855), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(855), + [sym_operator] = STATE(2006), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(946), + [sym_integer] = STATE(163), + [sym_float] = STATE(946), + [sym_bool] = STATE(946), + [sym_string] = STATE(933), + [sym_null] = STATE(946), + [sym_array] = STATE(946), + [sym_map] = STATE(946), + [sym_object] = STATE(946), + [sym_pair] = STATE(946), + [sym_identifier] = ACTIONS(2151), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1526), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1528), + [anon_sym_untyped] = ACTIONS(1530), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [258] = { - [sym_identifier] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_package] = ACTIONS(1590), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_using] = ACTIONS(1590), - [anon_sym_throw] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_cast] = ACTIONS(1590), - [anon_sym_DOLLARtype] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), + [sym__rhs_expression] = STATE(1098), + [sym__unaryExpression] = STATE(3164), + [sym_runtime_type_check_expression] = STATE(3164), + [sym_switch_expression] = STATE(3164), + [sym_cast_expression] = STATE(3164), + [sym_type_trace_expression] = STATE(3164), + [sym__parenthesized_expression] = STATE(2529), + [sym_range_expression] = STATE(3164), + [sym_subscript_expression] = STATE(3164), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1098), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2155), + [anon_sym_untyped] = ACTIONS(2157), + [anon_sym_break] = ACTIONS(2159), + [anon_sym_continue] = ACTIONS(2159), + [anon_sym_LBRACK] = ACTIONS(1319), [anon_sym_this] = ACTIONS(1590), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_AT_COLON] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_GT_GT_GT] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1544), - [anon_sym_PIPE_PIPE] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1544), - [anon_sym_EQ_GT] = ACTIONS(1544), - [anon_sym_QMARK_QMARK] = ACTIONS(1544), - [anon_sym_EQ] = ACTIONS(1546), - [sym__rangeOperator] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_macro] = ACTIONS(1590), - [anon_sym_abstract] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_private] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_overload] = ACTIONS(1590), - [anon_sym_override] = ACTIONS(1590), - [anon_sym_final] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_interface] = ACTIONS(1590), - [anon_sym_typedef] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(1590), - [anon_sym_var] = ACTIONS(1590), - [aux_sym_integer_token1] = ACTIONS(1590), - [aux_sym_integer_token2] = ACTIONS(1592), - [aux_sym_float_token1] = ACTIONS(1590), - [aux_sym_float_token2] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [aux_sym_string_token1] = ACTIONS(1592), - [aux_sym_string_token3] = ACTIONS(1592), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1544), - [sym__closing_brace_marker] = ACTIONS(1592), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [259] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1502), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym__rangeOperator] = STATE(2528), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1371), [sym__closing_brace_unmarker] = ACTIONS(3), }, [260] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1504), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_case] = ACTIONS(1504), - [anon_sym_default] = ACTIONS(1504), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_COMMA] = ACTIONS(1502), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1504), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1502), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1118), + [sym__unaryExpression] = STATE(3208), + [sym_runtime_type_check_expression] = STATE(3208), + [sym_switch_expression] = STATE(3208), + [sym_cast_expression] = STATE(3208), + [sym_type_trace_expression] = STATE(3208), + [sym__parenthesized_expression] = STATE(2473), + [sym_range_expression] = STATE(3208), + [sym_subscript_expression] = STATE(3208), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1118), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_untyped] = ACTIONS(2165), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [261] = { - [sym_identifier] = ACTIONS(1566), - [anon_sym_POUND] = ACTIONS(1564), - [anon_sym_package] = ACTIONS(1566), - [anon_sym_DOT] = ACTIONS(1566), - [anon_sym_import] = ACTIONS(1566), - [anon_sym_using] = ACTIONS(1566), - [anon_sym_throw] = ACTIONS(1566), - [anon_sym_LPAREN] = ACTIONS(1564), - [anon_sym_switch] = ACTIONS(1566), - [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_case] = ACTIONS(1566), - [anon_sym_default] = ACTIONS(1566), - [anon_sym_cast] = ACTIONS(1566), - [anon_sym_COMMA] = ACTIONS(1564), - [anon_sym_DOLLARtype] = ACTIONS(1564), - [anon_sym_return] = ACTIONS(1566), - [anon_sym_untyped] = ACTIONS(1566), - [anon_sym_break] = ACTIONS(1566), - [anon_sym_continue] = ACTIONS(1566), - [anon_sym_LBRACK] = ACTIONS(1564), - [anon_sym_this] = ACTIONS(1566), - [anon_sym_QMARK] = ACTIONS(1566), - [anon_sym_AT] = ACTIONS(1566), - [anon_sym_AT_COLON] = ACTIONS(1564), - [anon_sym_if] = ACTIONS(1566), - [anon_sym_new] = ACTIONS(1566), - [anon_sym_TILDE] = ACTIONS(1564), - [anon_sym_BANG] = ACTIONS(1566), - [anon_sym_DASH] = ACTIONS(1566), - [anon_sym_PLUS_PLUS] = ACTIONS(1564), - [anon_sym_DASH_DASH] = ACTIONS(1564), - [anon_sym_PERCENT] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1564), - [anon_sym_SLASH] = ACTIONS(1566), - [anon_sym_PLUS] = ACTIONS(1566), - [anon_sym_LT_LT] = ACTIONS(1564), - [anon_sym_GT_GT] = ACTIONS(1566), - [anon_sym_GT_GT_GT] = ACTIONS(1564), - [anon_sym_AMP] = ACTIONS(1566), - [anon_sym_PIPE] = ACTIONS(1566), - [anon_sym_CARET] = ACTIONS(1564), - [anon_sym_AMP_AMP] = ACTIONS(1564), - [anon_sym_PIPE_PIPE] = ACTIONS(1564), - [anon_sym_EQ_EQ] = ACTIONS(1564), - [anon_sym_BANG_EQ] = ACTIONS(1564), - [anon_sym_LT] = ACTIONS(1566), - [anon_sym_LT_EQ] = ACTIONS(1564), - [anon_sym_GT] = ACTIONS(1566), - [anon_sym_GT_EQ] = ACTIONS(1564), - [anon_sym_EQ_GT] = ACTIONS(1564), - [anon_sym_QMARK_QMARK] = ACTIONS(1564), - [anon_sym_EQ] = ACTIONS(1566), - [sym__rangeOperator] = ACTIONS(1564), - [anon_sym_null] = ACTIONS(1566), - [anon_sym_macro] = ACTIONS(1566), - [anon_sym_abstract] = ACTIONS(1566), - [anon_sym_static] = ACTIONS(1566), - [anon_sym_public] = ACTIONS(1566), - [anon_sym_private] = ACTIONS(1566), - [anon_sym_extern] = ACTIONS(1566), - [anon_sym_inline] = ACTIONS(1566), - [anon_sym_overload] = ACTIONS(1566), - [anon_sym_override] = ACTIONS(1566), - [anon_sym_final] = ACTIONS(1566), - [anon_sym_class] = ACTIONS(1566), - [anon_sym_interface] = ACTIONS(1566), - [anon_sym_typedef] = ACTIONS(1566), - [anon_sym_function] = ACTIONS(1566), - [anon_sym_var] = ACTIONS(1566), - [aux_sym_integer_token1] = ACTIONS(1566), - [aux_sym_integer_token2] = ACTIONS(1564), - [aux_sym_float_token1] = ACTIONS(1566), - [aux_sym_float_token2] = ACTIONS(1564), - [anon_sym_true] = ACTIONS(1566), - [anon_sym_false] = ACTIONS(1566), - [aux_sym_string_token1] = ACTIONS(1564), - [aux_sym_string_token3] = ACTIONS(1564), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1564), + [sym__rhs_expression] = STATE(1190), + [sym__unaryExpression] = STATE(3548), + [sym_runtime_type_check_expression] = STATE(3548), + [sym_switch_expression] = STATE(3548), + [sym_cast_expression] = STATE(3548), + [sym_type_trace_expression] = STATE(3548), + [sym__parenthesized_expression] = STATE(2655), + [sym_range_expression] = STATE(3548), + [sym_subscript_expression] = STATE(3548), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1190), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2169), + [anon_sym_untyped] = ACTIONS(2171), + [anon_sym_break] = ACTIONS(2173), + [anon_sym_continue] = ACTIONS(2173), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [262] = { - [sym_identifier] = ACTIONS(1575), - [anon_sym_POUND] = ACTIONS(1572), - [anon_sym_package] = ACTIONS(1575), - [anon_sym_DOT] = ACTIONS(1575), - [anon_sym_import] = ACTIONS(1575), - [anon_sym_using] = ACTIONS(1575), - [anon_sym_throw] = ACTIONS(1575), - [anon_sym_LPAREN] = ACTIONS(1572), - [anon_sym_switch] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1572), - [anon_sym_case] = ACTIONS(1575), - [anon_sym_default] = ACTIONS(1575), - [anon_sym_cast] = ACTIONS(1575), - [anon_sym_COMMA] = ACTIONS(1572), - [anon_sym_DOLLARtype] = ACTIONS(1572), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_untyped] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1572), - [anon_sym_this] = ACTIONS(1575), - [anon_sym_QMARK] = ACTIONS(1575), - [anon_sym_AT] = ACTIONS(1575), - [anon_sym_AT_COLON] = ACTIONS(1572), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_new] = ACTIONS(1575), - [anon_sym_TILDE] = ACTIONS(1572), - [anon_sym_BANG] = ACTIONS(1575), - [anon_sym_DASH] = ACTIONS(1575), - [anon_sym_PLUS_PLUS] = ACTIONS(1572), - [anon_sym_DASH_DASH] = ACTIONS(1572), - [anon_sym_PERCENT] = ACTIONS(1572), - [anon_sym_STAR] = ACTIONS(1572), - [anon_sym_SLASH] = ACTIONS(1575), - [anon_sym_PLUS] = ACTIONS(1575), - [anon_sym_LT_LT] = ACTIONS(1572), - [anon_sym_GT_GT] = ACTIONS(1575), - [anon_sym_GT_GT_GT] = ACTIONS(1572), - [anon_sym_AMP] = ACTIONS(1575), - [anon_sym_PIPE] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1572), - [anon_sym_AMP_AMP] = ACTIONS(1572), - [anon_sym_PIPE_PIPE] = ACTIONS(1572), - [anon_sym_EQ_EQ] = ACTIONS(1572), - [anon_sym_BANG_EQ] = ACTIONS(1572), - [anon_sym_LT] = ACTIONS(1575), - [anon_sym_LT_EQ] = ACTIONS(1572), - [anon_sym_GT] = ACTIONS(1575), - [anon_sym_GT_EQ] = ACTIONS(1572), - [anon_sym_EQ_GT] = ACTIONS(1572), - [anon_sym_QMARK_QMARK] = ACTIONS(1572), - [anon_sym_EQ] = ACTIONS(1575), - [sym__rangeOperator] = ACTIONS(1572), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_macro] = ACTIONS(1575), - [anon_sym_abstract] = ACTIONS(1575), - [anon_sym_static] = ACTIONS(1575), - [anon_sym_public] = ACTIONS(1575), - [anon_sym_private] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_inline] = ACTIONS(1575), - [anon_sym_overload] = ACTIONS(1575), - [anon_sym_override] = ACTIONS(1575), - [anon_sym_final] = ACTIONS(1575), - [anon_sym_class] = ACTIONS(1575), - [anon_sym_interface] = ACTIONS(1575), - [anon_sym_typedef] = ACTIONS(1575), - [anon_sym_function] = ACTIONS(1575), - [anon_sym_var] = ACTIONS(1575), - [aux_sym_integer_token1] = ACTIONS(1575), - [aux_sym_integer_token2] = ACTIONS(1572), - [aux_sym_float_token1] = ACTIONS(1575), - [aux_sym_float_token2] = ACTIONS(1572), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym_string_token1] = ACTIONS(1572), - [aux_sym_string_token3] = ACTIONS(1572), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1572), + [sym__rhs_expression] = STATE(1163), + [sym__unaryExpression] = STATE(3549), + [sym_runtime_type_check_expression] = STATE(3549), + [sym_switch_expression] = STATE(3549), + [sym_cast_expression] = STATE(3549), + [sym_type_trace_expression] = STATE(3549), + [sym__parenthesized_expression] = STATE(2704), + [sym_range_expression] = STATE(3549), + [sym_subscript_expression] = STATE(3549), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1163), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_untyped] = ACTIONS(2177), + [anon_sym_break] = ACTIONS(2179), + [anon_sym_continue] = ACTIONS(2179), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [263] = { - [sym_identifier] = ACTIONS(1554), - [anon_sym_POUND] = ACTIONS(1552), - [anon_sym_package] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1554), - [anon_sym_import] = ACTIONS(1554), - [anon_sym_using] = ACTIONS(1554), - [anon_sym_throw] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1552), - [anon_sym_switch] = ACTIONS(1554), - [anon_sym_LBRACE] = ACTIONS(1552), - [anon_sym_case] = ACTIONS(1554), - [anon_sym_default] = ACTIONS(1554), - [anon_sym_cast] = ACTIONS(1554), - [anon_sym_COMMA] = ACTIONS(1552), - [anon_sym_DOLLARtype] = ACTIONS(1552), - [anon_sym_return] = ACTIONS(1554), - [anon_sym_untyped] = ACTIONS(1554), - [anon_sym_break] = ACTIONS(1554), - [anon_sym_continue] = ACTIONS(1554), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_this] = ACTIONS(1554), - [anon_sym_QMARK] = ACTIONS(1554), - [anon_sym_AT] = ACTIONS(1554), - [anon_sym_AT_COLON] = ACTIONS(1552), - [anon_sym_if] = ACTIONS(1554), - [anon_sym_new] = ACTIONS(1554), - [anon_sym_TILDE] = ACTIONS(1552), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_DASH] = ACTIONS(1554), - [anon_sym_PLUS_PLUS] = ACTIONS(1552), - [anon_sym_DASH_DASH] = ACTIONS(1552), - [anon_sym_PERCENT] = ACTIONS(1552), - [anon_sym_STAR] = ACTIONS(1552), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_PLUS] = ACTIONS(1554), - [anon_sym_LT_LT] = ACTIONS(1552), - [anon_sym_GT_GT] = ACTIONS(1554), - [anon_sym_GT_GT_GT] = ACTIONS(1552), - [anon_sym_AMP] = ACTIONS(1554), - [anon_sym_PIPE] = ACTIONS(1554), - [anon_sym_CARET] = ACTIONS(1552), - [anon_sym_AMP_AMP] = ACTIONS(1552), - [anon_sym_PIPE_PIPE] = ACTIONS(1552), - [anon_sym_EQ_EQ] = ACTIONS(1552), - [anon_sym_BANG_EQ] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1554), - [anon_sym_LT_EQ] = ACTIONS(1552), - [anon_sym_GT] = ACTIONS(1554), - [anon_sym_GT_EQ] = ACTIONS(1552), - [anon_sym_EQ_GT] = ACTIONS(1552), - [anon_sym_QMARK_QMARK] = ACTIONS(1552), - [anon_sym_EQ] = ACTIONS(1554), - [sym__rangeOperator] = ACTIONS(1552), - [anon_sym_null] = ACTIONS(1554), - [anon_sym_macro] = ACTIONS(1554), - [anon_sym_abstract] = ACTIONS(1554), - [anon_sym_static] = ACTIONS(1554), - [anon_sym_public] = ACTIONS(1554), - [anon_sym_private] = ACTIONS(1554), - [anon_sym_extern] = ACTIONS(1554), - [anon_sym_inline] = ACTIONS(1554), - [anon_sym_overload] = ACTIONS(1554), - [anon_sym_override] = ACTIONS(1554), - [anon_sym_final] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1554), - [anon_sym_interface] = ACTIONS(1554), - [anon_sym_typedef] = ACTIONS(1554), - [anon_sym_function] = ACTIONS(1554), - [anon_sym_var] = ACTIONS(1554), - [aux_sym_integer_token1] = ACTIONS(1554), - [aux_sym_integer_token2] = ACTIONS(1552), - [aux_sym_float_token1] = ACTIONS(1554), - [aux_sym_float_token2] = ACTIONS(1552), - [anon_sym_true] = ACTIONS(1554), - [anon_sym_false] = ACTIONS(1554), - [aux_sym_string_token1] = ACTIONS(1552), - [aux_sym_string_token3] = ACTIONS(1552), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1552), + [sym__rhs_expression] = STATE(1029), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(1576), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1029), + [sym_operator] = STATE(1919), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1837), + [sym_integer] = STATE(163), + [sym_float] = STATE(1837), + [sym_bool] = STATE(1837), + [sym_string] = STATE(1630), + [sym_null] = STATE(1837), + [sym_array] = STATE(1837), + [sym_map] = STATE(1837), + [sym_object] = STATE(1837), + [sym_pair] = STATE(1837), + [sym_identifier] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2183), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2185), + [anon_sym_untyped] = ACTIONS(2187), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [264] = { - [sym_identifier] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_package] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_import] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_throw] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_case] = ACTIONS(1414), - [anon_sym_default] = ACTIONS(1414), - [anon_sym_cast] = ACTIONS(1414), - [anon_sym_COMMA] = ACTIONS(1412), - [anon_sym_DOLLARtype] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_untyped] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_this] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_AT_COLON] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1414), - [anon_sym_GT_GT_GT] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_EQ_GT] = ACTIONS(1412), - [anon_sym_QMARK_QMARK] = ACTIONS(1412), - [anon_sym_EQ] = ACTIONS(1414), - [sym__rangeOperator] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_macro] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_public] = ACTIONS(1414), - [anon_sym_private] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_overload] = ACTIONS(1414), - [anon_sym_override] = ACTIONS(1414), - [anon_sym_final] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_interface] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_function] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [aux_sym_integer_token1] = ACTIONS(1414), - [aux_sym_integer_token2] = ACTIONS(1412), - [aux_sym_float_token1] = ACTIONS(1414), - [aux_sym_float_token2] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym_string_token1] = ACTIONS(1412), - [aux_sym_string_token3] = ACTIONS(1412), + [sym__rhs_expression] = STATE(1200), + [sym__unaryExpression] = STATE(3485), + [sym_runtime_type_check_expression] = STATE(3485), + [sym_switch_expression] = STATE(3485), + [sym_cast_expression] = STATE(3485), + [sym_type_trace_expression] = STATE(3485), + [sym__parenthesized_expression] = STATE(2700), + [sym_range_expression] = STATE(3485), + [sym_subscript_expression] = STATE(3485), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1200), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_untyped] = ACTIONS(2191), + [anon_sym_break] = ACTIONS(2193), + [anon_sym_continue] = ACTIONS(2193), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1412), [sym__closing_brace_unmarker] = ACTIONS(3), }, [265] = { - [sym_identifier] = ACTIONS(1534), - [anon_sym_POUND] = ACTIONS(1532), - [anon_sym_package] = ACTIONS(1534), - [anon_sym_DOT] = ACTIONS(1534), - [anon_sym_import] = ACTIONS(1534), - [anon_sym_using] = ACTIONS(1534), - [anon_sym_throw] = ACTIONS(1534), - [anon_sym_LPAREN] = ACTIONS(1532), - [anon_sym_switch] = ACTIONS(1534), - [anon_sym_LBRACE] = ACTIONS(1532), - [anon_sym_case] = ACTIONS(1534), - [anon_sym_default] = ACTIONS(1534), - [anon_sym_cast] = ACTIONS(1534), - [anon_sym_COMMA] = ACTIONS(1532), - [anon_sym_DOLLARtype] = ACTIONS(1532), - [anon_sym_return] = ACTIONS(1534), - [anon_sym_untyped] = ACTIONS(1534), - [anon_sym_break] = ACTIONS(1534), - [anon_sym_continue] = ACTIONS(1534), - [anon_sym_LBRACK] = ACTIONS(1532), - [anon_sym_this] = ACTIONS(1534), - [anon_sym_QMARK] = ACTIONS(1534), - [anon_sym_AT] = ACTIONS(1534), - [anon_sym_AT_COLON] = ACTIONS(1532), - [anon_sym_if] = ACTIONS(1534), - [anon_sym_new] = ACTIONS(1534), - [anon_sym_TILDE] = ACTIONS(1532), - [anon_sym_BANG] = ACTIONS(1534), - [anon_sym_DASH] = ACTIONS(1534), - [anon_sym_PLUS_PLUS] = ACTIONS(1532), - [anon_sym_DASH_DASH] = ACTIONS(1532), - [anon_sym_PERCENT] = ACTIONS(1532), - [anon_sym_STAR] = ACTIONS(1532), - [anon_sym_SLASH] = ACTIONS(1534), - [anon_sym_PLUS] = ACTIONS(1534), - [anon_sym_LT_LT] = ACTIONS(1532), - [anon_sym_GT_GT] = ACTIONS(1534), - [anon_sym_GT_GT_GT] = ACTIONS(1532), - [anon_sym_AMP] = ACTIONS(1534), - [anon_sym_PIPE] = ACTIONS(1534), - [anon_sym_CARET] = ACTIONS(1532), - [anon_sym_AMP_AMP] = ACTIONS(1532), - [anon_sym_PIPE_PIPE] = ACTIONS(1532), - [anon_sym_EQ_EQ] = ACTIONS(1532), - [anon_sym_BANG_EQ] = ACTIONS(1532), - [anon_sym_LT] = ACTIONS(1534), - [anon_sym_LT_EQ] = ACTIONS(1532), - [anon_sym_GT] = ACTIONS(1534), - [anon_sym_GT_EQ] = ACTIONS(1532), - [anon_sym_EQ_GT] = ACTIONS(1532), - [anon_sym_QMARK_QMARK] = ACTIONS(1532), - [anon_sym_EQ] = ACTIONS(1534), - [sym__rangeOperator] = ACTIONS(1532), - [anon_sym_null] = ACTIONS(1534), - [anon_sym_macro] = ACTIONS(1534), - [anon_sym_abstract] = ACTIONS(1534), - [anon_sym_static] = ACTIONS(1534), - [anon_sym_public] = ACTIONS(1534), - [anon_sym_private] = ACTIONS(1534), - [anon_sym_extern] = ACTIONS(1534), - [anon_sym_inline] = ACTIONS(1534), - [anon_sym_overload] = ACTIONS(1534), - [anon_sym_override] = ACTIONS(1534), - [anon_sym_final] = ACTIONS(1534), - [anon_sym_class] = ACTIONS(1534), - [anon_sym_interface] = ACTIONS(1534), - [anon_sym_typedef] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1534), - [anon_sym_var] = ACTIONS(1534), - [aux_sym_integer_token1] = ACTIONS(1534), - [aux_sym_integer_token2] = ACTIONS(1532), - [aux_sym_float_token1] = ACTIONS(1534), - [aux_sym_float_token2] = ACTIONS(1532), - [anon_sym_true] = ACTIONS(1534), - [anon_sym_false] = ACTIONS(1534), - [aux_sym_string_token1] = ACTIONS(1532), - [aux_sym_string_token3] = ACTIONS(1532), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1532), + [sym__rhs_expression] = STATE(1053), + [sym__unaryExpression] = STATE(1824), + [sym_runtime_type_check_expression] = STATE(1824), + [sym_switch_expression] = STATE(1824), + [sym_cast_expression] = STATE(1824), + [sym_type_trace_expression] = STATE(1824), + [sym__parenthesized_expression] = STATE(1558), + [sym_range_expression] = STATE(1824), + [sym_subscript_expression] = STATE(1824), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1053), + [sym_operator] = STATE(1971), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1934), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1934), + [sym_bool] = STATE(1934), + [sym_string] = STATE(1716), + [sym_null] = STATE(1934), + [sym_array] = STATE(1934), + [sym_map] = STATE(1934), + [sym_object] = STATE(1934), + [sym_pair] = STATE(1934), + [sym_identifier] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(2197), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2199), + [anon_sym_untyped] = ACTIONS(2201), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [266] = { - [sym_identifier] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1408), - [anon_sym_package] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1410), - [anon_sym_import] = ACTIONS(1410), - [anon_sym_using] = ACTIONS(1410), - [anon_sym_throw] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1408), - [anon_sym_switch] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1408), - [anon_sym_case] = ACTIONS(1410), - [anon_sym_default] = ACTIONS(1410), - [anon_sym_cast] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_DOLLARtype] = ACTIONS(1408), - [anon_sym_return] = ACTIONS(1410), - [anon_sym_untyped] = ACTIONS(1410), - [anon_sym_break] = ACTIONS(1410), - [anon_sym_continue] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1408), - [anon_sym_this] = ACTIONS(1410), - [anon_sym_QMARK] = ACTIONS(1410), - [anon_sym_AT] = ACTIONS(1410), - [anon_sym_AT_COLON] = ACTIONS(1408), - [anon_sym_if] = ACTIONS(1410), - [anon_sym_new] = ACTIONS(1410), - [anon_sym_TILDE] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1410), - [anon_sym_DASH] = ACTIONS(1410), - [anon_sym_PLUS_PLUS] = ACTIONS(1408), - [anon_sym_DASH_DASH] = ACTIONS(1408), - [anon_sym_PERCENT] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(1408), - [anon_sym_SLASH] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1408), - [anon_sym_GT_GT] = ACTIONS(1410), - [anon_sym_GT_GT_GT] = ACTIONS(1408), - [anon_sym_AMP] = ACTIONS(1410), - [anon_sym_PIPE] = ACTIONS(1410), - [anon_sym_CARET] = ACTIONS(1408), - [anon_sym_AMP_AMP] = ACTIONS(1408), - [anon_sym_PIPE_PIPE] = ACTIONS(1408), - [anon_sym_EQ_EQ] = ACTIONS(1408), - [anon_sym_BANG_EQ] = ACTIONS(1408), - [anon_sym_LT] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1408), - [anon_sym_GT] = ACTIONS(1410), - [anon_sym_GT_EQ] = ACTIONS(1408), - [anon_sym_EQ_GT] = ACTIONS(1408), - [anon_sym_QMARK_QMARK] = ACTIONS(1408), - [anon_sym_EQ] = ACTIONS(1410), - [sym__rangeOperator] = ACTIONS(1408), - [anon_sym_null] = ACTIONS(1410), - [anon_sym_macro] = ACTIONS(1410), - [anon_sym_abstract] = ACTIONS(1410), - [anon_sym_static] = ACTIONS(1410), - [anon_sym_public] = ACTIONS(1410), - [anon_sym_private] = ACTIONS(1410), - [anon_sym_extern] = ACTIONS(1410), - [anon_sym_inline] = ACTIONS(1410), - [anon_sym_overload] = ACTIONS(1410), - [anon_sym_override] = ACTIONS(1410), - [anon_sym_final] = ACTIONS(1410), - [anon_sym_class] = ACTIONS(1410), - [anon_sym_interface] = ACTIONS(1410), - [anon_sym_typedef] = ACTIONS(1410), - [anon_sym_function] = ACTIONS(1410), - [anon_sym_var] = ACTIONS(1410), - [aux_sym_integer_token1] = ACTIONS(1410), - [aux_sym_integer_token2] = ACTIONS(1408), - [aux_sym_float_token1] = ACTIONS(1410), - [aux_sym_float_token2] = ACTIONS(1408), - [anon_sym_true] = ACTIONS(1410), - [anon_sym_false] = ACTIONS(1410), - [aux_sym_string_token1] = ACTIONS(1408), - [aux_sym_string_token3] = ACTIONS(1408), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1408), + [sym__rhs_expression] = STATE(1207), + [sym__unaryExpression] = STATE(3622), + [sym_runtime_type_check_expression] = STATE(3622), + [sym_switch_expression] = STATE(3622), + [sym_cast_expression] = STATE(3622), + [sym_type_trace_expression] = STATE(3622), + [sym__parenthesized_expression] = STATE(2744), + [sym_range_expression] = STATE(3622), + [sym_subscript_expression] = STATE(3622), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1207), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2207), + [anon_sym_untyped] = ACTIONS(2209), + [anon_sym_break] = ACTIONS(2211), + [anon_sym_continue] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [267] = { - [sym_identifier] = ACTIONS(526), - [anon_sym_POUND] = ACTIONS(528), - [anon_sym_package] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_import] = ACTIONS(526), - [anon_sym_using] = ACTIONS(526), - [anon_sym_throw] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_AT] = ACTIONS(526), - [anon_sym_AT_COLON] = ACTIONS(528), - [anon_sym_if] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [anon_sym_macro] = ACTIONS(526), - [anon_sym_abstract] = ACTIONS(526), - [anon_sym_static] = ACTIONS(526), - [anon_sym_public] = ACTIONS(526), - [anon_sym_private] = ACTIONS(526), - [anon_sym_extern] = ACTIONS(526), - [anon_sym_inline] = ACTIONS(526), - [anon_sym_overload] = ACTIONS(526), - [anon_sym_override] = ACTIONS(526), - [anon_sym_final] = ACTIONS(526), - [anon_sym_class] = ACTIONS(526), - [anon_sym_interface] = ACTIONS(526), - [anon_sym_typedef] = ACTIONS(526), - [anon_sym_function] = ACTIONS(526), - [anon_sym_var] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(528), + [sym__rhs_expression] = STATE(1218), + [sym__unaryExpression] = STATE(3476), + [sym_runtime_type_check_expression] = STATE(3476), + [sym_switch_expression] = STATE(3476), + [sym_cast_expression] = STATE(3476), + [sym_type_trace_expression] = STATE(3476), + [sym__parenthesized_expression] = STATE(2771), + [sym_range_expression] = STATE(3476), + [sym_subscript_expression] = STATE(3476), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1218), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_untyped] = ACTIONS(2215), + [anon_sym_break] = ACTIONS(2217), + [anon_sym_continue] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [268] = { - [sym_identifier] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_package] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_using] = ACTIONS(1530), - [anon_sym_throw] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_case] = ACTIONS(1530), - [anon_sym_default] = ACTIONS(1530), - [anon_sym_cast] = ACTIONS(1530), - [anon_sym_COMMA] = ACTIONS(1528), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_untyped] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_this] = ACTIONS(1530), - [anon_sym_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_AT_COLON] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_GT_GT_GT] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1528), - [anon_sym_PIPE_PIPE] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_EQ_GT] = ACTIONS(1528), - [anon_sym_QMARK_QMARK] = ACTIONS(1528), - [anon_sym_EQ] = ACTIONS(1530), - [sym__rangeOperator] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_macro] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_private] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym_overload] = ACTIONS(1530), - [anon_sym_override] = ACTIONS(1530), - [anon_sym_final] = ACTIONS(1530), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_interface] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_function] = ACTIONS(1530), - [anon_sym_var] = ACTIONS(1530), - [aux_sym_integer_token1] = ACTIONS(1530), - [aux_sym_integer_token2] = ACTIONS(1528), - [aux_sym_float_token1] = ACTIONS(1530), - [aux_sym_float_token2] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [aux_sym_string_token1] = ACTIONS(1528), - [aux_sym_string_token3] = ACTIONS(1528), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1528), + [sym__rhs_expression] = STATE(1037), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(1576), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1037), + [sym_operator] = STATE(1865), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1837), + [sym_integer] = STATE(163), + [sym_float] = STATE(1837), + [sym_bool] = STATE(1837), + [sym_string] = STATE(1630), + [sym_null] = STATE(1837), + [sym_array] = STATE(1837), + [sym_map] = STATE(1837), + [sym_object] = STATE(1837), + [sym_pair] = STATE(1837), + [sym_identifier] = ACTIONS(2181), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2219), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_untyped] = ACTIONS(2223), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [269] = { - [sym_identifier] = ACTIONS(1546), - [anon_sym_POUND] = ACTIONS(1544), - [anon_sym_package] = ACTIONS(1546), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(1546), - [anon_sym_using] = ACTIONS(1546), - [anon_sym_throw] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1544), - [anon_sym_switch] = ACTIONS(1546), - [anon_sym_LBRACE] = ACTIONS(1544), - [anon_sym_case] = ACTIONS(1546), - [anon_sym_default] = ACTIONS(1546), - [anon_sym_cast] = ACTIONS(1546), - [anon_sym_COMMA] = ACTIONS(1544), - [anon_sym_DOLLARtype] = ACTIONS(1544), - [anon_sym_return] = ACTIONS(1546), - [anon_sym_untyped] = ACTIONS(1546), - [anon_sym_break] = ACTIONS(1546), - [anon_sym_continue] = ACTIONS(1546), - [anon_sym_LBRACK] = ACTIONS(1544), - [anon_sym_this] = ACTIONS(1546), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_AT] = ACTIONS(1546), - [anon_sym_AT_COLON] = ACTIONS(1544), - [anon_sym_if] = ACTIONS(1546), - [anon_sym_new] = ACTIONS(1546), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_GT_GT_GT] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1544), - [anon_sym_PIPE_PIPE] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1544), - [anon_sym_EQ_GT] = ACTIONS(1544), - [anon_sym_QMARK_QMARK] = ACTIONS(1544), - [anon_sym_EQ] = ACTIONS(1546), - [sym__rangeOperator] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1546), - [anon_sym_macro] = ACTIONS(1546), - [anon_sym_abstract] = ACTIONS(1546), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_extern] = ACTIONS(1546), - [anon_sym_inline] = ACTIONS(1546), - [anon_sym_overload] = ACTIONS(1546), - [anon_sym_override] = ACTIONS(1546), - [anon_sym_final] = ACTIONS(1546), - [anon_sym_class] = ACTIONS(1546), - [anon_sym_interface] = ACTIONS(1546), - [anon_sym_typedef] = ACTIONS(1546), - [anon_sym_function] = ACTIONS(1546), - [anon_sym_var] = ACTIONS(1546), - [aux_sym_integer_token1] = ACTIONS(1546), - [aux_sym_integer_token2] = ACTIONS(1544), - [aux_sym_float_token1] = ACTIONS(1546), - [aux_sym_float_token2] = ACTIONS(1544), - [anon_sym_true] = ACTIONS(1546), - [anon_sym_false] = ACTIONS(1546), - [aux_sym_string_token1] = ACTIONS(1544), - [aux_sym_string_token3] = ACTIONS(1544), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1544), + [sym__rhs_expression] = STATE(1231), + [sym__unaryExpression] = STATE(3682), + [sym_runtime_type_check_expression] = STATE(3682), + [sym_switch_expression] = STATE(3682), + [sym_cast_expression] = STATE(3682), + [sym_type_trace_expression] = STATE(3682), + [sym__parenthesized_expression] = STATE(2538), + [sym_range_expression] = STATE(3682), + [sym_subscript_expression] = STATE(3682), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1231), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_untyped] = ACTIONS(2227), + [anon_sym_break] = ACTIONS(2229), + [anon_sym_continue] = ACTIONS(2229), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [270] = { - [sym_identifier] = ACTIONS(1496), - [anon_sym_POUND] = ACTIONS(1494), - [anon_sym_package] = ACTIONS(1496), - [anon_sym_DOT] = ACTIONS(1496), - [anon_sym_import] = ACTIONS(1496), - [anon_sym_using] = ACTIONS(1496), - [anon_sym_throw] = ACTIONS(1496), - [anon_sym_LPAREN] = ACTIONS(1494), - [anon_sym_switch] = ACTIONS(1496), - [anon_sym_LBRACE] = ACTIONS(1494), - [anon_sym_case] = ACTIONS(1496), - [anon_sym_default] = ACTIONS(1496), - [anon_sym_cast] = ACTIONS(1496), - [anon_sym_COMMA] = ACTIONS(1494), - [anon_sym_DOLLARtype] = ACTIONS(1494), - [anon_sym_return] = ACTIONS(1496), - [anon_sym_untyped] = ACTIONS(1496), - [anon_sym_break] = ACTIONS(1496), - [anon_sym_continue] = ACTIONS(1496), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_this] = ACTIONS(1496), - [anon_sym_QMARK] = ACTIONS(1496), - [anon_sym_AT] = ACTIONS(1496), - [anon_sym_AT_COLON] = ACTIONS(1494), - [anon_sym_if] = ACTIONS(1496), - [anon_sym_new] = ACTIONS(1496), - [anon_sym_TILDE] = ACTIONS(1494), - [anon_sym_BANG] = ACTIONS(1496), - [anon_sym_DASH] = ACTIONS(1496), - [anon_sym_PLUS_PLUS] = ACTIONS(1494), - [anon_sym_DASH_DASH] = ACTIONS(1494), - [anon_sym_PERCENT] = ACTIONS(1494), - [anon_sym_STAR] = ACTIONS(1494), - [anon_sym_SLASH] = ACTIONS(1496), - [anon_sym_PLUS] = ACTIONS(1496), - [anon_sym_LT_LT] = ACTIONS(1494), - [anon_sym_GT_GT] = ACTIONS(1496), - [anon_sym_GT_GT_GT] = ACTIONS(1494), - [anon_sym_AMP] = ACTIONS(1496), - [anon_sym_PIPE] = ACTIONS(1496), - [anon_sym_CARET] = ACTIONS(1494), - [anon_sym_AMP_AMP] = ACTIONS(1494), - [anon_sym_PIPE_PIPE] = ACTIONS(1494), - [anon_sym_EQ_EQ] = ACTIONS(1494), - [anon_sym_BANG_EQ] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_LT_EQ] = ACTIONS(1494), - [anon_sym_GT] = ACTIONS(1496), - [anon_sym_GT_EQ] = ACTIONS(1494), - [anon_sym_EQ_GT] = ACTIONS(1494), - [anon_sym_QMARK_QMARK] = ACTIONS(1494), - [anon_sym_EQ] = ACTIONS(1496), - [sym__rangeOperator] = ACTIONS(1494), - [anon_sym_null] = ACTIONS(1496), - [anon_sym_macro] = ACTIONS(1496), - [anon_sym_abstract] = ACTIONS(1496), - [anon_sym_static] = ACTIONS(1496), - [anon_sym_public] = ACTIONS(1496), - [anon_sym_private] = ACTIONS(1496), - [anon_sym_extern] = ACTIONS(1496), - [anon_sym_inline] = ACTIONS(1496), - [anon_sym_overload] = ACTIONS(1496), - [anon_sym_override] = ACTIONS(1496), - [anon_sym_final] = ACTIONS(1496), - [anon_sym_class] = ACTIONS(1496), - [anon_sym_interface] = ACTIONS(1496), - [anon_sym_typedef] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(1496), - [anon_sym_var] = ACTIONS(1496), - [aux_sym_integer_token1] = ACTIONS(1496), - [aux_sym_integer_token2] = ACTIONS(1494), - [aux_sym_float_token1] = ACTIONS(1496), - [aux_sym_float_token2] = ACTIONS(1494), - [anon_sym_true] = ACTIONS(1496), - [anon_sym_false] = ACTIONS(1496), - [aux_sym_string_token1] = ACTIONS(1494), - [aux_sym_string_token3] = ACTIONS(1494), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1494), + [sym__rhs_expression] = STATE(1233), + [sym__unaryExpression] = STATE(3401), + [sym_runtime_type_check_expression] = STATE(3401), + [sym_switch_expression] = STATE(3401), + [sym_cast_expression] = STATE(3401), + [sym_type_trace_expression] = STATE(3401), + [sym__parenthesized_expression] = STATE(2549), + [sym_range_expression] = STATE(3401), + [sym_subscript_expression] = STATE(3401), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1233), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2231), + [anon_sym_untyped] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2235), + [anon_sym_continue] = ACTIONS(2235), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [271] = { - [sym_identifier] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1428), - [anon_sym_package] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1430), - [anon_sym_import] = ACTIONS(1430), - [anon_sym_using] = ACTIONS(1430), - [anon_sym_throw] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1428), - [anon_sym_switch] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1428), - [anon_sym_case] = ACTIONS(1430), - [anon_sym_default] = ACTIONS(1430), - [anon_sym_cast] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1428), - [anon_sym_DOLLARtype] = ACTIONS(1428), - [anon_sym_return] = ACTIONS(1430), - [anon_sym_untyped] = ACTIONS(1430), - [anon_sym_break] = ACTIONS(1430), - [anon_sym_continue] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1428), - [anon_sym_this] = ACTIONS(1430), - [anon_sym_QMARK] = ACTIONS(1430), - [anon_sym_AT] = ACTIONS(1430), - [anon_sym_AT_COLON] = ACTIONS(1428), - [anon_sym_if] = ACTIONS(1430), - [anon_sym_new] = ACTIONS(1430), - [anon_sym_TILDE] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_PLUS_PLUS] = ACTIONS(1428), - [anon_sym_DASH_DASH] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1430), - [anon_sym_GT_GT_GT] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1430), - [anon_sym_PIPE] = ACTIONS(1430), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1428), - [anon_sym_PIPE_PIPE] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1428), - [anon_sym_BANG_EQ] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1428), - [anon_sym_GT] = ACTIONS(1430), - [anon_sym_GT_EQ] = ACTIONS(1428), - [anon_sym_EQ_GT] = ACTIONS(1428), - [anon_sym_QMARK_QMARK] = ACTIONS(1428), - [anon_sym_EQ] = ACTIONS(1430), - [sym__rangeOperator] = ACTIONS(1428), - [anon_sym_null] = ACTIONS(1430), - [anon_sym_macro] = ACTIONS(1430), - [anon_sym_abstract] = ACTIONS(1430), - [anon_sym_static] = ACTIONS(1430), - [anon_sym_public] = ACTIONS(1430), - [anon_sym_private] = ACTIONS(1430), - [anon_sym_extern] = ACTIONS(1430), - [anon_sym_inline] = ACTIONS(1430), - [anon_sym_overload] = ACTIONS(1430), - [anon_sym_override] = ACTIONS(1430), - [anon_sym_final] = ACTIONS(1430), - [anon_sym_class] = ACTIONS(1430), - [anon_sym_interface] = ACTIONS(1430), - [anon_sym_typedef] = ACTIONS(1430), - [anon_sym_function] = ACTIONS(1430), - [anon_sym_var] = ACTIONS(1430), - [aux_sym_integer_token1] = ACTIONS(1430), - [aux_sym_integer_token2] = ACTIONS(1428), - [aux_sym_float_token1] = ACTIONS(1430), - [aux_sym_float_token2] = ACTIONS(1428), - [anon_sym_true] = ACTIONS(1430), - [anon_sym_false] = ACTIONS(1430), - [aux_sym_string_token1] = ACTIONS(1428), - [aux_sym_string_token3] = ACTIONS(1428), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1428), + [sym__rhs_expression] = STATE(1237), + [sym__unaryExpression] = STATE(3496), + [sym_runtime_type_check_expression] = STATE(3496), + [sym_switch_expression] = STATE(3496), + [sym_cast_expression] = STATE(3496), + [sym_type_trace_expression] = STATE(3496), + [sym__parenthesized_expression] = STATE(2564), + [sym_range_expression] = STATE(3496), + [sym_subscript_expression] = STATE(3496), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1237), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_untyped] = ACTIONS(2239), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [272] = { - [sym_identifier] = ACTIONS(1550), - [anon_sym_POUND] = ACTIONS(1548), - [anon_sym_package] = ACTIONS(1550), - [anon_sym_DOT] = ACTIONS(1550), - [anon_sym_import] = ACTIONS(1550), - [anon_sym_using] = ACTIONS(1550), - [anon_sym_throw] = ACTIONS(1550), - [anon_sym_LPAREN] = ACTIONS(1548), - [anon_sym_switch] = ACTIONS(1550), - [anon_sym_LBRACE] = ACTIONS(1548), - [anon_sym_case] = ACTIONS(1550), - [anon_sym_default] = ACTIONS(1550), - [anon_sym_cast] = ACTIONS(1550), - [anon_sym_COMMA] = ACTIONS(1548), - [anon_sym_DOLLARtype] = ACTIONS(1548), - [anon_sym_return] = ACTIONS(1550), - [anon_sym_untyped] = ACTIONS(1550), - [anon_sym_break] = ACTIONS(1550), - [anon_sym_continue] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1548), - [anon_sym_this] = ACTIONS(1550), - [anon_sym_QMARK] = ACTIONS(1550), - [anon_sym_AT] = ACTIONS(1550), - [anon_sym_AT_COLON] = ACTIONS(1548), - [anon_sym_if] = ACTIONS(1550), - [anon_sym_new] = ACTIONS(1550), - [anon_sym_TILDE] = ACTIONS(1548), - [anon_sym_BANG] = ACTIONS(1550), - [anon_sym_DASH] = ACTIONS(1550), - [anon_sym_PLUS_PLUS] = ACTIONS(1548), - [anon_sym_DASH_DASH] = ACTIONS(1548), - [anon_sym_PERCENT] = ACTIONS(1548), - [anon_sym_STAR] = ACTIONS(1548), - [anon_sym_SLASH] = ACTIONS(1550), - [anon_sym_PLUS] = ACTIONS(1550), - [anon_sym_LT_LT] = ACTIONS(1548), - [anon_sym_GT_GT] = ACTIONS(1550), - [anon_sym_GT_GT_GT] = ACTIONS(1548), - [anon_sym_AMP] = ACTIONS(1550), - [anon_sym_PIPE] = ACTIONS(1550), - [anon_sym_CARET] = ACTIONS(1548), - [anon_sym_AMP_AMP] = ACTIONS(1548), - [anon_sym_PIPE_PIPE] = ACTIONS(1548), - [anon_sym_EQ_EQ] = ACTIONS(1548), - [anon_sym_BANG_EQ] = ACTIONS(1548), - [anon_sym_LT] = ACTIONS(1550), - [anon_sym_LT_EQ] = ACTIONS(1548), - [anon_sym_GT] = ACTIONS(1550), - [anon_sym_GT_EQ] = ACTIONS(1548), - [anon_sym_EQ_GT] = ACTIONS(1548), - [anon_sym_QMARK_QMARK] = ACTIONS(1548), - [anon_sym_EQ] = ACTIONS(1550), - [sym__rangeOperator] = ACTIONS(1548), - [anon_sym_null] = ACTIONS(1550), - [anon_sym_macro] = ACTIONS(1550), - [anon_sym_abstract] = ACTIONS(1550), - [anon_sym_static] = ACTIONS(1550), - [anon_sym_public] = ACTIONS(1550), - [anon_sym_private] = ACTIONS(1550), - [anon_sym_extern] = ACTIONS(1550), - [anon_sym_inline] = ACTIONS(1550), - [anon_sym_overload] = ACTIONS(1550), - [anon_sym_override] = ACTIONS(1550), - [anon_sym_final] = ACTIONS(1550), - [anon_sym_class] = ACTIONS(1550), - [anon_sym_interface] = ACTIONS(1550), - [anon_sym_typedef] = ACTIONS(1550), - [anon_sym_function] = ACTIONS(1550), - [anon_sym_var] = ACTIONS(1550), - [aux_sym_integer_token1] = ACTIONS(1550), - [aux_sym_integer_token2] = ACTIONS(1548), - [aux_sym_float_token1] = ACTIONS(1550), - [aux_sym_float_token2] = ACTIONS(1548), - [anon_sym_true] = ACTIONS(1550), - [anon_sym_false] = ACTIONS(1550), - [aux_sym_string_token1] = ACTIONS(1548), - [aux_sym_string_token3] = ACTIONS(1548), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1548), + [sym__rhs_expression] = STATE(1244), + [sym__unaryExpression] = STATE(3521), + [sym_runtime_type_check_expression] = STATE(3521), + [sym_switch_expression] = STATE(3521), + [sym_cast_expression] = STATE(3521), + [sym_type_trace_expression] = STATE(3521), + [sym__parenthesized_expression] = STATE(2570), + [sym_range_expression] = STATE(3521), + [sym_subscript_expression] = STATE(3521), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1244), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2243), + [anon_sym_untyped] = ACTIONS(2245), + [anon_sym_break] = ACTIONS(2247), + [anon_sym_continue] = ACTIONS(2247), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [273] = { - [sym_identifier] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1432), - [anon_sym_package] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1434), - [anon_sym_import] = ACTIONS(1434), - [anon_sym_using] = ACTIONS(1434), - [anon_sym_throw] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1432), - [anon_sym_switch] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1432), - [anon_sym_case] = ACTIONS(1434), - [anon_sym_default] = ACTIONS(1434), - [anon_sym_cast] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1432), - [anon_sym_DOLLARtype] = ACTIONS(1432), - [anon_sym_return] = ACTIONS(1434), - [anon_sym_untyped] = ACTIONS(1434), - [anon_sym_break] = ACTIONS(1434), - [anon_sym_continue] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1432), - [anon_sym_this] = ACTIONS(1434), - [anon_sym_QMARK] = ACTIONS(1434), - [anon_sym_AT] = ACTIONS(1434), - [anon_sym_AT_COLON] = ACTIONS(1432), - [anon_sym_if] = ACTIONS(1434), - [anon_sym_new] = ACTIONS(1434), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1434), - [anon_sym_DASH] = ACTIONS(1434), - [anon_sym_PLUS_PLUS] = ACTIONS(1432), - [anon_sym_DASH_DASH] = ACTIONS(1432), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1432), - [anon_sym_GT_GT] = ACTIONS(1434), - [anon_sym_GT_GT_GT] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1434), - [anon_sym_PIPE] = ACTIONS(1434), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1432), - [anon_sym_PIPE_PIPE] = ACTIONS(1432), - [anon_sym_EQ_EQ] = ACTIONS(1432), - [anon_sym_BANG_EQ] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1432), - [anon_sym_GT] = ACTIONS(1434), - [anon_sym_GT_EQ] = ACTIONS(1432), - [anon_sym_EQ_GT] = ACTIONS(1432), - [anon_sym_QMARK_QMARK] = ACTIONS(1432), - [anon_sym_EQ] = ACTIONS(1434), - [sym__rangeOperator] = ACTIONS(1432), - [anon_sym_null] = ACTIONS(1434), - [anon_sym_macro] = ACTIONS(1434), - [anon_sym_abstract] = ACTIONS(1434), - [anon_sym_static] = ACTIONS(1434), - [anon_sym_public] = ACTIONS(1434), - [anon_sym_private] = ACTIONS(1434), - [anon_sym_extern] = ACTIONS(1434), - [anon_sym_inline] = ACTIONS(1434), - [anon_sym_overload] = ACTIONS(1434), - [anon_sym_override] = ACTIONS(1434), - [anon_sym_final] = ACTIONS(1434), - [anon_sym_class] = ACTIONS(1434), - [anon_sym_interface] = ACTIONS(1434), - [anon_sym_typedef] = ACTIONS(1434), - [anon_sym_function] = ACTIONS(1434), - [anon_sym_var] = ACTIONS(1434), - [aux_sym_integer_token1] = ACTIONS(1434), - [aux_sym_integer_token2] = ACTIONS(1432), - [aux_sym_float_token1] = ACTIONS(1434), - [aux_sym_float_token2] = ACTIONS(1432), - [anon_sym_true] = ACTIONS(1434), - [anon_sym_false] = ACTIONS(1434), - [aux_sym_string_token1] = ACTIONS(1432), - [aux_sym_string_token3] = ACTIONS(1432), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1432), + [sym__rhs_expression] = STATE(1246), + [sym__unaryExpression] = STATE(3695), + [sym_runtime_type_check_expression] = STATE(3695), + [sym_switch_expression] = STATE(3695), + [sym_cast_expression] = STATE(3695), + [sym_type_trace_expression] = STATE(3695), + [sym__parenthesized_expression] = STATE(2577), + [sym_range_expression] = STATE(3695), + [sym_subscript_expression] = STATE(3695), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1246), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2249), + [anon_sym_untyped] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2253), + [anon_sym_continue] = ACTIONS(2253), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [274] = { - [sym_identifier] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_case] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(544), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(542), + [sym__rhs_expression] = STATE(1182), + [sym__unaryExpression] = STATE(3592), + [sym_runtime_type_check_expression] = STATE(3592), + [sym_switch_expression] = STATE(3592), + [sym_cast_expression] = STATE(3592), + [sym_type_trace_expression] = STATE(3592), + [sym__parenthesized_expression] = STATE(2643), + [sym_range_expression] = STATE(3592), + [sym_subscript_expression] = STATE(3592), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1182), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_untyped] = ACTIONS(2257), + [anon_sym_break] = ACTIONS(2259), + [anon_sym_continue] = ACTIONS(2259), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [275] = { - [sym_identifier] = ACTIONS(1580), - [anon_sym_POUND] = ACTIONS(1578), - [anon_sym_package] = ACTIONS(1580), - [anon_sym_DOT] = ACTIONS(1580), - [anon_sym_import] = ACTIONS(1580), - [anon_sym_using] = ACTIONS(1580), - [anon_sym_throw] = ACTIONS(1580), - [anon_sym_LPAREN] = ACTIONS(1578), - [anon_sym_switch] = ACTIONS(1580), - [anon_sym_LBRACE] = ACTIONS(1578), - [anon_sym_case] = ACTIONS(1580), - [anon_sym_default] = ACTIONS(1580), - [anon_sym_cast] = ACTIONS(1580), - [anon_sym_COMMA] = ACTIONS(1578), - [anon_sym_DOLLARtype] = ACTIONS(1578), - [anon_sym_return] = ACTIONS(1580), - [anon_sym_untyped] = ACTIONS(1580), - [anon_sym_break] = ACTIONS(1580), - [anon_sym_continue] = ACTIONS(1580), - [anon_sym_LBRACK] = ACTIONS(1578), - [anon_sym_this] = ACTIONS(1580), - [anon_sym_QMARK] = ACTIONS(1580), - [anon_sym_AT] = ACTIONS(1580), - [anon_sym_AT_COLON] = ACTIONS(1578), - [anon_sym_if] = ACTIONS(1580), - [anon_sym_new] = ACTIONS(1580), - [anon_sym_TILDE] = ACTIONS(1578), - [anon_sym_BANG] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_PLUS_PLUS] = ACTIONS(1578), - [anon_sym_DASH_DASH] = ACTIONS(1578), - [anon_sym_PERCENT] = ACTIONS(1578), - [anon_sym_STAR] = ACTIONS(1578), - [anon_sym_SLASH] = ACTIONS(1580), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_LT_LT] = ACTIONS(1578), - [anon_sym_GT_GT] = ACTIONS(1580), - [anon_sym_GT_GT_GT] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1580), - [anon_sym_PIPE] = ACTIONS(1580), - [anon_sym_CARET] = ACTIONS(1578), - [anon_sym_AMP_AMP] = ACTIONS(1578), - [anon_sym_PIPE_PIPE] = ACTIONS(1578), - [anon_sym_EQ_EQ] = ACTIONS(1578), - [anon_sym_BANG_EQ] = ACTIONS(1578), - [anon_sym_LT] = ACTIONS(1580), - [anon_sym_LT_EQ] = ACTIONS(1578), - [anon_sym_GT] = ACTIONS(1580), - [anon_sym_GT_EQ] = ACTIONS(1578), - [anon_sym_EQ_GT] = ACTIONS(1578), - [anon_sym_QMARK_QMARK] = ACTIONS(1578), - [anon_sym_EQ] = ACTIONS(1580), - [sym__rangeOperator] = ACTIONS(1578), - [anon_sym_null] = ACTIONS(1580), - [anon_sym_macro] = ACTIONS(1580), - [anon_sym_abstract] = ACTIONS(1580), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_extern] = ACTIONS(1580), - [anon_sym_inline] = ACTIONS(1580), - [anon_sym_overload] = ACTIONS(1580), - [anon_sym_override] = ACTIONS(1580), - [anon_sym_final] = ACTIONS(1580), - [anon_sym_class] = ACTIONS(1580), - [anon_sym_interface] = ACTIONS(1580), - [anon_sym_typedef] = ACTIONS(1580), - [anon_sym_function] = ACTIONS(1580), - [anon_sym_var] = ACTIONS(1580), - [aux_sym_integer_token1] = ACTIONS(1580), - [aux_sym_integer_token2] = ACTIONS(1578), - [aux_sym_float_token1] = ACTIONS(1580), - [aux_sym_float_token2] = ACTIONS(1578), - [anon_sym_true] = ACTIONS(1580), - [anon_sym_false] = ACTIONS(1580), - [aux_sym_string_token1] = ACTIONS(1578), - [aux_sym_string_token3] = ACTIONS(1578), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1578), + [sym__rhs_expression] = STATE(1250), + [sym__unaryExpression] = STATE(3419), + [sym_runtime_type_check_expression] = STATE(3419), + [sym_switch_expression] = STATE(3419), + [sym_cast_expression] = STATE(3419), + [sym_type_trace_expression] = STATE(3419), + [sym__parenthesized_expression] = STATE(2586), + [sym_range_expression] = STATE(3419), + [sym_subscript_expression] = STATE(3419), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1250), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2261), + [anon_sym_untyped] = ACTIONS(2263), + [anon_sym_break] = ACTIONS(2265), + [anon_sym_continue] = ACTIONS(2265), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [276] = { - [sym_identifier] = ACTIONS(1516), - [anon_sym_POUND] = ACTIONS(1514), - [anon_sym_package] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(1516), - [anon_sym_import] = ACTIONS(1516), - [anon_sym_using] = ACTIONS(1516), - [anon_sym_throw] = ACTIONS(1516), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_switch] = ACTIONS(1516), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_case] = ACTIONS(1516), - [anon_sym_default] = ACTIONS(1516), - [anon_sym_cast] = ACTIONS(1516), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_DOLLARtype] = ACTIONS(1514), - [anon_sym_return] = ACTIONS(1516), - [anon_sym_untyped] = ACTIONS(1516), - [anon_sym_break] = ACTIONS(1516), - [anon_sym_continue] = ACTIONS(1516), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_this] = ACTIONS(1516), - [anon_sym_QMARK] = ACTIONS(1516), - [anon_sym_AT] = ACTIONS(1516), - [anon_sym_AT_COLON] = ACTIONS(1514), - [anon_sym_if] = ACTIONS(1516), - [anon_sym_new] = ACTIONS(1516), - [anon_sym_TILDE] = ACTIONS(1514), - [anon_sym_BANG] = ACTIONS(1516), - [anon_sym_DASH] = ACTIONS(1516), - [anon_sym_PLUS_PLUS] = ACTIONS(1514), - [anon_sym_DASH_DASH] = ACTIONS(1514), - [anon_sym_PERCENT] = ACTIONS(1514), - [anon_sym_STAR] = ACTIONS(1514), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_PLUS] = ACTIONS(1516), - [anon_sym_LT_LT] = ACTIONS(1514), - [anon_sym_GT_GT] = ACTIONS(1516), - [anon_sym_GT_GT_GT] = ACTIONS(1514), - [anon_sym_AMP] = ACTIONS(1516), - [anon_sym_PIPE] = ACTIONS(1516), - [anon_sym_CARET] = ACTIONS(1514), - [anon_sym_AMP_AMP] = ACTIONS(1514), - [anon_sym_PIPE_PIPE] = ACTIONS(1514), - [anon_sym_EQ_EQ] = ACTIONS(1514), - [anon_sym_BANG_EQ] = ACTIONS(1514), - [anon_sym_LT] = ACTIONS(1516), - [anon_sym_LT_EQ] = ACTIONS(1514), - [anon_sym_GT] = ACTIONS(1516), - [anon_sym_GT_EQ] = ACTIONS(1514), - [anon_sym_EQ_GT] = ACTIONS(1514), - [anon_sym_QMARK_QMARK] = ACTIONS(1514), - [anon_sym_EQ] = ACTIONS(1516), - [sym__rangeOperator] = ACTIONS(1514), - [anon_sym_null] = ACTIONS(1516), - [anon_sym_macro] = ACTIONS(1516), - [anon_sym_abstract] = ACTIONS(1516), - [anon_sym_static] = ACTIONS(1516), - [anon_sym_public] = ACTIONS(1516), - [anon_sym_private] = ACTIONS(1516), - [anon_sym_extern] = ACTIONS(1516), - [anon_sym_inline] = ACTIONS(1516), - [anon_sym_overload] = ACTIONS(1516), - [anon_sym_override] = ACTIONS(1516), - [anon_sym_final] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(1516), - [anon_sym_interface] = ACTIONS(1516), - [anon_sym_typedef] = ACTIONS(1516), - [anon_sym_function] = ACTIONS(1516), - [anon_sym_var] = ACTIONS(1516), - [aux_sym_integer_token1] = ACTIONS(1516), - [aux_sym_integer_token2] = ACTIONS(1514), - [aux_sym_float_token1] = ACTIONS(1516), - [aux_sym_float_token2] = ACTIONS(1514), - [anon_sym_true] = ACTIONS(1516), - [anon_sym_false] = ACTIONS(1516), - [aux_sym_string_token1] = ACTIONS(1514), - [aux_sym_string_token3] = ACTIONS(1514), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1514), + [sym__rhs_expression] = STATE(1251), + [sym__unaryExpression] = STATE(3586), + [sym_runtime_type_check_expression] = STATE(3586), + [sym_switch_expression] = STATE(3586), + [sym_cast_expression] = STATE(3586), + [sym_type_trace_expression] = STATE(3586), + [sym__parenthesized_expression] = STATE(2587), + [sym_range_expression] = STATE(3586), + [sym_subscript_expression] = STATE(3586), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1251), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2267), + [anon_sym_untyped] = ACTIONS(2269), + [anon_sym_break] = ACTIONS(2271), + [anon_sym_continue] = ACTIONS(2271), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [277] = { - [sym_identifier] = ACTIONS(1473), - [anon_sym_POUND] = ACTIONS(1470), - [anon_sym_package] = ACTIONS(1473), - [anon_sym_DOT] = ACTIONS(1473), - [anon_sym_import] = ACTIONS(1473), - [anon_sym_using] = ACTIONS(1473), - [anon_sym_throw] = ACTIONS(1473), - [anon_sym_LPAREN] = ACTIONS(1470), - [anon_sym_switch] = ACTIONS(1473), - [anon_sym_LBRACE] = ACTIONS(1470), - [anon_sym_case] = ACTIONS(1473), - [anon_sym_default] = ACTIONS(1473), - [anon_sym_cast] = ACTIONS(1473), - [anon_sym_COMMA] = ACTIONS(1470), - [anon_sym_DOLLARtype] = ACTIONS(1470), - [anon_sym_return] = ACTIONS(1473), - [anon_sym_untyped] = ACTIONS(1473), - [anon_sym_break] = ACTIONS(1473), - [anon_sym_continue] = ACTIONS(1473), - [anon_sym_LBRACK] = ACTIONS(1470), - [anon_sym_this] = ACTIONS(1473), - [anon_sym_QMARK] = ACTIONS(1473), - [anon_sym_AT] = ACTIONS(1473), - [anon_sym_AT_COLON] = ACTIONS(1470), - [anon_sym_if] = ACTIONS(1473), - [anon_sym_new] = ACTIONS(1473), - [anon_sym_TILDE] = ACTIONS(1470), - [anon_sym_BANG] = ACTIONS(1473), - [anon_sym_DASH] = ACTIONS(1473), - [anon_sym_PLUS_PLUS] = ACTIONS(1470), - [anon_sym_DASH_DASH] = ACTIONS(1470), - [anon_sym_PERCENT] = ACTIONS(1470), - [anon_sym_STAR] = ACTIONS(1470), - [anon_sym_SLASH] = ACTIONS(1473), - [anon_sym_PLUS] = ACTIONS(1473), - [anon_sym_LT_LT] = ACTIONS(1470), - [anon_sym_GT_GT] = ACTIONS(1473), - [anon_sym_GT_GT_GT] = ACTIONS(1470), - [anon_sym_AMP] = ACTIONS(1473), - [anon_sym_PIPE] = ACTIONS(1473), - [anon_sym_CARET] = ACTIONS(1470), - [anon_sym_AMP_AMP] = ACTIONS(1470), - [anon_sym_PIPE_PIPE] = ACTIONS(1470), - [anon_sym_EQ_EQ] = ACTIONS(1470), - [anon_sym_BANG_EQ] = ACTIONS(1470), - [anon_sym_LT] = ACTIONS(1473), - [anon_sym_LT_EQ] = ACTIONS(1470), - [anon_sym_GT] = ACTIONS(1473), - [anon_sym_GT_EQ] = ACTIONS(1470), - [anon_sym_EQ_GT] = ACTIONS(1470), - [anon_sym_QMARK_QMARK] = ACTIONS(1470), - [anon_sym_EQ] = ACTIONS(1473), - [sym__rangeOperator] = ACTIONS(1470), - [anon_sym_null] = ACTIONS(1473), - [anon_sym_macro] = ACTIONS(1473), - [anon_sym_abstract] = ACTIONS(1473), - [anon_sym_static] = ACTIONS(1473), - [anon_sym_public] = ACTIONS(1473), - [anon_sym_private] = ACTIONS(1473), - [anon_sym_extern] = ACTIONS(1473), - [anon_sym_inline] = ACTIONS(1473), - [anon_sym_overload] = ACTIONS(1473), - [anon_sym_override] = ACTIONS(1473), - [anon_sym_final] = ACTIONS(1473), - [anon_sym_class] = ACTIONS(1473), - [anon_sym_interface] = ACTIONS(1473), - [anon_sym_typedef] = ACTIONS(1473), - [anon_sym_function] = ACTIONS(1473), - [anon_sym_var] = ACTIONS(1473), - [aux_sym_integer_token1] = ACTIONS(1473), - [aux_sym_integer_token2] = ACTIONS(1470), - [aux_sym_float_token1] = ACTIONS(1473), - [aux_sym_float_token2] = ACTIONS(1470), - [anon_sym_true] = ACTIONS(1473), - [anon_sym_false] = ACTIONS(1473), - [aux_sym_string_token1] = ACTIONS(1470), - [aux_sym_string_token3] = ACTIONS(1470), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1470), + [sym__rhs_expression] = STATE(1256), + [sym__unaryExpression] = STATE(3394), + [sym_runtime_type_check_expression] = STATE(3394), + [sym_switch_expression] = STATE(3394), + [sym_cast_expression] = STATE(3394), + [sym_type_trace_expression] = STATE(3394), + [sym__parenthesized_expression] = STATE(2590), + [sym_range_expression] = STATE(3394), + [sym_subscript_expression] = STATE(3394), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1256), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2273), + [anon_sym_untyped] = ACTIONS(2275), + [anon_sym_break] = ACTIONS(2277), + [anon_sym_continue] = ACTIONS(2277), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [278] = { - [sym_identifier] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1420), - [anon_sym_package] = ACTIONS(1422), - [anon_sym_DOT] = ACTIONS(1422), - [anon_sym_import] = ACTIONS(1422), - [anon_sym_using] = ACTIONS(1422), - [anon_sym_throw] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1420), - [anon_sym_switch] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1420), - [anon_sym_case] = ACTIONS(1422), - [anon_sym_default] = ACTIONS(1422), - [anon_sym_cast] = ACTIONS(1422), - [anon_sym_COMMA] = ACTIONS(1420), - [anon_sym_DOLLARtype] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1422), - [anon_sym_untyped] = ACTIONS(1422), - [anon_sym_break] = ACTIONS(1422), - [anon_sym_continue] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1420), - [anon_sym_this] = ACTIONS(1422), - [anon_sym_QMARK] = ACTIONS(1422), - [anon_sym_AT] = ACTIONS(1422), - [anon_sym_AT_COLON] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1422), - [anon_sym_new] = ACTIONS(1422), - [anon_sym_TILDE] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_PLUS_PLUS] = ACTIONS(1420), - [anon_sym_DASH_DASH] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1422), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1422), - [anon_sym_GT_GT_GT] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_AMP_AMP] = ACTIONS(1420), - [anon_sym_PIPE_PIPE] = ACTIONS(1420), - [anon_sym_EQ_EQ] = ACTIONS(1420), - [anon_sym_BANG_EQ] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_LT_EQ] = ACTIONS(1420), - [anon_sym_GT] = ACTIONS(1422), - [anon_sym_GT_EQ] = ACTIONS(1420), - [anon_sym_EQ_GT] = ACTIONS(1420), - [anon_sym_QMARK_QMARK] = ACTIONS(1420), - [anon_sym_EQ] = ACTIONS(1422), - [sym__rangeOperator] = ACTIONS(1420), - [anon_sym_null] = ACTIONS(1422), - [anon_sym_macro] = ACTIONS(1422), - [anon_sym_abstract] = ACTIONS(1422), - [anon_sym_static] = ACTIONS(1422), - [anon_sym_public] = ACTIONS(1422), - [anon_sym_private] = ACTIONS(1422), - [anon_sym_extern] = ACTIONS(1422), - [anon_sym_inline] = ACTIONS(1422), - [anon_sym_overload] = ACTIONS(1422), - [anon_sym_override] = ACTIONS(1422), - [anon_sym_final] = ACTIONS(1422), - [anon_sym_class] = ACTIONS(1422), - [anon_sym_interface] = ACTIONS(1422), - [anon_sym_typedef] = ACTIONS(1422), - [anon_sym_function] = ACTIONS(1422), - [anon_sym_var] = ACTIONS(1422), - [aux_sym_integer_token1] = ACTIONS(1422), - [aux_sym_integer_token2] = ACTIONS(1420), - [aux_sym_float_token1] = ACTIONS(1422), - [aux_sym_float_token2] = ACTIONS(1420), - [anon_sym_true] = ACTIONS(1422), - [anon_sym_false] = ACTIONS(1422), - [aux_sym_string_token1] = ACTIONS(1420), - [aux_sym_string_token3] = ACTIONS(1420), + [sym__rhs_expression] = STATE(1262), + [sym__unaryExpression] = STATE(3383), + [sym_runtime_type_check_expression] = STATE(3383), + [sym_switch_expression] = STATE(3383), + [sym_cast_expression] = STATE(3383), + [sym_type_trace_expression] = STATE(3383), + [sym__parenthesized_expression] = STATE(2597), + [sym_range_expression] = STATE(3383), + [sym_subscript_expression] = STATE(3383), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1262), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2279), + [anon_sym_untyped] = ACTIONS(2281), + [anon_sym_break] = ACTIONS(2283), + [anon_sym_continue] = ACTIONS(2283), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1420), [sym__closing_brace_unmarker] = ACTIONS(3), }, [279] = { - [sym_identifier] = ACTIONS(544), - [anon_sym_POUND] = ACTIONS(542), - [anon_sym_package] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_import] = ACTIONS(544), - [anon_sym_using] = ACTIONS(544), - [anon_sym_throw] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_case] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_AT] = ACTIONS(544), - [anon_sym_AT_COLON] = ACTIONS(542), - [anon_sym_if] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(544), - [anon_sym_macro] = ACTIONS(544), - [anon_sym_abstract] = ACTIONS(544), - [anon_sym_static] = ACTIONS(544), - [anon_sym_public] = ACTIONS(544), - [anon_sym_private] = ACTIONS(544), - [anon_sym_extern] = ACTIONS(544), - [anon_sym_inline] = ACTIONS(544), - [anon_sym_overload] = ACTIONS(544), - [anon_sym_override] = ACTIONS(544), - [anon_sym_final] = ACTIONS(544), - [anon_sym_class] = ACTIONS(544), - [anon_sym_interface] = ACTIONS(544), - [anon_sym_typedef] = ACTIONS(544), - [anon_sym_function] = ACTIONS(544), - [anon_sym_var] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(542), + [sym__rhs_expression] = STATE(1268), + [sym__unaryExpression] = STATE(3336), + [sym_runtime_type_check_expression] = STATE(3336), + [sym_switch_expression] = STATE(3336), + [sym_cast_expression] = STATE(3336), + [sym_type_trace_expression] = STATE(3336), + [sym__parenthesized_expression] = STATE(2606), + [sym_range_expression] = STATE(3336), + [sym_subscript_expression] = STATE(3336), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1268), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2285), + [anon_sym_untyped] = ACTIONS(2287), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [280] = { - [sym_identifier] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_package] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1466), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1466), - [anon_sym_throw] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_case] = ACTIONS(1466), - [anon_sym_default] = ACTIONS(1466), - [anon_sym_cast] = ACTIONS(1466), - [anon_sym_COMMA] = ACTIONS(1464), - [anon_sym_DOLLARtype] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_untyped] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_this] = ACTIONS(1466), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1466), - [anon_sym_AT_COLON] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_GT_GT_GT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_PIPE_PIPE] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_QMARK_QMARK] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1466), - [sym__rangeOperator] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1466), - [anon_sym_macro] = ACTIONS(1466), - [anon_sym_abstract] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_public] = ACTIONS(1466), - [anon_sym_private] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym_overload] = ACTIONS(1466), - [anon_sym_override] = ACTIONS(1466), - [anon_sym_final] = ACTIONS(1466), - [anon_sym_class] = ACTIONS(1466), - [anon_sym_interface] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(1466), - [anon_sym_var] = ACTIONS(1466), - [aux_sym_integer_token1] = ACTIONS(1466), - [aux_sym_integer_token2] = ACTIONS(1464), - [aux_sym_float_token1] = ACTIONS(1466), - [aux_sym_float_token2] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [aux_sym_string_token1] = ACTIONS(1464), - [aux_sym_string_token3] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1464), + [sym__rhs_expression] = STATE(1269), + [sym__unaryExpression] = STATE(3374), + [sym_runtime_type_check_expression] = STATE(3374), + [sym_switch_expression] = STATE(3374), + [sym_cast_expression] = STATE(3374), + [sym_type_trace_expression] = STATE(3374), + [sym__parenthesized_expression] = STATE(2609), + [sym_range_expression] = STATE(3374), + [sym_subscript_expression] = STATE(3374), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1269), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2291), + [anon_sym_untyped] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2295), + [anon_sym_continue] = ACTIONS(2295), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [281] = { - [sym_identifier] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(594), - [anon_sym_package] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_import] = ACTIONS(592), - [anon_sym_using] = ACTIONS(592), - [anon_sym_throw] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_case] = ACTIONS(592), - [anon_sym_default] = ACTIONS(592), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(594), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym_AT_COLON] = ACTIONS(594), - [anon_sym_if] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(594), - [anon_sym_BANG] = ACTIONS(592), - [anon_sym_DASH] = ACTIONS(592), - [anon_sym_PLUS_PLUS] = ACTIONS(594), - [anon_sym_DASH_DASH] = ACTIONS(594), - [anon_sym_PERCENT] = ACTIONS(594), - [anon_sym_STAR] = ACTIONS(594), - [anon_sym_SLASH] = ACTIONS(592), - [anon_sym_PLUS] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(594), - [anon_sym_GT_GT] = ACTIONS(592), - [anon_sym_GT_GT_GT] = ACTIONS(594), - [anon_sym_AMP] = ACTIONS(592), - [anon_sym_PIPE] = ACTIONS(592), - [anon_sym_CARET] = ACTIONS(594), - [anon_sym_AMP_AMP] = ACTIONS(594), - [anon_sym_PIPE_PIPE] = ACTIONS(594), - [anon_sym_EQ_EQ] = ACTIONS(594), - [anon_sym_BANG_EQ] = ACTIONS(594), - [anon_sym_LT] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(594), - [anon_sym_GT] = ACTIONS(592), - [anon_sym_GT_EQ] = ACTIONS(594), - [anon_sym_EQ_GT] = ACTIONS(594), - [anon_sym_QMARK_QMARK] = ACTIONS(594), - [anon_sym_EQ] = ACTIONS(592), - [sym__rangeOperator] = ACTIONS(594), - [anon_sym_null] = ACTIONS(592), - [anon_sym_macro] = ACTIONS(592), - [anon_sym_abstract] = ACTIONS(592), - [anon_sym_static] = ACTIONS(592), - [anon_sym_public] = ACTIONS(592), - [anon_sym_private] = ACTIONS(592), - [anon_sym_extern] = ACTIONS(592), - [anon_sym_inline] = ACTIONS(592), - [anon_sym_overload] = ACTIONS(592), - [anon_sym_override] = ACTIONS(592), - [anon_sym_final] = ACTIONS(592), - [anon_sym_class] = ACTIONS(592), - [anon_sym_interface] = ACTIONS(592), - [anon_sym_typedef] = ACTIONS(592), - [anon_sym_function] = ACTIONS(592), - [anon_sym_var] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(594), + [sym__rhs_expression] = STATE(1271), + [sym__unaryExpression] = STATE(3403), + [sym_runtime_type_check_expression] = STATE(3403), + [sym_switch_expression] = STATE(3403), + [sym_cast_expression] = STATE(3403), + [sym_type_trace_expression] = STATE(3403), + [sym__parenthesized_expression] = STATE(2612), + [sym_range_expression] = STATE(3403), + [sym_subscript_expression] = STATE(3403), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1271), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_untyped] = ACTIONS(2299), + [anon_sym_break] = ACTIONS(2301), + [anon_sym_continue] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [282] = { - [sym_identifier] = ACTIONS(580), - [anon_sym_POUND] = ACTIONS(578), - [anon_sym_package] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_import] = ACTIONS(580), - [anon_sym_using] = ACTIONS(580), - [anon_sym_throw] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_case] = ACTIONS(580), - [anon_sym_default] = ACTIONS(580), - [anon_sym_cast] = ACTIONS(580), - [anon_sym_COMMA] = ACTIONS(578), - [anon_sym_DOLLARtype] = ACTIONS(578), - [anon_sym_return] = ACTIONS(580), - [anon_sym_untyped] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_this] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_AT] = ACTIONS(580), - [anon_sym_AT_COLON] = ACTIONS(578), - [anon_sym_if] = ACTIONS(580), - [anon_sym_new] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(578), - [anon_sym_BANG] = ACTIONS(580), - [anon_sym_DASH] = ACTIONS(580), - [anon_sym_PLUS_PLUS] = ACTIONS(578), - [anon_sym_DASH_DASH] = ACTIONS(578), - [anon_sym_PERCENT] = ACTIONS(578), - [anon_sym_STAR] = ACTIONS(578), - [anon_sym_SLASH] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(580), - [anon_sym_LT_LT] = ACTIONS(578), - [anon_sym_GT_GT] = ACTIONS(580), - [anon_sym_GT_GT_GT] = ACTIONS(578), - [anon_sym_AMP] = ACTIONS(580), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_CARET] = ACTIONS(578), - [anon_sym_AMP_AMP] = ACTIONS(578), - [anon_sym_PIPE_PIPE] = ACTIONS(578), - [anon_sym_EQ_EQ] = ACTIONS(578), - [anon_sym_BANG_EQ] = ACTIONS(578), - [anon_sym_LT] = ACTIONS(580), - [anon_sym_LT_EQ] = ACTIONS(578), - [anon_sym_GT] = ACTIONS(580), - [anon_sym_GT_EQ] = ACTIONS(578), - [anon_sym_EQ_GT] = ACTIONS(578), - [anon_sym_QMARK_QMARK] = ACTIONS(578), - [anon_sym_EQ] = ACTIONS(580), - [sym__rangeOperator] = ACTIONS(578), - [anon_sym_null] = ACTIONS(580), - [anon_sym_macro] = ACTIONS(580), - [anon_sym_abstract] = ACTIONS(580), - [anon_sym_static] = ACTIONS(580), - [anon_sym_public] = ACTIONS(580), - [anon_sym_private] = ACTIONS(580), - [anon_sym_extern] = ACTIONS(580), - [anon_sym_inline] = ACTIONS(580), - [anon_sym_overload] = ACTIONS(580), - [anon_sym_override] = ACTIONS(580), - [anon_sym_final] = ACTIONS(580), - [anon_sym_class] = ACTIONS(580), - [anon_sym_interface] = ACTIONS(580), - [anon_sym_typedef] = ACTIONS(580), - [anon_sym_function] = ACTIONS(580), - [anon_sym_var] = ACTIONS(580), - [aux_sym_integer_token1] = ACTIONS(580), - [aux_sym_integer_token2] = ACTIONS(578), - [aux_sym_float_token1] = ACTIONS(580), - [aux_sym_float_token2] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [aux_sym_string_token1] = ACTIONS(578), - [aux_sym_string_token3] = ACTIONS(578), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(578), + [sym__rhs_expression] = STATE(1273), + [sym__unaryExpression] = STATE(3580), + [sym_runtime_type_check_expression] = STATE(3580), + [sym_switch_expression] = STATE(3580), + [sym_cast_expression] = STATE(3580), + [sym_type_trace_expression] = STATE(3580), + [sym__parenthesized_expression] = STATE(2614), + [sym_range_expression] = STATE(3580), + [sym_subscript_expression] = STATE(3580), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1273), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2303), + [anon_sym_untyped] = ACTIONS(2305), + [anon_sym_break] = ACTIONS(2307), + [anon_sym_continue] = ACTIONS(2307), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [283] = { - [sym_identifier] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_package] = ACTIONS(1596), - [anon_sym_import] = ACTIONS(1596), - [anon_sym_using] = ACTIONS(1596), - [anon_sym_throw] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_case] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_cast] = ACTIONS(1596), - [anon_sym_DOLLARtype] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_untyped] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_this] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_AT_COLON] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_elseif] = ACTIONS(1598), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_PERCENT] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1598), - [anon_sym_GT_GT] = ACTIONS(1596), - [anon_sym_GT_GT_GT] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1598), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1598), - [anon_sym_EQ_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [anon_sym_QMARK_QMARK] = ACTIONS(1598), - [anon_sym_EQ] = ACTIONS(1596), - [sym__rangeOperator] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_macro] = ACTIONS(1596), - [anon_sym_abstract] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_inline] = ACTIONS(1596), - [anon_sym_overload] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_final] = ACTIONS(1596), - [anon_sym_class] = ACTIONS(1596), - [anon_sym_interface] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1596), - [anon_sym_function] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [aux_sym_integer_token1] = ACTIONS(1596), - [aux_sym_integer_token2] = ACTIONS(1598), - [aux_sym_float_token1] = ACTIONS(1596), - [aux_sym_float_token2] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym_string_token1] = ACTIONS(1598), - [aux_sym_string_token3] = ACTIONS(1598), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1598), + [sym__rhs_expression] = STATE(1274), + [sym__unaryExpression] = STATE(3342), + [sym_runtime_type_check_expression] = STATE(3342), + [sym_switch_expression] = STATE(3342), + [sym_cast_expression] = STATE(3342), + [sym_type_trace_expression] = STATE(3342), + [sym__parenthesized_expression] = STATE(2618), + [sym_range_expression] = STATE(3342), + [sym_subscript_expression] = STATE(3342), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1274), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2309), + [anon_sym_untyped] = ACTIONS(2311), + [anon_sym_break] = ACTIONS(2313), + [anon_sym_continue] = ACTIONS(2313), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [284] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1280), + [sym__unaryExpression] = STATE(3504), + [sym_runtime_type_check_expression] = STATE(3504), + [sym_switch_expression] = STATE(3504), + [sym_cast_expression] = STATE(3504), + [sym_type_trace_expression] = STATE(3504), + [sym__parenthesized_expression] = STATE(2627), + [sym_range_expression] = STATE(3504), + [sym_subscript_expression] = STATE(3504), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1280), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2315), + [anon_sym_untyped] = ACTIONS(2317), + [anon_sym_break] = ACTIONS(2319), + [anon_sym_continue] = ACTIONS(2319), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [285] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1604), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1526), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1284), + [sym__unaryExpression] = STATE(3577), + [sym_runtime_type_check_expression] = STATE(3577), + [sym_switch_expression] = STATE(3577), + [sym_cast_expression] = STATE(3577), + [sym_type_trace_expression] = STATE(3577), + [sym__parenthesized_expression] = STATE(2631), + [sym_range_expression] = STATE(3577), + [sym_subscript_expression] = STATE(3577), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1284), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2321), + [anon_sym_untyped] = ACTIONS(2323), + [anon_sym_break] = ACTIONS(2325), + [anon_sym_continue] = ACTIONS(2325), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [286] = { - [sym_identifier] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_package] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_using] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_case] = ACTIONS(1520), - [anon_sym_default] = ACTIONS(1520), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_this] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AT_COLON] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_else] = ACTIONS(1520), - [anon_sym_elseif] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_GT_GT_GT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [sym__rangeOperator] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [aux_sym_integer_token1] = ACTIONS(1520), - [aux_sym_integer_token2] = ACTIONS(1518), - [aux_sym_float_token1] = ACTIONS(1520), - [aux_sym_float_token2] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), - [aux_sym_string_token3] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1518), + [sym__rhs_expression] = STATE(1290), + [sym__unaryExpression] = STATE(3603), + [sym_runtime_type_check_expression] = STATE(3603), + [sym_switch_expression] = STATE(3603), + [sym_cast_expression] = STATE(3603), + [sym_type_trace_expression] = STATE(3603), + [sym__parenthesized_expression] = STATE(2634), + [sym_range_expression] = STATE(3603), + [sym_subscript_expression] = STATE(3603), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1290), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2327), + [anon_sym_untyped] = ACTIONS(2329), + [anon_sym_break] = ACTIONS(2331), + [anon_sym_continue] = ACTIONS(2331), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [287] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1608), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1291), + [sym__unaryExpression] = STATE(3639), + [sym_runtime_type_check_expression] = STATE(3639), + [sym_switch_expression] = STATE(3639), + [sym_cast_expression] = STATE(3639), + [sym_type_trace_expression] = STATE(3639), + [sym__parenthesized_expression] = STATE(2638), + [sym_range_expression] = STATE(3639), + [sym_subscript_expression] = STATE(3639), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1291), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2333), + [anon_sym_untyped] = ACTIONS(2335), + [anon_sym_break] = ACTIONS(2337), + [anon_sym_continue] = ACTIONS(2337), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [288] = { - [sym_identifier] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_package] = ACTIONS(1590), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_using] = ACTIONS(1590), - [anon_sym_throw] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_case] = ACTIONS(1590), - [anon_sym_default] = ACTIONS(1590), - [anon_sym_cast] = ACTIONS(1590), - [anon_sym_DOLLARtype] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_this] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_AT_COLON] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_else] = ACTIONS(1590), - [anon_sym_elseif] = ACTIONS(1592), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1592), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym_PLUS] = ACTIONS(1590), - [anon_sym_LT_LT] = ACTIONS(1592), - [anon_sym_GT_GT] = ACTIONS(1590), - [anon_sym_GT_GT_GT] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1592), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_LT_EQ] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_GT_EQ] = ACTIONS(1592), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_QMARK_QMARK] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1590), - [sym__rangeOperator] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_macro] = ACTIONS(1590), - [anon_sym_abstract] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_private] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_overload] = ACTIONS(1590), - [anon_sym_override] = ACTIONS(1590), - [anon_sym_final] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_interface] = ACTIONS(1590), - [anon_sym_typedef] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(1590), - [anon_sym_var] = ACTIONS(1590), - [aux_sym_integer_token1] = ACTIONS(1590), - [aux_sym_integer_token2] = ACTIONS(1592), - [aux_sym_float_token1] = ACTIONS(1590), - [aux_sym_float_token2] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [aux_sym_string_token1] = ACTIONS(1592), - [aux_sym_string_token3] = ACTIONS(1592), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1592), + [sym__rhs_expression] = STATE(1297), + [sym__unaryExpression] = STATE(3698), + [sym_runtime_type_check_expression] = STATE(3698), + [sym_switch_expression] = STATE(3698), + [sym_cast_expression] = STATE(3698), + [sym_type_trace_expression] = STATE(3698), + [sym__parenthesized_expression] = STATE(2645), + [sym_range_expression] = STATE(3698), + [sym_subscript_expression] = STATE(3698), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1297), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2339), + [anon_sym_untyped] = ACTIONS(2341), + [anon_sym_break] = ACTIONS(2343), + [anon_sym_continue] = ACTIONS(2343), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [289] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_in] = ACTIONS(1610), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1614), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1608), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1300), + [sym__unaryExpression] = STATE(3470), + [sym_runtime_type_check_expression] = STATE(3470), + [sym_switch_expression] = STATE(3470), + [sym_cast_expression] = STATE(3470), + [sym_type_trace_expression] = STATE(3470), + [sym__parenthesized_expression] = STATE(2647), + [sym_range_expression] = STATE(3470), + [sym_subscript_expression] = STATE(3470), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1300), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2345), + [anon_sym_untyped] = ACTIONS(2347), + [anon_sym_break] = ACTIONS(2349), + [anon_sym_continue] = ACTIONS(2349), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [290] = { - [sym_block] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(1616), - [sym_identifier] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_package] = ACTIONS(1618), - [anon_sym_import] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_throw] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1620), - [anon_sym_cast] = ACTIONS(1618), - [anon_sym_DOLLARtype] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_untyped] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_this] = ACTIONS(1618), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_AT_COLON] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_else] = ACTIONS(1622), - [anon_sym_elseif] = ACTIONS(1624), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1616), - [anon_sym_PERCENT] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PLUS] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1616), - [anon_sym_GT_GT] = ACTIONS(1618), - [anon_sym_GT_GT_GT] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_CARET] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1616), - [anon_sym_PIPE_PIPE] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1616), - [anon_sym_BANG_EQ] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_EQ] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_GT_EQ] = ACTIONS(1616), - [anon_sym_EQ_GT] = ACTIONS(1616), - [anon_sym_QMARK_QMARK] = ACTIONS(1616), - [anon_sym_EQ] = ACTIONS(1618), - [sym__rangeOperator] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_macro] = ACTIONS(1618), - [anon_sym_abstract] = ACTIONS(1618), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_inline] = ACTIONS(1618), - [anon_sym_overload] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_final] = ACTIONS(1618), - [anon_sym_class] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_typedef] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(1618), - [anon_sym_var] = ACTIONS(1618), - [aux_sym_integer_token1] = ACTIONS(1618), - [aux_sym_integer_token2] = ACTIONS(1616), - [aux_sym_float_token1] = ACTIONS(1618), - [aux_sym_float_token2] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [aux_sym_string_token1] = ACTIONS(1616), - [aux_sym_string_token3] = ACTIONS(1616), + [sym__rhs_expression] = STATE(1301), + [sym__unaryExpression] = STATE(3451), + [sym_runtime_type_check_expression] = STATE(3451), + [sym_switch_expression] = STATE(3451), + [sym_cast_expression] = STATE(3451), + [sym_type_trace_expression] = STATE(3451), + [sym__parenthesized_expression] = STATE(2649), + [sym_range_expression] = STATE(3451), + [sym_subscript_expression] = STATE(3451), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1301), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2351), + [anon_sym_untyped] = ACTIONS(2353), + [anon_sym_break] = ACTIONS(2355), + [anon_sym_continue] = ACTIONS(2355), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [291] = { - [ts_builtin_sym_end] = ACTIONS(1392), - [sym_identifier] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_package] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_import] = ACTIONS(1394), - [anon_sym_using] = ACTIONS(1394), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_RPAREN] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_cast] = ACTIONS(1394), - [anon_sym_DOLLARtype] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_untyped] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_this] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_AT_COLON] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_new] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_EQ_GT] = ACTIONS(1392), - [anon_sym_QMARK_QMARK] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1394), - [sym__rangeOperator] = ACTIONS(1392), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_macro] = ACTIONS(1394), - [anon_sym_abstract] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_overload] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_final] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1394), - [anon_sym_interface] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_function] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [aux_sym_integer_token1] = ACTIONS(1394), - [aux_sym_integer_token2] = ACTIONS(1392), - [aux_sym_float_token1] = ACTIONS(1394), - [aux_sym_float_token2] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [aux_sym_string_token1] = ACTIONS(1392), - [aux_sym_string_token3] = ACTIONS(1392), + [sym__rhs_expression] = STATE(1309), + [sym__unaryExpression] = STATE(3354), + [sym_runtime_type_check_expression] = STATE(3354), + [sym_switch_expression] = STATE(3354), + [sym_cast_expression] = STATE(3354), + [sym_type_trace_expression] = STATE(3354), + [sym__parenthesized_expression] = STATE(2651), + [sym_range_expression] = STATE(3354), + [sym_subscript_expression] = STATE(3354), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1309), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2357), + [anon_sym_untyped] = ACTIONS(2359), + [anon_sym_break] = ACTIONS(2361), + [anon_sym_continue] = ACTIONS(2361), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [292] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_package] = ACTIONS(1520), - [anon_sym_DOT] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_using] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_this] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AT_COLON] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_GT_GT_GT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [sym__rangeOperator] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [aux_sym_integer_token1] = ACTIONS(1520), - [aux_sym_integer_token2] = ACTIONS(1518), - [aux_sym_float_token1] = ACTIONS(1520), - [aux_sym_float_token2] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), - [aux_sym_string_token3] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1518), + [sym__rhs_expression] = STATE(1137), + [sym__unaryExpression] = STATE(3650), + [sym_runtime_type_check_expression] = STATE(3650), + [sym_switch_expression] = STATE(3650), + [sym_cast_expression] = STATE(3650), + [sym_type_trace_expression] = STATE(3650), + [sym__parenthesized_expression] = STATE(2641), + [sym_range_expression] = STATE(3650), + [sym_subscript_expression] = STATE(3650), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1137), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2363), + [anon_sym_untyped] = ACTIONS(2365), + [anon_sym_break] = ACTIONS(2367), + [anon_sym_continue] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [293] = { - [ts_builtin_sym_end] = ACTIONS(1528), - [sym_identifier] = ACTIONS(1530), - [anon_sym_POUND] = ACTIONS(1528), - [anon_sym_package] = ACTIONS(1530), - [anon_sym_DOT] = ACTIONS(1530), - [anon_sym_import] = ACTIONS(1530), - [anon_sym_using] = ACTIONS(1530), - [anon_sym_throw] = ACTIONS(1530), - [anon_sym_LPAREN] = ACTIONS(1528), - [anon_sym_switch] = ACTIONS(1530), - [anon_sym_LBRACE] = ACTIONS(1528), - [anon_sym_cast] = ACTIONS(1530), - [anon_sym_DOLLARtype] = ACTIONS(1528), - [anon_sym_return] = ACTIONS(1530), - [anon_sym_untyped] = ACTIONS(1530), - [anon_sym_break] = ACTIONS(1530), - [anon_sym_continue] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1528), - [anon_sym_this] = ACTIONS(1530), - [anon_sym_QMARK] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(1530), - [anon_sym_AT_COLON] = ACTIONS(1528), - [anon_sym_if] = ACTIONS(1530), - [anon_sym_new] = ACTIONS(1530), - [anon_sym_TILDE] = ACTIONS(1528), - [anon_sym_BANG] = ACTIONS(1530), - [anon_sym_DASH] = ACTIONS(1530), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_PERCENT] = ACTIONS(1528), - [anon_sym_STAR] = ACTIONS(1528), - [anon_sym_SLASH] = ACTIONS(1530), - [anon_sym_PLUS] = ACTIONS(1530), - [anon_sym_LT_LT] = ACTIONS(1528), - [anon_sym_GT_GT] = ACTIONS(1530), - [anon_sym_GT_GT_GT] = ACTIONS(1528), - [anon_sym_AMP] = ACTIONS(1530), - [anon_sym_PIPE] = ACTIONS(1530), - [anon_sym_CARET] = ACTIONS(1528), - [anon_sym_AMP_AMP] = ACTIONS(1528), - [anon_sym_PIPE_PIPE] = ACTIONS(1528), - [anon_sym_EQ_EQ] = ACTIONS(1528), - [anon_sym_BANG_EQ] = ACTIONS(1528), - [anon_sym_LT] = ACTIONS(1530), - [anon_sym_LT_EQ] = ACTIONS(1528), - [anon_sym_GT] = ACTIONS(1530), - [anon_sym_GT_EQ] = ACTIONS(1528), - [anon_sym_EQ_GT] = ACTIONS(1528), - [anon_sym_QMARK_QMARK] = ACTIONS(1528), - [anon_sym_EQ] = ACTIONS(1530), - [sym__rangeOperator] = ACTIONS(1528), - [anon_sym_null] = ACTIONS(1530), - [anon_sym_macro] = ACTIONS(1530), - [anon_sym_abstract] = ACTIONS(1530), - [anon_sym_static] = ACTIONS(1530), - [anon_sym_public] = ACTIONS(1530), - [anon_sym_private] = ACTIONS(1530), - [anon_sym_extern] = ACTIONS(1530), - [anon_sym_inline] = ACTIONS(1530), - [anon_sym_overload] = ACTIONS(1530), - [anon_sym_override] = ACTIONS(1530), - [anon_sym_final] = ACTIONS(1530), - [anon_sym_class] = ACTIONS(1530), - [anon_sym_interface] = ACTIONS(1530), - [anon_sym_typedef] = ACTIONS(1530), - [anon_sym_function] = ACTIONS(1530), - [anon_sym_var] = ACTIONS(1530), - [aux_sym_integer_token1] = ACTIONS(1530), - [aux_sym_integer_token2] = ACTIONS(1528), - [aux_sym_float_token1] = ACTIONS(1530), - [aux_sym_float_token2] = ACTIONS(1528), - [anon_sym_true] = ACTIONS(1530), - [anon_sym_false] = ACTIONS(1530), - [aux_sym_string_token1] = ACTIONS(1528), - [aux_sym_string_token3] = ACTIONS(1528), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1528), + [sym__rhs_expression] = STATE(1337), + [sym__unaryExpression] = STATE(3371), + [sym_runtime_type_check_expression] = STATE(3371), + [sym_switch_expression] = STATE(3371), + [sym_cast_expression] = STATE(3371), + [sym_type_trace_expression] = STATE(3371), + [sym__parenthesized_expression] = STATE(2755), + [sym_range_expression] = STATE(3371), + [sym_subscript_expression] = STATE(3371), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1337), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2369), + [anon_sym_untyped] = ACTIONS(2371), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [294] = { - [ts_builtin_sym_end] = ACTIONS(1464), - [sym_identifier] = ACTIONS(1466), - [anon_sym_POUND] = ACTIONS(1464), - [anon_sym_package] = ACTIONS(1466), - [anon_sym_DOT] = ACTIONS(1466), - [anon_sym_import] = ACTIONS(1466), - [anon_sym_using] = ACTIONS(1466), - [anon_sym_throw] = ACTIONS(1466), - [anon_sym_LPAREN] = ACTIONS(1464), - [anon_sym_switch] = ACTIONS(1466), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_cast] = ACTIONS(1466), - [anon_sym_DOLLARtype] = ACTIONS(1464), - [anon_sym_return] = ACTIONS(1466), - [anon_sym_untyped] = ACTIONS(1466), - [anon_sym_break] = ACTIONS(1466), - [anon_sym_continue] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_this] = ACTIONS(1466), - [anon_sym_QMARK] = ACTIONS(1466), - [anon_sym_AT] = ACTIONS(1466), - [anon_sym_AT_COLON] = ACTIONS(1464), - [anon_sym_if] = ACTIONS(1466), - [anon_sym_new] = ACTIONS(1466), - [anon_sym_TILDE] = ACTIONS(1464), - [anon_sym_BANG] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_PLUS_PLUS] = ACTIONS(1464), - [anon_sym_DASH_DASH] = ACTIONS(1464), - [anon_sym_PERCENT] = ACTIONS(1464), - [anon_sym_STAR] = ACTIONS(1464), - [anon_sym_SLASH] = ACTIONS(1466), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_LT_LT] = ACTIONS(1464), - [anon_sym_GT_GT] = ACTIONS(1466), - [anon_sym_GT_GT_GT] = ACTIONS(1464), - [anon_sym_AMP] = ACTIONS(1466), - [anon_sym_PIPE] = ACTIONS(1466), - [anon_sym_CARET] = ACTIONS(1464), - [anon_sym_AMP_AMP] = ACTIONS(1464), - [anon_sym_PIPE_PIPE] = ACTIONS(1464), - [anon_sym_EQ_EQ] = ACTIONS(1464), - [anon_sym_BANG_EQ] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(1466), - [anon_sym_LT_EQ] = ACTIONS(1464), - [anon_sym_GT] = ACTIONS(1466), - [anon_sym_GT_EQ] = ACTIONS(1464), - [anon_sym_EQ_GT] = ACTIONS(1464), - [anon_sym_QMARK_QMARK] = ACTIONS(1464), - [anon_sym_EQ] = ACTIONS(1466), - [sym__rangeOperator] = ACTIONS(1464), - [anon_sym_null] = ACTIONS(1466), - [anon_sym_macro] = ACTIONS(1466), - [anon_sym_abstract] = ACTIONS(1466), - [anon_sym_static] = ACTIONS(1466), - [anon_sym_public] = ACTIONS(1466), - [anon_sym_private] = ACTIONS(1466), - [anon_sym_extern] = ACTIONS(1466), - [anon_sym_inline] = ACTIONS(1466), - [anon_sym_overload] = ACTIONS(1466), - [anon_sym_override] = ACTIONS(1466), - [anon_sym_final] = ACTIONS(1466), - [anon_sym_class] = ACTIONS(1466), - [anon_sym_interface] = ACTIONS(1466), - [anon_sym_typedef] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(1466), - [anon_sym_var] = ACTIONS(1466), - [aux_sym_integer_token1] = ACTIONS(1466), - [aux_sym_integer_token2] = ACTIONS(1464), - [aux_sym_float_token1] = ACTIONS(1466), - [aux_sym_float_token2] = ACTIONS(1464), - [anon_sym_true] = ACTIONS(1466), - [anon_sym_false] = ACTIONS(1466), - [aux_sym_string_token1] = ACTIONS(1464), - [aux_sym_string_token3] = ACTIONS(1464), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1464), + [sym__rhs_expression] = STATE(1152), + [sym__unaryExpression] = STATE(3379), + [sym_runtime_type_check_expression] = STATE(3379), + [sym_switch_expression] = STATE(3379), + [sym_cast_expression] = STATE(3379), + [sym_type_trace_expression] = STATE(3379), + [sym__parenthesized_expression] = STATE(2676), + [sym_range_expression] = STATE(3379), + [sym_subscript_expression] = STATE(3379), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1152), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2375), + [anon_sym_untyped] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2379), + [anon_sym_continue] = ACTIONS(2379), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [295] = { - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_package] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_RPAREN] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_cast] = ACTIONS(1402), - [anon_sym_DOLLARtype] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_untyped] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_this] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_AT_COLON] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_GT] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [sym__rangeOperator] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_macro] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_overload] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_final] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [aux_sym_integer_token1] = ACTIONS(1402), - [aux_sym_integer_token2] = ACTIONS(1400), - [aux_sym_float_token1] = ACTIONS(1402), - [aux_sym_float_token2] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [aux_sym_string_token1] = ACTIONS(1400), - [aux_sym_string_token3] = ACTIONS(1400), + [sym__rhs_expression] = STATE(983), + [sym__unaryExpression] = STATE(381), + [sym_runtime_type_check_expression] = STATE(381), + [sym_switch_expression] = STATE(381), + [sym_cast_expression] = STATE(381), + [sym_type_trace_expression] = STATE(381), + [sym__parenthesized_expression] = STATE(259), + [sym_range_expression] = STATE(381), + [sym_subscript_expression] = STATE(381), + [sym_member_expression] = STATE(379), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(983), + [sym_operator] = STATE(1929), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1400), + [sym_integer] = STATE(327), + [sym_float] = STATE(1400), + [sym_bool] = STATE(1400), + [sym_string] = STATE(1378), + [sym_null] = STATE(1400), + [sym_array] = STATE(1400), + [sym_map] = STATE(1400), + [sym_object] = STATE(1400), + [sym_pair] = STATE(1400), + [sym_identifier] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(2383), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_untyped] = ACTIONS(2387), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [296] = { - [sym_identifier] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_package] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_using] = ACTIONS(1626), - [anon_sym_throw] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_cast] = ACTIONS(1626), - [anon_sym_DOLLARtype] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_untyped] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_this] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AT_COLON] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [anon_sym_PERCENT] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1628), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_GT_GT_GT] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1628), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1628), - [anon_sym_BANG_EQ] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_EQ] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1628), - [anon_sym_EQ_GT] = ACTIONS(1628), - [anon_sym_QMARK_QMARK] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(1626), - [sym__rangeOperator] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1626), - [anon_sym_macro] = ACTIONS(1626), - [anon_sym_abstract] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_public] = ACTIONS(1626), - [anon_sym_private] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_inline] = ACTIONS(1626), - [anon_sym_overload] = ACTIONS(1626), - [anon_sym_override] = ACTIONS(1626), - [anon_sym_final] = ACTIONS(1626), - [anon_sym_class] = ACTIONS(1626), - [anon_sym_interface] = ACTIONS(1626), - [anon_sym_typedef] = ACTIONS(1626), - [anon_sym_function] = ACTIONS(1626), - [anon_sym_var] = ACTIONS(1626), - [aux_sym_integer_token1] = ACTIONS(1626), - [aux_sym_integer_token2] = ACTIONS(1628), - [aux_sym_float_token1] = ACTIONS(1626), - [aux_sym_float_token2] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym_string_token1] = ACTIONS(1628), - [aux_sym_string_token3] = ACTIONS(1628), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1628), + [sym__rhs_expression] = STATE(1174), + [sym__unaryExpression] = STATE(3500), + [sym_runtime_type_check_expression] = STATE(3500), + [sym_switch_expression] = STATE(3500), + [sym_cast_expression] = STATE(3500), + [sym_type_trace_expression] = STATE(3500), + [sym__parenthesized_expression] = STATE(2653), + [sym_range_expression] = STATE(3500), + [sym_subscript_expression] = STATE(3500), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1174), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_untyped] = ACTIONS(2391), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [297] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1606), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1055), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1055), + [sym_operator] = STATE(1932), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2395), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_untyped] = ACTIONS(2399), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [298] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1522), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1526), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), + [sym__rhs_expression] = STATE(1074), + [sym__unaryExpression] = STATE(1774), + [sym_runtime_type_check_expression] = STATE(1774), + [sym_switch_expression] = STATE(1774), + [sym_cast_expression] = STATE(1774), + [sym_type_trace_expression] = STATE(1774), + [sym__parenthesized_expression] = STATE(1555), + [sym_range_expression] = STATE(1774), + [sym_subscript_expression] = STATE(1774), + [sym_member_expression] = STATE(1563), + [sym__lhs_expression] = STATE(2822), + [sym__call] = STATE(2000), + [sym__constructor_call] = STATE(2023), + [sym_call_expression] = STATE(1074), + [sym_operator] = STATE(1992), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1948), + [sym_integer] = STATE(1662), + [sym_float] = STATE(1948), + [sym_bool] = STATE(1948), + [sym_string] = STATE(1609), + [sym_null] = STATE(1948), + [sym_array] = STATE(1948), + [sym_map] = STATE(1948), + [sym_object] = STATE(1948), + [sym_pair] = STATE(1948), + [sym_identifier] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2007), + [anon_sym_switch] = ACTIONS(2009), + [anon_sym_LBRACE] = ACTIONS(2011), + [anon_sym_cast] = ACTIONS(2401), + [anon_sym_DOLLARtype] = ACTIONS(2015), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_untyped] = ACTIONS(2405), + [anon_sym_break] = ACTIONS(2021), + [anon_sym_continue] = ACTIONS(2021), + [anon_sym_LBRACK] = ACTIONS(2023), + [anon_sym_this] = ACTIONS(2117), + [anon_sym_new] = ACTIONS(2027), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(2029), + [aux_sym_integer_token1] = ACTIONS(2031), + [aux_sym_integer_token2] = ACTIONS(2033), + [aux_sym_float_token1] = ACTIONS(2035), + [aux_sym_float_token2] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2039), + [anon_sym_false] = ACTIONS(2039), + [aux_sym_string_token1] = ACTIONS(2041), + [aux_sym_string_token3] = ACTIONS(2043), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [299] = { - [ts_builtin_sym_end] = ACTIONS(1404), - [sym_identifier] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_package] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_using] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_cast] = ACTIONS(1406), - [anon_sym_DOLLARtype] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_untyped] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_this] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_AT_COLON] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1406), - [anon_sym_GT_GT_GT] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1404), - [anon_sym_BANG_EQ] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_EQ_GT] = ACTIONS(1404), - [anon_sym_QMARK_QMARK] = ACTIONS(1404), - [anon_sym_EQ] = ACTIONS(1406), - [sym__rangeOperator] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_macro] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_overload] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_final] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_interface] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [aux_sym_integer_token1] = ACTIONS(1406), - [aux_sym_integer_token2] = ACTIONS(1404), - [aux_sym_float_token1] = ACTIONS(1406), - [aux_sym_float_token2] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym_string_token1] = ACTIONS(1404), - [aux_sym_string_token3] = ACTIONS(1404), + [sym__rhs_expression] = STATE(979), + [sym__unaryExpression] = STATE(381), + [sym_runtime_type_check_expression] = STATE(381), + [sym_switch_expression] = STATE(381), + [sym_cast_expression] = STATE(381), + [sym_type_trace_expression] = STATE(381), + [sym__parenthesized_expression] = STATE(259), + [sym_range_expression] = STATE(381), + [sym_subscript_expression] = STATE(381), + [sym_member_expression] = STATE(379), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(979), + [sym_operator] = STATE(2009), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1400), + [sym_integer] = STATE(327), + [sym_float] = STATE(1400), + [sym_bool] = STATE(1400), + [sym_string] = STATE(1378), + [sym_null] = STATE(1400), + [sym_array] = STATE(1400), + [sym_map] = STATE(1400), + [sym_object] = STATE(1400), + [sym_pair] = STATE(1400), + [sym_identifier] = ACTIONS(2381), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(2407), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(2409), + [anon_sym_untyped] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(1550), + [anon_sym_continue] = ACTIONS(1550), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [300] = { - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_package] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_import] = ACTIONS(1398), - [anon_sym_using] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_cast] = ACTIONS(1398), - [anon_sym_DOLLARtype] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_untyped] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_this] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_AT_COLON] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_EQ_GT] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1398), - [sym__rangeOperator] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_macro] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_public] = ACTIONS(1398), - [anon_sym_private] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_overload] = ACTIONS(1398), - [anon_sym_override] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_interface] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [aux_sym_integer_token1] = ACTIONS(1398), - [aux_sym_integer_token2] = ACTIONS(1396), - [aux_sym_float_token1] = ACTIONS(1398), - [aux_sym_float_token2] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [aux_sym_string_token1] = ACTIONS(1396), - [aux_sym_string_token3] = ACTIONS(1396), + [sym__rhs_expression] = STATE(1162), + [sym__unaryExpression] = STATE(3545), + [sym_runtime_type_check_expression] = STATE(3545), + [sym_switch_expression] = STATE(3545), + [sym_cast_expression] = STATE(3545), + [sym_type_trace_expression] = STATE(3545), + [sym__parenthesized_expression] = STATE(2792), + [sym_range_expression] = STATE(3545), + [sym_subscript_expression] = STATE(3545), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1162), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2413), + [anon_sym_untyped] = ACTIONS(2415), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [301] = { - [ts_builtin_sym_end] = ACTIONS(1412), - [sym_identifier] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1412), - [anon_sym_package] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1414), - [anon_sym_import] = ACTIONS(1414), - [anon_sym_using] = ACTIONS(1414), - [anon_sym_throw] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1412), - [anon_sym_switch] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_cast] = ACTIONS(1414), - [anon_sym_DOLLARtype] = ACTIONS(1412), - [anon_sym_return] = ACTIONS(1414), - [anon_sym_untyped] = ACTIONS(1414), - [anon_sym_break] = ACTIONS(1414), - [anon_sym_continue] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1412), - [anon_sym_this] = ACTIONS(1414), - [anon_sym_QMARK] = ACTIONS(1414), - [anon_sym_AT] = ACTIONS(1414), - [anon_sym_AT_COLON] = ACTIONS(1412), - [anon_sym_if] = ACTIONS(1414), - [anon_sym_new] = ACTIONS(1414), - [anon_sym_TILDE] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1414), - [anon_sym_DASH] = ACTIONS(1414), - [anon_sym_PLUS_PLUS] = ACTIONS(1412), - [anon_sym_DASH_DASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1414), - [anon_sym_GT_GT_GT] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1414), - [anon_sym_PIPE] = ACTIONS(1414), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1412), - [anon_sym_PIPE_PIPE] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1412), - [anon_sym_BANG_EQ] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1412), - [anon_sym_GT] = ACTIONS(1414), - [anon_sym_GT_EQ] = ACTIONS(1412), - [anon_sym_EQ_GT] = ACTIONS(1412), - [anon_sym_QMARK_QMARK] = ACTIONS(1412), - [anon_sym_EQ] = ACTIONS(1414), - [sym__rangeOperator] = ACTIONS(1412), - [anon_sym_null] = ACTIONS(1414), - [anon_sym_macro] = ACTIONS(1414), - [anon_sym_abstract] = ACTIONS(1414), - [anon_sym_static] = ACTIONS(1414), - [anon_sym_public] = ACTIONS(1414), - [anon_sym_private] = ACTIONS(1414), - [anon_sym_extern] = ACTIONS(1414), - [anon_sym_inline] = ACTIONS(1414), - [anon_sym_overload] = ACTIONS(1414), - [anon_sym_override] = ACTIONS(1414), - [anon_sym_final] = ACTIONS(1414), - [anon_sym_class] = ACTIONS(1414), - [anon_sym_interface] = ACTIONS(1414), - [anon_sym_typedef] = ACTIONS(1414), - [anon_sym_function] = ACTIONS(1414), - [anon_sym_var] = ACTIONS(1414), - [aux_sym_integer_token1] = ACTIONS(1414), - [aux_sym_integer_token2] = ACTIONS(1412), - [aux_sym_float_token1] = ACTIONS(1414), - [aux_sym_float_token2] = ACTIONS(1412), - [anon_sym_true] = ACTIONS(1414), - [anon_sym_false] = ACTIONS(1414), - [aux_sym_string_token1] = ACTIONS(1412), - [aux_sym_string_token3] = ACTIONS(1412), + [sym__rhs_expression] = STATE(1238), + [sym__unaryExpression] = STATE(3693), + [sym_runtime_type_check_expression] = STATE(3693), + [sym_switch_expression] = STATE(3693), + [sym_cast_expression] = STATE(3693), + [sym_type_trace_expression] = STATE(3693), + [sym__parenthesized_expression] = STATE(2830), + [sym_range_expression] = STATE(3693), + [sym_subscript_expression] = STATE(3693), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1238), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2419), + [anon_sym_untyped] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2423), + [anon_sym_continue] = ACTIONS(2423), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1412), [sym__closing_brace_unmarker] = ACTIONS(3), }, [302] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1588), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1608), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym_identifier] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_cast] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_DOLLARtype] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_untyped] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_QMARK] = ACTIONS(1947), + [anon_sym_AT] = ACTIONS(1947), + [anon_sym_AT_COLON] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_EQ_GT] = ACTIONS(1945), + [anon_sym_QMARK_QMARK] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_macro] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym_overload] = ACTIONS(1947), + [anon_sym_override] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_interface] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_var] = ACTIONS(1947), + [aux_sym_integer_token1] = ACTIONS(1947), + [aux_sym_integer_token2] = ACTIONS(1945), + [aux_sym_float_token1] = ACTIONS(1947), + [aux_sym_float_token2] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym_string_token1] = ACTIONS(1945), + [aux_sym_string_token3] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1945), + [sym__closing_brace_marker] = ACTIONS(1945), [sym__closing_brace_unmarker] = ACTIONS(3), }, [303] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_package] = ACTIONS(1590), - [anon_sym_DOT] = ACTIONS(1546), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_using] = ACTIONS(1590), - [anon_sym_throw] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_cast] = ACTIONS(1590), - [anon_sym_DOLLARtype] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_this] = ACTIONS(1590), - [anon_sym_QMARK] = ACTIONS(1546), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_AT_COLON] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1544), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_DASH] = ACTIONS(1546), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [anon_sym_PERCENT] = ACTIONS(1544), - [anon_sym_STAR] = ACTIONS(1544), - [anon_sym_SLASH] = ACTIONS(1546), - [anon_sym_PLUS] = ACTIONS(1546), - [anon_sym_LT_LT] = ACTIONS(1544), - [anon_sym_GT_GT] = ACTIONS(1546), - [anon_sym_GT_GT_GT] = ACTIONS(1544), - [anon_sym_AMP] = ACTIONS(1546), - [anon_sym_PIPE] = ACTIONS(1546), - [anon_sym_CARET] = ACTIONS(1544), - [anon_sym_AMP_AMP] = ACTIONS(1544), - [anon_sym_PIPE_PIPE] = ACTIONS(1544), - [anon_sym_EQ_EQ] = ACTIONS(1544), - [anon_sym_BANG_EQ] = ACTIONS(1544), - [anon_sym_LT] = ACTIONS(1546), - [anon_sym_LT_EQ] = ACTIONS(1544), - [anon_sym_GT] = ACTIONS(1546), - [anon_sym_GT_EQ] = ACTIONS(1544), - [anon_sym_EQ_GT] = ACTIONS(1544), - [anon_sym_QMARK_QMARK] = ACTIONS(1544), - [anon_sym_EQ] = ACTIONS(1546), - [sym__rangeOperator] = ACTIONS(1544), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_macro] = ACTIONS(1590), - [anon_sym_abstract] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_private] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_overload] = ACTIONS(1590), - [anon_sym_override] = ACTIONS(1590), - [anon_sym_final] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_interface] = ACTIONS(1590), - [anon_sym_typedef] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(1590), - [anon_sym_var] = ACTIONS(1590), - [aux_sym_integer_token1] = ACTIONS(1590), - [aux_sym_integer_token2] = ACTIONS(1592), - [aux_sym_float_token1] = ACTIONS(1590), - [aux_sym_float_token2] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [aux_sym_string_token1] = ACTIONS(1592), - [aux_sym_string_token3] = ACTIONS(1592), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(1544), + [sym_identifier] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_package] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_COLON] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_cast] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_DOLLARtype] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_untyped] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_this] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_AT_COLON] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_EQ_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_null] = ACTIONS(1755), + [anon_sym_macro] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_overload] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_final] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_typedef] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [aux_sym_integer_token1] = ACTIONS(1755), + [aux_sym_integer_token2] = ACTIONS(1753), + [aux_sym_float_token1] = ACTIONS(1755), + [aux_sym_float_token2] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1753), + [aux_sym_string_token3] = ACTIONS(1753), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1753), [sym__closing_brace_unmarker] = ACTIONS(3), }, [304] = { - [ts_builtin_sym_end] = ACTIONS(1628), - [sym_identifier] = ACTIONS(1626), - [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_package] = ACTIONS(1626), - [anon_sym_DOT] = ACTIONS(1626), - [anon_sym_import] = ACTIONS(1626), - [anon_sym_using] = ACTIONS(1626), - [anon_sym_throw] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_switch] = ACTIONS(1626), - [anon_sym_LBRACE] = ACTIONS(1628), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_cast] = ACTIONS(1626), - [anon_sym_DOLLARtype] = ACTIONS(1628), - [anon_sym_return] = ACTIONS(1626), - [anon_sym_untyped] = ACTIONS(1626), - [anon_sym_break] = ACTIONS(1626), - [anon_sym_continue] = ACTIONS(1626), - [anon_sym_LBRACK] = ACTIONS(1628), - [anon_sym_this] = ACTIONS(1626), - [anon_sym_QMARK] = ACTIONS(1626), - [anon_sym_AT] = ACTIONS(1626), - [anon_sym_AT_COLON] = ACTIONS(1628), - [anon_sym_if] = ACTIONS(1626), - [anon_sym_new] = ACTIONS(1626), - [anon_sym_TILDE] = ACTIONS(1628), - [anon_sym_BANG] = ACTIONS(1626), - [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_PLUS_PLUS] = ACTIONS(1628), - [anon_sym_DASH_DASH] = ACTIONS(1628), - [anon_sym_PERCENT] = ACTIONS(1628), - [anon_sym_STAR] = ACTIONS(1628), - [anon_sym_SLASH] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1626), - [anon_sym_LT_LT] = ACTIONS(1628), - [anon_sym_GT_GT] = ACTIONS(1626), - [anon_sym_GT_GT_GT] = ACTIONS(1628), - [anon_sym_AMP] = ACTIONS(1626), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_CARET] = ACTIONS(1628), - [anon_sym_AMP_AMP] = ACTIONS(1628), - [anon_sym_PIPE_PIPE] = ACTIONS(1628), - [anon_sym_EQ_EQ] = ACTIONS(1628), - [anon_sym_BANG_EQ] = ACTIONS(1628), - [anon_sym_LT] = ACTIONS(1626), - [anon_sym_LT_EQ] = ACTIONS(1628), - [anon_sym_GT] = ACTIONS(1626), - [anon_sym_GT_EQ] = ACTIONS(1628), - [anon_sym_EQ_GT] = ACTIONS(1628), - [anon_sym_QMARK_QMARK] = ACTIONS(1628), - [anon_sym_EQ] = ACTIONS(1626), - [sym__rangeOperator] = ACTIONS(1628), - [anon_sym_null] = ACTIONS(1626), - [anon_sym_macro] = ACTIONS(1626), - [anon_sym_abstract] = ACTIONS(1626), - [anon_sym_static] = ACTIONS(1626), - [anon_sym_public] = ACTIONS(1626), - [anon_sym_private] = ACTIONS(1626), - [anon_sym_extern] = ACTIONS(1626), - [anon_sym_inline] = ACTIONS(1626), - [anon_sym_overload] = ACTIONS(1626), - [anon_sym_override] = ACTIONS(1626), - [anon_sym_final] = ACTIONS(1626), - [anon_sym_class] = ACTIONS(1626), - [anon_sym_interface] = ACTIONS(1626), - [anon_sym_typedef] = ACTIONS(1626), - [anon_sym_function] = ACTIONS(1626), - [anon_sym_var] = ACTIONS(1626), - [aux_sym_integer_token1] = ACTIONS(1626), - [aux_sym_integer_token2] = ACTIONS(1628), - [aux_sym_float_token1] = ACTIONS(1626), - [aux_sym_float_token2] = ACTIONS(1628), - [anon_sym_true] = ACTIONS(1626), - [anon_sym_false] = ACTIONS(1626), - [aux_sym_string_token1] = ACTIONS(1628), - [aux_sym_string_token3] = ACTIONS(1628), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_package] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_COLON] = ACTIONS(1757), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_cast] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_DOLLARtype] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_untyped] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_this] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_AT_COLON] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_EQ_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_null] = ACTIONS(1755), + [anon_sym_macro] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_overload] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_final] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_typedef] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [aux_sym_integer_token1] = ACTIONS(1755), + [aux_sym_integer_token2] = ACTIONS(1753), + [aux_sym_float_token1] = ACTIONS(1755), + [aux_sym_float_token2] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1753), + [aux_sym_string_token3] = ACTIONS(1753), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1753), [sym__closing_brace_unmarker] = ACTIONS(3), }, [305] = { - [sym_block] = STATE(441), - [sym_identifier] = ACTIONS(1618), - [anon_sym_POUND] = ACTIONS(1616), - [anon_sym_package] = ACTIONS(1618), - [anon_sym_import] = ACTIONS(1618), - [anon_sym_using] = ACTIONS(1618), - [anon_sym_throw] = ACTIONS(1618), - [anon_sym_LPAREN] = ACTIONS(1616), - [anon_sym_switch] = ACTIONS(1618), - [anon_sym_LBRACE] = ACTIONS(1630), - [anon_sym_cast] = ACTIONS(1618), - [anon_sym_DOLLARtype] = ACTIONS(1616), - [anon_sym_return] = ACTIONS(1618), - [anon_sym_untyped] = ACTIONS(1618), - [anon_sym_break] = ACTIONS(1618), - [anon_sym_continue] = ACTIONS(1618), - [anon_sym_LBRACK] = ACTIONS(1616), - [anon_sym_this] = ACTIONS(1618), - [anon_sym_AT] = ACTIONS(1618), - [anon_sym_AT_COLON] = ACTIONS(1616), - [anon_sym_if] = ACTIONS(1618), - [anon_sym_else] = ACTIONS(1632), - [anon_sym_elseif] = ACTIONS(1634), - [anon_sym_new] = ACTIONS(1618), - [anon_sym_TILDE] = ACTIONS(1616), - [anon_sym_BANG] = ACTIONS(1618), - [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_PLUS_PLUS] = ACTIONS(1616), - [anon_sym_DASH_DASH] = ACTIONS(1616), - [anon_sym_PERCENT] = ACTIONS(1616), - [anon_sym_STAR] = ACTIONS(1616), - [anon_sym_SLASH] = ACTIONS(1618), - [anon_sym_PLUS] = ACTIONS(1618), - [anon_sym_LT_LT] = ACTIONS(1616), - [anon_sym_GT_GT] = ACTIONS(1618), - [anon_sym_GT_GT_GT] = ACTIONS(1616), - [anon_sym_AMP] = ACTIONS(1618), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_CARET] = ACTIONS(1616), - [anon_sym_AMP_AMP] = ACTIONS(1616), - [anon_sym_PIPE_PIPE] = ACTIONS(1616), - [anon_sym_EQ_EQ] = ACTIONS(1616), - [anon_sym_BANG_EQ] = ACTIONS(1616), - [anon_sym_LT] = ACTIONS(1618), - [anon_sym_LT_EQ] = ACTIONS(1616), - [anon_sym_GT] = ACTIONS(1618), - [anon_sym_GT_EQ] = ACTIONS(1616), - [anon_sym_EQ_GT] = ACTIONS(1616), - [anon_sym_QMARK_QMARK] = ACTIONS(1616), - [anon_sym_EQ] = ACTIONS(1618), - [sym__rangeOperator] = ACTIONS(1616), - [anon_sym_null] = ACTIONS(1618), - [anon_sym_macro] = ACTIONS(1618), - [anon_sym_abstract] = ACTIONS(1618), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_extern] = ACTIONS(1618), - [anon_sym_inline] = ACTIONS(1618), - [anon_sym_overload] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_final] = ACTIONS(1618), - [anon_sym_class] = ACTIONS(1618), - [anon_sym_interface] = ACTIONS(1618), - [anon_sym_typedef] = ACTIONS(1618), - [anon_sym_function] = ACTIONS(1618), - [anon_sym_var] = ACTIONS(1618), - [aux_sym_integer_token1] = ACTIONS(1618), - [aux_sym_integer_token2] = ACTIONS(1616), - [aux_sym_float_token1] = ACTIONS(1618), - [aux_sym_float_token2] = ACTIONS(1616), - [anon_sym_true] = ACTIONS(1618), - [anon_sym_false] = ACTIONS(1618), - [aux_sym_string_token1] = ACTIONS(1616), - [aux_sym_string_token3] = ACTIONS(1616), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1616), + [sym__rhs_expression] = STATE(1239), + [sym__unaryExpression] = STATE(3566), + [sym_runtime_type_check_expression] = STATE(3566), + [sym_switch_expression] = STATE(3566), + [sym_cast_expression] = STATE(3566), + [sym_type_trace_expression] = STATE(3566), + [sym__parenthesized_expression] = STATE(2703), + [sym_range_expression] = STATE(3566), + [sym_subscript_expression] = STATE(3566), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1239), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_untyped] = ACTIONS(2431), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [306] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(1612), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_COLON] = ACTIONS(1608), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(1614), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1508), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1608), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym__rhs_expression] = STATE(146), + [sym__unaryExpression] = STATE(722), + [sym_runtime_type_check_expression] = STATE(722), + [sym_switch_expression] = STATE(722), + [sym_cast_expression] = STATE(722), + [sym_type_trace_expression] = STATE(722), + [sym__parenthesized_expression] = STATE(626), + [sym_range_expression] = STATE(722), + [sym_subscript_expression] = STATE(722), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(146), + [sym_operator] = STATE(1983), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(557), + [sym_integer] = STATE(163), + [sym_float] = STATE(557), + [sym_bool] = STATE(557), + [sym_string] = STATE(400), + [sym_null] = STATE(557), + [sym_array] = STATE(557), + [sym_map] = STATE(557), + [sym_object] = STATE(557), + [sym_pair] = STATE(557), + [sym_identifier] = ACTIONS(2435), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2437), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2439), + [anon_sym_untyped] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1512), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [307] = { - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_package] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(1636), - [anon_sym_using] = ACTIONS(1636), - [anon_sym_throw] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_case] = ACTIONS(1636), - [anon_sym_default] = ACTIONS(1636), - [anon_sym_cast] = ACTIONS(1636), - [anon_sym_DOLLARtype] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_untyped] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_this] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(1636), - [anon_sym_AT_COLON] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_PERCENT] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_LT_LT] = ACTIONS(1638), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_GT_GT_GT] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_PIPE_PIPE] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1638), - [anon_sym_BANG_EQ] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1638), - [anon_sym_EQ_GT] = ACTIONS(1638), - [anon_sym_QMARK_QMARK] = ACTIONS(1638), - [anon_sym_EQ] = ACTIONS(1636), - [sym__rangeOperator] = ACTIONS(1638), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_macro] = ACTIONS(1636), - [anon_sym_abstract] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_public] = ACTIONS(1636), - [anon_sym_private] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_inline] = ACTIONS(1636), - [anon_sym_overload] = ACTIONS(1636), - [anon_sym_override] = ACTIONS(1636), - [anon_sym_final] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(1636), - [anon_sym_interface] = ACTIONS(1636), - [anon_sym_typedef] = ACTIONS(1636), - [anon_sym_function] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [aux_sym_integer_token1] = ACTIONS(1636), - [aux_sym_integer_token2] = ACTIONS(1638), - [aux_sym_float_token1] = ACTIONS(1636), - [aux_sym_float_token2] = ACTIONS(1638), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [aux_sym_string_token1] = ACTIONS(1638), - [aux_sym_string_token3] = ACTIONS(1638), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1638), + [sym__rhs_expression] = STATE(1257), + [sym__unaryExpression] = STATE(3691), + [sym_runtime_type_check_expression] = STATE(3691), + [sym_switch_expression] = STATE(3691), + [sym_cast_expression] = STATE(3691), + [sym_type_trace_expression] = STATE(3691), + [sym__parenthesized_expression] = STATE(2713), + [sym_range_expression] = STATE(3691), + [sym_subscript_expression] = STATE(3691), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1257), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2443), + [anon_sym_untyped] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2447), + [anon_sym_continue] = ACTIONS(2447), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [308] = { - [sym_identifier] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1642), - [anon_sym_package] = ACTIONS(1640), - [anon_sym_import] = ACTIONS(1640), - [anon_sym_using] = ACTIONS(1640), - [anon_sym_throw] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_case] = ACTIONS(1640), - [anon_sym_default] = ACTIONS(1640), - [anon_sym_cast] = ACTIONS(1640), - [anon_sym_DOLLARtype] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_untyped] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_this] = ACTIONS(1640), - [anon_sym_AT] = ACTIONS(1640), - [anon_sym_AT_COLON] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_new] = ACTIONS(1640), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PERCENT] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1640), - [anon_sym_GT_GT_GT] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_CARET] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_PIPE_PIPE] = ACTIONS(1642), - [anon_sym_EQ_EQ] = ACTIONS(1642), - [anon_sym_BANG_EQ] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1642), - [anon_sym_EQ_GT] = ACTIONS(1642), - [anon_sym_QMARK_QMARK] = ACTIONS(1642), - [anon_sym_EQ] = ACTIONS(1640), - [sym__rangeOperator] = ACTIONS(1642), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_macro] = ACTIONS(1640), - [anon_sym_abstract] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_public] = ACTIONS(1640), - [anon_sym_private] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_inline] = ACTIONS(1640), - [anon_sym_overload] = ACTIONS(1640), - [anon_sym_override] = ACTIONS(1640), - [anon_sym_final] = ACTIONS(1640), - [anon_sym_class] = ACTIONS(1640), - [anon_sym_interface] = ACTIONS(1640), - [anon_sym_typedef] = ACTIONS(1640), - [anon_sym_function] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [aux_sym_integer_token1] = ACTIONS(1640), - [aux_sym_integer_token2] = ACTIONS(1642), - [aux_sym_float_token1] = ACTIONS(1640), - [aux_sym_float_token2] = ACTIONS(1642), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [aux_sym_string_token1] = ACTIONS(1642), - [aux_sym_string_token3] = ACTIONS(1642), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1642), + [sym__rhs_expression] = STATE(141), + [sym__unaryExpression] = STATE(552), + [sym_runtime_type_check_expression] = STATE(552), + [sym_switch_expression] = STATE(552), + [sym_cast_expression] = STATE(552), + [sym_type_trace_expression] = STATE(552), + [sym__parenthesized_expression] = STATE(404), + [sym_range_expression] = STATE(552), + [sym_subscript_expression] = STATE(552), + [sym_member_expression] = STATE(379), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(141), + [sym_operator] = STATE(2040), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(547), + [sym_integer] = STATE(327), + [sym_float] = STATE(547), + [sym_bool] = STATE(547), + [sym_string] = STATE(408), + [sym_null] = STATE(547), + [sym_array] = STATE(547), + [sym_map] = STATE(547), + [sym_object] = STATE(547), + [sym_pair] = STATE(547), + [sym_identifier] = ACTIONS(2449), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_switch] = ACTIONS(1540), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_cast] = ACTIONS(2451), + [anon_sym_DOLLARtype] = ACTIONS(1544), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_untyped] = ACTIONS(2455), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1502), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [309] = { - [sym_identifier] = ACTIONS(1644), - [anon_sym_POUND] = ACTIONS(1646), - [anon_sym_package] = ACTIONS(1644), - [anon_sym_import] = ACTIONS(1644), - [anon_sym_using] = ACTIONS(1644), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_case] = ACTIONS(1644), - [anon_sym_default] = ACTIONS(1644), - [anon_sym_cast] = ACTIONS(1644), - [anon_sym_DOLLARtype] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_untyped] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_this] = ACTIONS(1644), - [anon_sym_AT] = ACTIONS(1644), - [anon_sym_AT_COLON] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_new] = ACTIONS(1644), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PERCENT] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1644), - [anon_sym_GT_GT_GT] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1646), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_PIPE_PIPE] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1646), - [anon_sym_BANG_EQ] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_LT_EQ] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1646), - [anon_sym_EQ_GT] = ACTIONS(1646), - [anon_sym_QMARK_QMARK] = ACTIONS(1646), - [anon_sym_EQ] = ACTIONS(1644), - [sym__rangeOperator] = ACTIONS(1646), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_macro] = ACTIONS(1644), - [anon_sym_abstract] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_public] = ACTIONS(1644), - [anon_sym_private] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1644), - [anon_sym_inline] = ACTIONS(1644), - [anon_sym_overload] = ACTIONS(1644), - [anon_sym_override] = ACTIONS(1644), - [anon_sym_final] = ACTIONS(1644), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_interface] = ACTIONS(1644), - [anon_sym_typedef] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [aux_sym_integer_token1] = ACTIONS(1644), - [aux_sym_integer_token2] = ACTIONS(1646), - [aux_sym_float_token1] = ACTIONS(1644), - [aux_sym_float_token2] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [aux_sym_string_token1] = ACTIONS(1646), - [aux_sym_string_token3] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1646), + [sym__rhs_expression] = STATE(1154), + [sym__unaryExpression] = STATE(3565), + [sym_runtime_type_check_expression] = STATE(3565), + [sym_switch_expression] = STATE(3565), + [sym_cast_expression] = STATE(3565), + [sym_type_trace_expression] = STATE(3565), + [sym__parenthesized_expression] = STATE(2831), + [sym_range_expression] = STATE(3565), + [sym_subscript_expression] = STATE(3565), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1154), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_untyped] = ACTIONS(2459), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [310] = { - [sym_identifier] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_package] = ACTIONS(1648), - [anon_sym_import] = ACTIONS(1648), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_throw] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_case] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_cast] = ACTIONS(1648), - [anon_sym_DOLLARtype] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_untyped] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_this] = ACTIONS(1648), - [anon_sym_AT] = ACTIONS(1648), - [anon_sym_AT_COLON] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1648), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_EQ_GT] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_EQ] = ACTIONS(1648), - [sym__rangeOperator] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_macro] = ACTIONS(1648), - [anon_sym_abstract] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_public] = ACTIONS(1648), - [anon_sym_private] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_inline] = ACTIONS(1648), - [anon_sym_overload] = ACTIONS(1648), - [anon_sym_override] = ACTIONS(1648), - [anon_sym_final] = ACTIONS(1648), - [anon_sym_class] = ACTIONS(1648), - [anon_sym_interface] = ACTIONS(1648), - [anon_sym_typedef] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [aux_sym_integer_token1] = ACTIONS(1648), - [aux_sym_integer_token2] = ACTIONS(1650), - [aux_sym_float_token1] = ACTIONS(1648), - [aux_sym_float_token2] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [aux_sym_string_token1] = ACTIONS(1650), - [aux_sym_string_token3] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1650), + [sym__rhs_expression] = STATE(1156), + [sym__unaryExpression] = STATE(3507), + [sym_runtime_type_check_expression] = STATE(3507), + [sym_switch_expression] = STATE(3507), + [sym_cast_expression] = STATE(3507), + [sym_type_trace_expression] = STATE(3507), + [sym__parenthesized_expression] = STATE(2596), + [sym_range_expression] = STATE(3507), + [sym_subscript_expression] = STATE(3507), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1156), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2463), + [anon_sym_untyped] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2467), + [anon_sym_continue] = ACTIONS(2467), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [311] = { - [sym_identifier] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_package] = ACTIONS(1652), - [anon_sym_import] = ACTIONS(1652), - [anon_sym_using] = ACTIONS(1652), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_case] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_cast] = ACTIONS(1652), - [anon_sym_DOLLARtype] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_untyped] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_this] = ACTIONS(1652), - [anon_sym_AT] = ACTIONS(1652), - [anon_sym_AT_COLON] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_PERCENT] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_LT_LT] = ACTIONS(1654), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1652), - [anon_sym_GT_EQ] = ACTIONS(1654), - [anon_sym_EQ_GT] = ACTIONS(1654), - [anon_sym_QMARK_QMARK] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1652), - [sym__rangeOperator] = ACTIONS(1654), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_macro] = ACTIONS(1652), - [anon_sym_abstract] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1652), - [anon_sym_inline] = ACTIONS(1652), - [anon_sym_overload] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1652), - [anon_sym_final] = ACTIONS(1652), - [anon_sym_class] = ACTIONS(1652), - [anon_sym_interface] = ACTIONS(1652), - [anon_sym_typedef] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [aux_sym_integer_token1] = ACTIONS(1652), - [aux_sym_integer_token2] = ACTIONS(1654), - [aux_sym_float_token1] = ACTIONS(1652), - [aux_sym_float_token2] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [aux_sym_string_token1] = ACTIONS(1654), - [aux_sym_string_token3] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1654), + [sym__rhs_expression] = STATE(1205), + [sym__unaryExpression] = STATE(3465), + [sym_runtime_type_check_expression] = STATE(3465), + [sym_switch_expression] = STATE(3465), + [sym_cast_expression] = STATE(3465), + [sym_type_trace_expression] = STATE(3465), + [sym__parenthesized_expression] = STATE(2768), + [sym_range_expression] = STATE(3465), + [sym_subscript_expression] = STATE(3465), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1205), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2469), + [anon_sym_untyped] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2473), + [anon_sym_continue] = ACTIONS(2473), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [312] = { - [sym_identifier] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_package] = ACTIONS(1656), - [anon_sym_import] = ACTIONS(1656), - [anon_sym_using] = ACTIONS(1656), - [anon_sym_throw] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_case] = ACTIONS(1656), - [anon_sym_default] = ACTIONS(1656), - [anon_sym_cast] = ACTIONS(1656), - [anon_sym_DOLLARtype] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_untyped] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_this] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1656), - [anon_sym_AT_COLON] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_new] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_SLASH] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1658), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_GT_GT_GT] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_PIPE_PIPE] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1658), - [anon_sym_BANG_EQ] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_LT_EQ] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1658), - [anon_sym_EQ_GT] = ACTIONS(1658), - [anon_sym_QMARK_QMARK] = ACTIONS(1658), - [anon_sym_EQ] = ACTIONS(1656), - [sym__rangeOperator] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_macro] = ACTIONS(1656), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_inline] = ACTIONS(1656), - [anon_sym_overload] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_final] = ACTIONS(1656), - [anon_sym_class] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1656), - [anon_sym_function] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [aux_sym_integer_token1] = ACTIONS(1656), - [aux_sym_integer_token2] = ACTIONS(1658), - [aux_sym_float_token1] = ACTIONS(1656), - [aux_sym_float_token2] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [aux_sym_string_token1] = ACTIONS(1658), - [aux_sym_string_token3] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1658), + [sym__rhs_expression] = STATE(1175), + [sym__unaryExpression] = STATE(3611), + [sym_runtime_type_check_expression] = STATE(3611), + [sym_switch_expression] = STATE(3611), + [sym_cast_expression] = STATE(3611), + [sym_type_trace_expression] = STATE(3611), + [sym__parenthesized_expression] = STATE(2648), + [sym_range_expression] = STATE(3611), + [sym_subscript_expression] = STATE(3611), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1175), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_untyped] = ACTIONS(2477), + [anon_sym_break] = ACTIONS(2479), + [anon_sym_continue] = ACTIONS(2479), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [313] = { - [sym_identifier] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_package] = ACTIONS(1660), - [anon_sym_import] = ACTIONS(1660), - [anon_sym_using] = ACTIONS(1660), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_case] = ACTIONS(1660), - [anon_sym_default] = ACTIONS(1660), - [anon_sym_cast] = ACTIONS(1660), - [anon_sym_DOLLARtype] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_untyped] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_this] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(1660), - [anon_sym_AT_COLON] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_PERCENT] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_SLASH] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_GT_GT] = ACTIONS(1660), - [anon_sym_GT_GT_GT] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_CARET] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_PIPE_PIPE] = ACTIONS(1662), - [anon_sym_EQ_EQ] = ACTIONS(1662), - [anon_sym_BANG_EQ] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_LT_EQ] = ACTIONS(1662), - [anon_sym_GT] = ACTIONS(1660), - [anon_sym_GT_EQ] = ACTIONS(1662), - [anon_sym_EQ_GT] = ACTIONS(1662), - [anon_sym_QMARK_QMARK] = ACTIONS(1662), - [anon_sym_EQ] = ACTIONS(1660), - [sym__rangeOperator] = ACTIONS(1662), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_macro] = ACTIONS(1660), - [anon_sym_abstract] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_public] = ACTIONS(1660), - [anon_sym_private] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1660), - [anon_sym_inline] = ACTIONS(1660), - [anon_sym_overload] = ACTIONS(1660), - [anon_sym_override] = ACTIONS(1660), - [anon_sym_final] = ACTIONS(1660), - [anon_sym_class] = ACTIONS(1660), - [anon_sym_interface] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(1660), - [anon_sym_function] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [aux_sym_integer_token1] = ACTIONS(1660), - [aux_sym_integer_token2] = ACTIONS(1662), - [aux_sym_float_token1] = ACTIONS(1660), - [aux_sym_float_token2] = ACTIONS(1662), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [aux_sym_string_token1] = ACTIONS(1662), - [aux_sym_string_token3] = ACTIONS(1662), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1662), + [sym__rhs_expression] = STATE(1208), + [sym__unaryExpression] = STATE(3493), + [sym_runtime_type_check_expression] = STATE(3493), + [sym_switch_expression] = STATE(3493), + [sym_cast_expression] = STATE(3493), + [sym_type_trace_expression] = STATE(3493), + [sym__parenthesized_expression] = STATE(2780), + [sym_range_expression] = STATE(3493), + [sym_subscript_expression] = STATE(3493), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1208), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_untyped] = ACTIONS(2483), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [314] = { - [sym_identifier] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1666), - [anon_sym_package] = ACTIONS(1664), - [anon_sym_import] = ACTIONS(1664), - [anon_sym_using] = ACTIONS(1664), - [anon_sym_throw] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_case] = ACTIONS(1664), - [anon_sym_default] = ACTIONS(1664), - [anon_sym_cast] = ACTIONS(1664), - [anon_sym_DOLLARtype] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_untyped] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_this] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_AT_COLON] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_new] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_PERCENT] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_LT_LT] = ACTIONS(1666), - [anon_sym_GT_GT] = ACTIONS(1664), - [anon_sym_GT_GT_GT] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1666), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_PIPE_PIPE] = ACTIONS(1666), - [anon_sym_EQ_EQ] = ACTIONS(1666), - [anon_sym_BANG_EQ] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1666), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_GT_EQ] = ACTIONS(1666), - [anon_sym_EQ_GT] = ACTIONS(1666), - [anon_sym_QMARK_QMARK] = ACTIONS(1666), - [anon_sym_EQ] = ACTIONS(1664), - [sym__rangeOperator] = ACTIONS(1666), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_macro] = ACTIONS(1664), - [anon_sym_abstract] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_public] = ACTIONS(1664), - [anon_sym_private] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_inline] = ACTIONS(1664), - [anon_sym_overload] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1664), - [anon_sym_final] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(1664), - [anon_sym_interface] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1664), - [anon_sym_function] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [aux_sym_integer_token1] = ACTIONS(1664), - [aux_sym_integer_token2] = ACTIONS(1666), - [aux_sym_float_token1] = ACTIONS(1664), - [aux_sym_float_token2] = ACTIONS(1666), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [aux_sym_string_token1] = ACTIONS(1666), - [aux_sym_string_token3] = ACTIONS(1666), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1666), + [sym__rhs_expression] = STATE(1064), + [sym__unaryExpression] = STATE(1824), + [sym_runtime_type_check_expression] = STATE(1824), + [sym_switch_expression] = STATE(1824), + [sym_cast_expression] = STATE(1824), + [sym_type_trace_expression] = STATE(1824), + [sym__parenthesized_expression] = STATE(1558), + [sym_range_expression] = STATE(1824), + [sym_subscript_expression] = STATE(1824), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1064), + [sym_operator] = STATE(1978), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1934), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1934), + [sym_bool] = STATE(1934), + [sym_string] = STATE(1716), + [sym_null] = STATE(1934), + [sym_array] = STATE(1934), + [sym_map] = STATE(1934), + [sym_object] = STATE(1934), + [sym_pair] = STATE(1934), + [sym_identifier] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(2487), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_untyped] = ACTIONS(2491), + [anon_sym_break] = ACTIONS(2203), + [anon_sym_continue] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [315] = { - [sym_identifier] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(1670), - [anon_sym_package] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1668), - [anon_sym_using] = ACTIONS(1668), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_case] = ACTIONS(1668), - [anon_sym_default] = ACTIONS(1668), - [anon_sym_cast] = ACTIONS(1668), - [anon_sym_DOLLARtype] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_untyped] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_this] = ACTIONS(1668), - [anon_sym_AT] = ACTIONS(1668), - [anon_sym_AT_COLON] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_new] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1668), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_EQ_GT] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_EQ] = ACTIONS(1668), - [sym__rangeOperator] = ACTIONS(1670), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_macro] = ACTIONS(1668), - [anon_sym_abstract] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_inline] = ACTIONS(1668), - [anon_sym_overload] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_final] = ACTIONS(1668), - [anon_sym_class] = ACTIONS(1668), - [anon_sym_interface] = ACTIONS(1668), - [anon_sym_typedef] = ACTIONS(1668), - [anon_sym_function] = ACTIONS(1668), - [anon_sym_var] = ACTIONS(1668), - [aux_sym_integer_token1] = ACTIONS(1668), - [aux_sym_integer_token2] = ACTIONS(1670), - [aux_sym_float_token1] = ACTIONS(1668), - [aux_sym_float_token2] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym_string_token1] = ACTIONS(1670), - [aux_sym_string_token3] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1670), + [sym__rhs_expression] = STATE(1259), + [sym__unaryExpression] = STATE(3474), + [sym_runtime_type_check_expression] = STATE(3474), + [sym_switch_expression] = STATE(3474), + [sym_cast_expression] = STATE(3474), + [sym_type_trace_expression] = STATE(3474), + [sym__parenthesized_expression] = STATE(2536), + [sym_range_expression] = STATE(3474), + [sym_subscript_expression] = STATE(3474), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1259), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2493), + [anon_sym_untyped] = ACTIONS(2495), + [anon_sym_break] = ACTIONS(2497), + [anon_sym_continue] = ACTIONS(2497), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [316] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_package] = ACTIONS(1596), - [anon_sym_import] = ACTIONS(1596), - [anon_sym_using] = ACTIONS(1596), - [anon_sym_throw] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_cast] = ACTIONS(1596), - [anon_sym_DOLLARtype] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_untyped] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_this] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_AT_COLON] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_else] = ACTIONS(1596), - [anon_sym_elseif] = ACTIONS(1598), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_PERCENT] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1598), - [anon_sym_GT_GT] = ACTIONS(1596), - [anon_sym_GT_GT_GT] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1598), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1598), - [anon_sym_EQ_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [anon_sym_QMARK_QMARK] = ACTIONS(1598), - [anon_sym_EQ] = ACTIONS(1596), - [sym__rangeOperator] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_macro] = ACTIONS(1596), - [anon_sym_abstract] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_inline] = ACTIONS(1596), - [anon_sym_overload] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_final] = ACTIONS(1596), - [anon_sym_class] = ACTIONS(1596), - [anon_sym_interface] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1596), - [anon_sym_function] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [aux_sym_integer_token1] = ACTIONS(1596), - [aux_sym_integer_token2] = ACTIONS(1598), - [aux_sym_float_token1] = ACTIONS(1596), - [aux_sym_float_token2] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym_string_token1] = ACTIONS(1598), - [aux_sym_string_token3] = ACTIONS(1598), + [sym__rhs_expression] = STATE(1260), + [sym__unaryExpression] = STATE(3442), + [sym_runtime_type_check_expression] = STATE(3442), + [sym_switch_expression] = STATE(3442), + [sym_cast_expression] = STATE(3442), + [sym_type_trace_expression] = STATE(3442), + [sym__parenthesized_expression] = STATE(2541), + [sym_range_expression] = STATE(3442), + [sym_subscript_expression] = STATE(3442), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1260), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2499), + [anon_sym_untyped] = ACTIONS(2501), + [anon_sym_break] = ACTIONS(2503), + [anon_sym_continue] = ACTIONS(2503), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [317] = { - [sym_identifier] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1674), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_case] = ACTIONS(1672), - [anon_sym_default] = ACTIONS(1672), - [anon_sym_cast] = ACTIONS(1672), - [anon_sym_DOLLARtype] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_untyped] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_AT_COLON] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1674), - [anon_sym_EQ_GT] = ACTIONS(1674), - [anon_sym_QMARK_QMARK] = ACTIONS(1674), - [anon_sym_EQ] = ACTIONS(1672), - [sym__rangeOperator] = ACTIONS(1674), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_macro] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_inline] = ACTIONS(1672), - [anon_sym_overload] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_typedef] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [aux_sym_integer_token1] = ACTIONS(1672), - [aux_sym_integer_token2] = ACTIONS(1674), - [aux_sym_float_token1] = ACTIONS(1672), - [aux_sym_float_token2] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [aux_sym_string_token1] = ACTIONS(1674), - [aux_sym_string_token3] = ACTIONS(1674), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1674), + [sym__rhs_expression] = STATE(1319), + [sym__unaryExpression] = STATE(3424), + [sym_runtime_type_check_expression] = STATE(3424), + [sym_switch_expression] = STATE(3424), + [sym_cast_expression] = STATE(3424), + [sym_type_trace_expression] = STATE(3424), + [sym__parenthesized_expression] = STATE(2684), + [sym_range_expression] = STATE(3424), + [sym_subscript_expression] = STATE(3424), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1319), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2505), + [anon_sym_untyped] = ACTIONS(2507), + [anon_sym_break] = ACTIONS(2509), + [anon_sym_continue] = ACTIONS(2509), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [318] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_package] = ACTIONS(1590), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_using] = ACTIONS(1590), - [anon_sym_throw] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_cast] = ACTIONS(1590), - [anon_sym_DOLLARtype] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_this] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_AT_COLON] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_else] = ACTIONS(1590), - [anon_sym_elseif] = ACTIONS(1592), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1592), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym_PLUS] = ACTIONS(1590), - [anon_sym_LT_LT] = ACTIONS(1592), - [anon_sym_GT_GT] = ACTIONS(1590), - [anon_sym_GT_GT_GT] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1592), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_LT_EQ] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_GT_EQ] = ACTIONS(1592), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_QMARK_QMARK] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1590), - [sym__rangeOperator] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_macro] = ACTIONS(1590), - [anon_sym_abstract] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_private] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_overload] = ACTIONS(1590), - [anon_sym_override] = ACTIONS(1590), - [anon_sym_final] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_interface] = ACTIONS(1590), - [anon_sym_typedef] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(1590), - [anon_sym_var] = ACTIONS(1590), - [aux_sym_integer_token1] = ACTIONS(1590), - [aux_sym_integer_token2] = ACTIONS(1592), - [aux_sym_float_token1] = ACTIONS(1590), - [aux_sym_float_token2] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [aux_sym_string_token1] = ACTIONS(1592), - [aux_sym_string_token3] = ACTIONS(1592), + [sym__rhs_expression] = STATE(1164), + [sym__unaryExpression] = STATE(3479), + [sym_runtime_type_check_expression] = STATE(3479), + [sym_switch_expression] = STATE(3479), + [sym_cast_expression] = STATE(3479), + [sym_type_trace_expression] = STATE(3479), + [sym__parenthesized_expression] = STATE(2626), + [sym_range_expression] = STATE(3479), + [sym_subscript_expression] = STATE(3479), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1164), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2511), + [anon_sym_untyped] = ACTIONS(2513), + [anon_sym_break] = ACTIONS(2515), + [anon_sym_continue] = ACTIONS(2515), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [319] = { - [sym_identifier] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1678), - [anon_sym_package] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_case] = ACTIONS(1676), - [anon_sym_default] = ACTIONS(1676), - [anon_sym_cast] = ACTIONS(1676), - [anon_sym_DOLLARtype] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_untyped] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_this] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_AT_COLON] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_PERCENT] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_LT_LT] = ACTIONS(1678), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_GT_GT_GT] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1678), - [anon_sym_AMP_AMP] = ACTIONS(1678), - [anon_sym_PIPE_PIPE] = ACTIONS(1678), - [anon_sym_EQ_EQ] = ACTIONS(1678), - [anon_sym_BANG_EQ] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_LT_EQ] = ACTIONS(1678), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_GT_EQ] = ACTIONS(1678), - [anon_sym_EQ_GT] = ACTIONS(1678), - [anon_sym_QMARK_QMARK] = ACTIONS(1678), - [anon_sym_EQ] = ACTIONS(1676), - [sym__rangeOperator] = ACTIONS(1678), - [anon_sym_null] = ACTIONS(1676), - [anon_sym_macro] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_inline] = ACTIONS(1676), - [anon_sym_overload] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_final] = ACTIONS(1676), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_typedef] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [aux_sym_integer_token1] = ACTIONS(1676), - [aux_sym_integer_token2] = ACTIONS(1678), - [aux_sym_float_token1] = ACTIONS(1676), - [aux_sym_float_token2] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(1676), - [anon_sym_false] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1678), - [aux_sym_string_token3] = ACTIONS(1678), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1678), + [sym__rhs_expression] = STATE(871), + [sym__unaryExpression] = STATE(722), + [sym_runtime_type_check_expression] = STATE(722), + [sym_switch_expression] = STATE(722), + [sym_cast_expression] = STATE(722), + [sym_type_trace_expression] = STATE(722), + [sym__parenthesized_expression] = STATE(626), + [sym_range_expression] = STATE(722), + [sym_subscript_expression] = STATE(722), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(871), + [sym_operator] = STATE(1847), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(947), + [sym_integer] = STATE(163), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [sym_identifier] = ACTIONS(1624), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1355), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2517), + [anon_sym_untyped] = ACTIONS(2519), + [anon_sym_break] = ACTIONS(2095), + [anon_sym_continue] = ACTIONS(2095), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [320] = { - [sym_identifier] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(1682), - [anon_sym_package] = ACTIONS(1680), - [anon_sym_import] = ACTIONS(1680), - [anon_sym_using] = ACTIONS(1680), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_case] = ACTIONS(1680), - [anon_sym_default] = ACTIONS(1680), - [anon_sym_cast] = ACTIONS(1680), - [anon_sym_DOLLARtype] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_untyped] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_this] = ACTIONS(1680), - [anon_sym_AT] = ACTIONS(1680), - [anon_sym_AT_COLON] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_new] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_PERCENT] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_LT_LT] = ACTIONS(1682), - [anon_sym_GT_GT] = ACTIONS(1680), - [anon_sym_GT_GT_GT] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_CARET] = ACTIONS(1682), - [anon_sym_AMP_AMP] = ACTIONS(1682), - [anon_sym_PIPE_PIPE] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [anon_sym_EQ_GT] = ACTIONS(1682), - [anon_sym_QMARK_QMARK] = ACTIONS(1682), - [anon_sym_EQ] = ACTIONS(1680), - [sym__rangeOperator] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1680), - [anon_sym_macro] = ACTIONS(1680), - [anon_sym_abstract] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_public] = ACTIONS(1680), - [anon_sym_private] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_inline] = ACTIONS(1680), - [anon_sym_overload] = ACTIONS(1680), - [anon_sym_override] = ACTIONS(1680), - [anon_sym_final] = ACTIONS(1680), - [anon_sym_class] = ACTIONS(1680), - [anon_sym_interface] = ACTIONS(1680), - [anon_sym_typedef] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_var] = ACTIONS(1680), - [aux_sym_integer_token1] = ACTIONS(1680), - [aux_sym_integer_token2] = ACTIONS(1682), - [aux_sym_float_token1] = ACTIONS(1680), - [aux_sym_float_token2] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1680), - [anon_sym_false] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1682), - [aux_sym_string_token3] = ACTIONS(1682), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1682), + [sym__rhs_expression] = STATE(1166), + [sym__unaryExpression] = STATE(3575), + [sym_runtime_type_check_expression] = STATE(3575), + [sym_switch_expression] = STATE(3575), + [sym_cast_expression] = STATE(3575), + [sym_type_trace_expression] = STATE(3575), + [sym__parenthesized_expression] = STATE(2656), + [sym_range_expression] = STATE(3575), + [sym_subscript_expression] = STATE(3575), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1166), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2521), + [anon_sym_untyped] = ACTIONS(2523), + [anon_sym_break] = ACTIONS(2525), + [anon_sym_continue] = ACTIONS(2525), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [321] = { - [sym_identifier] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1684), - [anon_sym_import] = ACTIONS(1684), - [anon_sym_using] = ACTIONS(1684), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_case] = ACTIONS(1684), - [anon_sym_default] = ACTIONS(1684), - [anon_sym_cast] = ACTIONS(1684), - [anon_sym_DOLLARtype] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_untyped] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_AT_COLON] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_new] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1686), - [anon_sym_GT_GT] = ACTIONS(1684), - [anon_sym_GT_GT_GT] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1686), - [anon_sym_AMP_AMP] = ACTIONS(1686), - [anon_sym_PIPE_PIPE] = ACTIONS(1686), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_LT_EQ] = ACTIONS(1686), - [anon_sym_GT] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1686), - [anon_sym_EQ_GT] = ACTIONS(1686), - [anon_sym_QMARK_QMARK] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1684), - [sym__rangeOperator] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1684), - [anon_sym_macro] = ACTIONS(1684), - [anon_sym_abstract] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_public] = ACTIONS(1684), - [anon_sym_private] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_inline] = ACTIONS(1684), - [anon_sym_overload] = ACTIONS(1684), - [anon_sym_override] = ACTIONS(1684), - [anon_sym_final] = ACTIONS(1684), - [anon_sym_class] = ACTIONS(1684), - [anon_sym_interface] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_var] = ACTIONS(1684), - [aux_sym_integer_token1] = ACTIONS(1684), - [aux_sym_integer_token2] = ACTIONS(1686), - [aux_sym_float_token1] = ACTIONS(1684), - [aux_sym_float_token2] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1686), - [aux_sym_string_token3] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1686), + [sym__rhs_expression] = STATE(130), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(130), + [sym_operator] = STATE(2017), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(570), + [sym_integer] = STATE(163), + [sym_float] = STATE(570), + [sym_bool] = STATE(570), + [sym_string] = STATE(400), + [sym_null] = STATE(570), + [sym_array] = STATE(570), + [sym_map] = STATE(570), + [sym_object] = STATE(570), + [sym_pair] = STATE(570), + [sym_identifier] = ACTIONS(2527), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2529), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2531), + [anon_sym_untyped] = ACTIONS(2533), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1377), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [322] = { - [sym_identifier] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_package] = ACTIONS(1688), - [anon_sym_import] = ACTIONS(1688), - [anon_sym_using] = ACTIONS(1688), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_case] = ACTIONS(1688), - [anon_sym_default] = ACTIONS(1688), - [anon_sym_cast] = ACTIONS(1688), - [anon_sym_DOLLARtype] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_untyped] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_this] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_AT_COLON] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1690), - [anon_sym_GT_GT] = ACTIONS(1688), - [anon_sym_GT_GT_GT] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_EQ_EQ] = ACTIONS(1690), - [anon_sym_BANG_EQ] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_EQ] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_GT_EQ] = ACTIONS(1690), - [anon_sym_EQ_GT] = ACTIONS(1690), - [anon_sym_QMARK_QMARK] = ACTIONS(1690), - [anon_sym_EQ] = ACTIONS(1688), - [sym__rangeOperator] = ACTIONS(1690), - [anon_sym_null] = ACTIONS(1688), - [anon_sym_macro] = ACTIONS(1688), - [anon_sym_abstract] = ACTIONS(1688), - [anon_sym_static] = ACTIONS(1688), - [anon_sym_public] = ACTIONS(1688), - [anon_sym_private] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_inline] = ACTIONS(1688), - [anon_sym_overload] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(1688), - [anon_sym_final] = ACTIONS(1688), - [anon_sym_class] = ACTIONS(1688), - [anon_sym_interface] = ACTIONS(1688), - [anon_sym_typedef] = ACTIONS(1688), - [anon_sym_function] = ACTIONS(1688), - [anon_sym_var] = ACTIONS(1688), - [aux_sym_integer_token1] = ACTIONS(1688), - [aux_sym_integer_token2] = ACTIONS(1690), - [aux_sym_float_token1] = ACTIONS(1688), - [aux_sym_float_token2] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [aux_sym_string_token1] = ACTIONS(1690), - [aux_sym_string_token3] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1690), + [sym__rhs_expression] = STATE(1222), + [sym__unaryExpression] = STATE(3505), + [sym_runtime_type_check_expression] = STATE(3505), + [sym_switch_expression] = STATE(3505), + [sym_cast_expression] = STATE(3505), + [sym_type_trace_expression] = STATE(3505), + [sym__parenthesized_expression] = STATE(2733), + [sym_range_expression] = STATE(3505), + [sym_subscript_expression] = STATE(3505), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1222), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2535), + [anon_sym_untyped] = ACTIONS(2537), + [anon_sym_break] = ACTIONS(2539), + [anon_sym_continue] = ACTIONS(2539), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [323] = { - [sym_identifier] = ACTIONS(1692), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_package] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1692), - [anon_sym_using] = ACTIONS(1692), - [anon_sym_throw] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_case] = ACTIONS(1692), - [anon_sym_default] = ACTIONS(1692), - [anon_sym_cast] = ACTIONS(1692), - [anon_sym_DOLLARtype] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_untyped] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_this] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1692), - [anon_sym_AT_COLON] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_new] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_GT_GT_GT] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_EQ] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_GT_EQ] = ACTIONS(1694), - [anon_sym_EQ_GT] = ACTIONS(1694), - [anon_sym_QMARK_QMARK] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1692), - [sym__rangeOperator] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1692), - [anon_sym_macro] = ACTIONS(1692), - [anon_sym_abstract] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_public] = ACTIONS(1692), - [anon_sym_private] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_inline] = ACTIONS(1692), - [anon_sym_overload] = ACTIONS(1692), - [anon_sym_override] = ACTIONS(1692), - [anon_sym_final] = ACTIONS(1692), - [anon_sym_class] = ACTIONS(1692), - [anon_sym_interface] = ACTIONS(1692), - [anon_sym_typedef] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_var] = ACTIONS(1692), - [aux_sym_integer_token1] = ACTIONS(1692), - [aux_sym_integer_token2] = ACTIONS(1694), - [aux_sym_float_token1] = ACTIONS(1692), - [aux_sym_float_token2] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1694), - [aux_sym_string_token3] = ACTIONS(1694), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1694), + [sym__rhs_expression] = STATE(1242), + [sym__unaryExpression] = STATE(3440), + [sym_runtime_type_check_expression] = STATE(3440), + [sym_switch_expression] = STATE(3440), + [sym_cast_expression] = STATE(3440), + [sym_type_trace_expression] = STATE(3440), + [sym__parenthesized_expression] = STATE(2773), + [sym_range_expression] = STATE(3440), + [sym_subscript_expression] = STATE(3440), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(1242), + [sym_operator] = STATE(1795), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1407), + [sym_integer] = STATE(163), + [sym_float] = STATE(1407), + [sym_bool] = STATE(1407), + [sym_string] = STATE(1375), + [sym_null] = STATE(1407), + [sym_array] = STATE(1407), + [sym_map] = STATE(1407), + [sym_object] = STATE(1407), + [sym_pair] = STATE(1407), + [sym_identifier] = ACTIONS(1576), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1580), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2541), + [anon_sym_untyped] = ACTIONS(2543), + [anon_sym_break] = ACTIONS(2545), + [anon_sym_continue] = ACTIONS(2545), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [324] = { - [sym_identifier] = ACTIONS(1696), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_package] = ACTIONS(1696), - [anon_sym_import] = ACTIONS(1696), - [anon_sym_using] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_switch] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_case] = ACTIONS(1696), - [anon_sym_default] = ACTIONS(1696), - [anon_sym_cast] = ACTIONS(1696), - [anon_sym_DOLLARtype] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_untyped] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_AT_COLON] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_new] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_EQ_GT] = ACTIONS(1698), - [anon_sym_QMARK_QMARK] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1696), - [sym__rangeOperator] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_macro] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_public] = ACTIONS(1696), - [anon_sym_private] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_inline] = ACTIONS(1696), - [anon_sym_overload] = ACTIONS(1696), - [anon_sym_override] = ACTIONS(1696), - [anon_sym_final] = ACTIONS(1696), - [anon_sym_class] = ACTIONS(1696), - [anon_sym_interface] = ACTIONS(1696), - [anon_sym_typedef] = ACTIONS(1696), - [anon_sym_function] = ACTIONS(1696), - [anon_sym_var] = ACTIONS(1696), - [aux_sym_integer_token1] = ACTIONS(1696), - [aux_sym_integer_token2] = ACTIONS(1698), - [aux_sym_float_token1] = ACTIONS(1696), - [aux_sym_float_token2] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [aux_sym_string_token1] = ACTIONS(1698), - [aux_sym_string_token3] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1698), + [sym__rhs_expression] = STATE(982), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(982), + [sym_operator] = STATE(1856), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1408), + [sym_integer] = STATE(163), + [sym_float] = STATE(1408), + [sym_bool] = STATE(1408), + [sym_string] = STATE(1375), + [sym_null] = STATE(1408), + [sym_array] = STATE(1408), + [sym_map] = STATE(1408), + [sym_object] = STATE(1408), + [sym_pair] = STATE(1408), + [sym_identifier] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1558), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(1560), + [anon_sym_untyped] = ACTIONS(1562), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [325] = { - [sym_identifier] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_package] = ACTIONS(1700), - [anon_sym_import] = ACTIONS(1700), - [anon_sym_using] = ACTIONS(1700), - [anon_sym_throw] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_case] = ACTIONS(1700), - [anon_sym_default] = ACTIONS(1700), - [anon_sym_cast] = ACTIONS(1700), - [anon_sym_DOLLARtype] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_untyped] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_this] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_AT_COLON] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1700), - [anon_sym_GT_GT_GT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1702), - [anon_sym_QMARK_QMARK] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1700), - [sym__rangeOperator] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1700), - [anon_sym_macro] = ACTIONS(1700), - [anon_sym_abstract] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_public] = ACTIONS(1700), - [anon_sym_private] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym_overload] = ACTIONS(1700), - [anon_sym_override] = ACTIONS(1700), - [anon_sym_final] = ACTIONS(1700), - [anon_sym_class] = ACTIONS(1700), - [anon_sym_interface] = ACTIONS(1700), - [anon_sym_typedef] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1700), - [anon_sym_var] = ACTIONS(1700), - [aux_sym_integer_token1] = ACTIONS(1700), - [aux_sym_integer_token2] = ACTIONS(1702), - [aux_sym_float_token1] = ACTIONS(1700), - [aux_sym_float_token2] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [aux_sym_string_token1] = ACTIONS(1702), - [aux_sym_string_token3] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1702), + [sym__rhs_expression] = STATE(1223), + [sym__unaryExpression] = STATE(3694), + [sym_runtime_type_check_expression] = STATE(3694), + [sym_switch_expression] = STATE(3694), + [sym_cast_expression] = STATE(3694), + [sym_type_trace_expression] = STATE(3694), + [sym__parenthesized_expression] = STATE(2748), + [sym_range_expression] = STATE(3694), + [sym_subscript_expression] = STATE(3694), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1223), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2549), + [anon_sym_untyped] = ACTIONS(2551), + [anon_sym_break] = ACTIONS(2553), + [anon_sym_continue] = ACTIONS(2553), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [326] = { - [sym_identifier] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_package] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_case] = ACTIONS(1704), - [anon_sym_default] = ACTIONS(1704), - [anon_sym_cast] = ACTIONS(1704), - [anon_sym_DOLLARtype] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_untyped] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_this] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1704), - [anon_sym_AT_COLON] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_PERCENT] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_GT_GT_GT] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1706), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_EQ_EQ] = ACTIONS(1706), - [anon_sym_BANG_EQ] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_GT_EQ] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_QMARK_QMARK] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1704), - [sym__rangeOperator] = ACTIONS(1706), - [anon_sym_null] = ACTIONS(1704), - [anon_sym_macro] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_inline] = ACTIONS(1704), - [anon_sym_overload] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_final] = ACTIONS(1704), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [aux_sym_integer_token1] = ACTIONS(1704), - [aux_sym_integer_token2] = ACTIONS(1706), - [aux_sym_float_token1] = ACTIONS(1704), - [aux_sym_float_token2] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [aux_sym_string_token1] = ACTIONS(1706), - [aux_sym_string_token3] = ACTIONS(1706), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1706), + [sym__rhs_expression] = STATE(1150), + [sym__unaryExpression] = STATE(3422), + [sym_runtime_type_check_expression] = STATE(3422), + [sym_switch_expression] = STATE(3422), + [sym_cast_expression] = STATE(3422), + [sym_type_trace_expression] = STATE(3422), + [sym__parenthesized_expression] = STATE(2537), + [sym_range_expression] = STATE(3422), + [sym_subscript_expression] = STATE(3422), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1150), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2555), + [anon_sym_untyped] = ACTIONS(2557), + [anon_sym_break] = ACTIONS(2559), + [anon_sym_continue] = ACTIONS(2559), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [327] = { - [sym_identifier] = ACTIONS(1708), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_package] = ACTIONS(1708), - [anon_sym_import] = ACTIONS(1708), - [anon_sym_using] = ACTIONS(1708), - [anon_sym_throw] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_case] = ACTIONS(1708), - [anon_sym_default] = ACTIONS(1708), - [anon_sym_cast] = ACTIONS(1708), - [anon_sym_DOLLARtype] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_untyped] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_this] = ACTIONS(1708), - [anon_sym_AT] = ACTIONS(1708), - [anon_sym_AT_COLON] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_new] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS_PLUS] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1710), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1710), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_GT_GT_GT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym_AMP_AMP] = ACTIONS(1710), - [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_EQ_EQ] = ACTIONS(1710), - [anon_sym_BANG_EQ] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_EQ] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1710), - [anon_sym_EQ_GT] = ACTIONS(1710), - [anon_sym_QMARK_QMARK] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1708), - [sym__rangeOperator] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1708), - [anon_sym_macro] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_public] = ACTIONS(1708), - [anon_sym_private] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym_inline] = ACTIONS(1708), - [anon_sym_overload] = ACTIONS(1708), - [anon_sym_override] = ACTIONS(1708), - [anon_sym_final] = ACTIONS(1708), - [anon_sym_class] = ACTIONS(1708), - [anon_sym_interface] = ACTIONS(1708), - [anon_sym_typedef] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_var] = ACTIONS(1708), - [aux_sym_integer_token1] = ACTIONS(1708), - [aux_sym_integer_token2] = ACTIONS(1710), - [aux_sym_float_token1] = ACTIONS(1708), - [aux_sym_float_token2] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1708), - [anon_sym_false] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1710), - [aux_sym_string_token3] = ACTIONS(1710), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1710), + [sym__rangeOperator] = STATE(2528), + [sym_identifier] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_package] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_using] = ACTIONS(1638), + [anon_sym_throw] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_switch] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_case] = ACTIONS(1638), + [anon_sym_default] = ACTIONS(1638), + [anon_sym_cast] = ACTIONS(1638), + [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_DOLLARtype] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_untyped] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_this] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_AT_COLON] = ACTIONS(1636), + [anon_sym_try] = ACTIONS(1638), + [anon_sym_catch] = ACTIONS(1638), + [anon_sym_else] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1638), + [anon_sym_GT_GT_GT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_EQ_GT] = ACTIONS(1636), + [anon_sym_QMARK_QMARK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1638), + [anon_sym_macro] = ACTIONS(1638), + [anon_sym_abstract] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_public] = ACTIONS(1638), + [anon_sym_private] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_inline] = ACTIONS(1638), + [anon_sym_overload] = ACTIONS(1638), + [anon_sym_override] = ACTIONS(1638), + [anon_sym_final] = ACTIONS(1638), + [anon_sym_class] = ACTIONS(1638), + [anon_sym_interface] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_typedef] = ACTIONS(1638), + [anon_sym_function] = ACTIONS(1638), + [anon_sym_var] = ACTIONS(1638), + [aux_sym_integer_token1] = ACTIONS(1638), + [aux_sym_integer_token2] = ACTIONS(1636), + [aux_sym_float_token1] = ACTIONS(1638), + [aux_sym_float_token2] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [aux_sym_string_token1] = ACTIONS(1636), + [aux_sym_string_token3] = ACTIONS(1636), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1636), [sym__closing_brace_unmarker] = ACTIONS(3), }, [328] = { - [sym_identifier] = ACTIONS(1712), - [anon_sym_POUND] = ACTIONS(1714), - [anon_sym_package] = ACTIONS(1712), - [anon_sym_import] = ACTIONS(1712), - [anon_sym_using] = ACTIONS(1712), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_case] = ACTIONS(1712), - [anon_sym_default] = ACTIONS(1712), - [anon_sym_cast] = ACTIONS(1712), - [anon_sym_DOLLARtype] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_untyped] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_this] = ACTIONS(1712), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_AT_COLON] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1712), - [anon_sym_GT_GT_GT] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_EQ_EQ] = ACTIONS(1714), - [anon_sym_BANG_EQ] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_LT_EQ] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(1712), - [anon_sym_GT_EQ] = ACTIONS(1714), - [anon_sym_EQ_GT] = ACTIONS(1714), - [anon_sym_QMARK_QMARK] = ACTIONS(1714), - [anon_sym_EQ] = ACTIONS(1712), - [sym__rangeOperator] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1712), - [anon_sym_macro] = ACTIONS(1712), - [anon_sym_abstract] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_public] = ACTIONS(1712), - [anon_sym_private] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_inline] = ACTIONS(1712), - [anon_sym_overload] = ACTIONS(1712), - [anon_sym_override] = ACTIONS(1712), - [anon_sym_final] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1712), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_typedef] = ACTIONS(1712), - [anon_sym_function] = ACTIONS(1712), - [anon_sym_var] = ACTIONS(1712), - [aux_sym_integer_token1] = ACTIONS(1712), - [aux_sym_integer_token2] = ACTIONS(1714), - [aux_sym_float_token1] = ACTIONS(1712), - [aux_sym_float_token2] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), - [aux_sym_string_token1] = ACTIONS(1714), - [aux_sym_string_token3] = ACTIONS(1714), + [sym__rhs_expression] = STATE(1123), + [sym__unaryExpression] = STATE(3579), + [sym_runtime_type_check_expression] = STATE(3579), + [sym_switch_expression] = STATE(3579), + [sym_cast_expression] = STATE(3579), + [sym_type_trace_expression] = STATE(3579), + [sym__parenthesized_expression] = STATE(2610), + [sym_range_expression] = STATE(3579), + [sym_subscript_expression] = STATE(3579), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1123), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2561), + [anon_sym_untyped] = ACTIONS(2563), + [anon_sym_break] = ACTIONS(2565), + [anon_sym_continue] = ACTIONS(2565), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1714), [sym__closing_brace_unmarker] = ACTIONS(3), }, [329] = { - [sym_identifier] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_package] = ACTIONS(1716), - [anon_sym_import] = ACTIONS(1716), - [anon_sym_using] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_case] = ACTIONS(1716), - [anon_sym_default] = ACTIONS(1716), - [anon_sym_cast] = ACTIONS(1716), - [anon_sym_DOLLARtype] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_untyped] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_this] = ACTIONS(1716), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_AT_COLON] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_new] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_PLUS_PLUS] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1716), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_LT_LT] = ACTIONS(1718), - [anon_sym_GT_GT] = ACTIONS(1716), - [anon_sym_GT_GT_GT] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_CARET] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_EQ_EQ] = ACTIONS(1718), - [anon_sym_BANG_EQ] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_LT_EQ] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1716), - [anon_sym_GT_EQ] = ACTIONS(1718), - [anon_sym_EQ_GT] = ACTIONS(1718), - [anon_sym_QMARK_QMARK] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1716), - [sym__rangeOperator] = ACTIONS(1718), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_macro] = ACTIONS(1716), - [anon_sym_abstract] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1716), - [anon_sym_public] = ACTIONS(1716), - [anon_sym_private] = ACTIONS(1716), - [anon_sym_extern] = ACTIONS(1716), - [anon_sym_inline] = ACTIONS(1716), - [anon_sym_overload] = ACTIONS(1716), - [anon_sym_override] = ACTIONS(1716), - [anon_sym_final] = ACTIONS(1716), - [anon_sym_class] = ACTIONS(1716), - [anon_sym_interface] = ACTIONS(1716), - [anon_sym_typedef] = ACTIONS(1716), - [anon_sym_function] = ACTIONS(1716), - [anon_sym_var] = ACTIONS(1716), - [aux_sym_integer_token1] = ACTIONS(1716), - [aux_sym_integer_token2] = ACTIONS(1718), - [aux_sym_float_token1] = ACTIONS(1716), - [aux_sym_float_token2] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1716), - [anon_sym_false] = ACTIONS(1716), - [aux_sym_string_token1] = ACTIONS(1718), - [aux_sym_string_token3] = ACTIONS(1718), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1718), + [sym_identifier] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(1825), + [anon_sym_package] = ACTIONS(1827), + [anon_sym_DOT] = ACTIONS(1827), + [anon_sym_import] = ACTIONS(1827), + [anon_sym_STAR] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1827), + [anon_sym_throw] = ACTIONS(1827), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_switch] = ACTIONS(1827), + [anon_sym_LBRACE] = ACTIONS(1825), + [anon_sym_case] = ACTIONS(1827), + [anon_sym_COLON] = ACTIONS(1825), + [anon_sym_default] = ACTIONS(1827), + [anon_sym_cast] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_DOLLARtype] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1827), + [anon_sym_return] = ACTIONS(1827), + [anon_sym_untyped] = ACTIONS(1827), + [anon_sym_break] = ACTIONS(1827), + [anon_sym_continue] = ACTIONS(1827), + [anon_sym_LBRACK] = ACTIONS(1825), + [anon_sym_this] = ACTIONS(1827), + [anon_sym_QMARK] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(1827), + [anon_sym_AT_COLON] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1827), + [anon_sym_catch] = ACTIONS(1827), + [anon_sym_else] = ACTIONS(1827), + [anon_sym_if] = ACTIONS(1827), + [anon_sym_while] = ACTIONS(1827), + [anon_sym_do] = ACTIONS(1827), + [anon_sym_new] = ACTIONS(1827), + [anon_sym_TILDE] = ACTIONS(1825), + [anon_sym_BANG] = ACTIONS(1827), + [anon_sym_DASH] = ACTIONS(1827), + [anon_sym_PLUS_PLUS] = ACTIONS(1825), + [anon_sym_DASH_DASH] = ACTIONS(1825), + [anon_sym_PERCENT] = ACTIONS(1825), + [anon_sym_SLASH] = ACTIONS(1827), + [anon_sym_PLUS] = ACTIONS(1827), + [anon_sym_LT_LT] = ACTIONS(1825), + [anon_sym_GT_GT] = ACTIONS(1827), + [anon_sym_GT_GT_GT] = ACTIONS(1825), + [anon_sym_AMP] = ACTIONS(1827), + [anon_sym_PIPE] = ACTIONS(1827), + [anon_sym_CARET] = ACTIONS(1825), + [anon_sym_AMP_AMP] = ACTIONS(1825), + [anon_sym_PIPE_PIPE] = ACTIONS(1825), + [anon_sym_EQ_EQ] = ACTIONS(1825), + [anon_sym_BANG_EQ] = ACTIONS(1825), + [anon_sym_LT] = ACTIONS(1827), + [anon_sym_LT_EQ] = ACTIONS(1825), + [anon_sym_GT] = ACTIONS(1827), + [anon_sym_GT_EQ] = ACTIONS(1825), + [anon_sym_EQ_GT] = ACTIONS(1825), + [anon_sym_QMARK_QMARK] = ACTIONS(1825), + [anon_sym_EQ] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1825), + [anon_sym_null] = ACTIONS(1827), + [anon_sym_macro] = ACTIONS(1827), + [anon_sym_abstract] = ACTIONS(1827), + [anon_sym_static] = ACTIONS(1827), + [anon_sym_public] = ACTIONS(1827), + [anon_sym_private] = ACTIONS(1827), + [anon_sym_extern] = ACTIONS(1827), + [anon_sym_inline] = ACTIONS(1827), + [anon_sym_overload] = ACTIONS(1827), + [anon_sym_override] = ACTIONS(1827), + [anon_sym_final] = ACTIONS(1827), + [anon_sym_class] = ACTIONS(1827), + [anon_sym_interface] = ACTIONS(1827), + [anon_sym_enum] = ACTIONS(1827), + [anon_sym_typedef] = ACTIONS(1827), + [anon_sym_function] = ACTIONS(1827), + [anon_sym_var] = ACTIONS(1827), + [aux_sym_integer_token1] = ACTIONS(1827), + [aux_sym_integer_token2] = ACTIONS(1825), + [aux_sym_float_token1] = ACTIONS(1827), + [aux_sym_float_token2] = ACTIONS(1825), + [anon_sym_true] = ACTIONS(1827), + [anon_sym_false] = ACTIONS(1827), + [aux_sym_string_token1] = ACTIONS(1825), + [aux_sym_string_token3] = ACTIONS(1825), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1825), [sym__closing_brace_unmarker] = ACTIONS(3), }, [330] = { - [sym_identifier] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1720), - [anon_sym_import] = ACTIONS(1720), - [anon_sym_using] = ACTIONS(1720), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_case] = ACTIONS(1720), - [anon_sym_default] = ACTIONS(1720), - [anon_sym_cast] = ACTIONS(1720), - [anon_sym_DOLLARtype] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_untyped] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1720), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_AT_COLON] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_new] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1720), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1722), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_LT_EQ] = ACTIONS(1722), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1722), - [anon_sym_EQ_GT] = ACTIONS(1722), - [anon_sym_QMARK_QMARK] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1720), - [sym__rangeOperator] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1720), - [anon_sym_macro] = ACTIONS(1720), - [anon_sym_abstract] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_public] = ACTIONS(1720), - [anon_sym_private] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym_overload] = ACTIONS(1720), - [anon_sym_override] = ACTIONS(1720), - [anon_sym_final] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1720), - [anon_sym_interface] = ACTIONS(1720), - [anon_sym_typedef] = ACTIONS(1720), - [anon_sym_function] = ACTIONS(1720), - [anon_sym_var] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1720), - [aux_sym_integer_token2] = ACTIONS(1722), - [aux_sym_float_token1] = ACTIONS(1720), - [aux_sym_float_token2] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [aux_sym_string_token1] = ACTIONS(1722), - [aux_sym_string_token3] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1722), + [sym__rhs_expression] = STATE(997), + [sym__unaryExpression] = STATE(1547), + [sym_runtime_type_check_expression] = STATE(1547), + [sym_switch_expression] = STATE(1547), + [sym_cast_expression] = STATE(1547), + [sym_type_trace_expression] = STATE(1547), + [sym__parenthesized_expression] = STATE(1433), + [sym_range_expression] = STATE(1547), + [sym_subscript_expression] = STATE(1547), + [sym_member_expression] = STATE(1441), + [sym__lhs_expression] = STATE(2752), + [sym__call] = STATE(1510), + [sym__constructor_call] = STATE(1535), + [sym_call_expression] = STATE(997), + [sym_operator] = STATE(1829), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1554), + [sym_integer] = STATE(1495), + [sym_float] = STATE(1554), + [sym_bool] = STATE(1554), + [sym_string] = STATE(1478), + [sym_null] = STATE(1554), + [sym_array] = STATE(1554), + [sym_map] = STATE(1554), + [sym_object] = STATE(1554), + [sym_pair] = STATE(1554), + [sym_identifier] = ACTIONS(2567), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(2569), + [anon_sym_switch] = ACTIONS(111), + [anon_sym_LBRACE] = ACTIONS(2571), + [anon_sym_cast] = ACTIONS(2573), + [anon_sym_DOLLARtype] = ACTIONS(2575), + [anon_sym_return] = ACTIONS(2577), + [anon_sym_untyped] = ACTIONS(2579), + [anon_sym_break] = ACTIONS(2581), + [anon_sym_continue] = ACTIONS(2581), + [anon_sym_LBRACK] = ACTIONS(2583), + [anon_sym_this] = ACTIONS(2585), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(2589), + [aux_sym_integer_token1] = ACTIONS(2591), + [aux_sym_integer_token2] = ACTIONS(2593), + [aux_sym_float_token1] = ACTIONS(2595), + [aux_sym_float_token2] = ACTIONS(2597), + [anon_sym_true] = ACTIONS(2599), + [anon_sym_false] = ACTIONS(2599), + [aux_sym_string_token1] = ACTIONS(2601), + [aux_sym_string_token3] = ACTIONS(2603), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [331] = { - [sym_identifier] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1726), - [anon_sym_package] = ACTIONS(1724), - [anon_sym_import] = ACTIONS(1724), - [anon_sym_using] = ACTIONS(1724), - [anon_sym_throw] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_case] = ACTIONS(1724), - [anon_sym_default] = ACTIONS(1724), - [anon_sym_cast] = ACTIONS(1724), - [anon_sym_DOLLARtype] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_untyped] = ACTIONS(1724), - [anon_sym_break] = ACTIONS(1724), - [anon_sym_continue] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_this] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1724), - [anon_sym_AT_COLON] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_PERCENT] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_SLASH] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_GT_GT_GT] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1726), - [anon_sym_EQ_GT] = ACTIONS(1726), - [anon_sym_QMARK_QMARK] = ACTIONS(1726), - [anon_sym_EQ] = ACTIONS(1724), - [sym__rangeOperator] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1724), - [anon_sym_macro] = ACTIONS(1724), - [anon_sym_abstract] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_public] = ACTIONS(1724), - [anon_sym_private] = ACTIONS(1724), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_inline] = ACTIONS(1724), - [anon_sym_overload] = ACTIONS(1724), - [anon_sym_override] = ACTIONS(1724), - [anon_sym_final] = ACTIONS(1724), - [anon_sym_class] = ACTIONS(1724), - [anon_sym_interface] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1724), - [anon_sym_function] = ACTIONS(1724), - [anon_sym_var] = ACTIONS(1724), - [aux_sym_integer_token1] = ACTIONS(1724), - [aux_sym_integer_token2] = ACTIONS(1726), - [aux_sym_float_token1] = ACTIONS(1724), - [aux_sym_float_token2] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1724), - [anon_sym_false] = ACTIONS(1724), - [aux_sym_string_token1] = ACTIONS(1726), - [aux_sym_string_token3] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1726), + [sym_identifier] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_package] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1855), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_case] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_cast] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_DOLLARtype] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_untyped] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1855), + [anon_sym_QMARK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_AT_COLON] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_EQ_GT] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1853), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1855), + [anon_sym_macro] = ACTIONS(1855), + [anon_sym_abstract] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_overload] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_final] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_function] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1855), + [aux_sym_integer_token1] = ACTIONS(1855), + [aux_sym_integer_token2] = ACTIONS(1853), + [aux_sym_float_token1] = ACTIONS(1855), + [aux_sym_float_token2] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [aux_sym_string_token1] = ACTIONS(1853), + [aux_sym_string_token3] = ACTIONS(1853), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1853), + [sym__closing_brace_marker] = ACTIONS(1853), [sym__closing_brace_unmarker] = ACTIONS(3), }, [332] = { - [sym_identifier] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_package] = ACTIONS(1728), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_using] = ACTIONS(1728), - [anon_sym_throw] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_case] = ACTIONS(1728), - [anon_sym_default] = ACTIONS(1728), - [anon_sym_cast] = ACTIONS(1728), - [anon_sym_DOLLARtype] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_untyped] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_this] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1728), - [anon_sym_AT_COLON] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_PERCENT] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_SLASH] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1730), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_EQ_GT] = ACTIONS(1730), - [anon_sym_QMARK_QMARK] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1728), - [sym__rangeOperator] = ACTIONS(1730), - [anon_sym_null] = ACTIONS(1728), - [anon_sym_macro] = ACTIONS(1728), - [anon_sym_abstract] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_public] = ACTIONS(1728), - [anon_sym_private] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_inline] = ACTIONS(1728), - [anon_sym_overload] = ACTIONS(1728), - [anon_sym_override] = ACTIONS(1728), - [anon_sym_final] = ACTIONS(1728), - [anon_sym_class] = ACTIONS(1728), - [anon_sym_interface] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1728), - [anon_sym_function] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1728), - [aux_sym_integer_token1] = ACTIONS(1728), - [aux_sym_integer_token2] = ACTIONS(1730), - [aux_sym_float_token1] = ACTIONS(1728), - [aux_sym_float_token2] = ACTIONS(1730), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), - [aux_sym_string_token1] = ACTIONS(1730), - [aux_sym_string_token3] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1730), + [sym_identifier] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1857), + [anon_sym_package] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_cast] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_DOLLARtype] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_untyped] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_this] = ACTIONS(1859), + [anon_sym_QMARK] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_AT_COLON] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_EQ_GT] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1859), + [anon_sym_macro] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_inline] = ACTIONS(1859), + [anon_sym_overload] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_final] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_typedef] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [aux_sym_integer_token1] = ACTIONS(1859), + [aux_sym_integer_token2] = ACTIONS(1857), + [aux_sym_float_token1] = ACTIONS(1859), + [aux_sym_float_token2] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [aux_sym_string_token1] = ACTIONS(1857), + [aux_sym_string_token3] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1857), + [sym__closing_brace_marker] = ACTIONS(1857), [sym__closing_brace_unmarker] = ACTIONS(3), }, [333] = { - [sym_identifier] = ACTIONS(1732), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_package] = ACTIONS(1732), - [anon_sym_import] = ACTIONS(1732), - [anon_sym_using] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_case] = ACTIONS(1732), - [anon_sym_default] = ACTIONS(1732), - [anon_sym_cast] = ACTIONS(1732), - [anon_sym_DOLLARtype] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_untyped] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1732), - [anon_sym_AT_COLON] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_LT_LT] = ACTIONS(1734), - [anon_sym_GT_GT] = ACTIONS(1732), - [anon_sym_GT_GT_GT] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_EQ_GT] = ACTIONS(1734), - [anon_sym_QMARK_QMARK] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1732), - [sym__rangeOperator] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_macro] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_overload] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_final] = ACTIONS(1732), - [anon_sym_class] = ACTIONS(1732), - [anon_sym_interface] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1732), - [anon_sym_var] = ACTIONS(1732), - [aux_sym_integer_token1] = ACTIONS(1732), - [aux_sym_integer_token2] = ACTIONS(1734), - [aux_sym_float_token1] = ACTIONS(1732), - [aux_sym_float_token2] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [aux_sym_string_token1] = ACTIONS(1734), - [aux_sym_string_token3] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1734), + [sym_identifier] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(1881), + [anon_sym_package] = ACTIONS(1883), + [anon_sym_DOT] = ACTIONS(1883), + [anon_sym_import] = ACTIONS(1883), + [anon_sym_STAR] = ACTIONS(1881), + [anon_sym_using] = ACTIONS(1883), + [anon_sym_throw] = ACTIONS(1883), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_switch] = ACTIONS(1883), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_case] = ACTIONS(1883), + [anon_sym_COLON] = ACTIONS(1881), + [anon_sym_default] = ACTIONS(1883), + [anon_sym_cast] = ACTIONS(1883), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLARtype] = ACTIONS(1881), + [anon_sym_for] = ACTIONS(1883), + [anon_sym_return] = ACTIONS(1883), + [anon_sym_untyped] = ACTIONS(1883), + [anon_sym_break] = ACTIONS(1883), + [anon_sym_continue] = ACTIONS(1883), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_this] = ACTIONS(1883), + [anon_sym_QMARK] = ACTIONS(1883), + [anon_sym_AT] = ACTIONS(1883), + [anon_sym_AT_COLON] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1883), + [anon_sym_catch] = ACTIONS(1883), + [anon_sym_else] = ACTIONS(1883), + [anon_sym_if] = ACTIONS(1883), + [anon_sym_while] = ACTIONS(1883), + [anon_sym_do] = ACTIONS(1883), + [anon_sym_new] = ACTIONS(1883), + [anon_sym_TILDE] = ACTIONS(1881), + [anon_sym_BANG] = ACTIONS(1883), + [anon_sym_DASH] = ACTIONS(1883), + [anon_sym_PLUS_PLUS] = ACTIONS(1881), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_PERCENT] = ACTIONS(1881), + [anon_sym_SLASH] = ACTIONS(1883), + [anon_sym_PLUS] = ACTIONS(1883), + [anon_sym_LT_LT] = ACTIONS(1881), + [anon_sym_GT_GT] = ACTIONS(1883), + [anon_sym_GT_GT_GT] = ACTIONS(1881), + [anon_sym_AMP] = ACTIONS(1883), + [anon_sym_PIPE] = ACTIONS(1883), + [anon_sym_CARET] = ACTIONS(1881), + [anon_sym_AMP_AMP] = ACTIONS(1881), + [anon_sym_PIPE_PIPE] = ACTIONS(1881), + [anon_sym_EQ_EQ] = ACTIONS(1881), + [anon_sym_BANG_EQ] = ACTIONS(1881), + [anon_sym_LT] = ACTIONS(1883), + [anon_sym_LT_EQ] = ACTIONS(1881), + [anon_sym_GT] = ACTIONS(1883), + [anon_sym_GT_EQ] = ACTIONS(1881), + [anon_sym_EQ_GT] = ACTIONS(1881), + [anon_sym_QMARK_QMARK] = ACTIONS(1881), + [anon_sym_EQ] = ACTIONS(1883), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1883), + [anon_sym_macro] = ACTIONS(1883), + [anon_sym_abstract] = ACTIONS(1883), + [anon_sym_static] = ACTIONS(1883), + [anon_sym_public] = ACTIONS(1883), + [anon_sym_private] = ACTIONS(1883), + [anon_sym_extern] = ACTIONS(1883), + [anon_sym_inline] = ACTIONS(1883), + [anon_sym_overload] = ACTIONS(1883), + [anon_sym_override] = ACTIONS(1883), + [anon_sym_final] = ACTIONS(1883), + [anon_sym_class] = ACTIONS(1883), + [anon_sym_interface] = ACTIONS(1883), + [anon_sym_enum] = ACTIONS(1883), + [anon_sym_typedef] = ACTIONS(1883), + [anon_sym_function] = ACTIONS(1883), + [anon_sym_var] = ACTIONS(1883), + [aux_sym_integer_token1] = ACTIONS(1883), + [aux_sym_integer_token2] = ACTIONS(1881), + [aux_sym_float_token1] = ACTIONS(1883), + [aux_sym_float_token2] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1883), + [anon_sym_false] = ACTIONS(1883), + [aux_sym_string_token1] = ACTIONS(1881), + [aux_sym_string_token3] = ACTIONS(1881), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1881), [sym__closing_brace_unmarker] = ACTIONS(3), }, [334] = { - [sym_identifier] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_package] = ACTIONS(1736), - [anon_sym_import] = ACTIONS(1736), - [anon_sym_using] = ACTIONS(1736), - [anon_sym_throw] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_case] = ACTIONS(1736), - [anon_sym_default] = ACTIONS(1736), - [anon_sym_cast] = ACTIONS(1736), - [anon_sym_DOLLARtype] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_untyped] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_this] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_AT_COLON] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_new] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1736), - [anon_sym_LT_LT] = ACTIONS(1738), - [anon_sym_GT_GT] = ACTIONS(1736), - [anon_sym_GT_GT_GT] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1738), - [anon_sym_EQ_EQ] = ACTIONS(1738), - [anon_sym_BANG_EQ] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1738), - [anon_sym_EQ_GT] = ACTIONS(1738), - [anon_sym_QMARK_QMARK] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1736), - [sym__rangeOperator] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1736), - [anon_sym_macro] = ACTIONS(1736), - [anon_sym_abstract] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_inline] = ACTIONS(1736), - [anon_sym_overload] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_final] = ACTIONS(1736), - [anon_sym_class] = ACTIONS(1736), - [anon_sym_interface] = ACTIONS(1736), - [anon_sym_typedef] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(1736), - [anon_sym_var] = ACTIONS(1736), - [aux_sym_integer_token1] = ACTIONS(1736), - [aux_sym_integer_token2] = ACTIONS(1738), - [aux_sym_float_token1] = ACTIONS(1736), - [aux_sym_float_token2] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1736), - [anon_sym_false] = ACTIONS(1736), - [aux_sym_string_token1] = ACTIONS(1738), - [aux_sym_string_token3] = ACTIONS(1738), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1738), + [sym__rhs_expression] = STATE(1135), + [sym__unaryExpression] = STATE(3514), + [sym_runtime_type_check_expression] = STATE(3514), + [sym_switch_expression] = STATE(3514), + [sym_cast_expression] = STATE(3514), + [sym_type_trace_expression] = STATE(3514), + [sym__parenthesized_expression] = STATE(2632), + [sym_range_expression] = STATE(3514), + [sym_subscript_expression] = STATE(3514), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1135), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2605), + [anon_sym_untyped] = ACTIONS(2607), + [anon_sym_break] = ACTIONS(2609), + [anon_sym_continue] = ACTIONS(2609), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [335] = { - [sym_identifier] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_package] = ACTIONS(1740), - [anon_sym_import] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1740), - [anon_sym_throw] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_case] = ACTIONS(1740), - [anon_sym_default] = ACTIONS(1740), - [anon_sym_cast] = ACTIONS(1740), - [anon_sym_DOLLARtype] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_untyped] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_this] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1740), - [anon_sym_AT_COLON] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1742), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_GT_GT_GT] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym_AMP_AMP] = ACTIONS(1742), - [anon_sym_PIPE_PIPE] = ACTIONS(1742), - [anon_sym_EQ_EQ] = ACTIONS(1742), - [anon_sym_BANG_EQ] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_EQ] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1742), - [anon_sym_EQ_GT] = ACTIONS(1742), - [anon_sym_QMARK_QMARK] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1740), - [sym__rangeOperator] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1740), - [anon_sym_macro] = ACTIONS(1740), - [anon_sym_abstract] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1740), - [anon_sym_public] = ACTIONS(1740), - [anon_sym_private] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_inline] = ACTIONS(1740), - [anon_sym_overload] = ACTIONS(1740), - [anon_sym_override] = ACTIONS(1740), - [anon_sym_final] = ACTIONS(1740), - [anon_sym_class] = ACTIONS(1740), - [anon_sym_interface] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1740), - [anon_sym_function] = ACTIONS(1740), - [anon_sym_var] = ACTIONS(1740), - [aux_sym_integer_token1] = ACTIONS(1740), - [aux_sym_integer_token2] = ACTIONS(1742), - [aux_sym_float_token1] = ACTIONS(1740), - [aux_sym_float_token2] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [aux_sym_string_token1] = ACTIONS(1742), - [aux_sym_string_token3] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1742), + [sym__rhs_expression] = STATE(1228), + [sym__unaryExpression] = STATE(3619), + [sym_runtime_type_check_expression] = STATE(3619), + [sym_switch_expression] = STATE(3619), + [sym_cast_expression] = STATE(3619), + [sym_type_trace_expression] = STATE(3619), + [sym__parenthesized_expression] = STATE(2542), + [sym_range_expression] = STATE(3619), + [sym_subscript_expression] = STATE(3619), + [sym_member_expression] = STATE(1559), + [sym__lhs_expression] = STATE(2661), + [sym__call] = STATE(1928), + [sym__constructor_call] = STATE(1931), + [sym_call_expression] = STATE(1228), + [sym_operator] = STATE(1933), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1989), + [sym_integer] = STATE(1715), + [sym_float] = STATE(1989), + [sym_bool] = STATE(1989), + [sym_string] = STATE(1716), + [sym_null] = STATE(1989), + [sym_array] = STATE(1989), + [sym_map] = STATE(1989), + [sym_object] = STATE(1989), + [sym_pair] = STATE(1989), + [sym_identifier] = ACTIONS(7), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(21), + [anon_sym_switch] = ACTIONS(23), + [anon_sym_LBRACE] = ACTIONS(1997), + [anon_sym_cast] = ACTIONS(27), + [anon_sym_DOLLARtype] = ACTIONS(29), + [anon_sym_return] = ACTIONS(2611), + [anon_sym_untyped] = ACTIONS(2613), + [anon_sym_break] = ACTIONS(2615), + [anon_sym_continue] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(39), + [anon_sym_this] = ACTIONS(41), + [anon_sym_new] = ACTIONS(55), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(69), + [aux_sym_integer_token1] = ACTIONS(87), + [aux_sym_integer_token2] = ACTIONS(89), + [aux_sym_float_token1] = ACTIONS(91), + [aux_sym_float_token2] = ACTIONS(93), + [anon_sym_true] = ACTIONS(95), + [anon_sym_false] = ACTIONS(95), + [aux_sym_string_token1] = ACTIONS(97), + [aux_sym_string_token3] = ACTIONS(99), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [336] = { - [sym_identifier] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_package] = ACTIONS(1744), - [anon_sym_import] = ACTIONS(1744), - [anon_sym_using] = ACTIONS(1744), - [anon_sym_throw] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_case] = ACTIONS(1744), - [anon_sym_default] = ACTIONS(1744), - [anon_sym_cast] = ACTIONS(1744), - [anon_sym_DOLLARtype] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_untyped] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_this] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1744), - [anon_sym_AT_COLON] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_PERCENT] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1744), - [anon_sym_GT_GT_GT] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1744), - [sym__rangeOperator] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), - [anon_sym_macro] = ACTIONS(1744), - [anon_sym_abstract] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_public] = ACTIONS(1744), - [anon_sym_private] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_inline] = ACTIONS(1744), - [anon_sym_overload] = ACTIONS(1744), - [anon_sym_override] = ACTIONS(1744), - [anon_sym_final] = ACTIONS(1744), - [anon_sym_class] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1744), - [anon_sym_function] = ACTIONS(1744), - [anon_sym_var] = ACTIONS(1744), - [aux_sym_integer_token1] = ACTIONS(1744), - [aux_sym_integer_token2] = ACTIONS(1746), - [aux_sym_float_token1] = ACTIONS(1744), - [aux_sym_float_token2] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [aux_sym_string_token1] = ACTIONS(1746), - [aux_sym_string_token3] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1746), + [sym_identifier] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1905), + [anon_sym_package] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_using] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_cast] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1905), + [anon_sym_DOLLARtype] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_untyped] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_this] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_AT_COLON] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_PERCENT] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_LT_LT] = ACTIONS(1905), + [anon_sym_GT_GT] = ACTIONS(1907), + [anon_sym_GT_GT_GT] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(1905), + [anon_sym_PIPE_PIPE] = ACTIONS(1905), + [anon_sym_EQ_EQ] = ACTIONS(1905), + [anon_sym_BANG_EQ] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(1905), + [anon_sym_GT] = ACTIONS(1907), + [anon_sym_GT_EQ] = ACTIONS(1905), + [anon_sym_EQ_GT] = ACTIONS(1905), + [anon_sym_QMARK_QMARK] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1907), + [anon_sym_macro] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym_overload] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_final] = ACTIONS(1907), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_interface] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_typedef] = ACTIONS(1907), + [anon_sym_function] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1907), + [aux_sym_integer_token1] = ACTIONS(1907), + [aux_sym_integer_token2] = ACTIONS(1905), + [aux_sym_float_token1] = ACTIONS(1907), + [aux_sym_float_token2] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym_string_token1] = ACTIONS(1905), + [aux_sym_string_token3] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1905), + [sym__closing_brace_marker] = ACTIONS(1905), [sym__closing_brace_unmarker] = ACTIONS(3), }, [337] = { - [sym_identifier] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_package] = ACTIONS(1748), - [anon_sym_import] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(1748), - [anon_sym_throw] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_case] = ACTIONS(1748), - [anon_sym_default] = ACTIONS(1748), - [anon_sym_cast] = ACTIONS(1748), - [anon_sym_DOLLARtype] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_untyped] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_this] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1748), - [anon_sym_AT_COLON] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_LT_LT] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1748), - [anon_sym_GT_GT_GT] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1748), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_EQ_GT] = ACTIONS(1750), - [anon_sym_QMARK_QMARK] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1748), - [sym__rangeOperator] = ACTIONS(1750), - [anon_sym_null] = ACTIONS(1748), - [anon_sym_macro] = ACTIONS(1748), - [anon_sym_abstract] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_public] = ACTIONS(1748), - [anon_sym_private] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym_overload] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(1748), - [anon_sym_final] = ACTIONS(1748), - [anon_sym_class] = ACTIONS(1748), - [anon_sym_interface] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1748), - [anon_sym_function] = ACTIONS(1748), - [anon_sym_var] = ACTIONS(1748), - [aux_sym_integer_token1] = ACTIONS(1748), - [aux_sym_integer_token2] = ACTIONS(1750), - [aux_sym_float_token1] = ACTIONS(1748), - [aux_sym_float_token2] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [aux_sym_string_token1] = ACTIONS(1750), - [aux_sym_string_token3] = ACTIONS(1750), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1750), + [sym__rhs_expression] = STATE(981), + [sym__unaryExpression] = STATE(239), + [sym_runtime_type_check_expression] = STATE(239), + [sym_switch_expression] = STATE(239), + [sym_cast_expression] = STATE(239), + [sym_type_trace_expression] = STATE(239), + [sym__parenthesized_expression] = STATE(166), + [sym_range_expression] = STATE(239), + [sym_subscript_expression] = STATE(239), + [sym_member_expression] = STATE(184), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(981), + [sym_operator] = STATE(2014), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [sym__literal] = STATE(1408), + [sym_integer] = STATE(163), + [sym_float] = STATE(1408), + [sym_bool] = STATE(1408), + [sym_string] = STATE(1375), + [sym_null] = STATE(1408), + [sym_array] = STATE(1408), + [sym_map] = STATE(1408), + [sym_object] = STATE(1408), + [sym_pair] = STATE(1408), + [sym_identifier] = ACTIONS(2547), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1578), + [anon_sym_switch] = ACTIONS(1353), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(2617), + [anon_sym_DOLLARtype] = ACTIONS(1357), + [anon_sym_return] = ACTIONS(2619), + [anon_sym_untyped] = ACTIONS(2621), + [anon_sym_break] = ACTIONS(1532), + [anon_sym_continue] = ACTIONS(1532), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [338] = { - [sym_identifier] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_import] = ACTIONS(1752), - [anon_sym_using] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_switch] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_case] = ACTIONS(1752), - [anon_sym_default] = ACTIONS(1752), - [anon_sym_cast] = ACTIONS(1752), - [anon_sym_DOLLARtype] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_untyped] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1752), - [anon_sym_AT_COLON] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_new] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1752), - [anon_sym_GT_GT_GT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_QMARK_QMARK] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1752), - [sym__rangeOperator] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_macro] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_inline] = ACTIONS(1752), - [anon_sym_overload] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_class] = ACTIONS(1752), - [anon_sym_interface] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1752), - [anon_sym_function] = ACTIONS(1752), - [anon_sym_var] = ACTIONS(1752), - [aux_sym_integer_token1] = ACTIONS(1752), - [aux_sym_integer_token2] = ACTIONS(1754), - [aux_sym_float_token1] = ACTIONS(1752), - [aux_sym_float_token2] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [aux_sym_string_token1] = ACTIONS(1754), - [aux_sym_string_token3] = ACTIONS(1754), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1754), + [sym_identifier] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(1901), + [anon_sym_package] = ACTIONS(1903), + [anon_sym_DOT] = ACTIONS(1903), + [anon_sym_import] = ACTIONS(1903), + [anon_sym_STAR] = ACTIONS(1901), + [anon_sym_using] = ACTIONS(1903), + [anon_sym_throw] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_switch] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1901), + [anon_sym_case] = ACTIONS(1903), + [anon_sym_default] = ACTIONS(1903), + [anon_sym_cast] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLARtype] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1903), + [anon_sym_return] = ACTIONS(1903), + [anon_sym_untyped] = ACTIONS(1903), + [anon_sym_break] = ACTIONS(1903), + [anon_sym_continue] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1901), + [anon_sym_this] = ACTIONS(1903), + [anon_sym_QMARK] = ACTIONS(1903), + [anon_sym_AT] = ACTIONS(1903), + [anon_sym_AT_COLON] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1903), + [anon_sym_catch] = ACTIONS(1903), + [anon_sym_else] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_while] = ACTIONS(1903), + [anon_sym_do] = ACTIONS(1903), + [anon_sym_new] = ACTIONS(1903), + [anon_sym_TILDE] = ACTIONS(1901), + [anon_sym_BANG] = ACTIONS(1903), + [anon_sym_DASH] = ACTIONS(1903), + [anon_sym_PLUS_PLUS] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1901), + [anon_sym_PERCENT] = ACTIONS(1901), + [anon_sym_SLASH] = ACTIONS(1903), + [anon_sym_PLUS] = ACTIONS(1903), + [anon_sym_LT_LT] = ACTIONS(1901), + [anon_sym_GT_GT] = ACTIONS(1903), + [anon_sym_GT_GT_GT] = ACTIONS(1901), + [anon_sym_AMP] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_CARET] = ACTIONS(1901), + [anon_sym_AMP_AMP] = ACTIONS(1901), + [anon_sym_PIPE_PIPE] = ACTIONS(1901), + [anon_sym_EQ_EQ] = ACTIONS(1901), + [anon_sym_BANG_EQ] = ACTIONS(1901), + [anon_sym_LT] = ACTIONS(1903), + [anon_sym_LT_EQ] = ACTIONS(1901), + [anon_sym_GT] = ACTIONS(1903), + [anon_sym_GT_EQ] = ACTIONS(1901), + [anon_sym_EQ_GT] = ACTIONS(1901), + [anon_sym_QMARK_QMARK] = ACTIONS(1901), + [anon_sym_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1901), + [anon_sym_null] = ACTIONS(1903), + [anon_sym_macro] = ACTIONS(1903), + [anon_sym_abstract] = ACTIONS(1903), + [anon_sym_static] = ACTIONS(1903), + [anon_sym_public] = ACTIONS(1903), + [anon_sym_private] = ACTIONS(1903), + [anon_sym_extern] = ACTIONS(1903), + [anon_sym_inline] = ACTIONS(1903), + [anon_sym_overload] = ACTIONS(1903), + [anon_sym_override] = ACTIONS(1903), + [anon_sym_final] = ACTIONS(1903), + [anon_sym_class] = ACTIONS(1903), + [anon_sym_interface] = ACTIONS(1903), + [anon_sym_enum] = ACTIONS(1903), + [anon_sym_typedef] = ACTIONS(1903), + [anon_sym_function] = ACTIONS(1903), + [anon_sym_var] = ACTIONS(1903), + [aux_sym_integer_token1] = ACTIONS(1903), + [aux_sym_integer_token2] = ACTIONS(1901), + [aux_sym_float_token1] = ACTIONS(1903), + [aux_sym_float_token2] = ACTIONS(1901), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym_string_token1] = ACTIONS(1901), + [aux_sym_string_token3] = ACTIONS(1901), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1901), [sym__closing_brace_unmarker] = ACTIONS(3), }, [339] = { - [sym_identifier] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_package] = ACTIONS(1756), - [anon_sym_import] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1756), - [anon_sym_throw] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_case] = ACTIONS(1756), - [anon_sym_default] = ACTIONS(1756), - [anon_sym_cast] = ACTIONS(1756), - [anon_sym_DOLLARtype] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_untyped] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_this] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_AT_COLON] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_new] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_GT_GT_GT] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_QMARK] = ACTIONS(1758), - [anon_sym_EQ] = ACTIONS(1756), - [sym__rangeOperator] = ACTIONS(1758), - [anon_sym_null] = ACTIONS(1756), - [anon_sym_macro] = ACTIONS(1756), - [anon_sym_abstract] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_public] = ACTIONS(1756), - [anon_sym_private] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_inline] = ACTIONS(1756), - [anon_sym_overload] = ACTIONS(1756), - [anon_sym_override] = ACTIONS(1756), - [anon_sym_final] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_interface] = ACTIONS(1756), - [anon_sym_typedef] = ACTIONS(1756), - [anon_sym_function] = ACTIONS(1756), - [anon_sym_var] = ACTIONS(1756), - [aux_sym_integer_token1] = ACTIONS(1756), - [aux_sym_integer_token2] = ACTIONS(1758), - [aux_sym_float_token1] = ACTIONS(1756), - [aux_sym_float_token2] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [aux_sym_string_token1] = ACTIONS(1758), - [aux_sym_string_token3] = ACTIONS(1758), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1758), + [sym_identifier] = ACTIONS(1943), + [anon_sym_POUND] = ACTIONS(1941), + [anon_sym_package] = ACTIONS(1943), + [anon_sym_DOT] = ACTIONS(1943), + [anon_sym_import] = ACTIONS(1943), + [anon_sym_STAR] = ACTIONS(1941), + [anon_sym_using] = ACTIONS(1943), + [anon_sym_throw] = ACTIONS(1943), + [anon_sym_LPAREN] = ACTIONS(1941), + [anon_sym_switch] = ACTIONS(1943), + [anon_sym_LBRACE] = ACTIONS(1941), + [anon_sym_case] = ACTIONS(1943), + [anon_sym_default] = ACTIONS(1943), + [anon_sym_cast] = ACTIONS(1943), + [anon_sym_COMMA] = ACTIONS(1941), + [anon_sym_DOLLARtype] = ACTIONS(1941), + [anon_sym_for] = ACTIONS(1943), + [anon_sym_return] = ACTIONS(1943), + [anon_sym_untyped] = ACTIONS(1943), + [anon_sym_break] = ACTIONS(1943), + [anon_sym_continue] = ACTIONS(1943), + [anon_sym_LBRACK] = ACTIONS(1941), + [anon_sym_this] = ACTIONS(1943), + [anon_sym_QMARK] = ACTIONS(1943), + [anon_sym_AT] = ACTIONS(1943), + [anon_sym_AT_COLON] = ACTIONS(1941), + [anon_sym_try] = ACTIONS(1943), + [anon_sym_catch] = ACTIONS(1943), + [anon_sym_else] = ACTIONS(1943), + [anon_sym_if] = ACTIONS(1943), + [anon_sym_while] = ACTIONS(1943), + [anon_sym_do] = ACTIONS(1943), + [anon_sym_new] = ACTIONS(1943), + [anon_sym_TILDE] = ACTIONS(1941), + [anon_sym_BANG] = ACTIONS(1943), + [anon_sym_DASH] = ACTIONS(1943), + [anon_sym_PLUS_PLUS] = ACTIONS(1941), + [anon_sym_DASH_DASH] = ACTIONS(1941), + [anon_sym_PERCENT] = ACTIONS(1941), + [anon_sym_SLASH] = ACTIONS(1943), + [anon_sym_PLUS] = ACTIONS(1943), + [anon_sym_LT_LT] = ACTIONS(1941), + [anon_sym_GT_GT] = ACTIONS(1943), + [anon_sym_GT_GT_GT] = ACTIONS(1941), + [anon_sym_AMP] = ACTIONS(1943), + [anon_sym_PIPE] = ACTIONS(1943), + [anon_sym_CARET] = ACTIONS(1941), + [anon_sym_AMP_AMP] = ACTIONS(1941), + [anon_sym_PIPE_PIPE] = ACTIONS(1941), + [anon_sym_EQ_EQ] = ACTIONS(1941), + [anon_sym_BANG_EQ] = ACTIONS(1941), + [anon_sym_LT] = ACTIONS(1943), + [anon_sym_LT_EQ] = ACTIONS(1941), + [anon_sym_GT] = ACTIONS(1943), + [anon_sym_GT_EQ] = ACTIONS(1941), + [anon_sym_EQ_GT] = ACTIONS(1941), + [anon_sym_QMARK_QMARK] = ACTIONS(1941), + [anon_sym_EQ] = ACTIONS(1943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1941), + [anon_sym_null] = ACTIONS(1943), + [anon_sym_macro] = ACTIONS(1943), + [anon_sym_abstract] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1943), + [anon_sym_public] = ACTIONS(1943), + [anon_sym_private] = ACTIONS(1943), + [anon_sym_extern] = ACTIONS(1943), + [anon_sym_inline] = ACTIONS(1943), + [anon_sym_overload] = ACTIONS(1943), + [anon_sym_override] = ACTIONS(1943), + [anon_sym_final] = ACTIONS(1943), + [anon_sym_class] = ACTIONS(1943), + [anon_sym_interface] = ACTIONS(1943), + [anon_sym_enum] = ACTIONS(1943), + [anon_sym_typedef] = ACTIONS(1943), + [anon_sym_function] = ACTIONS(1943), + [anon_sym_var] = ACTIONS(1943), + [aux_sym_integer_token1] = ACTIONS(1943), + [aux_sym_integer_token2] = ACTIONS(1941), + [aux_sym_float_token1] = ACTIONS(1943), + [aux_sym_float_token2] = ACTIONS(1941), + [anon_sym_true] = ACTIONS(1943), + [anon_sym_false] = ACTIONS(1943), + [aux_sym_string_token1] = ACTIONS(1941), + [aux_sym_string_token3] = ACTIONS(1941), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1941), [sym__closing_brace_unmarker] = ACTIONS(3), }, [340] = { - [sym_identifier] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_package] = ACTIONS(1760), - [anon_sym_import] = ACTIONS(1760), - [anon_sym_using] = ACTIONS(1760), - [anon_sym_throw] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_case] = ACTIONS(1760), - [anon_sym_default] = ACTIONS(1760), - [anon_sym_cast] = ACTIONS(1760), - [anon_sym_DOLLARtype] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_untyped] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1760), - [anon_sym_AT_COLON] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [anon_sym_PERCENT] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1760), - [anon_sym_GT_GT_GT] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1762), - [anon_sym_AMP_AMP] = ACTIONS(1762), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_EQ_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_EQ_GT] = ACTIONS(1762), - [anon_sym_QMARK_QMARK] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1760), - [sym__rangeOperator] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1760), - [anon_sym_macro] = ACTIONS(1760), - [anon_sym_abstract] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_public] = ACTIONS(1760), - [anon_sym_private] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_inline] = ACTIONS(1760), - [anon_sym_overload] = ACTIONS(1760), - [anon_sym_override] = ACTIONS(1760), - [anon_sym_final] = ACTIONS(1760), - [anon_sym_class] = ACTIONS(1760), - [anon_sym_interface] = ACTIONS(1760), - [anon_sym_typedef] = ACTIONS(1760), - [anon_sym_function] = ACTIONS(1760), - [anon_sym_var] = ACTIONS(1760), - [aux_sym_integer_token1] = ACTIONS(1760), - [aux_sym_integer_token2] = ACTIONS(1762), - [aux_sym_float_token1] = ACTIONS(1760), - [aux_sym_float_token2] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [aux_sym_string_token1] = ACTIONS(1762), - [aux_sym_string_token3] = ACTIONS(1762), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1762), + [sym_identifier] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_package] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_case] = ACTIONS(1755), + [anon_sym_default] = ACTIONS(1755), + [anon_sym_cast] = ACTIONS(1755), + [anon_sym_COMMA] = ACTIONS(1753), + [anon_sym_DOLLARtype] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_untyped] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_this] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_AT_COLON] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_EQ_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_null] = ACTIONS(1755), + [anon_sym_macro] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_overload] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_final] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_typedef] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [aux_sym_integer_token1] = ACTIONS(1755), + [aux_sym_integer_token2] = ACTIONS(1753), + [aux_sym_float_token1] = ACTIONS(1755), + [aux_sym_float_token2] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1753), + [aux_sym_string_token3] = ACTIONS(1753), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1753), [sym__closing_brace_unmarker] = ACTIONS(3), }, [341] = { - [sym_identifier] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_package] = ACTIONS(1764), - [anon_sym_import] = ACTIONS(1764), - [anon_sym_using] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_case] = ACTIONS(1764), - [anon_sym_default] = ACTIONS(1764), - [anon_sym_cast] = ACTIONS(1764), - [anon_sym_DOLLARtype] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_untyped] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1764), - [anon_sym_AT_COLON] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1764), - [anon_sym_GT_GT_GT] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_EQ_GT] = ACTIONS(1766), - [anon_sym_QMARK_QMARK] = ACTIONS(1766), - [anon_sym_EQ] = ACTIONS(1764), - [sym__rangeOperator] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_macro] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_overload] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_final] = ACTIONS(1764), - [anon_sym_class] = ACTIONS(1764), - [anon_sym_interface] = ACTIONS(1764), - [anon_sym_typedef] = ACTIONS(1764), - [anon_sym_function] = ACTIONS(1764), - [anon_sym_var] = ACTIONS(1764), - [aux_sym_integer_token1] = ACTIONS(1764), - [aux_sym_integer_token2] = ACTIONS(1766), - [aux_sym_float_token1] = ACTIONS(1764), - [aux_sym_float_token2] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [aux_sym_string_token1] = ACTIONS(1766), - [aux_sym_string_token3] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1766), + [sym_identifier] = ACTIONS(1951), + [anon_sym_POUND] = ACTIONS(1949), + [anon_sym_package] = ACTIONS(1951), + [anon_sym_DOT] = ACTIONS(1951), + [anon_sym_import] = ACTIONS(1951), + [anon_sym_STAR] = ACTIONS(1949), + [anon_sym_using] = ACTIONS(1951), + [anon_sym_throw] = ACTIONS(1951), + [anon_sym_LPAREN] = ACTIONS(1949), + [anon_sym_switch] = ACTIONS(1951), + [anon_sym_LBRACE] = ACTIONS(1949), + [anon_sym_case] = ACTIONS(1951), + [anon_sym_default] = ACTIONS(1951), + [anon_sym_cast] = ACTIONS(1951), + [anon_sym_COMMA] = ACTIONS(1949), + [anon_sym_DOLLARtype] = ACTIONS(1949), + [anon_sym_for] = ACTIONS(1951), + [anon_sym_return] = ACTIONS(1951), + [anon_sym_untyped] = ACTIONS(1951), + [anon_sym_break] = ACTIONS(1951), + [anon_sym_continue] = ACTIONS(1951), + [anon_sym_LBRACK] = ACTIONS(1949), + [anon_sym_this] = ACTIONS(1951), + [anon_sym_QMARK] = ACTIONS(1951), + [anon_sym_AT] = ACTIONS(1951), + [anon_sym_AT_COLON] = ACTIONS(1949), + [anon_sym_try] = ACTIONS(1951), + [anon_sym_catch] = ACTIONS(1951), + [anon_sym_else] = ACTIONS(1951), + [anon_sym_if] = ACTIONS(1951), + [anon_sym_while] = ACTIONS(1951), + [anon_sym_do] = ACTIONS(1951), + [anon_sym_new] = ACTIONS(1951), + [anon_sym_TILDE] = ACTIONS(1949), + [anon_sym_BANG] = ACTIONS(1951), + [anon_sym_DASH] = ACTIONS(1951), + [anon_sym_PLUS_PLUS] = ACTIONS(1949), + [anon_sym_DASH_DASH] = ACTIONS(1949), + [anon_sym_PERCENT] = ACTIONS(1949), + [anon_sym_SLASH] = ACTIONS(1951), + [anon_sym_PLUS] = ACTIONS(1951), + [anon_sym_LT_LT] = ACTIONS(1949), + [anon_sym_GT_GT] = ACTIONS(1951), + [anon_sym_GT_GT_GT] = ACTIONS(1949), + [anon_sym_AMP] = ACTIONS(1951), + [anon_sym_PIPE] = ACTIONS(1951), + [anon_sym_CARET] = ACTIONS(1949), + [anon_sym_AMP_AMP] = ACTIONS(1949), + [anon_sym_PIPE_PIPE] = ACTIONS(1949), + [anon_sym_EQ_EQ] = ACTIONS(1949), + [anon_sym_BANG_EQ] = ACTIONS(1949), + [anon_sym_LT] = ACTIONS(1951), + [anon_sym_LT_EQ] = ACTIONS(1949), + [anon_sym_GT] = ACTIONS(1951), + [anon_sym_GT_EQ] = ACTIONS(1949), + [anon_sym_EQ_GT] = ACTIONS(1949), + [anon_sym_QMARK_QMARK] = ACTIONS(1949), + [anon_sym_EQ] = ACTIONS(1951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1949), + [anon_sym_null] = ACTIONS(1951), + [anon_sym_macro] = ACTIONS(1951), + [anon_sym_abstract] = ACTIONS(1951), + [anon_sym_static] = ACTIONS(1951), + [anon_sym_public] = ACTIONS(1951), + [anon_sym_private] = ACTIONS(1951), + [anon_sym_extern] = ACTIONS(1951), + [anon_sym_inline] = ACTIONS(1951), + [anon_sym_overload] = ACTIONS(1951), + [anon_sym_override] = ACTIONS(1951), + [anon_sym_final] = ACTIONS(1951), + [anon_sym_class] = ACTIONS(1951), + [anon_sym_interface] = ACTIONS(1951), + [anon_sym_enum] = ACTIONS(1951), + [anon_sym_typedef] = ACTIONS(1951), + [anon_sym_function] = ACTIONS(1951), + [anon_sym_var] = ACTIONS(1951), + [aux_sym_integer_token1] = ACTIONS(1951), + [aux_sym_integer_token2] = ACTIONS(1949), + [aux_sym_float_token1] = ACTIONS(1951), + [aux_sym_float_token2] = ACTIONS(1949), + [anon_sym_true] = ACTIONS(1951), + [anon_sym_false] = ACTIONS(1951), + [aux_sym_string_token1] = ACTIONS(1949), + [aux_sym_string_token3] = ACTIONS(1949), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1949), [sym__closing_brace_unmarker] = ACTIONS(3), }, [342] = { - [sym_identifier] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_package] = ACTIONS(1768), - [anon_sym_import] = ACTIONS(1768), - [anon_sym_using] = ACTIONS(1768), - [anon_sym_throw] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_case] = ACTIONS(1768), - [anon_sym_default] = ACTIONS(1768), - [anon_sym_cast] = ACTIONS(1768), - [anon_sym_DOLLARtype] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_untyped] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_this] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_AT_COLON] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1768), - [anon_sym_GT_GT_GT] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_EQ_GT] = ACTIONS(1770), - [anon_sym_QMARK_QMARK] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1768), - [sym__rangeOperator] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1768), - [anon_sym_macro] = ACTIONS(1768), - [anon_sym_abstract] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_public] = ACTIONS(1768), - [anon_sym_private] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_inline] = ACTIONS(1768), - [anon_sym_overload] = ACTIONS(1768), - [anon_sym_override] = ACTIONS(1768), - [anon_sym_final] = ACTIONS(1768), - [anon_sym_class] = ACTIONS(1768), - [anon_sym_interface] = ACTIONS(1768), - [anon_sym_typedef] = ACTIONS(1768), - [anon_sym_function] = ACTIONS(1768), - [anon_sym_var] = ACTIONS(1768), - [aux_sym_integer_token1] = ACTIONS(1768), - [aux_sym_integer_token2] = ACTIONS(1770), - [aux_sym_float_token1] = ACTIONS(1768), - [aux_sym_float_token2] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [aux_sym_string_token1] = ACTIONS(1770), - [aux_sym_string_token3] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1770), + [sym_identifier] = ACTIONS(1977), + [anon_sym_POUND] = ACTIONS(1975), + [anon_sym_package] = ACTIONS(1977), + [anon_sym_DOT] = ACTIONS(1977), + [anon_sym_import] = ACTIONS(1977), + [anon_sym_STAR] = ACTIONS(1975), + [anon_sym_using] = ACTIONS(1977), + [anon_sym_throw] = ACTIONS(1977), + [anon_sym_LPAREN] = ACTIONS(1975), + [anon_sym_switch] = ACTIONS(1977), + [anon_sym_LBRACE] = ACTIONS(1975), + [anon_sym_case] = ACTIONS(1977), + [anon_sym_default] = ACTIONS(1977), + [anon_sym_cast] = ACTIONS(1977), + [anon_sym_COMMA] = ACTIONS(1975), + [anon_sym_DOLLARtype] = ACTIONS(1975), + [anon_sym_for] = ACTIONS(1977), + [anon_sym_return] = ACTIONS(1977), + [anon_sym_untyped] = ACTIONS(1977), + [anon_sym_break] = ACTIONS(1977), + [anon_sym_continue] = ACTIONS(1977), + [anon_sym_LBRACK] = ACTIONS(1975), + [anon_sym_this] = ACTIONS(1977), + [anon_sym_QMARK] = ACTIONS(1977), + [anon_sym_AT] = ACTIONS(1977), + [anon_sym_AT_COLON] = ACTIONS(1975), + [anon_sym_try] = ACTIONS(1977), + [anon_sym_catch] = ACTIONS(1977), + [anon_sym_else] = ACTIONS(1977), + [anon_sym_if] = ACTIONS(1977), + [anon_sym_while] = ACTIONS(1977), + [anon_sym_do] = ACTIONS(1977), + [anon_sym_new] = ACTIONS(1977), + [anon_sym_TILDE] = ACTIONS(1975), + [anon_sym_BANG] = ACTIONS(1977), + [anon_sym_DASH] = ACTIONS(1977), + [anon_sym_PLUS_PLUS] = ACTIONS(1975), + [anon_sym_DASH_DASH] = ACTIONS(1975), + [anon_sym_PERCENT] = ACTIONS(1975), + [anon_sym_SLASH] = ACTIONS(1977), + [anon_sym_PLUS] = ACTIONS(1977), + [anon_sym_LT_LT] = ACTIONS(1975), + [anon_sym_GT_GT] = ACTIONS(1977), + [anon_sym_GT_GT_GT] = ACTIONS(1975), + [anon_sym_AMP] = ACTIONS(1977), + [anon_sym_PIPE] = ACTIONS(1977), + [anon_sym_CARET] = ACTIONS(1975), + [anon_sym_AMP_AMP] = ACTIONS(1975), + [anon_sym_PIPE_PIPE] = ACTIONS(1975), + [anon_sym_EQ_EQ] = ACTIONS(1975), + [anon_sym_BANG_EQ] = ACTIONS(1975), + [anon_sym_LT] = ACTIONS(1977), + [anon_sym_LT_EQ] = ACTIONS(1975), + [anon_sym_GT] = ACTIONS(1977), + [anon_sym_GT_EQ] = ACTIONS(1975), + [anon_sym_EQ_GT] = ACTIONS(1975), + [anon_sym_QMARK_QMARK] = ACTIONS(1975), + [anon_sym_EQ] = ACTIONS(1977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1975), + [anon_sym_null] = ACTIONS(1977), + [anon_sym_macro] = ACTIONS(1977), + [anon_sym_abstract] = ACTIONS(1977), + [anon_sym_static] = ACTIONS(1977), + [anon_sym_public] = ACTIONS(1977), + [anon_sym_private] = ACTIONS(1977), + [anon_sym_extern] = ACTIONS(1977), + [anon_sym_inline] = ACTIONS(1977), + [anon_sym_overload] = ACTIONS(1977), + [anon_sym_override] = ACTIONS(1977), + [anon_sym_final] = ACTIONS(1977), + [anon_sym_class] = ACTIONS(1977), + [anon_sym_interface] = ACTIONS(1977), + [anon_sym_enum] = ACTIONS(1977), + [anon_sym_typedef] = ACTIONS(1977), + [anon_sym_function] = ACTIONS(1977), + [anon_sym_var] = ACTIONS(1977), + [aux_sym_integer_token1] = ACTIONS(1977), + [aux_sym_integer_token2] = ACTIONS(1975), + [aux_sym_float_token1] = ACTIONS(1977), + [aux_sym_float_token2] = ACTIONS(1975), + [anon_sym_true] = ACTIONS(1977), + [anon_sym_false] = ACTIONS(1977), + [aux_sym_string_token1] = ACTIONS(1975), + [aux_sym_string_token3] = ACTIONS(1975), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1975), [sym__closing_brace_unmarker] = ACTIONS(3), }, [343] = { - [sym_identifier] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_package] = ACTIONS(1772), - [anon_sym_import] = ACTIONS(1772), - [anon_sym_using] = ACTIONS(1772), - [anon_sym_throw] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_case] = ACTIONS(1772), - [anon_sym_default] = ACTIONS(1772), - [anon_sym_cast] = ACTIONS(1772), - [anon_sym_DOLLARtype] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_untyped] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_this] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_AT_COLON] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1774), - [anon_sym_PERCENT] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_GT_GT_GT] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1774), - [anon_sym_EQ_GT] = ACTIONS(1774), - [anon_sym_QMARK_QMARK] = ACTIONS(1774), - [anon_sym_EQ] = ACTIONS(1772), - [sym__rangeOperator] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1772), - [anon_sym_macro] = ACTIONS(1772), - [anon_sym_abstract] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_public] = ACTIONS(1772), - [anon_sym_private] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_inline] = ACTIONS(1772), - [anon_sym_overload] = ACTIONS(1772), - [anon_sym_override] = ACTIONS(1772), - [anon_sym_final] = ACTIONS(1772), - [anon_sym_class] = ACTIONS(1772), - [anon_sym_interface] = ACTIONS(1772), - [anon_sym_typedef] = ACTIONS(1772), - [anon_sym_function] = ACTIONS(1772), - [anon_sym_var] = ACTIONS(1772), - [aux_sym_integer_token1] = ACTIONS(1772), - [aux_sym_integer_token2] = ACTIONS(1774), - [aux_sym_float_token1] = ACTIONS(1772), - [aux_sym_float_token2] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [aux_sym_string_token1] = ACTIONS(1774), - [aux_sym_string_token3] = ACTIONS(1774), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1774), + [sym_identifier] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1905), + [anon_sym_package] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_using] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_case] = ACTIONS(1907), + [anon_sym_default] = ACTIONS(1907), + [anon_sym_cast] = ACTIONS(1907), + [anon_sym_COMMA] = ACTIONS(1905), + [anon_sym_DOLLARtype] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_untyped] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_this] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_AT_COLON] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_PERCENT] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_LT_LT] = ACTIONS(1905), + [anon_sym_GT_GT] = ACTIONS(1907), + [anon_sym_GT_GT_GT] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(1905), + [anon_sym_PIPE_PIPE] = ACTIONS(1905), + [anon_sym_EQ_EQ] = ACTIONS(1905), + [anon_sym_BANG_EQ] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(1905), + [anon_sym_GT] = ACTIONS(1907), + [anon_sym_GT_EQ] = ACTIONS(1905), + [anon_sym_EQ_GT] = ACTIONS(1905), + [anon_sym_QMARK_QMARK] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1907), + [anon_sym_macro] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym_overload] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_final] = ACTIONS(1907), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_interface] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_typedef] = ACTIONS(1907), + [anon_sym_function] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1907), + [aux_sym_integer_token1] = ACTIONS(1907), + [aux_sym_integer_token2] = ACTIONS(1905), + [aux_sym_float_token1] = ACTIONS(1907), + [aux_sym_float_token2] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym_string_token1] = ACTIONS(1905), + [aux_sym_string_token3] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1905), [sym__closing_brace_unmarker] = ACTIONS(3), }, [344] = { - [sym_identifier] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1776), - [anon_sym_import] = ACTIONS(1776), - [anon_sym_using] = ACTIONS(1776), - [anon_sym_throw] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_case] = ACTIONS(1776), - [anon_sym_default] = ACTIONS(1776), - [anon_sym_cast] = ACTIONS(1776), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_untyped] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1776), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1776), - [sym__rangeOperator] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1776), - [anon_sym_macro] = ACTIONS(1776), - [anon_sym_abstract] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_public] = ACTIONS(1776), - [anon_sym_private] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_inline] = ACTIONS(1776), - [anon_sym_overload] = ACTIONS(1776), - [anon_sym_override] = ACTIONS(1776), - [anon_sym_final] = ACTIONS(1776), - [anon_sym_class] = ACTIONS(1776), - [anon_sym_interface] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1776), - [anon_sym_function] = ACTIONS(1776), - [anon_sym_var] = ACTIONS(1776), - [aux_sym_integer_token1] = ACTIONS(1776), - [aux_sym_integer_token2] = ACTIONS(1778), - [aux_sym_float_token1] = ACTIONS(1776), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1778), + [sym_identifier] = ACTIONS(1457), + [anon_sym_POUND] = ACTIONS(1455), + [anon_sym_package] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_import] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(1455), + [anon_sym_using] = ACTIONS(1457), + [anon_sym_throw] = ACTIONS(1457), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_case] = ACTIONS(1457), + [anon_sym_default] = ACTIONS(1457), + [anon_sym_cast] = ACTIONS(1457), + [anon_sym_COMMA] = ACTIONS(1455), + [anon_sym_DOLLARtype] = ACTIONS(1455), + [anon_sym_for] = ACTIONS(1457), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_untyped] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_AT] = ACTIONS(1457), + [anon_sym_AT_COLON] = ACTIONS(1455), + [anon_sym_try] = ACTIONS(1457), + [anon_sym_catch] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_if] = ACTIONS(1457), + [anon_sym_while] = ACTIONS(1457), + [anon_sym_do] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(1455), + [anon_sym_BANG] = ACTIONS(1457), + [anon_sym_DASH] = ACTIONS(1457), + [anon_sym_PLUS_PLUS] = ACTIONS(1455), + [anon_sym_DASH_DASH] = ACTIONS(1455), + [anon_sym_PERCENT] = ACTIONS(1455), + [anon_sym_SLASH] = ACTIONS(1457), + [anon_sym_PLUS] = ACTIONS(1457), + [anon_sym_LT_LT] = ACTIONS(1455), + [anon_sym_GT_GT] = ACTIONS(1457), + [anon_sym_GT_GT_GT] = ACTIONS(1455), + [anon_sym_AMP] = ACTIONS(1457), + [anon_sym_PIPE] = ACTIONS(1457), + [anon_sym_CARET] = ACTIONS(1455), + [anon_sym_AMP_AMP] = ACTIONS(1455), + [anon_sym_PIPE_PIPE] = ACTIONS(1455), + [anon_sym_EQ_EQ] = ACTIONS(1455), + [anon_sym_BANG_EQ] = ACTIONS(1455), + [anon_sym_LT] = ACTIONS(1457), + [anon_sym_LT_EQ] = ACTIONS(1455), + [anon_sym_GT] = ACTIONS(1457), + [anon_sym_GT_EQ] = ACTIONS(1455), + [anon_sym_EQ_GT] = ACTIONS(1455), + [anon_sym_QMARK_QMARK] = ACTIONS(1455), + [anon_sym_EQ] = ACTIONS(1457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1455), + [anon_sym_null] = ACTIONS(1457), + [anon_sym_macro] = ACTIONS(1457), + [anon_sym_abstract] = ACTIONS(1457), + [anon_sym_static] = ACTIONS(1457), + [anon_sym_public] = ACTIONS(1457), + [anon_sym_private] = ACTIONS(1457), + [anon_sym_extern] = ACTIONS(1457), + [anon_sym_inline] = ACTIONS(1457), + [anon_sym_overload] = ACTIONS(1457), + [anon_sym_override] = ACTIONS(1457), + [anon_sym_final] = ACTIONS(1457), + [anon_sym_class] = ACTIONS(1457), + [anon_sym_interface] = ACTIONS(1457), + [anon_sym_enum] = ACTIONS(1457), + [anon_sym_typedef] = ACTIONS(1457), + [anon_sym_function] = ACTIONS(1457), + [anon_sym_var] = ACTIONS(1457), + [aux_sym_integer_token1] = ACTIONS(1457), + [aux_sym_integer_token2] = ACTIONS(1455), + [aux_sym_float_token1] = ACTIONS(1457), + [aux_sym_float_token2] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [aux_sym_string_token1] = ACTIONS(1455), + [aux_sym_string_token3] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1455), [sym__closing_brace_unmarker] = ACTIONS(3), }, [345] = { - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_case] = ACTIONS(1780), - [anon_sym_default] = ACTIONS(1780), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1780), - [sym__rangeOperator] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_macro] = ACTIONS(1780), - [anon_sym_abstract] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_inline] = ACTIONS(1780), - [anon_sym_overload] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_final] = ACTIONS(1780), - [anon_sym_class] = ACTIONS(1780), - [anon_sym_interface] = ACTIONS(1780), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_function] = ACTIONS(1780), - [anon_sym_var] = ACTIONS(1780), - [aux_sym_integer_token1] = ACTIONS(1780), - [aux_sym_integer_token2] = ACTIONS(1782), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1782), + [sym_identifier] = ACTIONS(1955), + [anon_sym_POUND] = ACTIONS(1953), + [anon_sym_package] = ACTIONS(1955), + [anon_sym_DOT] = ACTIONS(1955), + [anon_sym_import] = ACTIONS(1955), + [anon_sym_STAR] = ACTIONS(1953), + [anon_sym_using] = ACTIONS(1955), + [anon_sym_throw] = ACTIONS(1955), + [anon_sym_LPAREN] = ACTIONS(1953), + [anon_sym_switch] = ACTIONS(1955), + [anon_sym_LBRACE] = ACTIONS(1953), + [anon_sym_case] = ACTIONS(1955), + [anon_sym_default] = ACTIONS(1955), + [anon_sym_cast] = ACTIONS(1955), + [anon_sym_COMMA] = ACTIONS(1953), + [anon_sym_DOLLARtype] = ACTIONS(1953), + [anon_sym_for] = ACTIONS(1955), + [anon_sym_return] = ACTIONS(1955), + [anon_sym_untyped] = ACTIONS(1955), + [anon_sym_break] = ACTIONS(1955), + [anon_sym_continue] = ACTIONS(1955), + [anon_sym_LBRACK] = ACTIONS(1953), + [anon_sym_this] = ACTIONS(1955), + [anon_sym_QMARK] = ACTIONS(1955), + [anon_sym_AT] = ACTIONS(1955), + [anon_sym_AT_COLON] = ACTIONS(1953), + [anon_sym_try] = ACTIONS(1955), + [anon_sym_catch] = ACTIONS(1955), + [anon_sym_else] = ACTIONS(1955), + [anon_sym_if] = ACTIONS(1955), + [anon_sym_while] = ACTIONS(1955), + [anon_sym_do] = ACTIONS(1955), + [anon_sym_new] = ACTIONS(1955), + [anon_sym_TILDE] = ACTIONS(1953), + [anon_sym_BANG] = ACTIONS(1955), + [anon_sym_DASH] = ACTIONS(1955), + [anon_sym_PLUS_PLUS] = ACTIONS(1953), + [anon_sym_DASH_DASH] = ACTIONS(1953), + [anon_sym_PERCENT] = ACTIONS(1953), + [anon_sym_SLASH] = ACTIONS(1955), + [anon_sym_PLUS] = ACTIONS(1955), + [anon_sym_LT_LT] = ACTIONS(1953), + [anon_sym_GT_GT] = ACTIONS(1955), + [anon_sym_GT_GT_GT] = ACTIONS(1953), + [anon_sym_AMP] = ACTIONS(1955), + [anon_sym_PIPE] = ACTIONS(1955), + [anon_sym_CARET] = ACTIONS(1953), + [anon_sym_AMP_AMP] = ACTIONS(1953), + [anon_sym_PIPE_PIPE] = ACTIONS(1953), + [anon_sym_EQ_EQ] = ACTIONS(1953), + [anon_sym_BANG_EQ] = ACTIONS(1953), + [anon_sym_LT] = ACTIONS(1955), + [anon_sym_LT_EQ] = ACTIONS(1953), + [anon_sym_GT] = ACTIONS(1955), + [anon_sym_GT_EQ] = ACTIONS(1953), + [anon_sym_EQ_GT] = ACTIONS(1953), + [anon_sym_QMARK_QMARK] = ACTIONS(1953), + [anon_sym_EQ] = ACTIONS(1955), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1953), + [anon_sym_null] = ACTIONS(1955), + [anon_sym_macro] = ACTIONS(1955), + [anon_sym_abstract] = ACTIONS(1955), + [anon_sym_static] = ACTIONS(1955), + [anon_sym_public] = ACTIONS(1955), + [anon_sym_private] = ACTIONS(1955), + [anon_sym_extern] = ACTIONS(1955), + [anon_sym_inline] = ACTIONS(1955), + [anon_sym_overload] = ACTIONS(1955), + [anon_sym_override] = ACTIONS(1955), + [anon_sym_final] = ACTIONS(1955), + [anon_sym_class] = ACTIONS(1955), + [anon_sym_interface] = ACTIONS(1955), + [anon_sym_enum] = ACTIONS(1955), + [anon_sym_typedef] = ACTIONS(1955), + [anon_sym_function] = ACTIONS(1955), + [anon_sym_var] = ACTIONS(1955), + [aux_sym_integer_token1] = ACTIONS(1955), + [aux_sym_integer_token2] = ACTIONS(1953), + [aux_sym_float_token1] = ACTIONS(1955), + [aux_sym_float_token2] = ACTIONS(1953), + [anon_sym_true] = ACTIONS(1955), + [anon_sym_false] = ACTIONS(1955), + [aux_sym_string_token1] = ACTIONS(1953), + [aux_sym_string_token3] = ACTIONS(1953), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1953), [sym__closing_brace_unmarker] = ACTIONS(3), }, [346] = { - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_case] = ACTIONS(1784), - [anon_sym_default] = ACTIONS(1784), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_DOLLARtype] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1786), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_EQ_GT] = ACTIONS(1786), - [anon_sym_QMARK_QMARK] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(1784), - [sym__rangeOperator] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_macro] = ACTIONS(1784), - [anon_sym_abstract] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_overload] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_final] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(1784), - [anon_sym_interface] = ACTIONS(1784), - [anon_sym_typedef] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_var] = ACTIONS(1784), - [aux_sym_integer_token1] = ACTIONS(1784), - [aux_sym_integer_token2] = ACTIONS(1786), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1786), - [aux_sym_string_token3] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1786), + [sym_identifier] = ACTIONS(1959), + [anon_sym_POUND] = ACTIONS(1957), + [anon_sym_package] = ACTIONS(1959), + [anon_sym_DOT] = ACTIONS(1959), + [anon_sym_import] = ACTIONS(1959), + [anon_sym_STAR] = ACTIONS(1957), + [anon_sym_using] = ACTIONS(1959), + [anon_sym_throw] = ACTIONS(1959), + [anon_sym_LPAREN] = ACTIONS(1957), + [anon_sym_switch] = ACTIONS(1959), + [anon_sym_LBRACE] = ACTIONS(1957), + [anon_sym_case] = ACTIONS(1959), + [anon_sym_default] = ACTIONS(1959), + [anon_sym_cast] = ACTIONS(1959), + [anon_sym_COMMA] = ACTIONS(1957), + [anon_sym_DOLLARtype] = ACTIONS(1957), + [anon_sym_for] = ACTIONS(1959), + [anon_sym_return] = ACTIONS(1959), + [anon_sym_untyped] = ACTIONS(1959), + [anon_sym_break] = ACTIONS(1959), + [anon_sym_continue] = ACTIONS(1959), + [anon_sym_LBRACK] = ACTIONS(1957), + [anon_sym_this] = ACTIONS(1959), + [anon_sym_QMARK] = ACTIONS(1959), + [anon_sym_AT] = ACTIONS(1959), + [anon_sym_AT_COLON] = ACTIONS(1957), + [anon_sym_try] = ACTIONS(1959), + [anon_sym_catch] = ACTIONS(1959), + [anon_sym_else] = ACTIONS(1959), + [anon_sym_if] = ACTIONS(1959), + [anon_sym_while] = ACTIONS(1959), + [anon_sym_do] = ACTIONS(1959), + [anon_sym_new] = ACTIONS(1959), + [anon_sym_TILDE] = ACTIONS(1957), + [anon_sym_BANG] = ACTIONS(1959), + [anon_sym_DASH] = ACTIONS(1959), + [anon_sym_PLUS_PLUS] = ACTIONS(1957), + [anon_sym_DASH_DASH] = ACTIONS(1957), + [anon_sym_PERCENT] = ACTIONS(1957), + [anon_sym_SLASH] = ACTIONS(1959), + [anon_sym_PLUS] = ACTIONS(1959), + [anon_sym_LT_LT] = ACTIONS(1957), + [anon_sym_GT_GT] = ACTIONS(1959), + [anon_sym_GT_GT_GT] = ACTIONS(1957), + [anon_sym_AMP] = ACTIONS(1959), + [anon_sym_PIPE] = ACTIONS(1959), + [anon_sym_CARET] = ACTIONS(1957), + [anon_sym_AMP_AMP] = ACTIONS(1957), + [anon_sym_PIPE_PIPE] = ACTIONS(1957), + [anon_sym_EQ_EQ] = ACTIONS(1957), + [anon_sym_BANG_EQ] = ACTIONS(1957), + [anon_sym_LT] = ACTIONS(1959), + [anon_sym_LT_EQ] = ACTIONS(1957), + [anon_sym_GT] = ACTIONS(1959), + [anon_sym_GT_EQ] = ACTIONS(1957), + [anon_sym_EQ_GT] = ACTIONS(1957), + [anon_sym_QMARK_QMARK] = ACTIONS(1957), + [anon_sym_EQ] = ACTIONS(1959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1957), + [anon_sym_null] = ACTIONS(1959), + [anon_sym_macro] = ACTIONS(1959), + [anon_sym_abstract] = ACTIONS(1959), + [anon_sym_static] = ACTIONS(1959), + [anon_sym_public] = ACTIONS(1959), + [anon_sym_private] = ACTIONS(1959), + [anon_sym_extern] = ACTIONS(1959), + [anon_sym_inline] = ACTIONS(1959), + [anon_sym_overload] = ACTIONS(1959), + [anon_sym_override] = ACTIONS(1959), + [anon_sym_final] = ACTIONS(1959), + [anon_sym_class] = ACTIONS(1959), + [anon_sym_interface] = ACTIONS(1959), + [anon_sym_enum] = ACTIONS(1959), + [anon_sym_typedef] = ACTIONS(1959), + [anon_sym_function] = ACTIONS(1959), + [anon_sym_var] = ACTIONS(1959), + [aux_sym_integer_token1] = ACTIONS(1959), + [aux_sym_integer_token2] = ACTIONS(1957), + [aux_sym_float_token1] = ACTIONS(1959), + [aux_sym_float_token2] = ACTIONS(1957), + [anon_sym_true] = ACTIONS(1959), + [anon_sym_false] = ACTIONS(1959), + [aux_sym_string_token1] = ACTIONS(1957), + [aux_sym_string_token3] = ACTIONS(1957), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1957), [sym__closing_brace_unmarker] = ACTIONS(3), }, [347] = { - [sym_identifier] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_package] = ACTIONS(1788), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_throw] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_case] = ACTIONS(1788), - [anon_sym_default] = ACTIONS(1788), - [anon_sym_cast] = ACTIONS(1788), - [anon_sym_DOLLARtype] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_untyped] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_AT_COLON] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_LT_LT] = ACTIONS(1790), - [anon_sym_GT_GT] = ACTIONS(1788), - [anon_sym_GT_GT_GT] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_QMARK_QMARK] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1788), - [sym__rangeOperator] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1788), - [anon_sym_macro] = ACTIONS(1788), - [anon_sym_abstract] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_overload] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_final] = ACTIONS(1788), - [anon_sym_class] = ACTIONS(1788), - [anon_sym_interface] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(1788), - [anon_sym_var] = ACTIONS(1788), - [aux_sym_integer_token1] = ACTIONS(1788), - [aux_sym_integer_token2] = ACTIONS(1790), - [aux_sym_float_token1] = ACTIONS(1788), - [aux_sym_float_token2] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [aux_sym_string_token1] = ACTIONS(1790), - [aux_sym_string_token3] = ACTIONS(1790), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1790), + [sym_identifier] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_case] = ACTIONS(1947), + [anon_sym_default] = ACTIONS(1947), + [anon_sym_cast] = ACTIONS(1947), + [anon_sym_COMMA] = ACTIONS(1945), + [anon_sym_DOLLARtype] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_untyped] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_QMARK] = ACTIONS(1947), + [anon_sym_AT] = ACTIONS(1947), + [anon_sym_AT_COLON] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_EQ_GT] = ACTIONS(1945), + [anon_sym_QMARK_QMARK] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_macro] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym_overload] = ACTIONS(1947), + [anon_sym_override] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_interface] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_var] = ACTIONS(1947), + [aux_sym_integer_token1] = ACTIONS(1947), + [aux_sym_integer_token2] = ACTIONS(1945), + [aux_sym_float_token1] = ACTIONS(1947), + [aux_sym_float_token2] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym_string_token1] = ACTIONS(1945), + [aux_sym_string_token3] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1945), [sym__closing_brace_unmarker] = ACTIONS(3), }, [348] = { - [sym_identifier] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_package] = ACTIONS(1792), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_using] = ACTIONS(1792), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_case] = ACTIONS(1792), - [anon_sym_default] = ACTIONS(1792), - [anon_sym_cast] = ACTIONS(1792), - [anon_sym_DOLLARtype] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_untyped] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_this] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_AT_COLON] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_PERCENT] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_GT_GT_GT] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1794), - [anon_sym_AMP_AMP] = ACTIONS(1794), - [anon_sym_PIPE_PIPE] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_EQ_GT] = ACTIONS(1794), - [anon_sym_QMARK_QMARK] = ACTIONS(1794), - [anon_sym_EQ] = ACTIONS(1792), - [sym__rangeOperator] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_macro] = ACTIONS(1792), - [anon_sym_abstract] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_public] = ACTIONS(1792), - [anon_sym_private] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_inline] = ACTIONS(1792), - [anon_sym_overload] = ACTIONS(1792), - [anon_sym_override] = ACTIONS(1792), - [anon_sym_final] = ACTIONS(1792), - [anon_sym_class] = ACTIONS(1792), - [anon_sym_interface] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1792), - [anon_sym_function] = ACTIONS(1792), - [anon_sym_var] = ACTIONS(1792), - [aux_sym_integer_token1] = ACTIONS(1792), - [aux_sym_integer_token2] = ACTIONS(1794), - [aux_sym_float_token1] = ACTIONS(1792), - [aux_sym_float_token2] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym_string_token1] = ACTIONS(1794), - [aux_sym_string_token3] = ACTIONS(1794), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1794), + [sym_identifier] = ACTIONS(1973), + [anon_sym_POUND] = ACTIONS(1971), + [anon_sym_package] = ACTIONS(1973), + [anon_sym_DOT] = ACTIONS(1973), + [anon_sym_import] = ACTIONS(1973), + [anon_sym_STAR] = ACTIONS(1971), + [anon_sym_using] = ACTIONS(1973), + [anon_sym_throw] = ACTIONS(1973), + [anon_sym_LPAREN] = ACTIONS(1971), + [anon_sym_switch] = ACTIONS(1973), + [anon_sym_LBRACE] = ACTIONS(1971), + [anon_sym_case] = ACTIONS(1973), + [anon_sym_default] = ACTIONS(1973), + [anon_sym_cast] = ACTIONS(1973), + [anon_sym_COMMA] = ACTIONS(1971), + [anon_sym_DOLLARtype] = ACTIONS(1971), + [anon_sym_for] = ACTIONS(1973), + [anon_sym_return] = ACTIONS(1973), + [anon_sym_untyped] = ACTIONS(1973), + [anon_sym_break] = ACTIONS(1973), + [anon_sym_continue] = ACTIONS(1973), + [anon_sym_LBRACK] = ACTIONS(1971), + [anon_sym_this] = ACTIONS(1973), + [anon_sym_QMARK] = ACTIONS(1973), + [anon_sym_AT] = ACTIONS(1973), + [anon_sym_AT_COLON] = ACTIONS(1971), + [anon_sym_try] = ACTIONS(1973), + [anon_sym_catch] = ACTIONS(1973), + [anon_sym_else] = ACTIONS(1973), + [anon_sym_if] = ACTIONS(1973), + [anon_sym_while] = ACTIONS(1973), + [anon_sym_do] = ACTIONS(1973), + [anon_sym_new] = ACTIONS(1973), + [anon_sym_TILDE] = ACTIONS(1971), + [anon_sym_BANG] = ACTIONS(1973), + [anon_sym_DASH] = ACTIONS(1973), + [anon_sym_PLUS_PLUS] = ACTIONS(1971), + [anon_sym_DASH_DASH] = ACTIONS(1971), + [anon_sym_PERCENT] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(1973), + [anon_sym_PLUS] = ACTIONS(1973), + [anon_sym_LT_LT] = ACTIONS(1971), + [anon_sym_GT_GT] = ACTIONS(1973), + [anon_sym_GT_GT_GT] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(1973), + [anon_sym_PIPE] = ACTIONS(1973), + [anon_sym_CARET] = ACTIONS(1971), + [anon_sym_AMP_AMP] = ACTIONS(1971), + [anon_sym_PIPE_PIPE] = ACTIONS(1971), + [anon_sym_EQ_EQ] = ACTIONS(1971), + [anon_sym_BANG_EQ] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(1971), + [anon_sym_GT] = ACTIONS(1973), + [anon_sym_GT_EQ] = ACTIONS(1971), + [anon_sym_EQ_GT] = ACTIONS(1971), + [anon_sym_QMARK_QMARK] = ACTIONS(1971), + [anon_sym_EQ] = ACTIONS(1973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1971), + [anon_sym_null] = ACTIONS(1973), + [anon_sym_macro] = ACTIONS(1973), + [anon_sym_abstract] = ACTIONS(1973), + [anon_sym_static] = ACTIONS(1973), + [anon_sym_public] = ACTIONS(1973), + [anon_sym_private] = ACTIONS(1973), + [anon_sym_extern] = ACTIONS(1973), + [anon_sym_inline] = ACTIONS(1973), + [anon_sym_overload] = ACTIONS(1973), + [anon_sym_override] = ACTIONS(1973), + [anon_sym_final] = ACTIONS(1973), + [anon_sym_class] = ACTIONS(1973), + [anon_sym_interface] = ACTIONS(1973), + [anon_sym_enum] = ACTIONS(1973), + [anon_sym_typedef] = ACTIONS(1973), + [anon_sym_function] = ACTIONS(1973), + [anon_sym_var] = ACTIONS(1973), + [aux_sym_integer_token1] = ACTIONS(1973), + [aux_sym_integer_token2] = ACTIONS(1971), + [aux_sym_float_token1] = ACTIONS(1973), + [aux_sym_float_token2] = ACTIONS(1971), + [anon_sym_true] = ACTIONS(1973), + [anon_sym_false] = ACTIONS(1973), + [aux_sym_string_token1] = ACTIONS(1971), + [aux_sym_string_token3] = ACTIONS(1971), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1971), [sym__closing_brace_unmarker] = ACTIONS(3), }, [349] = { - [sym_identifier] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_package] = ACTIONS(1796), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_using] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_case] = ACTIONS(1796), - [anon_sym_default] = ACTIONS(1796), - [anon_sym_cast] = ACTIONS(1796), - [anon_sym_DOLLARtype] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_untyped] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1796), - [anon_sym_AT_COLON] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1796), - [anon_sym_GT_GT_GT] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_EQ_GT] = ACTIONS(1798), - [anon_sym_QMARK_QMARK] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1796), - [sym__rangeOperator] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_macro] = ACTIONS(1796), - [anon_sym_abstract] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_public] = ACTIONS(1796), - [anon_sym_private] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_inline] = ACTIONS(1796), - [anon_sym_overload] = ACTIONS(1796), - [anon_sym_override] = ACTIONS(1796), - [anon_sym_final] = ACTIONS(1796), - [anon_sym_class] = ACTIONS(1796), - [anon_sym_interface] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1796), - [anon_sym_function] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(1796), - [aux_sym_integer_token1] = ACTIONS(1796), - [aux_sym_integer_token2] = ACTIONS(1798), - [aux_sym_float_token1] = ACTIONS(1796), - [aux_sym_float_token2] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [aux_sym_string_token1] = ACTIONS(1798), - [aux_sym_string_token3] = ACTIONS(1798), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1798), + [sym_identifier] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1987), + [anon_sym_package] = ACTIONS(1990), + [anon_sym_DOT] = ACTIONS(1990), + [anon_sym_import] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1987), + [anon_sym_using] = ACTIONS(1990), + [anon_sym_throw] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_switch] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1987), + [anon_sym_case] = ACTIONS(1990), + [anon_sym_default] = ACTIONS(1990), + [anon_sym_cast] = ACTIONS(1990), + [anon_sym_COMMA] = ACTIONS(1987), + [anon_sym_DOLLARtype] = ACTIONS(1987), + [anon_sym_for] = ACTIONS(1990), + [anon_sym_return] = ACTIONS(1990), + [anon_sym_untyped] = ACTIONS(1990), + [anon_sym_break] = ACTIONS(1990), + [anon_sym_continue] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1987), + [anon_sym_this] = ACTIONS(1990), + [anon_sym_QMARK] = ACTIONS(1990), + [anon_sym_AT] = ACTIONS(1990), + [anon_sym_AT_COLON] = ACTIONS(1987), + [anon_sym_try] = ACTIONS(1990), + [anon_sym_catch] = ACTIONS(1990), + [anon_sym_else] = ACTIONS(1990), + [anon_sym_if] = ACTIONS(1990), + [anon_sym_while] = ACTIONS(1990), + [anon_sym_do] = ACTIONS(1990), + [anon_sym_new] = ACTIONS(1990), + [anon_sym_TILDE] = ACTIONS(1987), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_PLUS_PLUS] = ACTIONS(1987), + [anon_sym_DASH_DASH] = ACTIONS(1987), + [anon_sym_PERCENT] = ACTIONS(1987), + [anon_sym_SLASH] = ACTIONS(1990), + [anon_sym_PLUS] = ACTIONS(1990), + [anon_sym_LT_LT] = ACTIONS(1987), + [anon_sym_GT_GT] = ACTIONS(1990), + [anon_sym_GT_GT_GT] = ACTIONS(1987), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_CARET] = ACTIONS(1987), + [anon_sym_AMP_AMP] = ACTIONS(1987), + [anon_sym_PIPE_PIPE] = ACTIONS(1987), + [anon_sym_EQ_EQ] = ACTIONS(1987), + [anon_sym_BANG_EQ] = ACTIONS(1987), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_LT_EQ] = ACTIONS(1987), + [anon_sym_GT] = ACTIONS(1990), + [anon_sym_GT_EQ] = ACTIONS(1987), + [anon_sym_EQ_GT] = ACTIONS(1987), + [anon_sym_QMARK_QMARK] = ACTIONS(1987), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1987), + [anon_sym_null] = ACTIONS(1990), + [anon_sym_macro] = ACTIONS(1990), + [anon_sym_abstract] = ACTIONS(1990), + [anon_sym_static] = ACTIONS(1990), + [anon_sym_public] = ACTIONS(1990), + [anon_sym_private] = ACTIONS(1990), + [anon_sym_extern] = ACTIONS(1990), + [anon_sym_inline] = ACTIONS(1990), + [anon_sym_overload] = ACTIONS(1990), + [anon_sym_override] = ACTIONS(1990), + [anon_sym_final] = ACTIONS(1990), + [anon_sym_class] = ACTIONS(1990), + [anon_sym_interface] = ACTIONS(1990), + [anon_sym_enum] = ACTIONS(1990), + [anon_sym_typedef] = ACTIONS(1990), + [anon_sym_function] = ACTIONS(1990), + [anon_sym_var] = ACTIONS(1990), + [aux_sym_integer_token1] = ACTIONS(1990), + [aux_sym_integer_token2] = ACTIONS(1987), + [aux_sym_float_token1] = ACTIONS(1990), + [aux_sym_float_token2] = ACTIONS(1987), + [anon_sym_true] = ACTIONS(1990), + [anon_sym_false] = ACTIONS(1990), + [aux_sym_string_token1] = ACTIONS(1987), + [aux_sym_string_token3] = ACTIONS(1987), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1987), [sym__closing_brace_unmarker] = ACTIONS(3), }, [350] = { - [sym_identifier] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_package] = ACTIONS(1800), - [anon_sym_import] = ACTIONS(1800), - [anon_sym_using] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_case] = ACTIONS(1800), - [anon_sym_default] = ACTIONS(1800), - [anon_sym_cast] = ACTIONS(1800), - [anon_sym_DOLLARtype] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_untyped] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_AT_COLON] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_LT_LT] = ACTIONS(1802), - [anon_sym_GT_GT] = ACTIONS(1800), - [anon_sym_GT_GT_GT] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_EQ_GT] = ACTIONS(1802), - [anon_sym_QMARK_QMARK] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1800), - [sym__rangeOperator] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_macro] = ACTIONS(1800), - [anon_sym_abstract] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_public] = ACTIONS(1800), - [anon_sym_private] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_inline] = ACTIONS(1800), - [anon_sym_overload] = ACTIONS(1800), - [anon_sym_override] = ACTIONS(1800), - [anon_sym_final] = ACTIONS(1800), - [anon_sym_class] = ACTIONS(1800), - [anon_sym_interface] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(1800), - [anon_sym_var] = ACTIONS(1800), - [aux_sym_integer_token1] = ACTIONS(1800), - [aux_sym_integer_token2] = ACTIONS(1802), - [aux_sym_float_token1] = ACTIONS(1800), - [aux_sym_float_token2] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [aux_sym_string_token1] = ACTIONS(1802), - [aux_sym_string_token3] = ACTIONS(1802), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1802), + [sym_identifier] = ACTIONS(1935), + [anon_sym_POUND] = ACTIONS(1933), + [anon_sym_package] = ACTIONS(1935), + [anon_sym_DOT] = ACTIONS(1935), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_STAR] = ACTIONS(1933), + [anon_sym_using] = ACTIONS(1935), + [anon_sym_throw] = ACTIONS(1935), + [anon_sym_LPAREN] = ACTIONS(1933), + [anon_sym_switch] = ACTIONS(1935), + [anon_sym_LBRACE] = ACTIONS(1933), + [anon_sym_case] = ACTIONS(1935), + [anon_sym_default] = ACTIONS(1935), + [anon_sym_cast] = ACTIONS(1935), + [anon_sym_COMMA] = ACTIONS(1933), + [anon_sym_DOLLARtype] = ACTIONS(1933), + [anon_sym_for] = ACTIONS(1935), + [anon_sym_return] = ACTIONS(1935), + [anon_sym_untyped] = ACTIONS(1935), + [anon_sym_break] = ACTIONS(1935), + [anon_sym_continue] = ACTIONS(1935), + [anon_sym_LBRACK] = ACTIONS(1933), + [anon_sym_this] = ACTIONS(1935), + [anon_sym_QMARK] = ACTIONS(1935), + [anon_sym_AT] = ACTIONS(1935), + [anon_sym_AT_COLON] = ACTIONS(1933), + [anon_sym_try] = ACTIONS(1935), + [anon_sym_catch] = ACTIONS(1935), + [anon_sym_else] = ACTIONS(1935), + [anon_sym_if] = ACTIONS(1935), + [anon_sym_while] = ACTIONS(1935), + [anon_sym_do] = ACTIONS(1935), + [anon_sym_new] = ACTIONS(1935), + [anon_sym_TILDE] = ACTIONS(1933), + [anon_sym_BANG] = ACTIONS(1935), + [anon_sym_DASH] = ACTIONS(1935), + [anon_sym_PLUS_PLUS] = ACTIONS(1933), + [anon_sym_DASH_DASH] = ACTIONS(1933), + [anon_sym_PERCENT] = ACTIONS(1933), + [anon_sym_SLASH] = ACTIONS(1935), + [anon_sym_PLUS] = ACTIONS(1935), + [anon_sym_LT_LT] = ACTIONS(1933), + [anon_sym_GT_GT] = ACTIONS(1935), + [anon_sym_GT_GT_GT] = ACTIONS(1933), + [anon_sym_AMP] = ACTIONS(1935), + [anon_sym_PIPE] = ACTIONS(1935), + [anon_sym_CARET] = ACTIONS(1933), + [anon_sym_AMP_AMP] = ACTIONS(1933), + [anon_sym_PIPE_PIPE] = ACTIONS(1933), + [anon_sym_EQ_EQ] = ACTIONS(1933), + [anon_sym_BANG_EQ] = ACTIONS(1933), + [anon_sym_LT] = ACTIONS(1935), + [anon_sym_LT_EQ] = ACTIONS(1933), + [anon_sym_GT] = ACTIONS(1935), + [anon_sym_GT_EQ] = ACTIONS(1933), + [anon_sym_EQ_GT] = ACTIONS(1933), + [anon_sym_QMARK_QMARK] = ACTIONS(1933), + [anon_sym_EQ] = ACTIONS(1935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1933), + [anon_sym_null] = ACTIONS(1935), + [anon_sym_macro] = ACTIONS(1935), + [anon_sym_abstract] = ACTIONS(1935), + [anon_sym_static] = ACTIONS(1935), + [anon_sym_public] = ACTIONS(1935), + [anon_sym_private] = ACTIONS(1935), + [anon_sym_extern] = ACTIONS(1935), + [anon_sym_inline] = ACTIONS(1935), + [anon_sym_overload] = ACTIONS(1935), + [anon_sym_override] = ACTIONS(1935), + [anon_sym_final] = ACTIONS(1935), + [anon_sym_class] = ACTIONS(1935), + [anon_sym_interface] = ACTIONS(1935), + [anon_sym_enum] = ACTIONS(1935), + [anon_sym_typedef] = ACTIONS(1935), + [anon_sym_function] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(1935), + [aux_sym_integer_token1] = ACTIONS(1935), + [aux_sym_integer_token2] = ACTIONS(1933), + [aux_sym_float_token1] = ACTIONS(1935), + [aux_sym_float_token2] = ACTIONS(1933), + [anon_sym_true] = ACTIONS(1935), + [anon_sym_false] = ACTIONS(1935), + [aux_sym_string_token1] = ACTIONS(1933), + [aux_sym_string_token3] = ACTIONS(1933), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1933), [sym__closing_brace_unmarker] = ACTIONS(3), }, [351] = { - [sym_identifier] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_package] = ACTIONS(1804), - [anon_sym_import] = ACTIONS(1804), - [anon_sym_using] = ACTIONS(1804), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_case] = ACTIONS(1804), - [anon_sym_default] = ACTIONS(1804), - [anon_sym_cast] = ACTIONS(1804), - [anon_sym_DOLLARtype] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_untyped] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_AT_COLON] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_LT_LT] = ACTIONS(1806), - [anon_sym_GT_GT] = ACTIONS(1804), - [anon_sym_GT_GT_GT] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1806), - [anon_sym_AMP_AMP] = ACTIONS(1806), - [anon_sym_PIPE_PIPE] = ACTIONS(1806), - [anon_sym_EQ_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1804), - [anon_sym_LT_EQ] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_GT_EQ] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1806), - [anon_sym_QMARK_QMARK] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(1804), - [sym__rangeOperator] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1804), - [anon_sym_macro] = ACTIONS(1804), - [anon_sym_abstract] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_public] = ACTIONS(1804), - [anon_sym_private] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_inline] = ACTIONS(1804), - [anon_sym_overload] = ACTIONS(1804), - [anon_sym_override] = ACTIONS(1804), - [anon_sym_final] = ACTIONS(1804), - [anon_sym_class] = ACTIONS(1804), - [anon_sym_interface] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1804), - [anon_sym_function] = ACTIONS(1804), - [anon_sym_var] = ACTIONS(1804), - [aux_sym_integer_token1] = ACTIONS(1804), - [aux_sym_integer_token2] = ACTIONS(1806), - [aux_sym_float_token1] = ACTIONS(1804), - [aux_sym_float_token2] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [aux_sym_string_token1] = ACTIONS(1806), - [aux_sym_string_token3] = ACTIONS(1806), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1806), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(1785), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [352] = { - [sym_identifier] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_package] = ACTIONS(1808), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_using] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_switch] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_case] = ACTIONS(1808), - [anon_sym_default] = ACTIONS(1808), - [anon_sym_cast] = ACTIONS(1808), - [anon_sym_DOLLARtype] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_untyped] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_AT_COLON] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_LT_LT] = ACTIONS(1810), - [anon_sym_GT_GT] = ACTIONS(1808), - [anon_sym_GT_GT_GT] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_EQ_GT] = ACTIONS(1810), - [anon_sym_QMARK_QMARK] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1808), - [sym__rangeOperator] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_macro] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_overload] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_class] = ACTIONS(1808), - [anon_sym_interface] = ACTIONS(1808), - [anon_sym_typedef] = ACTIONS(1808), - [anon_sym_function] = ACTIONS(1808), - [anon_sym_var] = ACTIONS(1808), - [aux_sym_integer_token1] = ACTIONS(1808), - [aux_sym_integer_token2] = ACTIONS(1810), - [aux_sym_float_token1] = ACTIONS(1808), - [aux_sym_float_token2] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [aux_sym_string_token1] = ACTIONS(1810), - [aux_sym_string_token3] = ACTIONS(1810), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1810), + [sym_identifier] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(2625), + [anon_sym_package] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_cast] = ACTIONS(2623), + [anon_sym_DOLLARtype] = ACTIONS(2625), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_untyped] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2623), + [anon_sym_QMARK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_AT_COLON] = ACTIONS(2625), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1835), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_EQ_EQ] = ACTIONS(1833), + [anon_sym_BANG_EQ] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1833), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_EQ_GT] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), + [anon_sym_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(2623), + [anon_sym_macro] = ACTIONS(2623), + [anon_sym_abstract] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_private] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_overload] = ACTIONS(2623), + [anon_sym_override] = ACTIONS(2623), + [anon_sym_final] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_interface] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(2623), + [anon_sym_var] = ACTIONS(2623), + [aux_sym_integer_token1] = ACTIONS(2623), + [aux_sym_integer_token2] = ACTIONS(2625), + [aux_sym_float_token1] = ACTIONS(2623), + [aux_sym_float_token2] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [aux_sym_string_token1] = ACTIONS(2625), + [aux_sym_string_token3] = ACTIONS(2625), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1833), + [sym__closing_brace_marker] = ACTIONS(2625), [sym__closing_brace_unmarker] = ACTIONS(3), }, [353] = { - [sym_identifier] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_package] = ACTIONS(1812), - [anon_sym_import] = ACTIONS(1812), - [anon_sym_using] = ACTIONS(1812), - [anon_sym_throw] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_case] = ACTIONS(1812), - [anon_sym_default] = ACTIONS(1812), - [anon_sym_cast] = ACTIONS(1812), - [anon_sym_DOLLARtype] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_untyped] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_this] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1812), - [anon_sym_AT_COLON] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_PERCENT] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1814), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_GT_GT_GT] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_EQ_EQ] = ACTIONS(1814), - [anon_sym_BANG_EQ] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_LT_EQ] = ACTIONS(1814), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_EQ] = ACTIONS(1814), - [anon_sym_EQ_GT] = ACTIONS(1814), - [anon_sym_QMARK_QMARK] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1812), - [sym__rangeOperator] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1812), - [anon_sym_macro] = ACTIONS(1812), - [anon_sym_abstract] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_public] = ACTIONS(1812), - [anon_sym_private] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_inline] = ACTIONS(1812), - [anon_sym_overload] = ACTIONS(1812), - [anon_sym_override] = ACTIONS(1812), - [anon_sym_final] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(1812), - [anon_sym_interface] = ACTIONS(1812), - [anon_sym_typedef] = ACTIONS(1812), - [anon_sym_function] = ACTIONS(1812), - [anon_sym_var] = ACTIONS(1812), - [aux_sym_integer_token1] = ACTIONS(1812), - [aux_sym_integer_token2] = ACTIONS(1814), - [aux_sym_float_token1] = ACTIONS(1812), - [aux_sym_float_token2] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [aux_sym_string_token1] = ACTIONS(1814), - [aux_sym_string_token3] = ACTIONS(1814), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1814), + [sym_identifier] = ACTIONS(1981), + [anon_sym_POUND] = ACTIONS(1979), + [anon_sym_package] = ACTIONS(1981), + [anon_sym_DOT] = ACTIONS(1981), + [anon_sym_import] = ACTIONS(1981), + [anon_sym_STAR] = ACTIONS(1979), + [anon_sym_using] = ACTIONS(1981), + [anon_sym_throw] = ACTIONS(1981), + [anon_sym_LPAREN] = ACTIONS(1979), + [anon_sym_switch] = ACTIONS(1981), + [anon_sym_LBRACE] = ACTIONS(1979), + [anon_sym_case] = ACTIONS(1981), + [anon_sym_default] = ACTIONS(1981), + [anon_sym_cast] = ACTIONS(1981), + [anon_sym_COMMA] = ACTIONS(1979), + [anon_sym_DOLLARtype] = ACTIONS(1979), + [anon_sym_for] = ACTIONS(1981), + [anon_sym_return] = ACTIONS(1981), + [anon_sym_untyped] = ACTIONS(1981), + [anon_sym_break] = ACTIONS(1981), + [anon_sym_continue] = ACTIONS(1981), + [anon_sym_LBRACK] = ACTIONS(1979), + [anon_sym_this] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1981), + [anon_sym_AT] = ACTIONS(1981), + [anon_sym_AT_COLON] = ACTIONS(1979), + [anon_sym_try] = ACTIONS(1981), + [anon_sym_catch] = ACTIONS(1981), + [anon_sym_else] = ACTIONS(1981), + [anon_sym_if] = ACTIONS(1981), + [anon_sym_while] = ACTIONS(1981), + [anon_sym_do] = ACTIONS(1981), + [anon_sym_new] = ACTIONS(1981), + [anon_sym_TILDE] = ACTIONS(1979), + [anon_sym_BANG] = ACTIONS(1981), + [anon_sym_DASH] = ACTIONS(1981), + [anon_sym_PLUS_PLUS] = ACTIONS(1979), + [anon_sym_DASH_DASH] = ACTIONS(1979), + [anon_sym_PERCENT] = ACTIONS(1979), + [anon_sym_SLASH] = ACTIONS(1981), + [anon_sym_PLUS] = ACTIONS(1981), + [anon_sym_LT_LT] = ACTIONS(1979), + [anon_sym_GT_GT] = ACTIONS(1981), + [anon_sym_GT_GT_GT] = ACTIONS(1979), + [anon_sym_AMP] = ACTIONS(1981), + [anon_sym_PIPE] = ACTIONS(1981), + [anon_sym_CARET] = ACTIONS(1979), + [anon_sym_AMP_AMP] = ACTIONS(1979), + [anon_sym_PIPE_PIPE] = ACTIONS(1979), + [anon_sym_EQ_EQ] = ACTIONS(1979), + [anon_sym_BANG_EQ] = ACTIONS(1979), + [anon_sym_LT] = ACTIONS(1981), + [anon_sym_LT_EQ] = ACTIONS(1979), + [anon_sym_GT] = ACTIONS(1981), + [anon_sym_GT_EQ] = ACTIONS(1979), + [anon_sym_EQ_GT] = ACTIONS(1979), + [anon_sym_QMARK_QMARK] = ACTIONS(1979), + [anon_sym_EQ] = ACTIONS(1981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1979), + [anon_sym_null] = ACTIONS(1981), + [anon_sym_macro] = ACTIONS(1981), + [anon_sym_abstract] = ACTIONS(1981), + [anon_sym_static] = ACTIONS(1981), + [anon_sym_public] = ACTIONS(1981), + [anon_sym_private] = ACTIONS(1981), + [anon_sym_extern] = ACTIONS(1981), + [anon_sym_inline] = ACTIONS(1981), + [anon_sym_overload] = ACTIONS(1981), + [anon_sym_override] = ACTIONS(1981), + [anon_sym_final] = ACTIONS(1981), + [anon_sym_class] = ACTIONS(1981), + [anon_sym_interface] = ACTIONS(1981), + [anon_sym_enum] = ACTIONS(1981), + [anon_sym_typedef] = ACTIONS(1981), + [anon_sym_function] = ACTIONS(1981), + [anon_sym_var] = ACTIONS(1981), + [aux_sym_integer_token1] = ACTIONS(1981), + [aux_sym_integer_token2] = ACTIONS(1979), + [aux_sym_float_token1] = ACTIONS(1981), + [aux_sym_float_token2] = ACTIONS(1979), + [anon_sym_true] = ACTIONS(1981), + [anon_sym_false] = ACTIONS(1981), + [aux_sym_string_token1] = ACTIONS(1979), + [aux_sym_string_token3] = ACTIONS(1979), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1979), [sym__closing_brace_unmarker] = ACTIONS(3), }, [354] = { - [sym_identifier] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_package] = ACTIONS(1816), - [anon_sym_import] = ACTIONS(1816), - [anon_sym_using] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_switch] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_case] = ACTIONS(1816), - [anon_sym_default] = ACTIONS(1816), - [anon_sym_cast] = ACTIONS(1816), - [anon_sym_DOLLARtype] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_untyped] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1816), - [anon_sym_AT_COLON] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_LT_LT] = ACTIONS(1818), - [anon_sym_GT_GT] = ACTIONS(1816), - [anon_sym_GT_GT_GT] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_EQ_GT] = ACTIONS(1818), - [anon_sym_QMARK_QMARK] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1816), - [sym__rangeOperator] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_macro] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_overload] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1816), - [anon_sym_interface] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1816), - [anon_sym_function] = ACTIONS(1816), - [anon_sym_var] = ACTIONS(1816), - [aux_sym_integer_token1] = ACTIONS(1816), - [aux_sym_integer_token2] = ACTIONS(1818), - [aux_sym_float_token1] = ACTIONS(1816), - [aux_sym_float_token2] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [aux_sym_string_token1] = ACTIONS(1818), - [aux_sym_string_token3] = ACTIONS(1818), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1818), + [sym_identifier] = ACTIONS(1985), + [anon_sym_POUND] = ACTIONS(1983), + [anon_sym_package] = ACTIONS(1985), + [anon_sym_DOT] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(1985), + [anon_sym_STAR] = ACTIONS(1983), + [anon_sym_using] = ACTIONS(1985), + [anon_sym_throw] = ACTIONS(1985), + [anon_sym_LPAREN] = ACTIONS(1983), + [anon_sym_switch] = ACTIONS(1985), + [anon_sym_LBRACE] = ACTIONS(1983), + [anon_sym_case] = ACTIONS(1985), + [anon_sym_default] = ACTIONS(1985), + [anon_sym_cast] = ACTIONS(1985), + [anon_sym_COMMA] = ACTIONS(1983), + [anon_sym_DOLLARtype] = ACTIONS(1983), + [anon_sym_for] = ACTIONS(1985), + [anon_sym_return] = ACTIONS(1985), + [anon_sym_untyped] = ACTIONS(1985), + [anon_sym_break] = ACTIONS(1985), + [anon_sym_continue] = ACTIONS(1985), + [anon_sym_LBRACK] = ACTIONS(1983), + [anon_sym_this] = ACTIONS(1985), + [anon_sym_QMARK] = ACTIONS(1985), + [anon_sym_AT] = ACTIONS(1985), + [anon_sym_AT_COLON] = ACTIONS(1983), + [anon_sym_try] = ACTIONS(1985), + [anon_sym_catch] = ACTIONS(1985), + [anon_sym_else] = ACTIONS(1985), + [anon_sym_if] = ACTIONS(1985), + [anon_sym_while] = ACTIONS(1985), + [anon_sym_do] = ACTIONS(1985), + [anon_sym_new] = ACTIONS(1985), + [anon_sym_TILDE] = ACTIONS(1983), + [anon_sym_BANG] = ACTIONS(1985), + [anon_sym_DASH] = ACTIONS(1985), + [anon_sym_PLUS_PLUS] = ACTIONS(1983), + [anon_sym_DASH_DASH] = ACTIONS(1983), + [anon_sym_PERCENT] = ACTIONS(1983), + [anon_sym_SLASH] = ACTIONS(1985), + [anon_sym_PLUS] = ACTIONS(1985), + [anon_sym_LT_LT] = ACTIONS(1983), + [anon_sym_GT_GT] = ACTIONS(1985), + [anon_sym_GT_GT_GT] = ACTIONS(1983), + [anon_sym_AMP] = ACTIONS(1985), + [anon_sym_PIPE] = ACTIONS(1985), + [anon_sym_CARET] = ACTIONS(1983), + [anon_sym_AMP_AMP] = ACTIONS(1983), + [anon_sym_PIPE_PIPE] = ACTIONS(1983), + [anon_sym_EQ_EQ] = ACTIONS(1983), + [anon_sym_BANG_EQ] = ACTIONS(1983), + [anon_sym_LT] = ACTIONS(1985), + [anon_sym_LT_EQ] = ACTIONS(1983), + [anon_sym_GT] = ACTIONS(1985), + [anon_sym_GT_EQ] = ACTIONS(1983), + [anon_sym_EQ_GT] = ACTIONS(1983), + [anon_sym_QMARK_QMARK] = ACTIONS(1983), + [anon_sym_EQ] = ACTIONS(1985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1983), + [anon_sym_null] = ACTIONS(1985), + [anon_sym_macro] = ACTIONS(1985), + [anon_sym_abstract] = ACTIONS(1985), + [anon_sym_static] = ACTIONS(1985), + [anon_sym_public] = ACTIONS(1985), + [anon_sym_private] = ACTIONS(1985), + [anon_sym_extern] = ACTIONS(1985), + [anon_sym_inline] = ACTIONS(1985), + [anon_sym_overload] = ACTIONS(1985), + [anon_sym_override] = ACTIONS(1985), + [anon_sym_final] = ACTIONS(1985), + [anon_sym_class] = ACTIONS(1985), + [anon_sym_interface] = ACTIONS(1985), + [anon_sym_enum] = ACTIONS(1985), + [anon_sym_typedef] = ACTIONS(1985), + [anon_sym_function] = ACTIONS(1985), + [anon_sym_var] = ACTIONS(1985), + [aux_sym_integer_token1] = ACTIONS(1985), + [aux_sym_integer_token2] = ACTIONS(1983), + [aux_sym_float_token1] = ACTIONS(1985), + [aux_sym_float_token2] = ACTIONS(1983), + [anon_sym_true] = ACTIONS(1985), + [anon_sym_false] = ACTIONS(1985), + [aux_sym_string_token1] = ACTIONS(1983), + [aux_sym_string_token3] = ACTIONS(1983), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1983), [sym__closing_brace_unmarker] = ACTIONS(3), }, [355] = { - [sym_identifier] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_package] = ACTIONS(1820), - [anon_sym_import] = ACTIONS(1820), - [anon_sym_using] = ACTIONS(1820), - [anon_sym_throw] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_case] = ACTIONS(1820), - [anon_sym_default] = ACTIONS(1820), - [anon_sym_cast] = ACTIONS(1820), - [anon_sym_DOLLARtype] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_untyped] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_this] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_AT_COLON] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_PLUS_PLUS] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_LT_LT] = ACTIONS(1822), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_GT_GT_GT] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1822), - [anon_sym_AMP_AMP] = ACTIONS(1822), - [anon_sym_PIPE_PIPE] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_QMARK_QMARK] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1820), - [sym__rangeOperator] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_macro] = ACTIONS(1820), - [anon_sym_abstract] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_public] = ACTIONS(1820), - [anon_sym_private] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_inline] = ACTIONS(1820), - [anon_sym_overload] = ACTIONS(1820), - [anon_sym_override] = ACTIONS(1820), - [anon_sym_final] = ACTIONS(1820), - [anon_sym_class] = ACTIONS(1820), - [anon_sym_interface] = ACTIONS(1820), - [anon_sym_typedef] = ACTIONS(1820), - [anon_sym_function] = ACTIONS(1820), - [anon_sym_var] = ACTIONS(1820), - [aux_sym_integer_token1] = ACTIONS(1820), - [aux_sym_integer_token2] = ACTIONS(1822), - [aux_sym_float_token1] = ACTIONS(1820), - [aux_sym_float_token2] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym_string_token1] = ACTIONS(1822), - [aux_sym_string_token3] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1822), + [sym_identifier] = ACTIONS(1823), + [anon_sym_POUND] = ACTIONS(1821), + [anon_sym_package] = ACTIONS(1823), + [anon_sym_DOT] = ACTIONS(1823), + [anon_sym_import] = ACTIONS(1823), + [anon_sym_STAR] = ACTIONS(1821), + [anon_sym_using] = ACTIONS(1823), + [anon_sym_throw] = ACTIONS(1823), + [anon_sym_LPAREN] = ACTIONS(1821), + [anon_sym_switch] = ACTIONS(1823), + [anon_sym_LBRACE] = ACTIONS(1821), + [anon_sym_case] = ACTIONS(1823), + [anon_sym_default] = ACTIONS(1823), + [anon_sym_cast] = ACTIONS(1823), + [anon_sym_COMMA] = ACTIONS(1821), + [anon_sym_DOLLARtype] = ACTIONS(1821), + [anon_sym_for] = ACTIONS(1823), + [anon_sym_return] = ACTIONS(1823), + [anon_sym_untyped] = ACTIONS(1823), + [anon_sym_break] = ACTIONS(1823), + [anon_sym_continue] = ACTIONS(1823), + [anon_sym_LBRACK] = ACTIONS(1821), + [anon_sym_this] = ACTIONS(1823), + [anon_sym_QMARK] = ACTIONS(1823), + [anon_sym_AT] = ACTIONS(1823), + [anon_sym_AT_COLON] = ACTIONS(1821), + [anon_sym_try] = ACTIONS(1823), + [anon_sym_catch] = ACTIONS(1823), + [anon_sym_else] = ACTIONS(1823), + [anon_sym_if] = ACTIONS(1823), + [anon_sym_while] = ACTIONS(1823), + [anon_sym_do] = ACTIONS(1823), + [anon_sym_new] = ACTIONS(1823), + [anon_sym_TILDE] = ACTIONS(1821), + [anon_sym_BANG] = ACTIONS(1823), + [anon_sym_DASH] = ACTIONS(1823), + [anon_sym_PLUS_PLUS] = ACTIONS(1821), + [anon_sym_DASH_DASH] = ACTIONS(1821), + [anon_sym_PERCENT] = ACTIONS(1821), + [anon_sym_SLASH] = ACTIONS(1823), + [anon_sym_PLUS] = ACTIONS(1823), + [anon_sym_LT_LT] = ACTIONS(1821), + [anon_sym_GT_GT] = ACTIONS(1823), + [anon_sym_GT_GT_GT] = ACTIONS(1821), + [anon_sym_AMP] = ACTIONS(1823), + [anon_sym_PIPE] = ACTIONS(1823), + [anon_sym_CARET] = ACTIONS(1821), + [anon_sym_AMP_AMP] = ACTIONS(1821), + [anon_sym_PIPE_PIPE] = ACTIONS(1821), + [anon_sym_EQ_EQ] = ACTIONS(1821), + [anon_sym_BANG_EQ] = ACTIONS(1821), + [anon_sym_LT] = ACTIONS(1823), + [anon_sym_LT_EQ] = ACTIONS(1821), + [anon_sym_GT] = ACTIONS(1823), + [anon_sym_GT_EQ] = ACTIONS(1821), + [anon_sym_EQ_GT] = ACTIONS(1821), + [anon_sym_QMARK_QMARK] = ACTIONS(1821), + [anon_sym_EQ] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1821), + [anon_sym_null] = ACTIONS(1823), + [anon_sym_macro] = ACTIONS(1823), + [anon_sym_abstract] = ACTIONS(1823), + [anon_sym_static] = ACTIONS(1823), + [anon_sym_public] = ACTIONS(1823), + [anon_sym_private] = ACTIONS(1823), + [anon_sym_extern] = ACTIONS(1823), + [anon_sym_inline] = ACTIONS(1823), + [anon_sym_overload] = ACTIONS(1823), + [anon_sym_override] = ACTIONS(1823), + [anon_sym_final] = ACTIONS(1823), + [anon_sym_class] = ACTIONS(1823), + [anon_sym_interface] = ACTIONS(1823), + [anon_sym_enum] = ACTIONS(1823), + [anon_sym_typedef] = ACTIONS(1823), + [anon_sym_function] = ACTIONS(1823), + [anon_sym_var] = ACTIONS(1823), + [aux_sym_integer_token1] = ACTIONS(1823), + [aux_sym_integer_token2] = ACTIONS(1821), + [aux_sym_float_token1] = ACTIONS(1823), + [aux_sym_float_token2] = ACTIONS(1821), + [anon_sym_true] = ACTIONS(1823), + [anon_sym_false] = ACTIONS(1823), + [aux_sym_string_token1] = ACTIONS(1821), + [aux_sym_string_token3] = ACTIONS(1821), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1821), [sym__closing_brace_unmarker] = ACTIONS(3), }, [356] = { - [sym_identifier] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_package] = ACTIONS(1824), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_using] = ACTIONS(1824), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_case] = ACTIONS(1824), - [anon_sym_default] = ACTIONS(1824), - [anon_sym_cast] = ACTIONS(1824), - [anon_sym_DOLLARtype] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_untyped] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_this] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_AT_COLON] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_LT_LT] = ACTIONS(1826), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_GT_GT_GT] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1826), - [anon_sym_AMP_AMP] = ACTIONS(1826), - [anon_sym_PIPE_PIPE] = ACTIONS(1826), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1826), - [anon_sym_EQ_GT] = ACTIONS(1826), - [anon_sym_QMARK_QMARK] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1824), - [sym__rangeOperator] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1824), - [anon_sym_macro] = ACTIONS(1824), - [anon_sym_abstract] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_public] = ACTIONS(1824), - [anon_sym_private] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_inline] = ACTIONS(1824), - [anon_sym_overload] = ACTIONS(1824), - [anon_sym_override] = ACTIONS(1824), - [anon_sym_final] = ACTIONS(1824), - [anon_sym_class] = ACTIONS(1824), - [anon_sym_interface] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1824), - [anon_sym_function] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1824), - [aux_sym_integer_token1] = ACTIONS(1824), - [aux_sym_integer_token2] = ACTIONS(1826), - [aux_sym_float_token1] = ACTIONS(1824), - [aux_sym_float_token2] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [aux_sym_string_token1] = ACTIONS(1826), - [aux_sym_string_token3] = ACTIONS(1826), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1826), + [sym_identifier] = ACTIONS(1969), + [anon_sym_POUND] = ACTIONS(1967), + [anon_sym_package] = ACTIONS(1969), + [anon_sym_DOT] = ACTIONS(1969), + [anon_sym_import] = ACTIONS(1969), + [anon_sym_STAR] = ACTIONS(1967), + [anon_sym_using] = ACTIONS(1969), + [anon_sym_throw] = ACTIONS(1969), + [anon_sym_LPAREN] = ACTIONS(1967), + [anon_sym_switch] = ACTIONS(1969), + [anon_sym_LBRACE] = ACTIONS(1967), + [anon_sym_case] = ACTIONS(1969), + [anon_sym_default] = ACTIONS(1969), + [anon_sym_cast] = ACTIONS(1969), + [anon_sym_COMMA] = ACTIONS(1967), + [anon_sym_DOLLARtype] = ACTIONS(1967), + [anon_sym_for] = ACTIONS(1969), + [anon_sym_return] = ACTIONS(1969), + [anon_sym_untyped] = ACTIONS(1969), + [anon_sym_break] = ACTIONS(1969), + [anon_sym_continue] = ACTIONS(1969), + [anon_sym_LBRACK] = ACTIONS(1967), + [anon_sym_this] = ACTIONS(1969), + [anon_sym_QMARK] = ACTIONS(1969), + [anon_sym_AT] = ACTIONS(1969), + [anon_sym_AT_COLON] = ACTIONS(1967), + [anon_sym_try] = ACTIONS(1969), + [anon_sym_catch] = ACTIONS(1969), + [anon_sym_else] = ACTIONS(1969), + [anon_sym_if] = ACTIONS(1969), + [anon_sym_while] = ACTIONS(1969), + [anon_sym_do] = ACTIONS(1969), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_TILDE] = ACTIONS(1967), + [anon_sym_BANG] = ACTIONS(1969), + [anon_sym_DASH] = ACTIONS(1969), + [anon_sym_PLUS_PLUS] = ACTIONS(1967), + [anon_sym_DASH_DASH] = ACTIONS(1967), + [anon_sym_PERCENT] = ACTIONS(1967), + [anon_sym_SLASH] = ACTIONS(1969), + [anon_sym_PLUS] = ACTIONS(1969), + [anon_sym_LT_LT] = ACTIONS(1967), + [anon_sym_GT_GT] = ACTIONS(1969), + [anon_sym_GT_GT_GT] = ACTIONS(1967), + [anon_sym_AMP] = ACTIONS(1969), + [anon_sym_PIPE] = ACTIONS(1969), + [anon_sym_CARET] = ACTIONS(1967), + [anon_sym_AMP_AMP] = ACTIONS(1967), + [anon_sym_PIPE_PIPE] = ACTIONS(1967), + [anon_sym_EQ_EQ] = ACTIONS(1967), + [anon_sym_BANG_EQ] = ACTIONS(1967), + [anon_sym_LT] = ACTIONS(1969), + [anon_sym_LT_EQ] = ACTIONS(1967), + [anon_sym_GT] = ACTIONS(1969), + [anon_sym_GT_EQ] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(1967), + [anon_sym_QMARK_QMARK] = ACTIONS(1967), + [anon_sym_EQ] = ACTIONS(1969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1967), + [anon_sym_null] = ACTIONS(1969), + [anon_sym_macro] = ACTIONS(1969), + [anon_sym_abstract] = ACTIONS(1969), + [anon_sym_static] = ACTIONS(1969), + [anon_sym_public] = ACTIONS(1969), + [anon_sym_private] = ACTIONS(1969), + [anon_sym_extern] = ACTIONS(1969), + [anon_sym_inline] = ACTIONS(1969), + [anon_sym_overload] = ACTIONS(1969), + [anon_sym_override] = ACTIONS(1969), + [anon_sym_final] = ACTIONS(1969), + [anon_sym_class] = ACTIONS(1969), + [anon_sym_interface] = ACTIONS(1969), + [anon_sym_enum] = ACTIONS(1969), + [anon_sym_typedef] = ACTIONS(1969), + [anon_sym_function] = ACTIONS(1969), + [anon_sym_var] = ACTIONS(1969), + [aux_sym_integer_token1] = ACTIONS(1969), + [aux_sym_integer_token2] = ACTIONS(1967), + [aux_sym_float_token1] = ACTIONS(1969), + [aux_sym_float_token2] = ACTIONS(1967), + [anon_sym_true] = ACTIONS(1969), + [anon_sym_false] = ACTIONS(1969), + [aux_sym_string_token1] = ACTIONS(1967), + [aux_sym_string_token3] = ACTIONS(1967), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1967), [sym__closing_brace_unmarker] = ACTIONS(3), }, [357] = { - [sym_identifier] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_package] = ACTIONS(1828), - [anon_sym_import] = ACTIONS(1828), - [anon_sym_using] = ACTIONS(1828), - [anon_sym_throw] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_switch] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_case] = ACTIONS(1828), - [anon_sym_default] = ACTIONS(1828), - [anon_sym_cast] = ACTIONS(1828), - [anon_sym_DOLLARtype] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_untyped] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_this] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_AT_COLON] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_PERCENT] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_SLASH] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1828), - [anon_sym_GT_GT_GT] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [anon_sym_EQ_EQ] = ACTIONS(1830), - [anon_sym_BANG_EQ] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1830), - [anon_sym_EQ_GT] = ACTIONS(1830), - [anon_sym_QMARK_QMARK] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1828), - [sym__rangeOperator] = ACTIONS(1830), - [anon_sym_null] = ACTIONS(1828), - [anon_sym_macro] = ACTIONS(1828), - [anon_sym_abstract] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_public] = ACTIONS(1828), - [anon_sym_private] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_inline] = ACTIONS(1828), - [anon_sym_overload] = ACTIONS(1828), - [anon_sym_override] = ACTIONS(1828), - [anon_sym_final] = ACTIONS(1828), - [anon_sym_class] = ACTIONS(1828), - [anon_sym_interface] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1828), - [anon_sym_function] = ACTIONS(1828), - [anon_sym_var] = ACTIONS(1828), - [aux_sym_integer_token1] = ACTIONS(1828), - [aux_sym_integer_token2] = ACTIONS(1830), - [aux_sym_float_token1] = ACTIONS(1828), - [aux_sym_float_token2] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [aux_sym_string_token1] = ACTIONS(1830), - [aux_sym_string_token3] = ACTIONS(1830), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1830), + [sym_identifier] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(1873), + [anon_sym_package] = ACTIONS(1875), + [anon_sym_DOT] = ACTIONS(1875), + [anon_sym_import] = ACTIONS(1875), + [anon_sym_STAR] = ACTIONS(1873), + [anon_sym_using] = ACTIONS(1875), + [anon_sym_throw] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_switch] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_case] = ACTIONS(1875), + [anon_sym_default] = ACTIONS(1875), + [anon_sym_cast] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_DOLLARtype] = ACTIONS(1873), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_untyped] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_this] = ACTIONS(1875), + [anon_sym_QMARK] = ACTIONS(1875), + [anon_sym_AT] = ACTIONS(1875), + [anon_sym_AT_COLON] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_new] = ACTIONS(1875), + [anon_sym_TILDE] = ACTIONS(1873), + [anon_sym_BANG] = ACTIONS(1875), + [anon_sym_DASH] = ACTIONS(1875), + [anon_sym_PLUS_PLUS] = ACTIONS(1873), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_PERCENT] = ACTIONS(1873), + [anon_sym_SLASH] = ACTIONS(1875), + [anon_sym_PLUS] = ACTIONS(1875), + [anon_sym_LT_LT] = ACTIONS(1873), + [anon_sym_GT_GT] = ACTIONS(1875), + [anon_sym_GT_GT_GT] = ACTIONS(1873), + [anon_sym_AMP] = ACTIONS(1875), + [anon_sym_PIPE] = ACTIONS(1875), + [anon_sym_CARET] = ACTIONS(1873), + [anon_sym_AMP_AMP] = ACTIONS(1873), + [anon_sym_PIPE_PIPE] = ACTIONS(1873), + [anon_sym_EQ_EQ] = ACTIONS(1873), + [anon_sym_BANG_EQ] = ACTIONS(1873), + [anon_sym_LT] = ACTIONS(1875), + [anon_sym_LT_EQ] = ACTIONS(1873), + [anon_sym_GT] = ACTIONS(1875), + [anon_sym_GT_EQ] = ACTIONS(1873), + [anon_sym_EQ_GT] = ACTIONS(1873), + [anon_sym_QMARK_QMARK] = ACTIONS(1873), + [anon_sym_EQ] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1875), + [anon_sym_macro] = ACTIONS(1875), + [anon_sym_abstract] = ACTIONS(1875), + [anon_sym_static] = ACTIONS(1875), + [anon_sym_public] = ACTIONS(1875), + [anon_sym_private] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_inline] = ACTIONS(1875), + [anon_sym_overload] = ACTIONS(1875), + [anon_sym_override] = ACTIONS(1875), + [anon_sym_final] = ACTIONS(1875), + [anon_sym_class] = ACTIONS(1875), + [anon_sym_interface] = ACTIONS(1875), + [anon_sym_enum] = ACTIONS(1875), + [anon_sym_typedef] = ACTIONS(1875), + [anon_sym_function] = ACTIONS(1875), + [anon_sym_var] = ACTIONS(1875), + [aux_sym_integer_token1] = ACTIONS(1875), + [aux_sym_integer_token2] = ACTIONS(1873), + [aux_sym_float_token1] = ACTIONS(1875), + [aux_sym_float_token2] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1875), + [anon_sym_false] = ACTIONS(1875), + [aux_sym_string_token1] = ACTIONS(1873), + [aux_sym_string_token3] = ACTIONS(1873), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1873), [sym__closing_brace_unmarker] = ACTIONS(3), }, [358] = { - [sym_identifier] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_package] = ACTIONS(1832), - [anon_sym_import] = ACTIONS(1832), - [anon_sym_using] = ACTIONS(1832), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_case] = ACTIONS(1832), - [anon_sym_default] = ACTIONS(1832), - [anon_sym_cast] = ACTIONS(1832), - [anon_sym_DOLLARtype] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_untyped] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1832), - [anon_sym_AT_COLON] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_GT_GT_GT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_LT_EQ] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_GT_EQ] = ACTIONS(1834), - [anon_sym_EQ_GT] = ACTIONS(1834), - [anon_sym_QMARK_QMARK] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1832), - [sym__rangeOperator] = ACTIONS(1834), - [anon_sym_null] = ACTIONS(1832), - [anon_sym_macro] = ACTIONS(1832), - [anon_sym_abstract] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_private] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_inline] = ACTIONS(1832), - [anon_sym_overload] = ACTIONS(1832), - [anon_sym_override] = ACTIONS(1832), - [anon_sym_final] = ACTIONS(1832), - [anon_sym_class] = ACTIONS(1832), - [anon_sym_interface] = ACTIONS(1832), - [anon_sym_typedef] = ACTIONS(1832), - [anon_sym_function] = ACTIONS(1832), - [anon_sym_var] = ACTIONS(1832), - [aux_sym_integer_token1] = ACTIONS(1832), - [aux_sym_integer_token2] = ACTIONS(1834), - [aux_sym_float_token1] = ACTIONS(1832), - [aux_sym_float_token2] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [aux_sym_string_token1] = ACTIONS(1834), - [aux_sym_string_token3] = ACTIONS(1834), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1834), + [sym_identifier] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_package] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1855), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_case] = ACTIONS(1855), + [anon_sym_default] = ACTIONS(1855), + [anon_sym_cast] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_DOLLARtype] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_untyped] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1855), + [anon_sym_QMARK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_AT_COLON] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_EQ_GT] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1853), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1855), + [anon_sym_macro] = ACTIONS(1855), + [anon_sym_abstract] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_overload] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_final] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_function] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1855), + [aux_sym_integer_token1] = ACTIONS(1855), + [aux_sym_integer_token2] = ACTIONS(1853), + [aux_sym_float_token1] = ACTIONS(1855), + [aux_sym_float_token2] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [aux_sym_string_token1] = ACTIONS(1853), + [aux_sym_string_token3] = ACTIONS(1853), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1853), [sym__closing_brace_unmarker] = ACTIONS(3), }, [359] = { - [sym_identifier] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_package] = ACTIONS(1836), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_using] = ACTIONS(1836), - [anon_sym_throw] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_case] = ACTIONS(1836), - [anon_sym_default] = ACTIONS(1836), - [anon_sym_cast] = ACTIONS(1836), - [anon_sym_DOLLARtype] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_untyped] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_this] = ACTIONS(1836), - [anon_sym_AT] = ACTIONS(1836), - [anon_sym_AT_COLON] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1836), - [anon_sym_LT_LT] = ACTIONS(1838), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_GT_GT_GT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_EQ_EQ] = ACTIONS(1838), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1838), - [anon_sym_EQ_GT] = ACTIONS(1838), - [anon_sym_QMARK_QMARK] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1836), - [sym__rangeOperator] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1836), - [anon_sym_macro] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_public] = ACTIONS(1836), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_inline] = ACTIONS(1836), - [anon_sym_overload] = ACTIONS(1836), - [anon_sym_override] = ACTIONS(1836), - [anon_sym_final] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_interface] = ACTIONS(1836), - [anon_sym_typedef] = ACTIONS(1836), - [anon_sym_function] = ACTIONS(1836), - [anon_sym_var] = ACTIONS(1836), - [aux_sym_integer_token1] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1838), - [aux_sym_float_token1] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym_string_token1] = ACTIONS(1838), - [aux_sym_string_token3] = ACTIONS(1838), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1838), + [sym_identifier] = ACTIONS(1766), + [anon_sym_POUND] = ACTIONS(1763), + [anon_sym_package] = ACTIONS(1766), + [anon_sym_DOT] = ACTIONS(1766), + [anon_sym_import] = ACTIONS(1766), + [anon_sym_STAR] = ACTIONS(1763), + [anon_sym_using] = ACTIONS(1766), + [anon_sym_throw] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1763), + [anon_sym_switch] = ACTIONS(1766), + [anon_sym_LBRACE] = ACTIONS(1763), + [anon_sym_case] = ACTIONS(1766), + [anon_sym_default] = ACTIONS(1766), + [anon_sym_cast] = ACTIONS(1766), + [anon_sym_COMMA] = ACTIONS(1763), + [anon_sym_DOLLARtype] = ACTIONS(1763), + [anon_sym_for] = ACTIONS(1766), + [anon_sym_return] = ACTIONS(1766), + [anon_sym_untyped] = ACTIONS(1766), + [anon_sym_break] = ACTIONS(1766), + [anon_sym_continue] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1763), + [anon_sym_this] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1766), + [anon_sym_AT] = ACTIONS(1766), + [anon_sym_AT_COLON] = ACTIONS(1763), + [anon_sym_try] = ACTIONS(1766), + [anon_sym_catch] = ACTIONS(1766), + [anon_sym_else] = ACTIONS(1766), + [anon_sym_if] = ACTIONS(1766), + [anon_sym_while] = ACTIONS(1766), + [anon_sym_do] = ACTIONS(1766), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(1763), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PLUS_PLUS] = ACTIONS(1763), + [anon_sym_DASH_DASH] = ACTIONS(1763), + [anon_sym_PERCENT] = ACTIONS(1763), + [anon_sym_SLASH] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_LT_LT] = ACTIONS(1763), + [anon_sym_GT_GT] = ACTIONS(1766), + [anon_sym_GT_GT_GT] = ACTIONS(1763), + [anon_sym_AMP] = ACTIONS(1766), + [anon_sym_PIPE] = ACTIONS(1766), + [anon_sym_CARET] = ACTIONS(1763), + [anon_sym_AMP_AMP] = ACTIONS(1763), + [anon_sym_PIPE_PIPE] = ACTIONS(1763), + [anon_sym_EQ_EQ] = ACTIONS(1763), + [anon_sym_BANG_EQ] = ACTIONS(1763), + [anon_sym_LT] = ACTIONS(1766), + [anon_sym_LT_EQ] = ACTIONS(1763), + [anon_sym_GT] = ACTIONS(1766), + [anon_sym_GT_EQ] = ACTIONS(1763), + [anon_sym_EQ_GT] = ACTIONS(1763), + [anon_sym_QMARK_QMARK] = ACTIONS(1763), + [anon_sym_EQ] = ACTIONS(1766), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1763), + [anon_sym_null] = ACTIONS(1766), + [anon_sym_macro] = ACTIONS(1766), + [anon_sym_abstract] = ACTIONS(1766), + [anon_sym_static] = ACTIONS(1766), + [anon_sym_public] = ACTIONS(1766), + [anon_sym_private] = ACTIONS(1766), + [anon_sym_extern] = ACTIONS(1766), + [anon_sym_inline] = ACTIONS(1766), + [anon_sym_overload] = ACTIONS(1766), + [anon_sym_override] = ACTIONS(1766), + [anon_sym_final] = ACTIONS(1766), + [anon_sym_class] = ACTIONS(1766), + [anon_sym_interface] = ACTIONS(1766), + [anon_sym_enum] = ACTIONS(1766), + [anon_sym_typedef] = ACTIONS(1766), + [anon_sym_function] = ACTIONS(1766), + [anon_sym_var] = ACTIONS(1766), + [aux_sym_integer_token1] = ACTIONS(1766), + [aux_sym_integer_token2] = ACTIONS(1763), + [aux_sym_float_token1] = ACTIONS(1766), + [aux_sym_float_token2] = ACTIONS(1763), + [anon_sym_true] = ACTIONS(1766), + [anon_sym_false] = ACTIONS(1766), + [aux_sym_string_token1] = ACTIONS(1763), + [aux_sym_string_token3] = ACTIONS(1763), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1763), [sym__closing_brace_unmarker] = ACTIONS(3), }, [360] = { - [sym_identifier] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_package] = ACTIONS(1840), - [anon_sym_import] = ACTIONS(1840), - [anon_sym_using] = ACTIONS(1840), - [anon_sym_throw] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_switch] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_case] = ACTIONS(1840), - [anon_sym_default] = ACTIONS(1840), - [anon_sym_cast] = ACTIONS(1840), - [anon_sym_DOLLARtype] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_untyped] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1840), - [anon_sym_AT_COLON] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_new] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1840), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_LT_LT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1840), - [anon_sym_GT_GT_GT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [anon_sym_EQ_EQ] = ACTIONS(1842), - [anon_sym_BANG_EQ] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_LT_EQ] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_EQ] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1842), - [anon_sym_QMARK_QMARK] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1840), - [sym__rangeOperator] = ACTIONS(1842), - [anon_sym_null] = ACTIONS(1840), - [anon_sym_macro] = ACTIONS(1840), - [anon_sym_abstract] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1840), - [anon_sym_private] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_inline] = ACTIONS(1840), - [anon_sym_overload] = ACTIONS(1840), - [anon_sym_override] = ACTIONS(1840), - [anon_sym_final] = ACTIONS(1840), - [anon_sym_class] = ACTIONS(1840), - [anon_sym_interface] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1840), - [anon_sym_function] = ACTIONS(1840), - [anon_sym_var] = ACTIONS(1840), - [aux_sym_integer_token1] = ACTIONS(1840), - [aux_sym_integer_token2] = ACTIONS(1842), - [aux_sym_float_token1] = ACTIONS(1840), - [aux_sym_float_token2] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [aux_sym_string_token1] = ACTIONS(1842), - [aux_sym_string_token3] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1842), + [sym_identifier] = ACTIONS(1771), + [anon_sym_POUND] = ACTIONS(1769), + [anon_sym_package] = ACTIONS(1771), + [anon_sym_DOT] = ACTIONS(1771), + [anon_sym_import] = ACTIONS(1771), + [anon_sym_STAR] = ACTIONS(1769), + [anon_sym_using] = ACTIONS(1771), + [anon_sym_throw] = ACTIONS(1771), + [anon_sym_LPAREN] = ACTIONS(1769), + [anon_sym_switch] = ACTIONS(1771), + [anon_sym_LBRACE] = ACTIONS(1769), + [anon_sym_case] = ACTIONS(1771), + [anon_sym_default] = ACTIONS(1771), + [anon_sym_cast] = ACTIONS(1771), + [anon_sym_COMMA] = ACTIONS(1769), + [anon_sym_DOLLARtype] = ACTIONS(1769), + [anon_sym_for] = ACTIONS(1771), + [anon_sym_return] = ACTIONS(1771), + [anon_sym_untyped] = ACTIONS(1771), + [anon_sym_break] = ACTIONS(1771), + [anon_sym_continue] = ACTIONS(1771), + [anon_sym_LBRACK] = ACTIONS(1769), + [anon_sym_this] = ACTIONS(1771), + [anon_sym_QMARK] = ACTIONS(1771), + [anon_sym_AT] = ACTIONS(1771), + [anon_sym_AT_COLON] = ACTIONS(1769), + [anon_sym_try] = ACTIONS(1771), + [anon_sym_catch] = ACTIONS(1771), + [anon_sym_else] = ACTIONS(1771), + [anon_sym_if] = ACTIONS(1771), + [anon_sym_while] = ACTIONS(1771), + [anon_sym_do] = ACTIONS(1771), + [anon_sym_new] = ACTIONS(1771), + [anon_sym_TILDE] = ACTIONS(1769), + [anon_sym_BANG] = ACTIONS(1771), + [anon_sym_DASH] = ACTIONS(1771), + [anon_sym_PLUS_PLUS] = ACTIONS(1769), + [anon_sym_DASH_DASH] = ACTIONS(1769), + [anon_sym_PERCENT] = ACTIONS(1769), + [anon_sym_SLASH] = ACTIONS(1771), + [anon_sym_PLUS] = ACTIONS(1771), + [anon_sym_LT_LT] = ACTIONS(1769), + [anon_sym_GT_GT] = ACTIONS(1771), + [anon_sym_GT_GT_GT] = ACTIONS(1769), + [anon_sym_AMP] = ACTIONS(1771), + [anon_sym_PIPE] = ACTIONS(1771), + [anon_sym_CARET] = ACTIONS(1769), + [anon_sym_AMP_AMP] = ACTIONS(1769), + [anon_sym_PIPE_PIPE] = ACTIONS(1769), + [anon_sym_EQ_EQ] = ACTIONS(1769), + [anon_sym_BANG_EQ] = ACTIONS(1769), + [anon_sym_LT] = ACTIONS(1771), + [anon_sym_LT_EQ] = ACTIONS(1769), + [anon_sym_GT] = ACTIONS(1771), + [anon_sym_GT_EQ] = ACTIONS(1769), + [anon_sym_EQ_GT] = ACTIONS(1769), + [anon_sym_QMARK_QMARK] = ACTIONS(1769), + [anon_sym_EQ] = ACTIONS(1771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1769), + [anon_sym_null] = ACTIONS(1771), + [anon_sym_macro] = ACTIONS(1771), + [anon_sym_abstract] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_public] = ACTIONS(1771), + [anon_sym_private] = ACTIONS(1771), + [anon_sym_extern] = ACTIONS(1771), + [anon_sym_inline] = ACTIONS(1771), + [anon_sym_overload] = ACTIONS(1771), + [anon_sym_override] = ACTIONS(1771), + [anon_sym_final] = ACTIONS(1771), + [anon_sym_class] = ACTIONS(1771), + [anon_sym_interface] = ACTIONS(1771), + [anon_sym_enum] = ACTIONS(1771), + [anon_sym_typedef] = ACTIONS(1771), + [anon_sym_function] = ACTIONS(1771), + [anon_sym_var] = ACTIONS(1771), + [aux_sym_integer_token1] = ACTIONS(1771), + [aux_sym_integer_token2] = ACTIONS(1769), + [aux_sym_float_token1] = ACTIONS(1771), + [aux_sym_float_token2] = ACTIONS(1769), + [anon_sym_true] = ACTIONS(1771), + [anon_sym_false] = ACTIONS(1771), + [aux_sym_string_token1] = ACTIONS(1769), + [aux_sym_string_token3] = ACTIONS(1769), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1769), [sym__closing_brace_unmarker] = ACTIONS(3), }, [361] = { - [sym_identifier] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_package] = ACTIONS(1844), - [anon_sym_import] = ACTIONS(1844), - [anon_sym_using] = ACTIONS(1844), - [anon_sym_throw] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_case] = ACTIONS(1844), - [anon_sym_default] = ACTIONS(1844), - [anon_sym_cast] = ACTIONS(1844), - [anon_sym_DOLLARtype] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_untyped] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_this] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1844), - [anon_sym_AT_COLON] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1844), - [anon_sym_GT_GT_GT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_EQ_EQ] = ACTIONS(1846), - [anon_sym_BANG_EQ] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_LT_EQ] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_GT_EQ] = ACTIONS(1846), - [anon_sym_EQ_GT] = ACTIONS(1846), - [anon_sym_QMARK_QMARK] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1844), - [sym__rangeOperator] = ACTIONS(1846), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_macro] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_public] = ACTIONS(1844), - [anon_sym_private] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym_overload] = ACTIONS(1844), - [anon_sym_override] = ACTIONS(1844), - [anon_sym_final] = ACTIONS(1844), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_interface] = ACTIONS(1844), - [anon_sym_typedef] = ACTIONS(1844), - [anon_sym_function] = ACTIONS(1844), - [anon_sym_var] = ACTIONS(1844), - [aux_sym_integer_token1] = ACTIONS(1844), - [aux_sym_integer_token2] = ACTIONS(1846), - [aux_sym_float_token1] = ACTIONS(1844), - [aux_sym_float_token2] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [aux_sym_string_token1] = ACTIONS(1846), - [aux_sym_string_token3] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1846), + [sym_identifier] = ACTIONS(1775), + [anon_sym_POUND] = ACTIONS(1773), + [anon_sym_package] = ACTIONS(1775), + [anon_sym_DOT] = ACTIONS(1775), + [anon_sym_import] = ACTIONS(1775), + [anon_sym_STAR] = ACTIONS(1773), + [anon_sym_using] = ACTIONS(1775), + [anon_sym_throw] = ACTIONS(1775), + [anon_sym_LPAREN] = ACTIONS(1773), + [anon_sym_switch] = ACTIONS(1775), + [anon_sym_LBRACE] = ACTIONS(1773), + [anon_sym_case] = ACTIONS(1775), + [anon_sym_default] = ACTIONS(1775), + [anon_sym_cast] = ACTIONS(1775), + [anon_sym_COMMA] = ACTIONS(1773), + [anon_sym_DOLLARtype] = ACTIONS(1773), + [anon_sym_for] = ACTIONS(1775), + [anon_sym_return] = ACTIONS(1775), + [anon_sym_untyped] = ACTIONS(1775), + [anon_sym_break] = ACTIONS(1775), + [anon_sym_continue] = ACTIONS(1775), + [anon_sym_LBRACK] = ACTIONS(1773), + [anon_sym_this] = ACTIONS(1775), + [anon_sym_QMARK] = ACTIONS(1775), + [anon_sym_AT] = ACTIONS(1775), + [anon_sym_AT_COLON] = ACTIONS(1773), + [anon_sym_try] = ACTIONS(1775), + [anon_sym_catch] = ACTIONS(1775), + [anon_sym_else] = ACTIONS(1775), + [anon_sym_if] = ACTIONS(1775), + [anon_sym_while] = ACTIONS(1775), + [anon_sym_do] = ACTIONS(1775), + [anon_sym_new] = ACTIONS(1775), + [anon_sym_TILDE] = ACTIONS(1773), + [anon_sym_BANG] = ACTIONS(1775), + [anon_sym_DASH] = ACTIONS(1775), + [anon_sym_PLUS_PLUS] = ACTIONS(1773), + [anon_sym_DASH_DASH] = ACTIONS(1773), + [anon_sym_PERCENT] = ACTIONS(1773), + [anon_sym_SLASH] = ACTIONS(1775), + [anon_sym_PLUS] = ACTIONS(1775), + [anon_sym_LT_LT] = ACTIONS(1773), + [anon_sym_GT_GT] = ACTIONS(1775), + [anon_sym_GT_GT_GT] = ACTIONS(1773), + [anon_sym_AMP] = ACTIONS(1775), + [anon_sym_PIPE] = ACTIONS(1775), + [anon_sym_CARET] = ACTIONS(1773), + [anon_sym_AMP_AMP] = ACTIONS(1773), + [anon_sym_PIPE_PIPE] = ACTIONS(1773), + [anon_sym_EQ_EQ] = ACTIONS(1773), + [anon_sym_BANG_EQ] = ACTIONS(1773), + [anon_sym_LT] = ACTIONS(1775), + [anon_sym_LT_EQ] = ACTIONS(1773), + [anon_sym_GT] = ACTIONS(1775), + [anon_sym_GT_EQ] = ACTIONS(1773), + [anon_sym_EQ_GT] = ACTIONS(1773), + [anon_sym_QMARK_QMARK] = ACTIONS(1773), + [anon_sym_EQ] = ACTIONS(1775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1773), + [anon_sym_null] = ACTIONS(1775), + [anon_sym_macro] = ACTIONS(1775), + [anon_sym_abstract] = ACTIONS(1775), + [anon_sym_static] = ACTIONS(1775), + [anon_sym_public] = ACTIONS(1775), + [anon_sym_private] = ACTIONS(1775), + [anon_sym_extern] = ACTIONS(1775), + [anon_sym_inline] = ACTIONS(1775), + [anon_sym_overload] = ACTIONS(1775), + [anon_sym_override] = ACTIONS(1775), + [anon_sym_final] = ACTIONS(1775), + [anon_sym_class] = ACTIONS(1775), + [anon_sym_interface] = ACTIONS(1775), + [anon_sym_enum] = ACTIONS(1775), + [anon_sym_typedef] = ACTIONS(1775), + [anon_sym_function] = ACTIONS(1775), + [anon_sym_var] = ACTIONS(1775), + [aux_sym_integer_token1] = ACTIONS(1775), + [aux_sym_integer_token2] = ACTIONS(1773), + [aux_sym_float_token1] = ACTIONS(1775), + [aux_sym_float_token2] = ACTIONS(1773), + [anon_sym_true] = ACTIONS(1775), + [anon_sym_false] = ACTIONS(1775), + [aux_sym_string_token1] = ACTIONS(1773), + [aux_sym_string_token3] = ACTIONS(1773), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1773), [sym__closing_brace_unmarker] = ACTIONS(3), }, [362] = { - [sym_identifier] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_package] = ACTIONS(1848), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_using] = ACTIONS(1848), - [anon_sym_throw] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_switch] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_case] = ACTIONS(1848), - [anon_sym_default] = ACTIONS(1848), - [anon_sym_cast] = ACTIONS(1848), - [anon_sym_DOLLARtype] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_untyped] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_this] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1848), - [anon_sym_AT_COLON] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1850), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(1848), - [anon_sym_LT_LT] = ACTIONS(1850), - [anon_sym_GT_GT] = ACTIONS(1848), - [anon_sym_GT_GT_GT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym_AMP_AMP] = ACTIONS(1850), - [anon_sym_PIPE_PIPE] = ACTIONS(1850), - [anon_sym_EQ_EQ] = ACTIONS(1850), - [anon_sym_BANG_EQ] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_LT_EQ] = ACTIONS(1850), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_EQ] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_QMARK_QMARK] = ACTIONS(1850), - [anon_sym_EQ] = ACTIONS(1848), - [sym__rangeOperator] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1848), - [anon_sym_macro] = ACTIONS(1848), - [anon_sym_abstract] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_public] = ACTIONS(1848), - [anon_sym_private] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_inline] = ACTIONS(1848), - [anon_sym_overload] = ACTIONS(1848), - [anon_sym_override] = ACTIONS(1848), - [anon_sym_final] = ACTIONS(1848), - [anon_sym_class] = ACTIONS(1848), - [anon_sym_interface] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1848), - [anon_sym_function] = ACTIONS(1848), - [anon_sym_var] = ACTIONS(1848), - [aux_sym_integer_token1] = ACTIONS(1848), - [aux_sym_integer_token2] = ACTIONS(1850), - [aux_sym_float_token1] = ACTIONS(1848), - [aux_sym_float_token2] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [aux_sym_string_token1] = ACTIONS(1850), - [aux_sym_string_token3] = ACTIONS(1850), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1850), + [sym_identifier] = ACTIONS(1779), + [anon_sym_POUND] = ACTIONS(1777), + [anon_sym_package] = ACTIONS(1779), + [anon_sym_DOT] = ACTIONS(1779), + [anon_sym_import] = ACTIONS(1779), + [anon_sym_STAR] = ACTIONS(1777), + [anon_sym_using] = ACTIONS(1779), + [anon_sym_throw] = ACTIONS(1779), + [anon_sym_LPAREN] = ACTIONS(1777), + [anon_sym_switch] = ACTIONS(1779), + [anon_sym_LBRACE] = ACTIONS(1777), + [anon_sym_case] = ACTIONS(1779), + [anon_sym_default] = ACTIONS(1779), + [anon_sym_cast] = ACTIONS(1779), + [anon_sym_COMMA] = ACTIONS(1777), + [anon_sym_DOLLARtype] = ACTIONS(1777), + [anon_sym_for] = ACTIONS(1779), + [anon_sym_return] = ACTIONS(1779), + [anon_sym_untyped] = ACTIONS(1779), + [anon_sym_break] = ACTIONS(1779), + [anon_sym_continue] = ACTIONS(1779), + [anon_sym_LBRACK] = ACTIONS(1777), + [anon_sym_this] = ACTIONS(1779), + [anon_sym_QMARK] = ACTIONS(1779), + [anon_sym_AT] = ACTIONS(1779), + [anon_sym_AT_COLON] = ACTIONS(1777), + [anon_sym_try] = ACTIONS(1779), + [anon_sym_catch] = ACTIONS(1779), + [anon_sym_else] = ACTIONS(1779), + [anon_sym_if] = ACTIONS(1779), + [anon_sym_while] = ACTIONS(1779), + [anon_sym_do] = ACTIONS(1779), + [anon_sym_new] = ACTIONS(1779), + [anon_sym_TILDE] = ACTIONS(1777), + [anon_sym_BANG] = ACTIONS(1779), + [anon_sym_DASH] = ACTIONS(1779), + [anon_sym_PLUS_PLUS] = ACTIONS(1777), + [anon_sym_DASH_DASH] = ACTIONS(1777), + [anon_sym_PERCENT] = ACTIONS(1777), + [anon_sym_SLASH] = ACTIONS(1779), + [anon_sym_PLUS] = ACTIONS(1779), + [anon_sym_LT_LT] = ACTIONS(1777), + [anon_sym_GT_GT] = ACTIONS(1779), + [anon_sym_GT_GT_GT] = ACTIONS(1777), + [anon_sym_AMP] = ACTIONS(1779), + [anon_sym_PIPE] = ACTIONS(1779), + [anon_sym_CARET] = ACTIONS(1777), + [anon_sym_AMP_AMP] = ACTIONS(1777), + [anon_sym_PIPE_PIPE] = ACTIONS(1777), + [anon_sym_EQ_EQ] = ACTIONS(1777), + [anon_sym_BANG_EQ] = ACTIONS(1777), + [anon_sym_LT] = ACTIONS(1779), + [anon_sym_LT_EQ] = ACTIONS(1777), + [anon_sym_GT] = ACTIONS(1779), + [anon_sym_GT_EQ] = ACTIONS(1777), + [anon_sym_EQ_GT] = ACTIONS(1777), + [anon_sym_QMARK_QMARK] = ACTIONS(1777), + [anon_sym_EQ] = ACTIONS(1779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1777), + [anon_sym_null] = ACTIONS(1779), + [anon_sym_macro] = ACTIONS(1779), + [anon_sym_abstract] = ACTIONS(1779), + [anon_sym_static] = ACTIONS(1779), + [anon_sym_public] = ACTIONS(1779), + [anon_sym_private] = ACTIONS(1779), + [anon_sym_extern] = ACTIONS(1779), + [anon_sym_inline] = ACTIONS(1779), + [anon_sym_overload] = ACTIONS(1779), + [anon_sym_override] = ACTIONS(1779), + [anon_sym_final] = ACTIONS(1779), + [anon_sym_class] = ACTIONS(1779), + [anon_sym_interface] = ACTIONS(1779), + [anon_sym_enum] = ACTIONS(1779), + [anon_sym_typedef] = ACTIONS(1779), + [anon_sym_function] = ACTIONS(1779), + [anon_sym_var] = ACTIONS(1779), + [aux_sym_integer_token1] = ACTIONS(1779), + [aux_sym_integer_token2] = ACTIONS(1777), + [aux_sym_float_token1] = ACTIONS(1779), + [aux_sym_float_token2] = ACTIONS(1777), + [anon_sym_true] = ACTIONS(1779), + [anon_sym_false] = ACTIONS(1779), + [aux_sym_string_token1] = ACTIONS(1777), + [aux_sym_string_token3] = ACTIONS(1777), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1777), [sym__closing_brace_unmarker] = ACTIONS(3), }, [363] = { - [sym_identifier] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_package] = ACTIONS(1852), - [anon_sym_import] = ACTIONS(1852), - [anon_sym_using] = ACTIONS(1852), - [anon_sym_throw] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_case] = ACTIONS(1852), - [anon_sym_default] = ACTIONS(1852), - [anon_sym_cast] = ACTIONS(1852), - [anon_sym_DOLLARtype] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_untyped] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1852), - [anon_sym_AT] = ACTIONS(1852), - [anon_sym_AT_COLON] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_PLUS_PLUS] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1854), - [anon_sym_PERCENT] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_SLASH] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_LT_LT] = ACTIONS(1854), - [anon_sym_GT_GT] = ACTIONS(1852), - [anon_sym_GT_GT_GT] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1854), - [anon_sym_AMP_AMP] = ACTIONS(1854), - [anon_sym_PIPE_PIPE] = ACTIONS(1854), - [anon_sym_EQ_EQ] = ACTIONS(1854), - [anon_sym_BANG_EQ] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_LT_EQ] = ACTIONS(1854), - [anon_sym_GT] = ACTIONS(1852), - [anon_sym_GT_EQ] = ACTIONS(1854), - [anon_sym_EQ_GT] = ACTIONS(1854), - [anon_sym_QMARK_QMARK] = ACTIONS(1854), - [anon_sym_EQ] = ACTIONS(1852), - [sym__rangeOperator] = ACTIONS(1854), - [anon_sym_null] = ACTIONS(1852), - [anon_sym_macro] = ACTIONS(1852), - [anon_sym_abstract] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_public] = ACTIONS(1852), - [anon_sym_private] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_inline] = ACTIONS(1852), - [anon_sym_overload] = ACTIONS(1852), - [anon_sym_override] = ACTIONS(1852), - [anon_sym_final] = ACTIONS(1852), - [anon_sym_class] = ACTIONS(1852), - [anon_sym_interface] = ACTIONS(1852), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_function] = ACTIONS(1852), - [anon_sym_var] = ACTIONS(1852), - [aux_sym_integer_token1] = ACTIONS(1852), - [aux_sym_integer_token2] = ACTIONS(1854), - [aux_sym_float_token1] = ACTIONS(1852), - [aux_sym_float_token2] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [aux_sym_string_token1] = ACTIONS(1854), - [aux_sym_string_token3] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1854), + [sym_identifier] = ACTIONS(1799), + [anon_sym_POUND] = ACTIONS(1797), + [anon_sym_package] = ACTIONS(1799), + [anon_sym_DOT] = ACTIONS(1799), + [anon_sym_import] = ACTIONS(1799), + [anon_sym_STAR] = ACTIONS(1797), + [anon_sym_using] = ACTIONS(1799), + [anon_sym_throw] = ACTIONS(1799), + [anon_sym_LPAREN] = ACTIONS(1797), + [anon_sym_switch] = ACTIONS(1799), + [anon_sym_LBRACE] = ACTIONS(1797), + [anon_sym_case] = ACTIONS(1799), + [anon_sym_default] = ACTIONS(1799), + [anon_sym_cast] = ACTIONS(1799), + [anon_sym_COMMA] = ACTIONS(1797), + [anon_sym_DOLLARtype] = ACTIONS(1797), + [anon_sym_for] = ACTIONS(1799), + [anon_sym_return] = ACTIONS(1799), + [anon_sym_untyped] = ACTIONS(1799), + [anon_sym_break] = ACTIONS(1799), + [anon_sym_continue] = ACTIONS(1799), + [anon_sym_LBRACK] = ACTIONS(1797), + [anon_sym_this] = ACTIONS(1799), + [anon_sym_QMARK] = ACTIONS(1799), + [anon_sym_AT] = ACTIONS(1799), + [anon_sym_AT_COLON] = ACTIONS(1797), + [anon_sym_try] = ACTIONS(1799), + [anon_sym_catch] = ACTIONS(1799), + [anon_sym_else] = ACTIONS(1799), + [anon_sym_if] = ACTIONS(1799), + [anon_sym_while] = ACTIONS(1799), + [anon_sym_do] = ACTIONS(1799), + [anon_sym_new] = ACTIONS(1799), + [anon_sym_TILDE] = ACTIONS(1797), + [anon_sym_BANG] = ACTIONS(1799), + [anon_sym_DASH] = ACTIONS(1799), + [anon_sym_PLUS_PLUS] = ACTIONS(1797), + [anon_sym_DASH_DASH] = ACTIONS(1797), + [anon_sym_PERCENT] = ACTIONS(1797), + [anon_sym_SLASH] = ACTIONS(1799), + [anon_sym_PLUS] = ACTIONS(1799), + [anon_sym_LT_LT] = ACTIONS(1797), + [anon_sym_GT_GT] = ACTIONS(1799), + [anon_sym_GT_GT_GT] = ACTIONS(1797), + [anon_sym_AMP] = ACTIONS(1799), + [anon_sym_PIPE] = ACTIONS(1799), + [anon_sym_CARET] = ACTIONS(1797), + [anon_sym_AMP_AMP] = ACTIONS(1797), + [anon_sym_PIPE_PIPE] = ACTIONS(1797), + [anon_sym_EQ_EQ] = ACTIONS(1797), + [anon_sym_BANG_EQ] = ACTIONS(1797), + [anon_sym_LT] = ACTIONS(1799), + [anon_sym_LT_EQ] = ACTIONS(1797), + [anon_sym_GT] = ACTIONS(1799), + [anon_sym_GT_EQ] = ACTIONS(1797), + [anon_sym_EQ_GT] = ACTIONS(1797), + [anon_sym_QMARK_QMARK] = ACTIONS(1797), + [anon_sym_EQ] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1797), + [anon_sym_null] = ACTIONS(1799), + [anon_sym_macro] = ACTIONS(1799), + [anon_sym_abstract] = ACTIONS(1799), + [anon_sym_static] = ACTIONS(1799), + [anon_sym_public] = ACTIONS(1799), + [anon_sym_private] = ACTIONS(1799), + [anon_sym_extern] = ACTIONS(1799), + [anon_sym_inline] = ACTIONS(1799), + [anon_sym_overload] = ACTIONS(1799), + [anon_sym_override] = ACTIONS(1799), + [anon_sym_final] = ACTIONS(1799), + [anon_sym_class] = ACTIONS(1799), + [anon_sym_interface] = ACTIONS(1799), + [anon_sym_enum] = ACTIONS(1799), + [anon_sym_typedef] = ACTIONS(1799), + [anon_sym_function] = ACTIONS(1799), + [anon_sym_var] = ACTIONS(1799), + [aux_sym_integer_token1] = ACTIONS(1799), + [aux_sym_integer_token2] = ACTIONS(1797), + [aux_sym_float_token1] = ACTIONS(1799), + [aux_sym_float_token2] = ACTIONS(1797), + [anon_sym_true] = ACTIONS(1799), + [anon_sym_false] = ACTIONS(1799), + [aux_sym_string_token1] = ACTIONS(1797), + [aux_sym_string_token3] = ACTIONS(1797), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1797), [sym__closing_brace_unmarker] = ACTIONS(3), }, [364] = { - [sym_identifier] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_package] = ACTIONS(1856), - [anon_sym_import] = ACTIONS(1856), - [anon_sym_using] = ACTIONS(1856), - [anon_sym_throw] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_case] = ACTIONS(1856), - [anon_sym_default] = ACTIONS(1856), - [anon_sym_cast] = ACTIONS(1856), - [anon_sym_DOLLARtype] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_untyped] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_this] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1856), - [anon_sym_AT_COLON] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_new] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1858), - [anon_sym_DASH_DASH] = ACTIONS(1858), - [anon_sym_PERCENT] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PLUS] = ACTIONS(1856), - [anon_sym_LT_LT] = ACTIONS(1858), - [anon_sym_GT_GT] = ACTIONS(1856), - [anon_sym_GT_GT_GT] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1858), - [anon_sym_AMP_AMP] = ACTIONS(1858), - [anon_sym_PIPE_PIPE] = ACTIONS(1858), - [anon_sym_EQ_EQ] = ACTIONS(1858), - [anon_sym_BANG_EQ] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_LT_EQ] = ACTIONS(1858), - [anon_sym_GT] = ACTIONS(1856), - [anon_sym_GT_EQ] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_QMARK_QMARK] = ACTIONS(1858), - [anon_sym_EQ] = ACTIONS(1856), - [sym__rangeOperator] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1856), - [anon_sym_macro] = ACTIONS(1856), - [anon_sym_abstract] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_public] = ACTIONS(1856), - [anon_sym_private] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_inline] = ACTIONS(1856), - [anon_sym_overload] = ACTIONS(1856), - [anon_sym_override] = ACTIONS(1856), - [anon_sym_final] = ACTIONS(1856), - [anon_sym_class] = ACTIONS(1856), - [anon_sym_interface] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1856), - [anon_sym_function] = ACTIONS(1856), - [anon_sym_var] = ACTIONS(1856), - [aux_sym_integer_token1] = ACTIONS(1856), - [aux_sym_integer_token2] = ACTIONS(1858), - [aux_sym_float_token1] = ACTIONS(1856), - [aux_sym_float_token2] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [aux_sym_string_token1] = ACTIONS(1858), - [aux_sym_string_token3] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1858), + [sym_identifier] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(1801), + [anon_sym_package] = ACTIONS(1803), + [anon_sym_DOT] = ACTIONS(1803), + [anon_sym_import] = ACTIONS(1803), + [anon_sym_STAR] = ACTIONS(1801), + [anon_sym_using] = ACTIONS(1803), + [anon_sym_throw] = ACTIONS(1803), + [anon_sym_LPAREN] = ACTIONS(1801), + [anon_sym_switch] = ACTIONS(1803), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_case] = ACTIONS(1803), + [anon_sym_default] = ACTIONS(1803), + [anon_sym_cast] = ACTIONS(1803), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_DOLLARtype] = ACTIONS(1801), + [anon_sym_for] = ACTIONS(1803), + [anon_sym_return] = ACTIONS(1803), + [anon_sym_untyped] = ACTIONS(1803), + [anon_sym_break] = ACTIONS(1803), + [anon_sym_continue] = ACTIONS(1803), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_this] = ACTIONS(1803), + [anon_sym_QMARK] = ACTIONS(1803), + [anon_sym_AT] = ACTIONS(1803), + [anon_sym_AT_COLON] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1803), + [anon_sym_catch] = ACTIONS(1803), + [anon_sym_else] = ACTIONS(1803), + [anon_sym_if] = ACTIONS(1803), + [anon_sym_while] = ACTIONS(1803), + [anon_sym_do] = ACTIONS(1803), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_TILDE] = ACTIONS(1801), + [anon_sym_BANG] = ACTIONS(1803), + [anon_sym_DASH] = ACTIONS(1803), + [anon_sym_PLUS_PLUS] = ACTIONS(1801), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_PERCENT] = ACTIONS(1801), + [anon_sym_SLASH] = ACTIONS(1803), + [anon_sym_PLUS] = ACTIONS(1803), + [anon_sym_LT_LT] = ACTIONS(1801), + [anon_sym_GT_GT] = ACTIONS(1803), + [anon_sym_GT_GT_GT] = ACTIONS(1801), + [anon_sym_AMP] = ACTIONS(1803), + [anon_sym_PIPE] = ACTIONS(1803), + [anon_sym_CARET] = ACTIONS(1801), + [anon_sym_AMP_AMP] = ACTIONS(1801), + [anon_sym_PIPE_PIPE] = ACTIONS(1801), + [anon_sym_EQ_EQ] = ACTIONS(1801), + [anon_sym_BANG_EQ] = ACTIONS(1801), + [anon_sym_LT] = ACTIONS(1803), + [anon_sym_LT_EQ] = ACTIONS(1801), + [anon_sym_GT] = ACTIONS(1803), + [anon_sym_GT_EQ] = ACTIONS(1801), + [anon_sym_EQ_GT] = ACTIONS(1801), + [anon_sym_QMARK_QMARK] = ACTIONS(1801), + [anon_sym_EQ] = ACTIONS(1803), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1803), + [anon_sym_macro] = ACTIONS(1803), + [anon_sym_abstract] = ACTIONS(1803), + [anon_sym_static] = ACTIONS(1803), + [anon_sym_public] = ACTIONS(1803), + [anon_sym_private] = ACTIONS(1803), + [anon_sym_extern] = ACTIONS(1803), + [anon_sym_inline] = ACTIONS(1803), + [anon_sym_overload] = ACTIONS(1803), + [anon_sym_override] = ACTIONS(1803), + [anon_sym_final] = ACTIONS(1803), + [anon_sym_class] = ACTIONS(1803), + [anon_sym_interface] = ACTIONS(1803), + [anon_sym_enum] = ACTIONS(1803), + [anon_sym_typedef] = ACTIONS(1803), + [anon_sym_function] = ACTIONS(1803), + [anon_sym_var] = ACTIONS(1803), + [aux_sym_integer_token1] = ACTIONS(1803), + [aux_sym_integer_token2] = ACTIONS(1801), + [aux_sym_float_token1] = ACTIONS(1803), + [aux_sym_float_token2] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1803), + [anon_sym_false] = ACTIONS(1803), + [aux_sym_string_token1] = ACTIONS(1801), + [aux_sym_string_token3] = ACTIONS(1801), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1801), [sym__closing_brace_unmarker] = ACTIONS(3), }, [365] = { - [sym_identifier] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_package] = ACTIONS(1860), - [anon_sym_import] = ACTIONS(1860), - [anon_sym_using] = ACTIONS(1860), - [anon_sym_throw] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_case] = ACTIONS(1860), - [anon_sym_default] = ACTIONS(1860), - [anon_sym_cast] = ACTIONS(1860), - [anon_sym_DOLLARtype] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_untyped] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_this] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_AT_COLON] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_PLUS_PLUS] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1862), - [anon_sym_PERCENT] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_SLASH] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1860), - [anon_sym_LT_LT] = ACTIONS(1862), - [anon_sym_GT_GT] = ACTIONS(1860), - [anon_sym_GT_GT_GT] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1862), - [anon_sym_EQ_EQ] = ACTIONS(1862), - [anon_sym_BANG_EQ] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1860), - [anon_sym_LT_EQ] = ACTIONS(1862), - [anon_sym_GT] = ACTIONS(1860), - [anon_sym_GT_EQ] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_QMARK_QMARK] = ACTIONS(1862), - [anon_sym_EQ] = ACTIONS(1860), - [sym__rangeOperator] = ACTIONS(1862), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_macro] = ACTIONS(1860), - [anon_sym_abstract] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_public] = ACTIONS(1860), - [anon_sym_private] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_inline] = ACTIONS(1860), - [anon_sym_overload] = ACTIONS(1860), - [anon_sym_override] = ACTIONS(1860), - [anon_sym_final] = ACTIONS(1860), - [anon_sym_class] = ACTIONS(1860), - [anon_sym_interface] = ACTIONS(1860), - [anon_sym_typedef] = ACTIONS(1860), - [anon_sym_function] = ACTIONS(1860), - [anon_sym_var] = ACTIONS(1860), - [aux_sym_integer_token1] = ACTIONS(1860), - [aux_sym_integer_token2] = ACTIONS(1862), - [aux_sym_float_token1] = ACTIONS(1860), - [aux_sym_float_token2] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [aux_sym_string_token1] = ACTIONS(1862), - [aux_sym_string_token3] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1862), + [sym_identifier] = ACTIONS(1995), + [anon_sym_POUND] = ACTIONS(1993), + [anon_sym_package] = ACTIONS(1995), + [anon_sym_DOT] = ACTIONS(1995), + [anon_sym_import] = ACTIONS(1995), + [anon_sym_STAR] = ACTIONS(1993), + [anon_sym_using] = ACTIONS(1995), + [anon_sym_throw] = ACTIONS(1995), + [anon_sym_LPAREN] = ACTIONS(1993), + [anon_sym_switch] = ACTIONS(1995), + [anon_sym_LBRACE] = ACTIONS(1993), + [anon_sym_case] = ACTIONS(1995), + [anon_sym_default] = ACTIONS(1995), + [anon_sym_cast] = ACTIONS(1995), + [anon_sym_COMMA] = ACTIONS(1993), + [anon_sym_DOLLARtype] = ACTIONS(1993), + [anon_sym_for] = ACTIONS(1995), + [anon_sym_return] = ACTIONS(1995), + [anon_sym_untyped] = ACTIONS(1995), + [anon_sym_break] = ACTIONS(1995), + [anon_sym_continue] = ACTIONS(1995), + [anon_sym_LBRACK] = ACTIONS(1993), + [anon_sym_this] = ACTIONS(1995), + [anon_sym_QMARK] = ACTIONS(1995), + [anon_sym_AT] = ACTIONS(1995), + [anon_sym_AT_COLON] = ACTIONS(1993), + [anon_sym_try] = ACTIONS(1995), + [anon_sym_catch] = ACTIONS(1995), + [anon_sym_else] = ACTIONS(1995), + [anon_sym_if] = ACTIONS(1995), + [anon_sym_while] = ACTIONS(1995), + [anon_sym_do] = ACTIONS(1995), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_TILDE] = ACTIONS(1993), + [anon_sym_BANG] = ACTIONS(1995), + [anon_sym_DASH] = ACTIONS(1995), + [anon_sym_PLUS_PLUS] = ACTIONS(1993), + [anon_sym_DASH_DASH] = ACTIONS(1993), + [anon_sym_PERCENT] = ACTIONS(1993), + [anon_sym_SLASH] = ACTIONS(1995), + [anon_sym_PLUS] = ACTIONS(1995), + [anon_sym_LT_LT] = ACTIONS(1993), + [anon_sym_GT_GT] = ACTIONS(1995), + [anon_sym_GT_GT_GT] = ACTIONS(1993), + [anon_sym_AMP] = ACTIONS(1995), + [anon_sym_PIPE] = ACTIONS(1995), + [anon_sym_CARET] = ACTIONS(1993), + [anon_sym_AMP_AMP] = ACTIONS(1993), + [anon_sym_PIPE_PIPE] = ACTIONS(1993), + [anon_sym_EQ_EQ] = ACTIONS(1993), + [anon_sym_BANG_EQ] = ACTIONS(1993), + [anon_sym_LT] = ACTIONS(1995), + [anon_sym_LT_EQ] = ACTIONS(1993), + [anon_sym_GT] = ACTIONS(1995), + [anon_sym_GT_EQ] = ACTIONS(1993), + [anon_sym_EQ_GT] = ACTIONS(1993), + [anon_sym_QMARK_QMARK] = ACTIONS(1993), + [anon_sym_EQ] = ACTIONS(1995), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1993), + [anon_sym_null] = ACTIONS(1995), + [anon_sym_macro] = ACTIONS(1995), + [anon_sym_abstract] = ACTIONS(1995), + [anon_sym_static] = ACTIONS(1995), + [anon_sym_public] = ACTIONS(1995), + [anon_sym_private] = ACTIONS(1995), + [anon_sym_extern] = ACTIONS(1995), + [anon_sym_inline] = ACTIONS(1995), + [anon_sym_overload] = ACTIONS(1995), + [anon_sym_override] = ACTIONS(1995), + [anon_sym_final] = ACTIONS(1995), + [anon_sym_class] = ACTIONS(1995), + [anon_sym_interface] = ACTIONS(1995), + [anon_sym_enum] = ACTIONS(1995), + [anon_sym_typedef] = ACTIONS(1995), + [anon_sym_function] = ACTIONS(1995), + [anon_sym_var] = ACTIONS(1995), + [aux_sym_integer_token1] = ACTIONS(1995), + [aux_sym_integer_token2] = ACTIONS(1993), + [aux_sym_float_token1] = ACTIONS(1995), + [aux_sym_float_token2] = ACTIONS(1993), + [anon_sym_true] = ACTIONS(1995), + [anon_sym_false] = ACTIONS(1995), + [aux_sym_string_token1] = ACTIONS(1993), + [aux_sym_string_token3] = ACTIONS(1993), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1993), [sym__closing_brace_unmarker] = ACTIONS(3), }, [366] = { - [sym_identifier] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_package] = ACTIONS(1864), - [anon_sym_import] = ACTIONS(1864), - [anon_sym_using] = ACTIONS(1864), - [anon_sym_throw] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_case] = ACTIONS(1864), - [anon_sym_default] = ACTIONS(1864), - [anon_sym_cast] = ACTIONS(1864), - [anon_sym_DOLLARtype] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_untyped] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_this] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1864), - [anon_sym_AT_COLON] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_PERCENT] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_SLASH] = ACTIONS(1864), - [anon_sym_PLUS] = ACTIONS(1864), - [anon_sym_LT_LT] = ACTIONS(1866), - [anon_sym_GT_GT] = ACTIONS(1864), - [anon_sym_GT_GT_GT] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_PIPE] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_EQ_EQ] = ACTIONS(1866), - [anon_sym_BANG_EQ] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1864), - [anon_sym_LT_EQ] = ACTIONS(1866), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_GT_EQ] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_QMARK_QMARK] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1864), - [sym__rangeOperator] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1864), - [anon_sym_macro] = ACTIONS(1864), - [anon_sym_abstract] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_public] = ACTIONS(1864), - [anon_sym_private] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_inline] = ACTIONS(1864), - [anon_sym_overload] = ACTIONS(1864), - [anon_sym_override] = ACTIONS(1864), - [anon_sym_final] = ACTIONS(1864), - [anon_sym_class] = ACTIONS(1864), - [anon_sym_interface] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1864), - [anon_sym_function] = ACTIONS(1864), - [anon_sym_var] = ACTIONS(1864), - [aux_sym_integer_token1] = ACTIONS(1864), - [aux_sym_integer_token2] = ACTIONS(1866), - [aux_sym_float_token1] = ACTIONS(1864), - [aux_sym_float_token2] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [aux_sym_string_token1] = ACTIONS(1866), - [aux_sym_string_token3] = ACTIONS(1866), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1866), + [sym_identifier] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1857), + [anon_sym_package] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_case] = ACTIONS(1859), + [anon_sym_default] = ACTIONS(1859), + [anon_sym_cast] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_DOLLARtype] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_untyped] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_this] = ACTIONS(1859), + [anon_sym_QMARK] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_AT_COLON] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_EQ_GT] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1859), + [anon_sym_macro] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_inline] = ACTIONS(1859), + [anon_sym_overload] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_final] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_typedef] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [aux_sym_integer_token1] = ACTIONS(1859), + [aux_sym_integer_token2] = ACTIONS(1857), + [aux_sym_float_token1] = ACTIONS(1859), + [aux_sym_float_token2] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [aux_sym_string_token1] = ACTIONS(1857), + [aux_sym_string_token3] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1857), [sym__closing_brace_unmarker] = ACTIONS(3), }, [367] = { - [sym_identifier] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_package] = ACTIONS(1868), - [anon_sym_import] = ACTIONS(1868), - [anon_sym_using] = ACTIONS(1868), - [anon_sym_throw] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_case] = ACTIONS(1868), - [anon_sym_default] = ACTIONS(1868), - [anon_sym_cast] = ACTIONS(1868), - [anon_sym_DOLLARtype] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_untyped] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_AT_COLON] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1870), - [anon_sym_PERCENT] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1870), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1870), - [anon_sym_AMP_AMP] = ACTIONS(1870), - [anon_sym_PIPE_PIPE] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1870), - [anon_sym_BANG_EQ] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1870), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1870), - [anon_sym_EQ_GT] = ACTIONS(1870), - [anon_sym_QMARK_QMARK] = ACTIONS(1870), - [anon_sym_EQ] = ACTIONS(1868), - [sym__rangeOperator] = ACTIONS(1870), - [anon_sym_null] = ACTIONS(1868), - [anon_sym_macro] = ACTIONS(1868), - [anon_sym_abstract] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1868), - [anon_sym_private] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_inline] = ACTIONS(1868), - [anon_sym_overload] = ACTIONS(1868), - [anon_sym_override] = ACTIONS(1868), - [anon_sym_final] = ACTIONS(1868), - [anon_sym_class] = ACTIONS(1868), - [anon_sym_interface] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1868), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_var] = ACTIONS(1868), - [aux_sym_integer_token1] = ACTIONS(1868), - [aux_sym_integer_token2] = ACTIONS(1870), - [aux_sym_float_token1] = ACTIONS(1868), - [aux_sym_float_token2] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [aux_sym_string_token1] = ACTIONS(1870), - [aux_sym_string_token3] = ACTIONS(1870), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1807), + [anon_sym_POUND] = ACTIONS(1805), + [anon_sym_package] = ACTIONS(1807), + [anon_sym_DOT] = ACTIONS(1807), + [anon_sym_import] = ACTIONS(1807), + [anon_sym_STAR] = ACTIONS(1805), + [anon_sym_using] = ACTIONS(1807), + [anon_sym_throw] = ACTIONS(1807), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_switch] = ACTIONS(1807), + [anon_sym_LBRACE] = ACTIONS(1805), + [anon_sym_case] = ACTIONS(1807), + [anon_sym_default] = ACTIONS(1807), + [anon_sym_cast] = ACTIONS(1807), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_DOLLARtype] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1807), + [anon_sym_return] = ACTIONS(1807), + [anon_sym_untyped] = ACTIONS(1807), + [anon_sym_break] = ACTIONS(1807), + [anon_sym_continue] = ACTIONS(1807), + [anon_sym_LBRACK] = ACTIONS(1805), + [anon_sym_this] = ACTIONS(1807), + [anon_sym_QMARK] = ACTIONS(1807), + [anon_sym_AT] = ACTIONS(1807), + [anon_sym_AT_COLON] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1807), + [anon_sym_catch] = ACTIONS(1807), + [anon_sym_else] = ACTIONS(1807), + [anon_sym_if] = ACTIONS(1807), + [anon_sym_while] = ACTIONS(1807), + [anon_sym_do] = ACTIONS(1807), + [anon_sym_new] = ACTIONS(1807), + [anon_sym_TILDE] = ACTIONS(1805), + [anon_sym_BANG] = ACTIONS(1807), + [anon_sym_DASH] = ACTIONS(1807), + [anon_sym_PLUS_PLUS] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1805), + [anon_sym_PERCENT] = ACTIONS(1805), + [anon_sym_SLASH] = ACTIONS(1807), + [anon_sym_PLUS] = ACTIONS(1807), + [anon_sym_LT_LT] = ACTIONS(1805), + [anon_sym_GT_GT] = ACTIONS(1807), + [anon_sym_GT_GT_GT] = ACTIONS(1805), + [anon_sym_AMP] = ACTIONS(1807), + [anon_sym_PIPE] = ACTIONS(1807), + [anon_sym_CARET] = ACTIONS(1805), + [anon_sym_AMP_AMP] = ACTIONS(1805), + [anon_sym_PIPE_PIPE] = ACTIONS(1805), + [anon_sym_EQ_EQ] = ACTIONS(1805), + [anon_sym_BANG_EQ] = ACTIONS(1805), + [anon_sym_LT] = ACTIONS(1807), + [anon_sym_LT_EQ] = ACTIONS(1805), + [anon_sym_GT] = ACTIONS(1807), + [anon_sym_GT_EQ] = ACTIONS(1805), + [anon_sym_EQ_GT] = ACTIONS(1805), + [anon_sym_QMARK_QMARK] = ACTIONS(1805), + [anon_sym_EQ] = ACTIONS(1807), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1805), + [anon_sym_null] = ACTIONS(1807), + [anon_sym_macro] = ACTIONS(1807), + [anon_sym_abstract] = ACTIONS(1807), + [anon_sym_static] = ACTIONS(1807), + [anon_sym_public] = ACTIONS(1807), + [anon_sym_private] = ACTIONS(1807), + [anon_sym_extern] = ACTIONS(1807), + [anon_sym_inline] = ACTIONS(1807), + [anon_sym_overload] = ACTIONS(1807), + [anon_sym_override] = ACTIONS(1807), + [anon_sym_final] = ACTIONS(1807), + [anon_sym_class] = ACTIONS(1807), + [anon_sym_interface] = ACTIONS(1807), + [anon_sym_enum] = ACTIONS(1807), + [anon_sym_typedef] = ACTIONS(1807), + [anon_sym_function] = ACTIONS(1807), + [anon_sym_var] = ACTIONS(1807), + [aux_sym_integer_token1] = ACTIONS(1807), + [aux_sym_integer_token2] = ACTIONS(1805), + [aux_sym_float_token1] = ACTIONS(1807), + [aux_sym_float_token2] = ACTIONS(1805), + [anon_sym_true] = ACTIONS(1807), + [anon_sym_false] = ACTIONS(1807), + [aux_sym_string_token1] = ACTIONS(1805), + [aux_sym_string_token3] = ACTIONS(1805), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1805), [sym__closing_brace_unmarker] = ACTIONS(3), }, [368] = { - [sym_identifier] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_package] = ACTIONS(1872), - [anon_sym_import] = ACTIONS(1872), - [anon_sym_using] = ACTIONS(1872), - [anon_sym_throw] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_case] = ACTIONS(1872), - [anon_sym_default] = ACTIONS(1872), - [anon_sym_cast] = ACTIONS(1872), - [anon_sym_DOLLARtype] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_untyped] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_this] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1872), - [anon_sym_AT_COLON] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1872), - [anon_sym_GT_GT_GT] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1872), - [anon_sym_LT_EQ] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1874), - [anon_sym_EQ_GT] = ACTIONS(1874), - [anon_sym_QMARK_QMARK] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1872), - [sym__rangeOperator] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_macro] = ACTIONS(1872), - [anon_sym_abstract] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_public] = ACTIONS(1872), - [anon_sym_private] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_inline] = ACTIONS(1872), - [anon_sym_overload] = ACTIONS(1872), - [anon_sym_override] = ACTIONS(1872), - [anon_sym_final] = ACTIONS(1872), - [anon_sym_class] = ACTIONS(1872), - [anon_sym_interface] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1872), - [anon_sym_function] = ACTIONS(1872), - [anon_sym_var] = ACTIONS(1872), - [aux_sym_integer_token1] = ACTIONS(1872), - [aux_sym_integer_token2] = ACTIONS(1874), - [aux_sym_float_token1] = ACTIONS(1872), - [aux_sym_float_token2] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [aux_sym_string_token1] = ACTIONS(1874), - [aux_sym_string_token3] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1811), + [anon_sym_POUND] = ACTIONS(1809), + [anon_sym_package] = ACTIONS(1811), + [anon_sym_DOT] = ACTIONS(1811), + [anon_sym_import] = ACTIONS(1811), + [anon_sym_STAR] = ACTIONS(1809), + [anon_sym_using] = ACTIONS(1811), + [anon_sym_throw] = ACTIONS(1811), + [anon_sym_LPAREN] = ACTIONS(1809), + [anon_sym_switch] = ACTIONS(1811), + [anon_sym_LBRACE] = ACTIONS(1809), + [anon_sym_case] = ACTIONS(1811), + [anon_sym_default] = ACTIONS(1811), + [anon_sym_cast] = ACTIONS(1811), + [anon_sym_COMMA] = ACTIONS(1809), + [anon_sym_DOLLARtype] = ACTIONS(1809), + [anon_sym_for] = ACTIONS(1811), + [anon_sym_return] = ACTIONS(1811), + [anon_sym_untyped] = ACTIONS(1811), + [anon_sym_break] = ACTIONS(1811), + [anon_sym_continue] = ACTIONS(1811), + [anon_sym_LBRACK] = ACTIONS(1809), + [anon_sym_this] = ACTIONS(1811), + [anon_sym_QMARK] = ACTIONS(1811), + [anon_sym_AT] = ACTIONS(1811), + [anon_sym_AT_COLON] = ACTIONS(1809), + [anon_sym_try] = ACTIONS(1811), + [anon_sym_catch] = ACTIONS(1811), + [anon_sym_else] = ACTIONS(1811), + [anon_sym_if] = ACTIONS(1811), + [anon_sym_while] = ACTIONS(1811), + [anon_sym_do] = ACTIONS(1811), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_TILDE] = ACTIONS(1809), + [anon_sym_BANG] = ACTIONS(1811), + [anon_sym_DASH] = ACTIONS(1811), + [anon_sym_PLUS_PLUS] = ACTIONS(1809), + [anon_sym_DASH_DASH] = ACTIONS(1809), + [anon_sym_PERCENT] = ACTIONS(1809), + [anon_sym_SLASH] = ACTIONS(1811), + [anon_sym_PLUS] = ACTIONS(1811), + [anon_sym_LT_LT] = ACTIONS(1809), + [anon_sym_GT_GT] = ACTIONS(1811), + [anon_sym_GT_GT_GT] = ACTIONS(1809), + [anon_sym_AMP] = ACTIONS(1811), + [anon_sym_PIPE] = ACTIONS(1811), + [anon_sym_CARET] = ACTIONS(1809), + [anon_sym_AMP_AMP] = ACTIONS(1809), + [anon_sym_PIPE_PIPE] = ACTIONS(1809), + [anon_sym_EQ_EQ] = ACTIONS(1809), + [anon_sym_BANG_EQ] = ACTIONS(1809), + [anon_sym_LT] = ACTIONS(1811), + [anon_sym_LT_EQ] = ACTIONS(1809), + [anon_sym_GT] = ACTIONS(1811), + [anon_sym_GT_EQ] = ACTIONS(1809), + [anon_sym_EQ_GT] = ACTIONS(1809), + [anon_sym_QMARK_QMARK] = ACTIONS(1809), + [anon_sym_EQ] = ACTIONS(1811), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1809), + [anon_sym_null] = ACTIONS(1811), + [anon_sym_macro] = ACTIONS(1811), + [anon_sym_abstract] = ACTIONS(1811), + [anon_sym_static] = ACTIONS(1811), + [anon_sym_public] = ACTIONS(1811), + [anon_sym_private] = ACTIONS(1811), + [anon_sym_extern] = ACTIONS(1811), + [anon_sym_inline] = ACTIONS(1811), + [anon_sym_overload] = ACTIONS(1811), + [anon_sym_override] = ACTIONS(1811), + [anon_sym_final] = ACTIONS(1811), + [anon_sym_class] = ACTIONS(1811), + [anon_sym_interface] = ACTIONS(1811), + [anon_sym_enum] = ACTIONS(1811), + [anon_sym_typedef] = ACTIONS(1811), + [anon_sym_function] = ACTIONS(1811), + [anon_sym_var] = ACTIONS(1811), + [aux_sym_integer_token1] = ACTIONS(1811), + [aux_sym_integer_token2] = ACTIONS(1809), + [aux_sym_float_token1] = ACTIONS(1811), + [aux_sym_float_token2] = ACTIONS(1809), + [anon_sym_true] = ACTIONS(1811), + [anon_sym_false] = ACTIONS(1811), + [aux_sym_string_token1] = ACTIONS(1809), + [aux_sym_string_token3] = ACTIONS(1809), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1809), [sym__closing_brace_unmarker] = ACTIONS(3), }, [369] = { - [sym_identifier] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_package] = ACTIONS(1876), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_using] = ACTIONS(1876), - [anon_sym_throw] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_switch] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_case] = ACTIONS(1876), - [anon_sym_default] = ACTIONS(1876), - [anon_sym_cast] = ACTIONS(1876), - [anon_sym_DOLLARtype] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_untyped] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_this] = ACTIONS(1876), - [anon_sym_AT] = ACTIONS(1876), - [anon_sym_AT_COLON] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_PERCENT] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_SLASH] = ACTIONS(1876), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_GT_GT_GT] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [anon_sym_BANG_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1878), - [anon_sym_QMARK_QMARK] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1876), - [sym__rangeOperator] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1876), - [anon_sym_macro] = ACTIONS(1876), - [anon_sym_abstract] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1876), - [anon_sym_private] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_inline] = ACTIONS(1876), - [anon_sym_overload] = ACTIONS(1876), - [anon_sym_override] = ACTIONS(1876), - [anon_sym_final] = ACTIONS(1876), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_interface] = ACTIONS(1876), - [anon_sym_typedef] = ACTIONS(1876), - [anon_sym_function] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(1876), - [aux_sym_integer_token1] = ACTIONS(1876), - [aux_sym_integer_token2] = ACTIONS(1878), - [aux_sym_float_token1] = ACTIONS(1876), - [aux_sym_float_token2] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [aux_sym_string_token1] = ACTIONS(1878), - [aux_sym_string_token3] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(1829), + [anon_sym_package] = ACTIONS(1831), + [anon_sym_DOT] = ACTIONS(1831), + [anon_sym_import] = ACTIONS(1831), + [anon_sym_STAR] = ACTIONS(1829), + [anon_sym_using] = ACTIONS(1831), + [anon_sym_throw] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1829), + [anon_sym_switch] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1829), + [anon_sym_case] = ACTIONS(1831), + [anon_sym_default] = ACTIONS(1831), + [anon_sym_cast] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1829), + [anon_sym_DOLLARtype] = ACTIONS(1829), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_untyped] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_LBRACK] = ACTIONS(1829), + [anon_sym_this] = ACTIONS(1831), + [anon_sym_QMARK] = ACTIONS(1831), + [anon_sym_AT] = ACTIONS(1831), + [anon_sym_AT_COLON] = ACTIONS(1829), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_catch] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_new] = ACTIONS(1831), + [anon_sym_TILDE] = ACTIONS(1829), + [anon_sym_BANG] = ACTIONS(1831), + [anon_sym_DASH] = ACTIONS(1831), + [anon_sym_PLUS_PLUS] = ACTIONS(1829), + [anon_sym_DASH_DASH] = ACTIONS(1829), + [anon_sym_PERCENT] = ACTIONS(1829), + [anon_sym_SLASH] = ACTIONS(1831), + [anon_sym_PLUS] = ACTIONS(1831), + [anon_sym_LT_LT] = ACTIONS(1829), + [anon_sym_GT_GT] = ACTIONS(1831), + [anon_sym_GT_GT_GT] = ACTIONS(1829), + [anon_sym_AMP] = ACTIONS(1831), + [anon_sym_PIPE] = ACTIONS(1831), + [anon_sym_CARET] = ACTIONS(1829), + [anon_sym_AMP_AMP] = ACTIONS(1829), + [anon_sym_PIPE_PIPE] = ACTIONS(1829), + [anon_sym_EQ_EQ] = ACTIONS(1829), + [anon_sym_BANG_EQ] = ACTIONS(1829), + [anon_sym_LT] = ACTIONS(1831), + [anon_sym_LT_EQ] = ACTIONS(1829), + [anon_sym_GT] = ACTIONS(1831), + [anon_sym_GT_EQ] = ACTIONS(1829), + [anon_sym_EQ_GT] = ACTIONS(1829), + [anon_sym_QMARK_QMARK] = ACTIONS(1829), + [anon_sym_EQ] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1829), + [anon_sym_null] = ACTIONS(1831), + [anon_sym_macro] = ACTIONS(1831), + [anon_sym_abstract] = ACTIONS(1831), + [anon_sym_static] = ACTIONS(1831), + [anon_sym_public] = ACTIONS(1831), + [anon_sym_private] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_inline] = ACTIONS(1831), + [anon_sym_overload] = ACTIONS(1831), + [anon_sym_override] = ACTIONS(1831), + [anon_sym_final] = ACTIONS(1831), + [anon_sym_class] = ACTIONS(1831), + [anon_sym_interface] = ACTIONS(1831), + [anon_sym_enum] = ACTIONS(1831), + [anon_sym_typedef] = ACTIONS(1831), + [anon_sym_function] = ACTIONS(1831), + [anon_sym_var] = ACTIONS(1831), + [aux_sym_integer_token1] = ACTIONS(1831), + [aux_sym_integer_token2] = ACTIONS(1829), + [aux_sym_float_token1] = ACTIONS(1831), + [aux_sym_float_token2] = ACTIONS(1829), + [anon_sym_true] = ACTIONS(1831), + [anon_sym_false] = ACTIONS(1831), + [aux_sym_string_token1] = ACTIONS(1829), + [aux_sym_string_token3] = ACTIONS(1829), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1829), [sym__closing_brace_unmarker] = ACTIONS(3), }, [370] = { - [sym_identifier] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_package] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_case] = ACTIONS(1880), - [anon_sym_default] = ACTIONS(1880), - [anon_sym_cast] = ACTIONS(1880), - [anon_sym_DOLLARtype] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_untyped] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1880), - [anon_sym_AT_COLON] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1882), - [anon_sym_DASH_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_GT_GT_GT] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1882), - [anon_sym_AMP_AMP] = ACTIONS(1882), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_EQ_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_QMARK_QMARK] = ACTIONS(1882), - [anon_sym_EQ] = ACTIONS(1880), - [sym__rangeOperator] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1880), - [anon_sym_macro] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_inline] = ACTIONS(1880), - [anon_sym_overload] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_final] = ACTIONS(1880), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_typedef] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [aux_sym_integer_token1] = ACTIONS(1880), - [aux_sym_integer_token2] = ACTIONS(1882), - [aux_sym_float_token1] = ACTIONS(1880), - [aux_sym_float_token2] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [aux_sym_string_token1] = ACTIONS(1882), - [aux_sym_string_token3] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1345), + [anon_sym_POUND] = ACTIONS(1343), + [anon_sym_package] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_import] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_using] = ACTIONS(1345), + [anon_sym_throw] = ACTIONS(1345), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1343), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_for] = ACTIONS(1345), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_AT] = ACTIONS(1345), + [anon_sym_AT_COLON] = ACTIONS(1343), + [anon_sym_try] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_if] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_do] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [anon_sym_macro] = ACTIONS(1345), + [anon_sym_abstract] = ACTIONS(1345), + [anon_sym_static] = ACTIONS(1345), + [anon_sym_public] = ACTIONS(1345), + [anon_sym_private] = ACTIONS(1345), + [anon_sym_extern] = ACTIONS(1345), + [anon_sym_inline] = ACTIONS(1345), + [anon_sym_overload] = ACTIONS(1345), + [anon_sym_override] = ACTIONS(1345), + [anon_sym_final] = ACTIONS(1345), + [anon_sym_class] = ACTIONS(1345), + [anon_sym_interface] = ACTIONS(1345), + [anon_sym_enum] = ACTIONS(1345), + [anon_sym_typedef] = ACTIONS(1345), + [anon_sym_function] = ACTIONS(1345), + [anon_sym_var] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1343), [sym__closing_brace_unmarker] = ACTIONS(3), }, [371] = { - [sym_identifier] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_package] = ACTIONS(1884), - [anon_sym_import] = ACTIONS(1884), - [anon_sym_using] = ACTIONS(1884), - [anon_sym_throw] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_case] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1884), - [anon_sym_cast] = ACTIONS(1884), - [anon_sym_DOLLARtype] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_untyped] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_this] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_AT_COLON] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_new] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_GT_GT_GT] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_QMARK_QMARK] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1884), - [sym__rangeOperator] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1884), - [anon_sym_macro] = ACTIONS(1884), - [anon_sym_abstract] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_public] = ACTIONS(1884), - [anon_sym_private] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_inline] = ACTIONS(1884), - [anon_sym_overload] = ACTIONS(1884), - [anon_sym_override] = ACTIONS(1884), - [anon_sym_final] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1884), - [anon_sym_interface] = ACTIONS(1884), - [anon_sym_typedef] = ACTIONS(1884), - [anon_sym_function] = ACTIONS(1884), - [anon_sym_var] = ACTIONS(1884), - [aux_sym_integer_token1] = ACTIONS(1884), - [aux_sym_integer_token2] = ACTIONS(1886), - [aux_sym_float_token1] = ACTIONS(1884), - [aux_sym_float_token2] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [aux_sym_string_token1] = ACTIONS(1886), - [aux_sym_string_token3] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1761), + [anon_sym_POUND] = ACTIONS(1759), + [anon_sym_package] = ACTIONS(1761), + [anon_sym_DOT] = ACTIONS(1761), + [anon_sym_import] = ACTIONS(1761), + [anon_sym_STAR] = ACTIONS(1759), + [anon_sym_using] = ACTIONS(1761), + [anon_sym_throw] = ACTIONS(1761), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_switch] = ACTIONS(1761), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_case] = ACTIONS(1761), + [anon_sym_default] = ACTIONS(1761), + [anon_sym_cast] = ACTIONS(1761), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_DOLLARtype] = ACTIONS(1759), + [anon_sym_for] = ACTIONS(1761), + [anon_sym_return] = ACTIONS(1761), + [anon_sym_untyped] = ACTIONS(1761), + [anon_sym_break] = ACTIONS(1761), + [anon_sym_continue] = ACTIONS(1761), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_this] = ACTIONS(1761), + [anon_sym_QMARK] = ACTIONS(1761), + [anon_sym_AT] = ACTIONS(1761), + [anon_sym_AT_COLON] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1761), + [anon_sym_catch] = ACTIONS(1761), + [anon_sym_else] = ACTIONS(1761), + [anon_sym_if] = ACTIONS(1761), + [anon_sym_while] = ACTIONS(1761), + [anon_sym_do] = ACTIONS(1761), + [anon_sym_new] = ACTIONS(1761), + [anon_sym_TILDE] = ACTIONS(1759), + [anon_sym_BANG] = ACTIONS(1761), + [anon_sym_DASH] = ACTIONS(1761), + [anon_sym_PLUS_PLUS] = ACTIONS(1759), + [anon_sym_DASH_DASH] = ACTIONS(1759), + [anon_sym_PERCENT] = ACTIONS(1759), + [anon_sym_SLASH] = ACTIONS(1761), + [anon_sym_PLUS] = ACTIONS(1761), + [anon_sym_LT_LT] = ACTIONS(1759), + [anon_sym_GT_GT] = ACTIONS(1761), + [anon_sym_GT_GT_GT] = ACTIONS(1759), + [anon_sym_AMP] = ACTIONS(1761), + [anon_sym_PIPE] = ACTIONS(1761), + [anon_sym_CARET] = ACTIONS(1759), + [anon_sym_AMP_AMP] = ACTIONS(1759), + [anon_sym_PIPE_PIPE] = ACTIONS(1759), + [anon_sym_EQ_EQ] = ACTIONS(1759), + [anon_sym_BANG_EQ] = ACTIONS(1759), + [anon_sym_LT] = ACTIONS(1761), + [anon_sym_LT_EQ] = ACTIONS(1759), + [anon_sym_GT] = ACTIONS(1761), + [anon_sym_GT_EQ] = ACTIONS(1759), + [anon_sym_EQ_GT] = ACTIONS(1759), + [anon_sym_QMARK_QMARK] = ACTIONS(1759), + [anon_sym_EQ] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1759), + [anon_sym_null] = ACTIONS(1761), + [anon_sym_macro] = ACTIONS(1761), + [anon_sym_abstract] = ACTIONS(1761), + [anon_sym_static] = ACTIONS(1761), + [anon_sym_public] = ACTIONS(1761), + [anon_sym_private] = ACTIONS(1761), + [anon_sym_extern] = ACTIONS(1761), + [anon_sym_inline] = ACTIONS(1761), + [anon_sym_overload] = ACTIONS(1761), + [anon_sym_override] = ACTIONS(1761), + [anon_sym_final] = ACTIONS(1761), + [anon_sym_class] = ACTIONS(1761), + [anon_sym_interface] = ACTIONS(1761), + [anon_sym_enum] = ACTIONS(1761), + [anon_sym_typedef] = ACTIONS(1761), + [anon_sym_function] = ACTIONS(1761), + [anon_sym_var] = ACTIONS(1761), + [aux_sym_integer_token1] = ACTIONS(1761), + [aux_sym_integer_token2] = ACTIONS(1759), + [aux_sym_float_token1] = ACTIONS(1761), + [aux_sym_float_token2] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1761), + [anon_sym_false] = ACTIONS(1761), + [aux_sym_string_token1] = ACTIONS(1759), + [aux_sym_string_token3] = ACTIONS(1759), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1759), [sym__closing_brace_unmarker] = ACTIONS(3), }, [372] = { - [sym_identifier] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_package] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(1888), - [anon_sym_using] = ACTIONS(1888), - [anon_sym_throw] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_case] = ACTIONS(1888), - [anon_sym_default] = ACTIONS(1888), - [anon_sym_cast] = ACTIONS(1888), - [anon_sym_DOLLARtype] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_untyped] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1888), - [anon_sym_AT_COLON] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_PLUS_PLUS] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1890), - [anon_sym_PERCENT] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_SLASH] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_GT_GT_GT] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_EQ_EQ] = ACTIONS(1890), - [anon_sym_BANG_EQ] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_LT_EQ] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1890), - [anon_sym_QMARK_QMARK] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1888), - [sym__rangeOperator] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1888), - [anon_sym_macro] = ACTIONS(1888), - [anon_sym_abstract] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_public] = ACTIONS(1888), - [anon_sym_private] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_inline] = ACTIONS(1888), - [anon_sym_overload] = ACTIONS(1888), - [anon_sym_override] = ACTIONS(1888), - [anon_sym_final] = ACTIONS(1888), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_interface] = ACTIONS(1888), - [anon_sym_typedef] = ACTIONS(1888), - [anon_sym_function] = ACTIONS(1888), - [anon_sym_var] = ACTIONS(1888), - [aux_sym_integer_token1] = ACTIONS(1888), - [aux_sym_integer_token2] = ACTIONS(1890), - [aux_sym_float_token1] = ACTIONS(1888), - [aux_sym_float_token2] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [aux_sym_string_token1] = ACTIONS(1890), - [aux_sym_string_token3] = ACTIONS(1890), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(1833), + [anon_sym_package] = ACTIONS(1835), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(1835), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1835), + [anon_sym_throw] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_switch] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_case] = ACTIONS(1835), + [anon_sym_default] = ACTIONS(1835), + [anon_sym_cast] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLARtype] = ACTIONS(1833), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_untyped] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_this] = ACTIONS(1835), + [anon_sym_QMARK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(1835), + [anon_sym_AT_COLON] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_new] = ACTIONS(1835), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1835), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_EQ_EQ] = ACTIONS(1833), + [anon_sym_BANG_EQ] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1833), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_EQ_GT] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), + [anon_sym_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1835), + [anon_sym_macro] = ACTIONS(1835), + [anon_sym_abstract] = ACTIONS(1835), + [anon_sym_static] = ACTIONS(1835), + [anon_sym_public] = ACTIONS(1835), + [anon_sym_private] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_inline] = ACTIONS(1835), + [anon_sym_overload] = ACTIONS(1835), + [anon_sym_override] = ACTIONS(1835), + [anon_sym_final] = ACTIONS(1835), + [anon_sym_class] = ACTIONS(1835), + [anon_sym_interface] = ACTIONS(1835), + [anon_sym_enum] = ACTIONS(1835), + [anon_sym_typedef] = ACTIONS(1835), + [anon_sym_function] = ACTIONS(1835), + [anon_sym_var] = ACTIONS(1835), + [aux_sym_integer_token1] = ACTIONS(1835), + [aux_sym_integer_token2] = ACTIONS(1833), + [aux_sym_float_token1] = ACTIONS(1835), + [aux_sym_float_token2] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1835), + [anon_sym_false] = ACTIONS(1835), + [aux_sym_string_token1] = ACTIONS(1833), + [aux_sym_string_token3] = ACTIONS(1833), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1833), [sym__closing_brace_unmarker] = ACTIONS(3), }, [373] = { - [sym_identifier] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_package] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1892), - [anon_sym_using] = ACTIONS(1892), - [anon_sym_throw] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_case] = ACTIONS(1892), - [anon_sym_default] = ACTIONS(1892), - [anon_sym_cast] = ACTIONS(1892), - [anon_sym_DOLLARtype] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_untyped] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_this] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_AT_COLON] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1894), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_GT_GT_GT] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_EQ_GT] = ACTIONS(1894), - [anon_sym_QMARK_QMARK] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1892), - [sym__rangeOperator] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_macro] = ACTIONS(1892), - [anon_sym_abstract] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_public] = ACTIONS(1892), - [anon_sym_private] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_inline] = ACTIONS(1892), - [anon_sym_overload] = ACTIONS(1892), - [anon_sym_override] = ACTIONS(1892), - [anon_sym_final] = ACTIONS(1892), - [anon_sym_class] = ACTIONS(1892), - [anon_sym_interface] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1892), - [anon_sym_function] = ACTIONS(1892), - [anon_sym_var] = ACTIONS(1892), - [aux_sym_integer_token1] = ACTIONS(1892), - [aux_sym_integer_token2] = ACTIONS(1894), - [aux_sym_float_token1] = ACTIONS(1892), - [aux_sym_float_token2] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym_string_token1] = ACTIONS(1894), - [aux_sym_string_token3] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(1845), + [anon_sym_package] = ACTIONS(1847), + [anon_sym_DOT] = ACTIONS(1847), + [anon_sym_import] = ACTIONS(1847), + [anon_sym_STAR] = ACTIONS(1845), + [anon_sym_using] = ACTIONS(1847), + [anon_sym_throw] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_switch] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_case] = ACTIONS(1847), + [anon_sym_default] = ACTIONS(1847), + [anon_sym_cast] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_DOLLARtype] = ACTIONS(1845), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_untyped] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_this] = ACTIONS(1847), + [anon_sym_QMARK] = ACTIONS(1847), + [anon_sym_AT] = ACTIONS(1847), + [anon_sym_AT_COLON] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_new] = ACTIONS(1847), + [anon_sym_TILDE] = ACTIONS(1845), + [anon_sym_BANG] = ACTIONS(1847), + [anon_sym_DASH] = ACTIONS(1847), + [anon_sym_PLUS_PLUS] = ACTIONS(1845), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_PERCENT] = ACTIONS(1845), + [anon_sym_SLASH] = ACTIONS(1847), + [anon_sym_PLUS] = ACTIONS(1847), + [anon_sym_LT_LT] = ACTIONS(1845), + [anon_sym_GT_GT] = ACTIONS(1847), + [anon_sym_GT_GT_GT] = ACTIONS(1845), + [anon_sym_AMP] = ACTIONS(1847), + [anon_sym_PIPE] = ACTIONS(1847), + [anon_sym_CARET] = ACTIONS(1845), + [anon_sym_AMP_AMP] = ACTIONS(1845), + [anon_sym_PIPE_PIPE] = ACTIONS(1845), + [anon_sym_EQ_EQ] = ACTIONS(1845), + [anon_sym_BANG_EQ] = ACTIONS(1845), + [anon_sym_LT] = ACTIONS(1847), + [anon_sym_LT_EQ] = ACTIONS(1845), + [anon_sym_GT] = ACTIONS(1847), + [anon_sym_GT_EQ] = ACTIONS(1845), + [anon_sym_EQ_GT] = ACTIONS(1845), + [anon_sym_QMARK_QMARK] = ACTIONS(1845), + [anon_sym_EQ] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1847), + [anon_sym_macro] = ACTIONS(1847), + [anon_sym_abstract] = ACTIONS(1847), + [anon_sym_static] = ACTIONS(1847), + [anon_sym_public] = ACTIONS(1847), + [anon_sym_private] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_inline] = ACTIONS(1847), + [anon_sym_overload] = ACTIONS(1847), + [anon_sym_override] = ACTIONS(1847), + [anon_sym_final] = ACTIONS(1847), + [anon_sym_class] = ACTIONS(1847), + [anon_sym_interface] = ACTIONS(1847), + [anon_sym_enum] = ACTIONS(1847), + [anon_sym_typedef] = ACTIONS(1847), + [anon_sym_function] = ACTIONS(1847), + [anon_sym_var] = ACTIONS(1847), + [aux_sym_integer_token1] = ACTIONS(1847), + [aux_sym_integer_token2] = ACTIONS(1845), + [aux_sym_float_token1] = ACTIONS(1847), + [aux_sym_float_token2] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1847), + [anon_sym_false] = ACTIONS(1847), + [aux_sym_string_token1] = ACTIONS(1845), + [aux_sym_string_token3] = ACTIONS(1845), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1845), [sym__closing_brace_unmarker] = ACTIONS(3), }, [374] = { - [sym_identifier] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_package] = ACTIONS(1896), - [anon_sym_import] = ACTIONS(1896), - [anon_sym_using] = ACTIONS(1896), - [anon_sym_throw] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_case] = ACTIONS(1896), - [anon_sym_default] = ACTIONS(1896), - [anon_sym_cast] = ACTIONS(1896), - [anon_sym_DOLLARtype] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_untyped] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_this] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_AT_COLON] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1898), - [anon_sym_PERCENT] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_LT_LT] = ACTIONS(1898), - [anon_sym_GT_GT] = ACTIONS(1896), - [anon_sym_GT_GT_GT] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym_AMP_AMP] = ACTIONS(1898), - [anon_sym_PIPE_PIPE] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1898), - [anon_sym_BANG_EQ] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_LT_EQ] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_EQ] = ACTIONS(1898), - [anon_sym_EQ_GT] = ACTIONS(1898), - [anon_sym_QMARK_QMARK] = ACTIONS(1898), - [anon_sym_EQ] = ACTIONS(1896), - [sym__rangeOperator] = ACTIONS(1898), - [anon_sym_null] = ACTIONS(1896), - [anon_sym_macro] = ACTIONS(1896), - [anon_sym_abstract] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_public] = ACTIONS(1896), - [anon_sym_private] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_inline] = ACTIONS(1896), - [anon_sym_overload] = ACTIONS(1896), - [anon_sym_override] = ACTIONS(1896), - [anon_sym_final] = ACTIONS(1896), - [anon_sym_class] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1896), - [anon_sym_typedef] = ACTIONS(1896), - [anon_sym_function] = ACTIONS(1896), - [anon_sym_var] = ACTIONS(1896), - [aux_sym_integer_token1] = ACTIONS(1896), - [aux_sym_integer_token2] = ACTIONS(1898), - [aux_sym_float_token1] = ACTIONS(1896), - [aux_sym_float_token2] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [aux_sym_string_token1] = ACTIONS(1898), - [aux_sym_string_token3] = ACTIONS(1898), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(1849), + [anon_sym_package] = ACTIONS(1851), + [anon_sym_DOT] = ACTIONS(1851), + [anon_sym_import] = ACTIONS(1851), + [anon_sym_STAR] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1851), + [anon_sym_throw] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_switch] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_case] = ACTIONS(1851), + [anon_sym_default] = ACTIONS(1851), + [anon_sym_cast] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_DOLLARtype] = ACTIONS(1849), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_untyped] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_this] = ACTIONS(1851), + [anon_sym_QMARK] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(1851), + [anon_sym_AT_COLON] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_catch] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_new] = ACTIONS(1851), + [anon_sym_TILDE] = ACTIONS(1849), + [anon_sym_BANG] = ACTIONS(1851), + [anon_sym_DASH] = ACTIONS(1851), + [anon_sym_PLUS_PLUS] = ACTIONS(1849), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_PERCENT] = ACTIONS(1849), + [anon_sym_SLASH] = ACTIONS(1851), + [anon_sym_PLUS] = ACTIONS(1851), + [anon_sym_LT_LT] = ACTIONS(1849), + [anon_sym_GT_GT] = ACTIONS(1851), + [anon_sym_GT_GT_GT] = ACTIONS(1849), + [anon_sym_AMP] = ACTIONS(1851), + [anon_sym_PIPE] = ACTIONS(1851), + [anon_sym_CARET] = ACTIONS(1849), + [anon_sym_AMP_AMP] = ACTIONS(1849), + [anon_sym_PIPE_PIPE] = ACTIONS(1849), + [anon_sym_EQ_EQ] = ACTIONS(1849), + [anon_sym_BANG_EQ] = ACTIONS(1849), + [anon_sym_LT] = ACTIONS(1851), + [anon_sym_LT_EQ] = ACTIONS(1849), + [anon_sym_GT] = ACTIONS(1851), + [anon_sym_GT_EQ] = ACTIONS(1849), + [anon_sym_EQ_GT] = ACTIONS(1849), + [anon_sym_QMARK_QMARK] = ACTIONS(1849), + [anon_sym_EQ] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1851), + [anon_sym_macro] = ACTIONS(1851), + [anon_sym_abstract] = ACTIONS(1851), + [anon_sym_static] = ACTIONS(1851), + [anon_sym_public] = ACTIONS(1851), + [anon_sym_private] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_inline] = ACTIONS(1851), + [anon_sym_overload] = ACTIONS(1851), + [anon_sym_override] = ACTIONS(1851), + [anon_sym_final] = ACTIONS(1851), + [anon_sym_class] = ACTIONS(1851), + [anon_sym_interface] = ACTIONS(1851), + [anon_sym_enum] = ACTIONS(1851), + [anon_sym_typedef] = ACTIONS(1851), + [anon_sym_function] = ACTIONS(1851), + [anon_sym_var] = ACTIONS(1851), + [aux_sym_integer_token1] = ACTIONS(1851), + [aux_sym_integer_token2] = ACTIONS(1849), + [aux_sym_float_token1] = ACTIONS(1851), + [aux_sym_float_token2] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1851), + [anon_sym_false] = ACTIONS(1851), + [aux_sym_string_token1] = ACTIONS(1849), + [aux_sym_string_token3] = ACTIONS(1849), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1849), [sym__closing_brace_unmarker] = ACTIONS(3), }, [375] = { - [sym_identifier] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_package] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_using] = ACTIONS(1900), - [anon_sym_throw] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_case] = ACTIONS(1900), - [anon_sym_default] = ACTIONS(1900), - [anon_sym_cast] = ACTIONS(1900), - [anon_sym_DOLLARtype] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_untyped] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_this] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1900), - [anon_sym_AT_COLON] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_LT_LT] = ACTIONS(1902), - [anon_sym_GT_GT] = ACTIONS(1900), - [anon_sym_GT_GT_GT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_CARET] = ACTIONS(1902), - [anon_sym_AMP_AMP] = ACTIONS(1902), - [anon_sym_PIPE_PIPE] = ACTIONS(1902), - [anon_sym_EQ_EQ] = ACTIONS(1902), - [anon_sym_BANG_EQ] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1900), - [anon_sym_LT_EQ] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1902), - [anon_sym_EQ_GT] = ACTIONS(1902), - [anon_sym_QMARK_QMARK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1900), - [sym__rangeOperator] = ACTIONS(1902), - [anon_sym_null] = ACTIONS(1900), - [anon_sym_macro] = ACTIONS(1900), - [anon_sym_abstract] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_public] = ACTIONS(1900), - [anon_sym_private] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), - [anon_sym_overload] = ACTIONS(1900), - [anon_sym_override] = ACTIONS(1900), - [anon_sym_final] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_interface] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1900), - [anon_sym_function] = ACTIONS(1900), - [anon_sym_var] = ACTIONS(1900), - [aux_sym_integer_token1] = ACTIONS(1900), - [aux_sym_integer_token2] = ACTIONS(1902), - [aux_sym_float_token1] = ACTIONS(1900), - [aux_sym_float_token2] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [aux_sym_string_token1] = ACTIONS(1902), - [aux_sym_string_token3] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(1861), + [anon_sym_package] = ACTIONS(1863), + [anon_sym_DOT] = ACTIONS(1863), + [anon_sym_import] = ACTIONS(1863), + [anon_sym_STAR] = ACTIONS(1861), + [anon_sym_using] = ACTIONS(1863), + [anon_sym_throw] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_switch] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_case] = ACTIONS(1863), + [anon_sym_default] = ACTIONS(1863), + [anon_sym_cast] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_DOLLARtype] = ACTIONS(1861), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_untyped] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_this] = ACTIONS(1863), + [anon_sym_QMARK] = ACTIONS(1863), + [anon_sym_AT] = ACTIONS(1863), + [anon_sym_AT_COLON] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_new] = ACTIONS(1863), + [anon_sym_TILDE] = ACTIONS(1861), + [anon_sym_BANG] = ACTIONS(1863), + [anon_sym_DASH] = ACTIONS(1863), + [anon_sym_PLUS_PLUS] = ACTIONS(1861), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_PERCENT] = ACTIONS(1861), + [anon_sym_SLASH] = ACTIONS(1863), + [anon_sym_PLUS] = ACTIONS(1863), + [anon_sym_LT_LT] = ACTIONS(1861), + [anon_sym_GT_GT] = ACTIONS(1863), + [anon_sym_GT_GT_GT] = ACTIONS(1861), + [anon_sym_AMP] = ACTIONS(1863), + [anon_sym_PIPE] = ACTIONS(1863), + [anon_sym_CARET] = ACTIONS(1861), + [anon_sym_AMP_AMP] = ACTIONS(1861), + [anon_sym_PIPE_PIPE] = ACTIONS(1861), + [anon_sym_EQ_EQ] = ACTIONS(1861), + [anon_sym_BANG_EQ] = ACTIONS(1861), + [anon_sym_LT] = ACTIONS(1863), + [anon_sym_LT_EQ] = ACTIONS(1861), + [anon_sym_GT] = ACTIONS(1863), + [anon_sym_GT_EQ] = ACTIONS(1861), + [anon_sym_EQ_GT] = ACTIONS(1861), + [anon_sym_QMARK_QMARK] = ACTIONS(1861), + [anon_sym_EQ] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1863), + [anon_sym_macro] = ACTIONS(1863), + [anon_sym_abstract] = ACTIONS(1863), + [anon_sym_static] = ACTIONS(1863), + [anon_sym_public] = ACTIONS(1863), + [anon_sym_private] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_inline] = ACTIONS(1863), + [anon_sym_overload] = ACTIONS(1863), + [anon_sym_override] = ACTIONS(1863), + [anon_sym_final] = ACTIONS(1863), + [anon_sym_class] = ACTIONS(1863), + [anon_sym_interface] = ACTIONS(1863), + [anon_sym_enum] = ACTIONS(1863), + [anon_sym_typedef] = ACTIONS(1863), + [anon_sym_function] = ACTIONS(1863), + [anon_sym_var] = ACTIONS(1863), + [aux_sym_integer_token1] = ACTIONS(1863), + [aux_sym_integer_token2] = ACTIONS(1861), + [aux_sym_float_token1] = ACTIONS(1863), + [aux_sym_float_token2] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1863), + [anon_sym_false] = ACTIONS(1863), + [aux_sym_string_token1] = ACTIONS(1861), + [aux_sym_string_token3] = ACTIONS(1861), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1861), [sym__closing_brace_unmarker] = ACTIONS(3), }, [376] = { - [sym_identifier] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_package] = ACTIONS(1904), - [anon_sym_import] = ACTIONS(1904), - [anon_sym_using] = ACTIONS(1904), - [anon_sym_throw] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_case] = ACTIONS(1904), - [anon_sym_default] = ACTIONS(1904), - [anon_sym_cast] = ACTIONS(1904), - [anon_sym_DOLLARtype] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_untyped] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_this] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1904), - [anon_sym_AT_COLON] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_LT_LT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1904), - [anon_sym_GT_GT_GT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1906), - [anon_sym_AMP_AMP] = ACTIONS(1906), - [anon_sym_PIPE_PIPE] = ACTIONS(1906), - [anon_sym_EQ_EQ] = ACTIONS(1906), - [anon_sym_BANG_EQ] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_LT_EQ] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1904), - [anon_sym_GT_EQ] = ACTIONS(1906), - [anon_sym_EQ_GT] = ACTIONS(1906), - [anon_sym_QMARK_QMARK] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1904), - [sym__rangeOperator] = ACTIONS(1906), - [anon_sym_null] = ACTIONS(1904), - [anon_sym_macro] = ACTIONS(1904), - [anon_sym_abstract] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_public] = ACTIONS(1904), - [anon_sym_private] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), - [anon_sym_overload] = ACTIONS(1904), - [anon_sym_override] = ACTIONS(1904), - [anon_sym_final] = ACTIONS(1904), - [anon_sym_class] = ACTIONS(1904), - [anon_sym_interface] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1904), - [anon_sym_function] = ACTIONS(1904), - [anon_sym_var] = ACTIONS(1904), - [aux_sym_integer_token1] = ACTIONS(1904), - [aux_sym_integer_token2] = ACTIONS(1906), - [aux_sym_float_token1] = ACTIONS(1904), - [aux_sym_float_token2] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [aux_sym_string_token1] = ACTIONS(1906), - [aux_sym_string_token3] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(1865), + [anon_sym_package] = ACTIONS(1867), + [anon_sym_DOT] = ACTIONS(1867), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_STAR] = ACTIONS(1865), + [anon_sym_using] = ACTIONS(1867), + [anon_sym_throw] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_switch] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_case] = ACTIONS(1867), + [anon_sym_default] = ACTIONS(1867), + [anon_sym_cast] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_DOLLARtype] = ACTIONS(1865), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_untyped] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_this] = ACTIONS(1867), + [anon_sym_QMARK] = ACTIONS(1867), + [anon_sym_AT] = ACTIONS(1867), + [anon_sym_AT_COLON] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_new] = ACTIONS(1867), + [anon_sym_TILDE] = ACTIONS(1865), + [anon_sym_BANG] = ACTIONS(1867), + [anon_sym_DASH] = ACTIONS(1867), + [anon_sym_PLUS_PLUS] = ACTIONS(1865), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_PERCENT] = ACTIONS(1865), + [anon_sym_SLASH] = ACTIONS(1867), + [anon_sym_PLUS] = ACTIONS(1867), + [anon_sym_LT_LT] = ACTIONS(1865), + [anon_sym_GT_GT] = ACTIONS(1867), + [anon_sym_GT_GT_GT] = ACTIONS(1865), + [anon_sym_AMP] = ACTIONS(1867), + [anon_sym_PIPE] = ACTIONS(1867), + [anon_sym_CARET] = ACTIONS(1865), + [anon_sym_AMP_AMP] = ACTIONS(1865), + [anon_sym_PIPE_PIPE] = ACTIONS(1865), + [anon_sym_EQ_EQ] = ACTIONS(1865), + [anon_sym_BANG_EQ] = ACTIONS(1865), + [anon_sym_LT] = ACTIONS(1867), + [anon_sym_LT_EQ] = ACTIONS(1865), + [anon_sym_GT] = ACTIONS(1867), + [anon_sym_GT_EQ] = ACTIONS(1865), + [anon_sym_EQ_GT] = ACTIONS(1865), + [anon_sym_QMARK_QMARK] = ACTIONS(1865), + [anon_sym_EQ] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1867), + [anon_sym_macro] = ACTIONS(1867), + [anon_sym_abstract] = ACTIONS(1867), + [anon_sym_static] = ACTIONS(1867), + [anon_sym_public] = ACTIONS(1867), + [anon_sym_private] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_inline] = ACTIONS(1867), + [anon_sym_overload] = ACTIONS(1867), + [anon_sym_override] = ACTIONS(1867), + [anon_sym_final] = ACTIONS(1867), + [anon_sym_class] = ACTIONS(1867), + [anon_sym_interface] = ACTIONS(1867), + [anon_sym_enum] = ACTIONS(1867), + [anon_sym_typedef] = ACTIONS(1867), + [anon_sym_function] = ACTIONS(1867), + [anon_sym_var] = ACTIONS(1867), + [aux_sym_integer_token1] = ACTIONS(1867), + [aux_sym_integer_token2] = ACTIONS(1865), + [aux_sym_float_token1] = ACTIONS(1867), + [aux_sym_float_token2] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1867), + [anon_sym_false] = ACTIONS(1867), + [aux_sym_string_token1] = ACTIONS(1865), + [aux_sym_string_token3] = ACTIONS(1865), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1865), [sym__closing_brace_unmarker] = ACTIONS(3), }, [377] = { - [sym_identifier] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_package] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_using] = ACTIONS(1908), - [anon_sym_throw] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_case] = ACTIONS(1908), - [anon_sym_default] = ACTIONS(1908), - [anon_sym_cast] = ACTIONS(1908), - [anon_sym_DOLLARtype] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_AT_COLON] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1910), - [anon_sym_PERCENT] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_LT_LT] = ACTIONS(1910), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_GT_GT_GT] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_EQ_EQ] = ACTIONS(1910), - [anon_sym_BANG_EQ] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_LT_EQ] = ACTIONS(1910), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_GT_EQ] = ACTIONS(1910), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_QMARK] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1908), - [sym__rangeOperator] = ACTIONS(1910), - [anon_sym_null] = ACTIONS(1908), - [anon_sym_macro] = ACTIONS(1908), - [anon_sym_abstract] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_public] = ACTIONS(1908), - [anon_sym_private] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_inline] = ACTIONS(1908), - [anon_sym_overload] = ACTIONS(1908), - [anon_sym_override] = ACTIONS(1908), - [anon_sym_final] = ACTIONS(1908), - [anon_sym_class] = ACTIONS(1908), - [anon_sym_interface] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1908), - [anon_sym_function] = ACTIONS(1908), - [anon_sym_var] = ACTIONS(1908), - [aux_sym_integer_token1] = ACTIONS(1908), - [aux_sym_integer_token2] = ACTIONS(1910), - [aux_sym_float_token1] = ACTIONS(1908), - [aux_sym_float_token2] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [aux_sym_string_token1] = ACTIONS(1910), - [aux_sym_string_token3] = ACTIONS(1910), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(1869), + [anon_sym_package] = ACTIONS(1871), + [anon_sym_DOT] = ACTIONS(1871), + [anon_sym_import] = ACTIONS(1871), + [anon_sym_STAR] = ACTIONS(1869), + [anon_sym_using] = ACTIONS(1871), + [anon_sym_throw] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_switch] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_case] = ACTIONS(1871), + [anon_sym_default] = ACTIONS(1871), + [anon_sym_cast] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_DOLLARtype] = ACTIONS(1869), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_untyped] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_this] = ACTIONS(1871), + [anon_sym_QMARK] = ACTIONS(1871), + [anon_sym_AT] = ACTIONS(1871), + [anon_sym_AT_COLON] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_new] = ACTIONS(1871), + [anon_sym_TILDE] = ACTIONS(1869), + [anon_sym_BANG] = ACTIONS(1871), + [anon_sym_DASH] = ACTIONS(1871), + [anon_sym_PLUS_PLUS] = ACTIONS(1869), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_PERCENT] = ACTIONS(1869), + [anon_sym_SLASH] = ACTIONS(1871), + [anon_sym_PLUS] = ACTIONS(1871), + [anon_sym_LT_LT] = ACTIONS(1869), + [anon_sym_GT_GT] = ACTIONS(1871), + [anon_sym_GT_GT_GT] = ACTIONS(1869), + [anon_sym_AMP] = ACTIONS(1871), + [anon_sym_PIPE] = ACTIONS(1871), + [anon_sym_CARET] = ACTIONS(1869), + [anon_sym_AMP_AMP] = ACTIONS(1869), + [anon_sym_PIPE_PIPE] = ACTIONS(1869), + [anon_sym_EQ_EQ] = ACTIONS(1869), + [anon_sym_BANG_EQ] = ACTIONS(1869), + [anon_sym_LT] = ACTIONS(1871), + [anon_sym_LT_EQ] = ACTIONS(1869), + [anon_sym_GT] = ACTIONS(1871), + [anon_sym_GT_EQ] = ACTIONS(1869), + [anon_sym_EQ_GT] = ACTIONS(1869), + [anon_sym_QMARK_QMARK] = ACTIONS(1869), + [anon_sym_EQ] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1871), + [anon_sym_macro] = ACTIONS(1871), + [anon_sym_abstract] = ACTIONS(1871), + [anon_sym_static] = ACTIONS(1871), + [anon_sym_public] = ACTIONS(1871), + [anon_sym_private] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_inline] = ACTIONS(1871), + [anon_sym_overload] = ACTIONS(1871), + [anon_sym_override] = ACTIONS(1871), + [anon_sym_final] = ACTIONS(1871), + [anon_sym_class] = ACTIONS(1871), + [anon_sym_interface] = ACTIONS(1871), + [anon_sym_enum] = ACTIONS(1871), + [anon_sym_typedef] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(1871), + [anon_sym_var] = ACTIONS(1871), + [aux_sym_integer_token1] = ACTIONS(1871), + [aux_sym_integer_token2] = ACTIONS(1869), + [aux_sym_float_token1] = ACTIONS(1871), + [aux_sym_float_token2] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1871), + [anon_sym_false] = ACTIONS(1871), + [aux_sym_string_token1] = ACTIONS(1869), + [aux_sym_string_token3] = ACTIONS(1869), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1869), [sym__closing_brace_unmarker] = ACTIONS(3), }, [378] = { - [sym_identifier] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_package] = ACTIONS(1912), - [anon_sym_import] = ACTIONS(1912), - [anon_sym_using] = ACTIONS(1912), - [anon_sym_throw] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_case] = ACTIONS(1912), - [anon_sym_default] = ACTIONS(1912), - [anon_sym_cast] = ACTIONS(1912), - [anon_sym_DOLLARtype] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_untyped] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_this] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_AT_COLON] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_PERCENT] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1914), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_GT_GT_GT] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_LT_EQ] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_EQ] = ACTIONS(1914), - [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_QMARK] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1912), - [sym__rangeOperator] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_macro] = ACTIONS(1912), - [anon_sym_abstract] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_public] = ACTIONS(1912), - [anon_sym_private] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_inline] = ACTIONS(1912), - [anon_sym_overload] = ACTIONS(1912), - [anon_sym_override] = ACTIONS(1912), - [anon_sym_final] = ACTIONS(1912), - [anon_sym_class] = ACTIONS(1912), - [anon_sym_interface] = ACTIONS(1912), - [anon_sym_typedef] = ACTIONS(1912), - [anon_sym_function] = ACTIONS(1912), - [anon_sym_var] = ACTIONS(1912), - [aux_sym_integer_token1] = ACTIONS(1912), - [aux_sym_integer_token2] = ACTIONS(1914), - [aux_sym_float_token1] = ACTIONS(1912), - [aux_sym_float_token2] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [aux_sym_string_token1] = ACTIONS(1914), - [aux_sym_string_token3] = ACTIONS(1914), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(1877), + [anon_sym_package] = ACTIONS(1879), + [anon_sym_DOT] = ACTIONS(1879), + [anon_sym_import] = ACTIONS(1879), + [anon_sym_STAR] = ACTIONS(1877), + [anon_sym_using] = ACTIONS(1879), + [anon_sym_throw] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_switch] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_case] = ACTIONS(1879), + [anon_sym_default] = ACTIONS(1879), + [anon_sym_cast] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLARtype] = ACTIONS(1877), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_untyped] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_this] = ACTIONS(1879), + [anon_sym_QMARK] = ACTIONS(1879), + [anon_sym_AT] = ACTIONS(1879), + [anon_sym_AT_COLON] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_new] = ACTIONS(1879), + [anon_sym_TILDE] = ACTIONS(1877), + [anon_sym_BANG] = ACTIONS(1879), + [anon_sym_DASH] = ACTIONS(1879), + [anon_sym_PLUS_PLUS] = ACTIONS(1877), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_PERCENT] = ACTIONS(1877), + [anon_sym_SLASH] = ACTIONS(1879), + [anon_sym_PLUS] = ACTIONS(1879), + [anon_sym_LT_LT] = ACTIONS(1877), + [anon_sym_GT_GT] = ACTIONS(1879), + [anon_sym_GT_GT_GT] = ACTIONS(1877), + [anon_sym_AMP] = ACTIONS(1879), + [anon_sym_PIPE] = ACTIONS(1879), + [anon_sym_CARET] = ACTIONS(1877), + [anon_sym_AMP_AMP] = ACTIONS(1877), + [anon_sym_PIPE_PIPE] = ACTIONS(1877), + [anon_sym_EQ_EQ] = ACTIONS(1877), + [anon_sym_BANG_EQ] = ACTIONS(1877), + [anon_sym_LT] = ACTIONS(1879), + [anon_sym_LT_EQ] = ACTIONS(1877), + [anon_sym_GT] = ACTIONS(1879), + [anon_sym_GT_EQ] = ACTIONS(1877), + [anon_sym_EQ_GT] = ACTIONS(1877), + [anon_sym_QMARK_QMARK] = ACTIONS(1877), + [anon_sym_EQ] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1879), + [anon_sym_macro] = ACTIONS(1879), + [anon_sym_abstract] = ACTIONS(1879), + [anon_sym_static] = ACTIONS(1879), + [anon_sym_public] = ACTIONS(1879), + [anon_sym_private] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_inline] = ACTIONS(1879), + [anon_sym_overload] = ACTIONS(1879), + [anon_sym_override] = ACTIONS(1879), + [anon_sym_final] = ACTIONS(1879), + [anon_sym_class] = ACTIONS(1879), + [anon_sym_interface] = ACTIONS(1879), + [anon_sym_enum] = ACTIONS(1879), + [anon_sym_typedef] = ACTIONS(1879), + [anon_sym_function] = ACTIONS(1879), + [anon_sym_var] = ACTIONS(1879), + [aux_sym_integer_token1] = ACTIONS(1879), + [aux_sym_integer_token2] = ACTIONS(1877), + [aux_sym_float_token1] = ACTIONS(1879), + [aux_sym_float_token2] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1879), + [anon_sym_false] = ACTIONS(1879), + [aux_sym_string_token1] = ACTIONS(1877), + [aux_sym_string_token3] = ACTIONS(1877), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1877), [sym__closing_brace_unmarker] = ACTIONS(3), }, [379] = { - [ts_builtin_sym_end] = ACTIONS(1916), - [sym_identifier] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_package] = ACTIONS(1918), - [anon_sym_import] = ACTIONS(1918), - [anon_sym_using] = ACTIONS(1918), - [anon_sym_throw] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_cast] = ACTIONS(1918), - [anon_sym_DOLLARtype] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_untyped] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_this] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1918), - [anon_sym_AT_COLON] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_else] = ACTIONS(1920), - [anon_sym_elseif] = ACTIONS(1922), - [anon_sym_new] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1916), - [anon_sym_DASH_DASH] = ACTIONS(1916), - [anon_sym_PERCENT] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_SLASH] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_GT_GT_GT] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_LT_EQ] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_EQ] = ACTIONS(1916), - [anon_sym_EQ_GT] = ACTIONS(1916), - [anon_sym_QMARK_QMARK] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [sym__rangeOperator] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [anon_sym_macro] = ACTIONS(1918), - [anon_sym_abstract] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_public] = ACTIONS(1918), - [anon_sym_private] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), - [anon_sym_overload] = ACTIONS(1918), - [anon_sym_override] = ACTIONS(1918), - [anon_sym_final] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(1918), - [anon_sym_interface] = ACTIONS(1918), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_function] = ACTIONS(1918), - [anon_sym_var] = ACTIONS(1918), - [aux_sym_integer_token1] = ACTIONS(1918), - [aux_sym_integer_token2] = ACTIONS(1916), - [aux_sym_float_token1] = ACTIONS(1918), - [aux_sym_float_token2] = ACTIONS(1916), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), - [aux_sym_string_token1] = ACTIONS(1916), - [aux_sym_string_token3] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(1787), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_case] = ACTIONS(1787), + [anon_sym_default] = ACTIONS(1787), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_COMMA] = ACTIONS(1785), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(1787), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(1785), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [380] = { - [sym_identifier] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_package] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(1924), - [anon_sym_using] = ACTIONS(1924), - [anon_sym_throw] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_switch] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_case] = ACTIONS(1924), - [anon_sym_default] = ACTIONS(1924), - [anon_sym_cast] = ACTIONS(1924), - [anon_sym_DOLLARtype] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_untyped] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_AT_COLON] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1926), - [anon_sym_DASH_DASH] = ACTIONS(1926), - [anon_sym_PERCENT] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_SLASH] = ACTIONS(1924), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1926), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_GT_GT_GT] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1926), - [anon_sym_AMP_AMP] = ACTIONS(1926), - [anon_sym_PIPE_PIPE] = ACTIONS(1926), - [anon_sym_EQ_EQ] = ACTIONS(1926), - [anon_sym_BANG_EQ] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_LT_EQ] = ACTIONS(1926), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_EQ] = ACTIONS(1926), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_QMARK_QMARK] = ACTIONS(1926), - [anon_sym_EQ] = ACTIONS(1924), - [sym__rangeOperator] = ACTIONS(1926), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_macro] = ACTIONS(1924), - [anon_sym_abstract] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_public] = ACTIONS(1924), - [anon_sym_private] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_inline] = ACTIONS(1924), - [anon_sym_overload] = ACTIONS(1924), - [anon_sym_override] = ACTIONS(1924), - [anon_sym_final] = ACTIONS(1924), - [anon_sym_class] = ACTIONS(1924), - [anon_sym_interface] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1924), - [anon_sym_function] = ACTIONS(1924), - [anon_sym_var] = ACTIONS(1924), - [aux_sym_integer_token1] = ACTIONS(1924), - [aux_sym_integer_token2] = ACTIONS(1926), - [aux_sym_float_token1] = ACTIONS(1924), - [aux_sym_float_token2] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [aux_sym_string_token1] = ACTIONS(1926), - [aux_sym_string_token3] = ACTIONS(1926), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1469), + [anon_sym_POUND] = ACTIONS(1471), + [anon_sym_package] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_import] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1471), + [anon_sym_using] = ACTIONS(1469), + [anon_sym_throw] = ACTIONS(1469), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_case] = ACTIONS(1469), + [anon_sym_default] = ACTIONS(1469), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_COMMA] = ACTIONS(1471), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_for] = ACTIONS(1469), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_AT] = ACTIONS(1469), + [anon_sym_AT_COLON] = ACTIONS(1471), + [anon_sym_try] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_if] = ACTIONS(1469), + [anon_sym_while] = ACTIONS(1469), + [anon_sym_do] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1471), + [anon_sym_BANG] = ACTIONS(1469), + [anon_sym_DASH] = ACTIONS(1469), + [anon_sym_PLUS_PLUS] = ACTIONS(1471), + [anon_sym_DASH_DASH] = ACTIONS(1471), + [anon_sym_PERCENT] = ACTIONS(1471), + [anon_sym_SLASH] = ACTIONS(1469), + [anon_sym_PLUS] = ACTIONS(1469), + [anon_sym_LT_LT] = ACTIONS(1471), + [anon_sym_GT_GT] = ACTIONS(1469), + [anon_sym_GT_GT_GT] = ACTIONS(1471), + [anon_sym_AMP] = ACTIONS(1469), + [anon_sym_PIPE] = ACTIONS(1469), + [anon_sym_CARET] = ACTIONS(1471), + [anon_sym_AMP_AMP] = ACTIONS(1471), + [anon_sym_PIPE_PIPE] = ACTIONS(1471), + [anon_sym_EQ_EQ] = ACTIONS(1471), + [anon_sym_BANG_EQ] = ACTIONS(1471), + [anon_sym_LT] = ACTIONS(1469), + [anon_sym_LT_EQ] = ACTIONS(1471), + [anon_sym_GT] = ACTIONS(1469), + [anon_sym_GT_EQ] = ACTIONS(1471), + [anon_sym_EQ_GT] = ACTIONS(1471), + [anon_sym_QMARK_QMARK] = ACTIONS(1471), + [anon_sym_EQ] = ACTIONS(1469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1471), + [anon_sym_null] = ACTIONS(1469), + [anon_sym_macro] = ACTIONS(1469), + [anon_sym_abstract] = ACTIONS(1469), + [anon_sym_static] = ACTIONS(1469), + [anon_sym_public] = ACTIONS(1469), + [anon_sym_private] = ACTIONS(1469), + [anon_sym_extern] = ACTIONS(1469), + [anon_sym_inline] = ACTIONS(1469), + [anon_sym_overload] = ACTIONS(1469), + [anon_sym_override] = ACTIONS(1469), + [anon_sym_final] = ACTIONS(1469), + [anon_sym_class] = ACTIONS(1469), + [anon_sym_interface] = ACTIONS(1469), + [anon_sym_enum] = ACTIONS(1469), + [anon_sym_typedef] = ACTIONS(1469), + [anon_sym_function] = ACTIONS(1469), + [anon_sym_var] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1471), [sym__closing_brace_unmarker] = ACTIONS(3), }, [381] = { - [sym_identifier] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_package] = ACTIONS(1928), - [anon_sym_import] = ACTIONS(1928), - [anon_sym_using] = ACTIONS(1928), - [anon_sym_throw] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_case] = ACTIONS(1928), - [anon_sym_default] = ACTIONS(1928), - [anon_sym_cast] = ACTIONS(1928), - [anon_sym_DOLLARtype] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_untyped] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_this] = ACTIONS(1928), - [anon_sym_AT] = ACTIONS(1928), - [anon_sym_AT_COLON] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_new] = ACTIONS(1928), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1928), - [anon_sym_PLUS] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_GT_GT_GT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_CARET] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_QMARK_QMARK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1928), - [sym__rangeOperator] = ACTIONS(1930), - [anon_sym_null] = ACTIONS(1928), - [anon_sym_macro] = ACTIONS(1928), - [anon_sym_abstract] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_public] = ACTIONS(1928), - [anon_sym_private] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_inline] = ACTIONS(1928), - [anon_sym_overload] = ACTIONS(1928), - [anon_sym_override] = ACTIONS(1928), - [anon_sym_final] = ACTIONS(1928), - [anon_sym_class] = ACTIONS(1928), - [anon_sym_interface] = ACTIONS(1928), - [anon_sym_typedef] = ACTIONS(1928), - [anon_sym_function] = ACTIONS(1928), - [anon_sym_var] = ACTIONS(1928), - [aux_sym_integer_token1] = ACTIONS(1928), - [aux_sym_integer_token2] = ACTIONS(1930), - [aux_sym_float_token1] = ACTIONS(1928), - [aux_sym_float_token2] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [aux_sym_string_token1] = ACTIONS(1930), - [aux_sym_string_token3] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1375), + [anon_sym_POUND] = ACTIONS(1371), + [anon_sym_package] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_import] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_using] = ACTIONS(1375), + [anon_sym_throw] = ACTIONS(1375), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_for] = ACTIONS(1375), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_AT] = ACTIONS(1375), + [anon_sym_AT_COLON] = ACTIONS(1371), + [anon_sym_try] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_if] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_do] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1375), + [anon_sym_macro] = ACTIONS(1375), + [anon_sym_abstract] = ACTIONS(1375), + [anon_sym_static] = ACTIONS(1375), + [anon_sym_public] = ACTIONS(1375), + [anon_sym_private] = ACTIONS(1375), + [anon_sym_extern] = ACTIONS(1375), + [anon_sym_inline] = ACTIONS(1375), + [anon_sym_overload] = ACTIONS(1375), + [anon_sym_override] = ACTIONS(1375), + [anon_sym_final] = ACTIONS(1375), + [anon_sym_class] = ACTIONS(1375), + [anon_sym_interface] = ACTIONS(1375), + [anon_sym_enum] = ACTIONS(1375), + [anon_sym_typedef] = ACTIONS(1375), + [anon_sym_function] = ACTIONS(1375), + [anon_sym_var] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1371), [sym__closing_brace_unmarker] = ACTIONS(3), }, [382] = { - [sym_identifier] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_package] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_using] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_case] = ACTIONS(1932), - [anon_sym_default] = ACTIONS(1932), - [anon_sym_cast] = ACTIONS(1932), - [anon_sym_DOLLARtype] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1932), - [anon_sym_AT_COLON] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_LT_LT] = ACTIONS(1934), - [anon_sym_GT_GT] = ACTIONS(1932), - [anon_sym_GT_GT_GT] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_CARET] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_QMARK_QMARK] = ACTIONS(1934), - [anon_sym_EQ] = ACTIONS(1932), - [sym__rangeOperator] = ACTIONS(1934), - [anon_sym_null] = ACTIONS(1932), - [anon_sym_macro] = ACTIONS(1932), - [anon_sym_abstract] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_public] = ACTIONS(1932), - [anon_sym_private] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_inline] = ACTIONS(1932), - [anon_sym_overload] = ACTIONS(1932), - [anon_sym_override] = ACTIONS(1932), - [anon_sym_final] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_interface] = ACTIONS(1932), - [anon_sym_typedef] = ACTIONS(1932), - [anon_sym_function] = ACTIONS(1932), - [anon_sym_var] = ACTIONS(1932), - [aux_sym_integer_token1] = ACTIONS(1932), - [aux_sym_integer_token2] = ACTIONS(1934), - [aux_sym_float_token1] = ACTIONS(1932), - [aux_sym_float_token2] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [aux_sym_string_token1] = ACTIONS(1934), - [aux_sym_string_token3] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(1893), + [anon_sym_package] = ACTIONS(1895), + [anon_sym_DOT] = ACTIONS(1895), + [anon_sym_import] = ACTIONS(1895), + [anon_sym_STAR] = ACTIONS(1893), + [anon_sym_using] = ACTIONS(1895), + [anon_sym_throw] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_switch] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1893), + [anon_sym_case] = ACTIONS(1895), + [anon_sym_default] = ACTIONS(1895), + [anon_sym_cast] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_DOLLARtype] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1895), + [anon_sym_return] = ACTIONS(1895), + [anon_sym_untyped] = ACTIONS(1895), + [anon_sym_break] = ACTIONS(1895), + [anon_sym_continue] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1893), + [anon_sym_this] = ACTIONS(1895), + [anon_sym_QMARK] = ACTIONS(1895), + [anon_sym_AT] = ACTIONS(1895), + [anon_sym_AT_COLON] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1895), + [anon_sym_catch] = ACTIONS(1895), + [anon_sym_else] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_while] = ACTIONS(1895), + [anon_sym_do] = ACTIONS(1895), + [anon_sym_new] = ACTIONS(1895), + [anon_sym_TILDE] = ACTIONS(1893), + [anon_sym_BANG] = ACTIONS(1895), + [anon_sym_DASH] = ACTIONS(1895), + [anon_sym_PLUS_PLUS] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1893), + [anon_sym_PERCENT] = ACTIONS(1893), + [anon_sym_SLASH] = ACTIONS(1895), + [anon_sym_PLUS] = ACTIONS(1895), + [anon_sym_LT_LT] = ACTIONS(1893), + [anon_sym_GT_GT] = ACTIONS(1895), + [anon_sym_GT_GT_GT] = ACTIONS(1893), + [anon_sym_AMP] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_CARET] = ACTIONS(1893), + [anon_sym_AMP_AMP] = ACTIONS(1893), + [anon_sym_PIPE_PIPE] = ACTIONS(1893), + [anon_sym_EQ_EQ] = ACTIONS(1893), + [anon_sym_BANG_EQ] = ACTIONS(1893), + [anon_sym_LT] = ACTIONS(1895), + [anon_sym_LT_EQ] = ACTIONS(1893), + [anon_sym_GT] = ACTIONS(1895), + [anon_sym_GT_EQ] = ACTIONS(1893), + [anon_sym_EQ_GT] = ACTIONS(1893), + [anon_sym_QMARK_QMARK] = ACTIONS(1893), + [anon_sym_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1893), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_macro] = ACTIONS(1895), + [anon_sym_abstract] = ACTIONS(1895), + [anon_sym_static] = ACTIONS(1895), + [anon_sym_public] = ACTIONS(1895), + [anon_sym_private] = ACTIONS(1895), + [anon_sym_extern] = ACTIONS(1895), + [anon_sym_inline] = ACTIONS(1895), + [anon_sym_overload] = ACTIONS(1895), + [anon_sym_override] = ACTIONS(1895), + [anon_sym_final] = ACTIONS(1895), + [anon_sym_class] = ACTIONS(1895), + [anon_sym_interface] = ACTIONS(1895), + [anon_sym_enum] = ACTIONS(1895), + [anon_sym_typedef] = ACTIONS(1895), + [anon_sym_function] = ACTIONS(1895), + [anon_sym_var] = ACTIONS(1895), + [aux_sym_integer_token1] = ACTIONS(1895), + [aux_sym_integer_token2] = ACTIONS(1893), + [aux_sym_float_token1] = ACTIONS(1895), + [aux_sym_float_token2] = ACTIONS(1893), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym_string_token1] = ACTIONS(1893), + [aux_sym_string_token3] = ACTIONS(1893), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1893), [sym__closing_brace_unmarker] = ACTIONS(3), }, [383] = { - [sym_identifier] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_package] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_case] = ACTIONS(1936), - [anon_sym_default] = ACTIONS(1936), - [anon_sym_cast] = ACTIONS(1936), - [anon_sym_DOLLARtype] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_untyped] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_this] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1936), - [anon_sym_AT_COLON] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_LT_LT] = ACTIONS(1938), - [anon_sym_GT_GT] = ACTIONS(1936), - [anon_sym_GT_GT_GT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_CARET] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_PIPE_PIPE] = ACTIONS(1938), - [anon_sym_EQ_EQ] = ACTIONS(1938), - [anon_sym_BANG_EQ] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(1938), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1938), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_QMARK] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1936), - [sym__rangeOperator] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_macro] = ACTIONS(1936), - [anon_sym_abstract] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym_overload] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_final] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_interface] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(1936), - [anon_sym_var] = ACTIONS(1936), - [aux_sym_integer_token1] = ACTIONS(1936), - [aux_sym_integer_token2] = ACTIONS(1938), - [aux_sym_float_token1] = ACTIONS(1936), - [aux_sym_float_token2] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [aux_sym_string_token1] = ACTIONS(1938), - [aux_sym_string_token3] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1899), + [anon_sym_POUND] = ACTIONS(1897), + [anon_sym_package] = ACTIONS(1899), + [anon_sym_DOT] = ACTIONS(1899), + [anon_sym_import] = ACTIONS(1899), + [anon_sym_STAR] = ACTIONS(1897), + [anon_sym_using] = ACTIONS(1899), + [anon_sym_throw] = ACTIONS(1899), + [anon_sym_LPAREN] = ACTIONS(1897), + [anon_sym_switch] = ACTIONS(1899), + [anon_sym_LBRACE] = ACTIONS(1897), + [anon_sym_case] = ACTIONS(1899), + [anon_sym_default] = ACTIONS(1899), + [anon_sym_cast] = ACTIONS(1899), + [anon_sym_COMMA] = ACTIONS(1897), + [anon_sym_DOLLARtype] = ACTIONS(1897), + [anon_sym_for] = ACTIONS(1899), + [anon_sym_return] = ACTIONS(1899), + [anon_sym_untyped] = ACTIONS(1899), + [anon_sym_break] = ACTIONS(1899), + [anon_sym_continue] = ACTIONS(1899), + [anon_sym_LBRACK] = ACTIONS(1897), + [anon_sym_this] = ACTIONS(1899), + [anon_sym_QMARK] = ACTIONS(1899), + [anon_sym_AT] = ACTIONS(1899), + [anon_sym_AT_COLON] = ACTIONS(1897), + [anon_sym_try] = ACTIONS(1899), + [anon_sym_catch] = ACTIONS(1899), + [anon_sym_else] = ACTIONS(1899), + [anon_sym_if] = ACTIONS(1899), + [anon_sym_while] = ACTIONS(1899), + [anon_sym_do] = ACTIONS(1899), + [anon_sym_new] = ACTIONS(1899), + [anon_sym_TILDE] = ACTIONS(1897), + [anon_sym_BANG] = ACTIONS(1899), + [anon_sym_DASH] = ACTIONS(1899), + [anon_sym_PLUS_PLUS] = ACTIONS(1897), + [anon_sym_DASH_DASH] = ACTIONS(1897), + [anon_sym_PERCENT] = ACTIONS(1897), + [anon_sym_SLASH] = ACTIONS(1899), + [anon_sym_PLUS] = ACTIONS(1899), + [anon_sym_LT_LT] = ACTIONS(1897), + [anon_sym_GT_GT] = ACTIONS(1899), + [anon_sym_GT_GT_GT] = ACTIONS(1897), + [anon_sym_AMP] = ACTIONS(1899), + [anon_sym_PIPE] = ACTIONS(1899), + [anon_sym_CARET] = ACTIONS(1897), + [anon_sym_AMP_AMP] = ACTIONS(1897), + [anon_sym_PIPE_PIPE] = ACTIONS(1897), + [anon_sym_EQ_EQ] = ACTIONS(1897), + [anon_sym_BANG_EQ] = ACTIONS(1897), + [anon_sym_LT] = ACTIONS(1899), + [anon_sym_LT_EQ] = ACTIONS(1897), + [anon_sym_GT] = ACTIONS(1899), + [anon_sym_GT_EQ] = ACTIONS(1897), + [anon_sym_EQ_GT] = ACTIONS(1897), + [anon_sym_QMARK_QMARK] = ACTIONS(1897), + [anon_sym_EQ] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1897), + [anon_sym_null] = ACTIONS(1899), + [anon_sym_macro] = ACTIONS(1899), + [anon_sym_abstract] = ACTIONS(1899), + [anon_sym_static] = ACTIONS(1899), + [anon_sym_public] = ACTIONS(1899), + [anon_sym_private] = ACTIONS(1899), + [anon_sym_extern] = ACTIONS(1899), + [anon_sym_inline] = ACTIONS(1899), + [anon_sym_overload] = ACTIONS(1899), + [anon_sym_override] = ACTIONS(1899), + [anon_sym_final] = ACTIONS(1899), + [anon_sym_class] = ACTIONS(1899), + [anon_sym_interface] = ACTIONS(1899), + [anon_sym_enum] = ACTIONS(1899), + [anon_sym_typedef] = ACTIONS(1899), + [anon_sym_function] = ACTIONS(1899), + [anon_sym_var] = ACTIONS(1899), + [aux_sym_integer_token1] = ACTIONS(1899), + [aux_sym_integer_token2] = ACTIONS(1897), + [aux_sym_float_token1] = ACTIONS(1899), + [aux_sym_float_token2] = ACTIONS(1897), + [anon_sym_true] = ACTIONS(1899), + [anon_sym_false] = ACTIONS(1899), + [aux_sym_string_token1] = ACTIONS(1897), + [aux_sym_string_token3] = ACTIONS(1897), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1897), [sym__closing_brace_unmarker] = ACTIONS(3), }, [384] = { - [sym_identifier] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_package] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_case] = ACTIONS(1940), - [anon_sym_default] = ACTIONS(1940), - [anon_sym_cast] = ACTIONS(1940), - [anon_sym_DOLLARtype] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_untyped] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_this] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1940), - [anon_sym_AT_COLON] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PERCENT] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_LT_LT] = ACTIONS(1942), - [anon_sym_GT_GT] = ACTIONS(1940), - [anon_sym_GT_GT_GT] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1942), - [anon_sym_PIPE_PIPE] = ACTIONS(1942), - [anon_sym_EQ_EQ] = ACTIONS(1942), - [anon_sym_BANG_EQ] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_LT_EQ] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_EQ] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1942), - [anon_sym_QMARK_QMARK] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1940), - [sym__rangeOperator] = ACTIONS(1942), - [anon_sym_null] = ACTIONS(1940), - [anon_sym_macro] = ACTIONS(1940), - [anon_sym_abstract] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_overload] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_final] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_interface] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(1940), - [anon_sym_var] = ACTIONS(1940), - [aux_sym_integer_token1] = ACTIONS(1940), - [aux_sym_integer_token2] = ACTIONS(1942), - [aux_sym_float_token1] = ACTIONS(1940), - [aux_sym_float_token2] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [aux_sym_string_token1] = ACTIONS(1942), - [aux_sym_string_token3] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1939), + [anon_sym_POUND] = ACTIONS(1937), + [anon_sym_package] = ACTIONS(1939), + [anon_sym_DOT] = ACTIONS(1939), + [anon_sym_import] = ACTIONS(1939), + [anon_sym_STAR] = ACTIONS(1937), + [anon_sym_using] = ACTIONS(1939), + [anon_sym_throw] = ACTIONS(1939), + [anon_sym_LPAREN] = ACTIONS(1937), + [anon_sym_switch] = ACTIONS(1939), + [anon_sym_LBRACE] = ACTIONS(1937), + [anon_sym_case] = ACTIONS(1939), + [anon_sym_default] = ACTIONS(1939), + [anon_sym_cast] = ACTIONS(1939), + [anon_sym_COMMA] = ACTIONS(1937), + [anon_sym_DOLLARtype] = ACTIONS(1937), + [anon_sym_for] = ACTIONS(1939), + [anon_sym_return] = ACTIONS(1939), + [anon_sym_untyped] = ACTIONS(1939), + [anon_sym_break] = ACTIONS(1939), + [anon_sym_continue] = ACTIONS(1939), + [anon_sym_LBRACK] = ACTIONS(1937), + [anon_sym_this] = ACTIONS(1939), + [anon_sym_QMARK] = ACTIONS(1939), + [anon_sym_AT] = ACTIONS(1939), + [anon_sym_AT_COLON] = ACTIONS(1937), + [anon_sym_try] = ACTIONS(1939), + [anon_sym_catch] = ACTIONS(1939), + [anon_sym_else] = ACTIONS(1939), + [anon_sym_if] = ACTIONS(1939), + [anon_sym_while] = ACTIONS(1939), + [anon_sym_do] = ACTIONS(1939), + [anon_sym_new] = ACTIONS(1939), + [anon_sym_TILDE] = ACTIONS(1937), + [anon_sym_BANG] = ACTIONS(1939), + [anon_sym_DASH] = ACTIONS(1939), + [anon_sym_PLUS_PLUS] = ACTIONS(1937), + [anon_sym_DASH_DASH] = ACTIONS(1937), + [anon_sym_PERCENT] = ACTIONS(1937), + [anon_sym_SLASH] = ACTIONS(1939), + [anon_sym_PLUS] = ACTIONS(1939), + [anon_sym_LT_LT] = ACTIONS(1937), + [anon_sym_GT_GT] = ACTIONS(1939), + [anon_sym_GT_GT_GT] = ACTIONS(1937), + [anon_sym_AMP] = ACTIONS(1939), + [anon_sym_PIPE] = ACTIONS(1939), + [anon_sym_CARET] = ACTIONS(1937), + [anon_sym_AMP_AMP] = ACTIONS(1937), + [anon_sym_PIPE_PIPE] = ACTIONS(1937), + [anon_sym_EQ_EQ] = ACTIONS(1937), + [anon_sym_BANG_EQ] = ACTIONS(1937), + [anon_sym_LT] = ACTIONS(1939), + [anon_sym_LT_EQ] = ACTIONS(1937), + [anon_sym_GT] = ACTIONS(1939), + [anon_sym_GT_EQ] = ACTIONS(1937), + [anon_sym_EQ_GT] = ACTIONS(1937), + [anon_sym_QMARK_QMARK] = ACTIONS(1937), + [anon_sym_EQ] = ACTIONS(1939), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1937), + [anon_sym_null] = ACTIONS(1939), + [anon_sym_macro] = ACTIONS(1939), + [anon_sym_abstract] = ACTIONS(1939), + [anon_sym_static] = ACTIONS(1939), + [anon_sym_public] = ACTIONS(1939), + [anon_sym_private] = ACTIONS(1939), + [anon_sym_extern] = ACTIONS(1939), + [anon_sym_inline] = ACTIONS(1939), + [anon_sym_overload] = ACTIONS(1939), + [anon_sym_override] = ACTIONS(1939), + [anon_sym_final] = ACTIONS(1939), + [anon_sym_class] = ACTIONS(1939), + [anon_sym_interface] = ACTIONS(1939), + [anon_sym_enum] = ACTIONS(1939), + [anon_sym_typedef] = ACTIONS(1939), + [anon_sym_function] = ACTIONS(1939), + [anon_sym_var] = ACTIONS(1939), + [aux_sym_integer_token1] = ACTIONS(1939), + [aux_sym_integer_token2] = ACTIONS(1937), + [aux_sym_float_token1] = ACTIONS(1939), + [aux_sym_float_token2] = ACTIONS(1937), + [anon_sym_true] = ACTIONS(1939), + [anon_sym_false] = ACTIONS(1939), + [aux_sym_string_token1] = ACTIONS(1937), + [aux_sym_string_token3] = ACTIONS(1937), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1937), [sym__closing_brace_unmarker] = ACTIONS(3), }, [385] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_case] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_this] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_GT_GT_GT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_QMARK_QMARK] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [sym__rangeOperator] = ACTIONS(562), - [anon_sym_null] = ACTIONS(564), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(564), - [aux_sym_integer_token2] = ACTIONS(562), - [aux_sym_float_token1] = ACTIONS(564), - [aux_sym_float_token2] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [aux_sym_string_token1] = ACTIONS(562), - [aux_sym_string_token3] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(562), + [sym_identifier] = ACTIONS(1911), + [anon_sym_POUND] = ACTIONS(1909), + [anon_sym_package] = ACTIONS(1911), + [anon_sym_DOT] = ACTIONS(1911), + [anon_sym_import] = ACTIONS(1911), + [anon_sym_STAR] = ACTIONS(1909), + [anon_sym_using] = ACTIONS(1911), + [anon_sym_throw] = ACTIONS(1911), + [anon_sym_LPAREN] = ACTIONS(1909), + [anon_sym_switch] = ACTIONS(1911), + [anon_sym_LBRACE] = ACTIONS(1909), + [anon_sym_case] = ACTIONS(1911), + [anon_sym_default] = ACTIONS(1911), + [anon_sym_cast] = ACTIONS(1911), + [anon_sym_COMMA] = ACTIONS(1909), + [anon_sym_DOLLARtype] = ACTIONS(1909), + [anon_sym_for] = ACTIONS(1911), + [anon_sym_return] = ACTIONS(1911), + [anon_sym_untyped] = ACTIONS(1911), + [anon_sym_break] = ACTIONS(1911), + [anon_sym_continue] = ACTIONS(1911), + [anon_sym_LBRACK] = ACTIONS(1909), + [anon_sym_this] = ACTIONS(1911), + [anon_sym_QMARK] = ACTIONS(1911), + [anon_sym_AT] = ACTIONS(1911), + [anon_sym_AT_COLON] = ACTIONS(1909), + [anon_sym_try] = ACTIONS(1911), + [anon_sym_catch] = ACTIONS(1911), + [anon_sym_else] = ACTIONS(1911), + [anon_sym_if] = ACTIONS(1911), + [anon_sym_while] = ACTIONS(1911), + [anon_sym_do] = ACTIONS(1911), + [anon_sym_new] = ACTIONS(1911), + [anon_sym_TILDE] = ACTIONS(1909), + [anon_sym_BANG] = ACTIONS(1911), + [anon_sym_DASH] = ACTIONS(1911), + [anon_sym_PLUS_PLUS] = ACTIONS(1909), + [anon_sym_DASH_DASH] = ACTIONS(1909), + [anon_sym_PERCENT] = ACTIONS(1909), + [anon_sym_SLASH] = ACTIONS(1911), + [anon_sym_PLUS] = ACTIONS(1911), + [anon_sym_LT_LT] = ACTIONS(1909), + [anon_sym_GT_GT] = ACTIONS(1911), + [anon_sym_GT_GT_GT] = ACTIONS(1909), + [anon_sym_AMP] = ACTIONS(1911), + [anon_sym_PIPE] = ACTIONS(1911), + [anon_sym_CARET] = ACTIONS(1909), + [anon_sym_AMP_AMP] = ACTIONS(1909), + [anon_sym_PIPE_PIPE] = ACTIONS(1909), + [anon_sym_EQ_EQ] = ACTIONS(1909), + [anon_sym_BANG_EQ] = ACTIONS(1909), + [anon_sym_LT] = ACTIONS(1911), + [anon_sym_LT_EQ] = ACTIONS(1909), + [anon_sym_GT] = ACTIONS(1911), + [anon_sym_GT_EQ] = ACTIONS(1909), + [anon_sym_EQ_GT] = ACTIONS(1909), + [anon_sym_QMARK_QMARK] = ACTIONS(1909), + [anon_sym_EQ] = ACTIONS(1911), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1909), + [anon_sym_null] = ACTIONS(1911), + [anon_sym_macro] = ACTIONS(1911), + [anon_sym_abstract] = ACTIONS(1911), + [anon_sym_static] = ACTIONS(1911), + [anon_sym_public] = ACTIONS(1911), + [anon_sym_private] = ACTIONS(1911), + [anon_sym_extern] = ACTIONS(1911), + [anon_sym_inline] = ACTIONS(1911), + [anon_sym_overload] = ACTIONS(1911), + [anon_sym_override] = ACTIONS(1911), + [anon_sym_final] = ACTIONS(1911), + [anon_sym_class] = ACTIONS(1911), + [anon_sym_interface] = ACTIONS(1911), + [anon_sym_enum] = ACTIONS(1911), + [anon_sym_typedef] = ACTIONS(1911), + [anon_sym_function] = ACTIONS(1911), + [anon_sym_var] = ACTIONS(1911), + [aux_sym_integer_token1] = ACTIONS(1911), + [aux_sym_integer_token2] = ACTIONS(1909), + [aux_sym_float_token1] = ACTIONS(1911), + [aux_sym_float_token2] = ACTIONS(1909), + [anon_sym_true] = ACTIONS(1911), + [anon_sym_false] = ACTIONS(1911), + [aux_sym_string_token1] = ACTIONS(1909), + [aux_sym_string_token3] = ACTIONS(1909), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1909), [sym__closing_brace_unmarker] = ACTIONS(3), }, [386] = { - [sym_identifier] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_package] = ACTIONS(1944), - [anon_sym_import] = ACTIONS(1944), - [anon_sym_using] = ACTIONS(1944), - [anon_sym_throw] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_case] = ACTIONS(1944), - [anon_sym_default] = ACTIONS(1944), - [anon_sym_cast] = ACTIONS(1944), - [anon_sym_DOLLARtype] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_untyped] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_this] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_AT_COLON] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_new] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_GT_GT_GT] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_EQ_GT] = ACTIONS(1946), - [anon_sym_QMARK_QMARK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym__rangeOperator] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1944), - [anon_sym_macro] = ACTIONS(1944), - [anon_sym_abstract] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_public] = ACTIONS(1944), - [anon_sym_private] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_inline] = ACTIONS(1944), - [anon_sym_overload] = ACTIONS(1944), - [anon_sym_override] = ACTIONS(1944), - [anon_sym_final] = ACTIONS(1944), - [anon_sym_class] = ACTIONS(1944), - [anon_sym_interface] = ACTIONS(1944), - [anon_sym_typedef] = ACTIONS(1944), - [anon_sym_function] = ACTIONS(1944), - [anon_sym_var] = ACTIONS(1944), - [aux_sym_integer_token1] = ACTIONS(1944), - [aux_sym_integer_token2] = ACTIONS(1946), - [aux_sym_float_token1] = ACTIONS(1944), - [aux_sym_float_token2] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [aux_sym_string_token1] = ACTIONS(1946), - [aux_sym_string_token3] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1915), + [anon_sym_POUND] = ACTIONS(1913), + [anon_sym_package] = ACTIONS(1915), + [anon_sym_DOT] = ACTIONS(1915), + [anon_sym_import] = ACTIONS(1915), + [anon_sym_STAR] = ACTIONS(1913), + [anon_sym_using] = ACTIONS(1915), + [anon_sym_throw] = ACTIONS(1915), + [anon_sym_LPAREN] = ACTIONS(1913), + [anon_sym_switch] = ACTIONS(1915), + [anon_sym_LBRACE] = ACTIONS(1913), + [anon_sym_case] = ACTIONS(1915), + [anon_sym_default] = ACTIONS(1915), + [anon_sym_cast] = ACTIONS(1915), + [anon_sym_COMMA] = ACTIONS(1913), + [anon_sym_DOLLARtype] = ACTIONS(1913), + [anon_sym_for] = ACTIONS(1915), + [anon_sym_return] = ACTIONS(1915), + [anon_sym_untyped] = ACTIONS(1915), + [anon_sym_break] = ACTIONS(1915), + [anon_sym_continue] = ACTIONS(1915), + [anon_sym_LBRACK] = ACTIONS(1913), + [anon_sym_this] = ACTIONS(1915), + [anon_sym_QMARK] = ACTIONS(1915), + [anon_sym_AT] = ACTIONS(1915), + [anon_sym_AT_COLON] = ACTIONS(1913), + [anon_sym_try] = ACTIONS(1915), + [anon_sym_catch] = ACTIONS(1915), + [anon_sym_else] = ACTIONS(1915), + [anon_sym_if] = ACTIONS(1915), + [anon_sym_while] = ACTIONS(1915), + [anon_sym_do] = ACTIONS(1915), + [anon_sym_new] = ACTIONS(1915), + [anon_sym_TILDE] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1915), + [anon_sym_DASH] = ACTIONS(1915), + [anon_sym_PLUS_PLUS] = ACTIONS(1913), + [anon_sym_DASH_DASH] = ACTIONS(1913), + [anon_sym_PERCENT] = ACTIONS(1913), + [anon_sym_SLASH] = ACTIONS(1915), + [anon_sym_PLUS] = ACTIONS(1915), + [anon_sym_LT_LT] = ACTIONS(1913), + [anon_sym_GT_GT] = ACTIONS(1915), + [anon_sym_GT_GT_GT] = ACTIONS(1913), + [anon_sym_AMP] = ACTIONS(1915), + [anon_sym_PIPE] = ACTIONS(1915), + [anon_sym_CARET] = ACTIONS(1913), + [anon_sym_AMP_AMP] = ACTIONS(1913), + [anon_sym_PIPE_PIPE] = ACTIONS(1913), + [anon_sym_EQ_EQ] = ACTIONS(1913), + [anon_sym_BANG_EQ] = ACTIONS(1913), + [anon_sym_LT] = ACTIONS(1915), + [anon_sym_LT_EQ] = ACTIONS(1913), + [anon_sym_GT] = ACTIONS(1915), + [anon_sym_GT_EQ] = ACTIONS(1913), + [anon_sym_EQ_GT] = ACTIONS(1913), + [anon_sym_QMARK_QMARK] = ACTIONS(1913), + [anon_sym_EQ] = ACTIONS(1915), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1913), + [anon_sym_null] = ACTIONS(1915), + [anon_sym_macro] = ACTIONS(1915), + [anon_sym_abstract] = ACTIONS(1915), + [anon_sym_static] = ACTIONS(1915), + [anon_sym_public] = ACTIONS(1915), + [anon_sym_private] = ACTIONS(1915), + [anon_sym_extern] = ACTIONS(1915), + [anon_sym_inline] = ACTIONS(1915), + [anon_sym_overload] = ACTIONS(1915), + [anon_sym_override] = ACTIONS(1915), + [anon_sym_final] = ACTIONS(1915), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_interface] = ACTIONS(1915), + [anon_sym_enum] = ACTIONS(1915), + [anon_sym_typedef] = ACTIONS(1915), + [anon_sym_function] = ACTIONS(1915), + [anon_sym_var] = ACTIONS(1915), + [aux_sym_integer_token1] = ACTIONS(1915), + [aux_sym_integer_token2] = ACTIONS(1913), + [aux_sym_float_token1] = ACTIONS(1915), + [aux_sym_float_token2] = ACTIONS(1913), + [anon_sym_true] = ACTIONS(1915), + [anon_sym_false] = ACTIONS(1915), + [aux_sym_string_token1] = ACTIONS(1913), + [aux_sym_string_token3] = ACTIONS(1913), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1913), [sym__closing_brace_unmarker] = ACTIONS(3), }, [387] = { - [sym_identifier] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_case] = ACTIONS(564), - [anon_sym_default] = ACTIONS(564), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(1594), - [anon_sym_this] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_GT_GT_GT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_QMARK_QMARK] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [sym__rangeOperator] = ACTIONS(562), - [anon_sym_null] = ACTIONS(564), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(564), - [aux_sym_integer_token2] = ACTIONS(562), - [aux_sym_float_token1] = ACTIONS(564), - [aux_sym_float_token2] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [aux_sym_string_token1] = ACTIONS(562), - [aux_sym_string_token3] = ACTIONS(562), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(562), + [sym_identifier] = ACTIONS(1919), + [anon_sym_POUND] = ACTIONS(1917), + [anon_sym_package] = ACTIONS(1919), + [anon_sym_DOT] = ACTIONS(1919), + [anon_sym_import] = ACTIONS(1919), + [anon_sym_STAR] = ACTIONS(1917), + [anon_sym_using] = ACTIONS(1919), + [anon_sym_throw] = ACTIONS(1919), + [anon_sym_LPAREN] = ACTIONS(1917), + [anon_sym_switch] = ACTIONS(1919), + [anon_sym_LBRACE] = ACTIONS(1917), + [anon_sym_case] = ACTIONS(1919), + [anon_sym_default] = ACTIONS(1919), + [anon_sym_cast] = ACTIONS(1919), + [anon_sym_COMMA] = ACTIONS(1917), + [anon_sym_DOLLARtype] = ACTIONS(1917), + [anon_sym_for] = ACTIONS(1919), + [anon_sym_return] = ACTIONS(1919), + [anon_sym_untyped] = ACTIONS(1919), + [anon_sym_break] = ACTIONS(1919), + [anon_sym_continue] = ACTIONS(1919), + [anon_sym_LBRACK] = ACTIONS(1917), + [anon_sym_this] = ACTIONS(1919), + [anon_sym_QMARK] = ACTIONS(1919), + [anon_sym_AT] = ACTIONS(1919), + [anon_sym_AT_COLON] = ACTIONS(1917), + [anon_sym_try] = ACTIONS(1919), + [anon_sym_catch] = ACTIONS(1919), + [anon_sym_else] = ACTIONS(1919), + [anon_sym_if] = ACTIONS(1919), + [anon_sym_while] = ACTIONS(1919), + [anon_sym_do] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1919), + [anon_sym_TILDE] = ACTIONS(1917), + [anon_sym_BANG] = ACTIONS(1919), + [anon_sym_DASH] = ACTIONS(1919), + [anon_sym_PLUS_PLUS] = ACTIONS(1917), + [anon_sym_DASH_DASH] = ACTIONS(1917), + [anon_sym_PERCENT] = ACTIONS(1917), + [anon_sym_SLASH] = ACTIONS(1919), + [anon_sym_PLUS] = ACTIONS(1919), + [anon_sym_LT_LT] = ACTIONS(1917), + [anon_sym_GT_GT] = ACTIONS(1919), + [anon_sym_GT_GT_GT] = ACTIONS(1917), + [anon_sym_AMP] = ACTIONS(1919), + [anon_sym_PIPE] = ACTIONS(1919), + [anon_sym_CARET] = ACTIONS(1917), + [anon_sym_AMP_AMP] = ACTIONS(1917), + [anon_sym_PIPE_PIPE] = ACTIONS(1917), + [anon_sym_EQ_EQ] = ACTIONS(1917), + [anon_sym_BANG_EQ] = ACTIONS(1917), + [anon_sym_LT] = ACTIONS(1919), + [anon_sym_LT_EQ] = ACTIONS(1917), + [anon_sym_GT] = ACTIONS(1919), + [anon_sym_GT_EQ] = ACTIONS(1917), + [anon_sym_EQ_GT] = ACTIONS(1917), + [anon_sym_QMARK_QMARK] = ACTIONS(1917), + [anon_sym_EQ] = ACTIONS(1919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1917), + [anon_sym_null] = ACTIONS(1919), + [anon_sym_macro] = ACTIONS(1919), + [anon_sym_abstract] = ACTIONS(1919), + [anon_sym_static] = ACTIONS(1919), + [anon_sym_public] = ACTIONS(1919), + [anon_sym_private] = ACTIONS(1919), + [anon_sym_extern] = ACTIONS(1919), + [anon_sym_inline] = ACTIONS(1919), + [anon_sym_overload] = ACTIONS(1919), + [anon_sym_override] = ACTIONS(1919), + [anon_sym_final] = ACTIONS(1919), + [anon_sym_class] = ACTIONS(1919), + [anon_sym_interface] = ACTIONS(1919), + [anon_sym_enum] = ACTIONS(1919), + [anon_sym_typedef] = ACTIONS(1919), + [anon_sym_function] = ACTIONS(1919), + [anon_sym_var] = ACTIONS(1919), + [aux_sym_integer_token1] = ACTIONS(1919), + [aux_sym_integer_token2] = ACTIONS(1917), + [aux_sym_float_token1] = ACTIONS(1919), + [aux_sym_float_token2] = ACTIONS(1917), + [anon_sym_true] = ACTIONS(1919), + [anon_sym_false] = ACTIONS(1919), + [aux_sym_string_token1] = ACTIONS(1917), + [aux_sym_string_token3] = ACTIONS(1917), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1917), [sym__closing_brace_unmarker] = ACTIONS(3), }, [388] = { - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_using] = ACTIONS(1948), - [anon_sym_throw] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_case] = ACTIONS(1948), - [anon_sym_default] = ACTIONS(1948), - [anon_sym_cast] = ACTIONS(1948), - [anon_sym_DOLLARtype] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_untyped] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_AT_COLON] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_new] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1950), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_LT_LT] = ACTIONS(1950), - [anon_sym_GT_GT] = ACTIONS(1948), - [anon_sym_GT_GT_GT] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1950), - [anon_sym_AMP_AMP] = ACTIONS(1950), - [anon_sym_PIPE_PIPE] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_LT_EQ] = ACTIONS(1950), - [anon_sym_GT] = ACTIONS(1948), - [anon_sym_GT_EQ] = ACTIONS(1950), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_QMARK] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(1948), - [sym__rangeOperator] = ACTIONS(1950), - [anon_sym_null] = ACTIONS(1948), - [anon_sym_macro] = ACTIONS(1948), - [anon_sym_abstract] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_public] = ACTIONS(1948), - [anon_sym_private] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_inline] = ACTIONS(1948), - [anon_sym_overload] = ACTIONS(1948), - [anon_sym_override] = ACTIONS(1948), - [anon_sym_final] = ACTIONS(1948), - [anon_sym_class] = ACTIONS(1948), - [anon_sym_interface] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1948), - [anon_sym_function] = ACTIONS(1948), - [anon_sym_var] = ACTIONS(1948), - [aux_sym_integer_token1] = ACTIONS(1948), - [aux_sym_integer_token2] = ACTIONS(1950), - [aux_sym_float_token1] = ACTIONS(1948), - [aux_sym_float_token2] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [aux_sym_string_token1] = ACTIONS(1950), - [aux_sym_string_token3] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1923), + [anon_sym_POUND] = ACTIONS(1921), + [anon_sym_package] = ACTIONS(1923), + [anon_sym_DOT] = ACTIONS(1923), + [anon_sym_import] = ACTIONS(1923), + [anon_sym_STAR] = ACTIONS(1921), + [anon_sym_using] = ACTIONS(1923), + [anon_sym_throw] = ACTIONS(1923), + [anon_sym_LPAREN] = ACTIONS(1921), + [anon_sym_switch] = ACTIONS(1923), + [anon_sym_LBRACE] = ACTIONS(1921), + [anon_sym_case] = ACTIONS(1923), + [anon_sym_default] = ACTIONS(1923), + [anon_sym_cast] = ACTIONS(1923), + [anon_sym_COMMA] = ACTIONS(1921), + [anon_sym_DOLLARtype] = ACTIONS(1921), + [anon_sym_for] = ACTIONS(1923), + [anon_sym_return] = ACTIONS(1923), + [anon_sym_untyped] = ACTIONS(1923), + [anon_sym_break] = ACTIONS(1923), + [anon_sym_continue] = ACTIONS(1923), + [anon_sym_LBRACK] = ACTIONS(1921), + [anon_sym_this] = ACTIONS(1923), + [anon_sym_QMARK] = ACTIONS(1923), + [anon_sym_AT] = ACTIONS(1923), + [anon_sym_AT_COLON] = ACTIONS(1921), + [anon_sym_try] = ACTIONS(1923), + [anon_sym_catch] = ACTIONS(1923), + [anon_sym_else] = ACTIONS(1923), + [anon_sym_if] = ACTIONS(1923), + [anon_sym_while] = ACTIONS(1923), + [anon_sym_do] = ACTIONS(1923), + [anon_sym_new] = ACTIONS(1923), + [anon_sym_TILDE] = ACTIONS(1921), + [anon_sym_BANG] = ACTIONS(1923), + [anon_sym_DASH] = ACTIONS(1923), + [anon_sym_PLUS_PLUS] = ACTIONS(1921), + [anon_sym_DASH_DASH] = ACTIONS(1921), + [anon_sym_PERCENT] = ACTIONS(1921), + [anon_sym_SLASH] = ACTIONS(1923), + [anon_sym_PLUS] = ACTIONS(1923), + [anon_sym_LT_LT] = ACTIONS(1921), + [anon_sym_GT_GT] = ACTIONS(1923), + [anon_sym_GT_GT_GT] = ACTIONS(1921), + [anon_sym_AMP] = ACTIONS(1923), + [anon_sym_PIPE] = ACTIONS(1923), + [anon_sym_CARET] = ACTIONS(1921), + [anon_sym_AMP_AMP] = ACTIONS(1921), + [anon_sym_PIPE_PIPE] = ACTIONS(1921), + [anon_sym_EQ_EQ] = ACTIONS(1921), + [anon_sym_BANG_EQ] = ACTIONS(1921), + [anon_sym_LT] = ACTIONS(1923), + [anon_sym_LT_EQ] = ACTIONS(1921), + [anon_sym_GT] = ACTIONS(1923), + [anon_sym_GT_EQ] = ACTIONS(1921), + [anon_sym_EQ_GT] = ACTIONS(1921), + [anon_sym_QMARK_QMARK] = ACTIONS(1921), + [anon_sym_EQ] = ACTIONS(1923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1921), + [anon_sym_null] = ACTIONS(1923), + [anon_sym_macro] = ACTIONS(1923), + [anon_sym_abstract] = ACTIONS(1923), + [anon_sym_static] = ACTIONS(1923), + [anon_sym_public] = ACTIONS(1923), + [anon_sym_private] = ACTIONS(1923), + [anon_sym_extern] = ACTIONS(1923), + [anon_sym_inline] = ACTIONS(1923), + [anon_sym_overload] = ACTIONS(1923), + [anon_sym_override] = ACTIONS(1923), + [anon_sym_final] = ACTIONS(1923), + [anon_sym_class] = ACTIONS(1923), + [anon_sym_interface] = ACTIONS(1923), + [anon_sym_enum] = ACTIONS(1923), + [anon_sym_typedef] = ACTIONS(1923), + [anon_sym_function] = ACTIONS(1923), + [anon_sym_var] = ACTIONS(1923), + [aux_sym_integer_token1] = ACTIONS(1923), + [aux_sym_integer_token2] = ACTIONS(1921), + [aux_sym_float_token1] = ACTIONS(1923), + [aux_sym_float_token2] = ACTIONS(1921), + [anon_sym_true] = ACTIONS(1923), + [anon_sym_false] = ACTIONS(1923), + [aux_sym_string_token1] = ACTIONS(1921), + [aux_sym_string_token3] = ACTIONS(1921), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1921), [sym__closing_brace_unmarker] = ACTIONS(3), }, [389] = { - [sym_identifier] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_package] = ACTIONS(1952), - [anon_sym_import] = ACTIONS(1952), - [anon_sym_using] = ACTIONS(1952), - [anon_sym_throw] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_case] = ACTIONS(1952), - [anon_sym_default] = ACTIONS(1952), - [anon_sym_cast] = ACTIONS(1952), - [anon_sym_DOLLARtype] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_untyped] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_this] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1952), - [anon_sym_AT_COLON] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_PERCENT] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_SLASH] = ACTIONS(1952), - [anon_sym_PLUS] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_GT_GT_GT] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_CARET] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_EQ_EQ] = ACTIONS(1954), - [anon_sym_BANG_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_QMARK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1952), - [sym__rangeOperator] = ACTIONS(1954), - [anon_sym_null] = ACTIONS(1952), - [anon_sym_macro] = ACTIONS(1952), - [anon_sym_abstract] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_inline] = ACTIONS(1952), - [anon_sym_overload] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_final] = ACTIONS(1952), - [anon_sym_class] = ACTIONS(1952), - [anon_sym_interface] = ACTIONS(1952), - [anon_sym_typedef] = ACTIONS(1952), - [anon_sym_function] = ACTIONS(1952), - [anon_sym_var] = ACTIONS(1952), - [aux_sym_integer_token1] = ACTIONS(1952), - [aux_sym_integer_token2] = ACTIONS(1954), - [aux_sym_float_token1] = ACTIONS(1952), - [aux_sym_float_token2] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [aux_sym_string_token1] = ACTIONS(1954), - [aux_sym_string_token3] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1927), + [anon_sym_POUND] = ACTIONS(1925), + [anon_sym_package] = ACTIONS(1927), + [anon_sym_DOT] = ACTIONS(1927), + [anon_sym_import] = ACTIONS(1927), + [anon_sym_STAR] = ACTIONS(1925), + [anon_sym_using] = ACTIONS(1927), + [anon_sym_throw] = ACTIONS(1927), + [anon_sym_LPAREN] = ACTIONS(1925), + [anon_sym_switch] = ACTIONS(1927), + [anon_sym_LBRACE] = ACTIONS(1925), + [anon_sym_case] = ACTIONS(1927), + [anon_sym_default] = ACTIONS(1927), + [anon_sym_cast] = ACTIONS(1927), + [anon_sym_COMMA] = ACTIONS(1925), + [anon_sym_DOLLARtype] = ACTIONS(1925), + [anon_sym_for] = ACTIONS(1927), + [anon_sym_return] = ACTIONS(1927), + [anon_sym_untyped] = ACTIONS(1927), + [anon_sym_break] = ACTIONS(1927), + [anon_sym_continue] = ACTIONS(1927), + [anon_sym_LBRACK] = ACTIONS(1925), + [anon_sym_this] = ACTIONS(1927), + [anon_sym_QMARK] = ACTIONS(1927), + [anon_sym_AT] = ACTIONS(1927), + [anon_sym_AT_COLON] = ACTIONS(1925), + [anon_sym_try] = ACTIONS(1927), + [anon_sym_catch] = ACTIONS(1927), + [anon_sym_else] = ACTIONS(1927), + [anon_sym_if] = ACTIONS(1927), + [anon_sym_while] = ACTIONS(1927), + [anon_sym_do] = ACTIONS(1927), + [anon_sym_new] = ACTIONS(1927), + [anon_sym_TILDE] = ACTIONS(1925), + [anon_sym_BANG] = ACTIONS(1927), + [anon_sym_DASH] = ACTIONS(1927), + [anon_sym_PLUS_PLUS] = ACTIONS(1925), + [anon_sym_DASH_DASH] = ACTIONS(1925), + [anon_sym_PERCENT] = ACTIONS(1925), + [anon_sym_SLASH] = ACTIONS(1927), + [anon_sym_PLUS] = ACTIONS(1927), + [anon_sym_LT_LT] = ACTIONS(1925), + [anon_sym_GT_GT] = ACTIONS(1927), + [anon_sym_GT_GT_GT] = ACTIONS(1925), + [anon_sym_AMP] = ACTIONS(1927), + [anon_sym_PIPE] = ACTIONS(1927), + [anon_sym_CARET] = ACTIONS(1925), + [anon_sym_AMP_AMP] = ACTIONS(1925), + [anon_sym_PIPE_PIPE] = ACTIONS(1925), + [anon_sym_EQ_EQ] = ACTIONS(1925), + [anon_sym_BANG_EQ] = ACTIONS(1925), + [anon_sym_LT] = ACTIONS(1927), + [anon_sym_LT_EQ] = ACTIONS(1925), + [anon_sym_GT] = ACTIONS(1927), + [anon_sym_GT_EQ] = ACTIONS(1925), + [anon_sym_EQ_GT] = ACTIONS(1925), + [anon_sym_QMARK_QMARK] = ACTIONS(1925), + [anon_sym_EQ] = ACTIONS(1927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1925), + [anon_sym_null] = ACTIONS(1927), + [anon_sym_macro] = ACTIONS(1927), + [anon_sym_abstract] = ACTIONS(1927), + [anon_sym_static] = ACTIONS(1927), + [anon_sym_public] = ACTIONS(1927), + [anon_sym_private] = ACTIONS(1927), + [anon_sym_extern] = ACTIONS(1927), + [anon_sym_inline] = ACTIONS(1927), + [anon_sym_overload] = ACTIONS(1927), + [anon_sym_override] = ACTIONS(1927), + [anon_sym_final] = ACTIONS(1927), + [anon_sym_class] = ACTIONS(1927), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1927), + [anon_sym_typedef] = ACTIONS(1927), + [anon_sym_function] = ACTIONS(1927), + [anon_sym_var] = ACTIONS(1927), + [aux_sym_integer_token1] = ACTIONS(1927), + [aux_sym_integer_token2] = ACTIONS(1925), + [aux_sym_float_token1] = ACTIONS(1927), + [aux_sym_float_token2] = ACTIONS(1925), + [anon_sym_true] = ACTIONS(1927), + [anon_sym_false] = ACTIONS(1927), + [aux_sym_string_token1] = ACTIONS(1925), + [aux_sym_string_token3] = ACTIONS(1925), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1925), [sym__closing_brace_unmarker] = ACTIONS(3), }, [390] = { - [sym_identifier] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_package] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_using] = ACTIONS(1956), - [anon_sym_throw] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_case] = ACTIONS(1956), - [anon_sym_default] = ACTIONS(1956), - [anon_sym_cast] = ACTIONS(1956), - [anon_sym_DOLLARtype] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_untyped] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_this] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_AT_COLON] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_new] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_LT_LT] = ACTIONS(1958), - [anon_sym_GT_GT] = ACTIONS(1956), - [anon_sym_GT_GT_GT] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_EQ_EQ] = ACTIONS(1958), - [anon_sym_BANG_EQ] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1956), - [anon_sym_GT_EQ] = ACTIONS(1958), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_QMARK] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1956), - [sym__rangeOperator] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1956), - [anon_sym_macro] = ACTIONS(1956), - [anon_sym_abstract] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_public] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_inline] = ACTIONS(1956), - [anon_sym_overload] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_final] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_interface] = ACTIONS(1956), - [anon_sym_typedef] = ACTIONS(1956), - [anon_sym_function] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1956), - [aux_sym_integer_token1] = ACTIONS(1956), - [aux_sym_integer_token2] = ACTIONS(1958), - [aux_sym_float_token1] = ACTIONS(1956), - [aux_sym_float_token2] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym_string_token1] = ACTIONS(1958), - [aux_sym_string_token3] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1931), + [anon_sym_POUND] = ACTIONS(1929), + [anon_sym_package] = ACTIONS(1931), + [anon_sym_DOT] = ACTIONS(1931), + [anon_sym_import] = ACTIONS(1931), + [anon_sym_STAR] = ACTIONS(1929), + [anon_sym_using] = ACTIONS(1931), + [anon_sym_throw] = ACTIONS(1931), + [anon_sym_LPAREN] = ACTIONS(1929), + [anon_sym_switch] = ACTIONS(1931), + [anon_sym_LBRACE] = ACTIONS(1929), + [anon_sym_case] = ACTIONS(1931), + [anon_sym_default] = ACTIONS(1931), + [anon_sym_cast] = ACTIONS(1931), + [anon_sym_COMMA] = ACTIONS(1929), + [anon_sym_DOLLARtype] = ACTIONS(1929), + [anon_sym_for] = ACTIONS(1931), + [anon_sym_return] = ACTIONS(1931), + [anon_sym_untyped] = ACTIONS(1931), + [anon_sym_break] = ACTIONS(1931), + [anon_sym_continue] = ACTIONS(1931), + [anon_sym_LBRACK] = ACTIONS(1929), + [anon_sym_this] = ACTIONS(1931), + [anon_sym_QMARK] = ACTIONS(1931), + [anon_sym_AT] = ACTIONS(1931), + [anon_sym_AT_COLON] = ACTIONS(1929), + [anon_sym_try] = ACTIONS(1931), + [anon_sym_catch] = ACTIONS(1931), + [anon_sym_else] = ACTIONS(1931), + [anon_sym_if] = ACTIONS(1931), + [anon_sym_while] = ACTIONS(1931), + [anon_sym_do] = ACTIONS(1931), + [anon_sym_new] = ACTIONS(1931), + [anon_sym_TILDE] = ACTIONS(1929), + [anon_sym_BANG] = ACTIONS(1931), + [anon_sym_DASH] = ACTIONS(1931), + [anon_sym_PLUS_PLUS] = ACTIONS(1929), + [anon_sym_DASH_DASH] = ACTIONS(1929), + [anon_sym_PERCENT] = ACTIONS(1929), + [anon_sym_SLASH] = ACTIONS(1931), + [anon_sym_PLUS] = ACTIONS(1931), + [anon_sym_LT_LT] = ACTIONS(1929), + [anon_sym_GT_GT] = ACTIONS(1931), + [anon_sym_GT_GT_GT] = ACTIONS(1929), + [anon_sym_AMP] = ACTIONS(1931), + [anon_sym_PIPE] = ACTIONS(1931), + [anon_sym_CARET] = ACTIONS(1929), + [anon_sym_AMP_AMP] = ACTIONS(1929), + [anon_sym_PIPE_PIPE] = ACTIONS(1929), + [anon_sym_EQ_EQ] = ACTIONS(1929), + [anon_sym_BANG_EQ] = ACTIONS(1929), + [anon_sym_LT] = ACTIONS(1931), + [anon_sym_LT_EQ] = ACTIONS(1929), + [anon_sym_GT] = ACTIONS(1931), + [anon_sym_GT_EQ] = ACTIONS(1929), + [anon_sym_EQ_GT] = ACTIONS(1929), + [anon_sym_QMARK_QMARK] = ACTIONS(1929), + [anon_sym_EQ] = ACTIONS(1931), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1929), + [anon_sym_null] = ACTIONS(1931), + [anon_sym_macro] = ACTIONS(1931), + [anon_sym_abstract] = ACTIONS(1931), + [anon_sym_static] = ACTIONS(1931), + [anon_sym_public] = ACTIONS(1931), + [anon_sym_private] = ACTIONS(1931), + [anon_sym_extern] = ACTIONS(1931), + [anon_sym_inline] = ACTIONS(1931), + [anon_sym_overload] = ACTIONS(1931), + [anon_sym_override] = ACTIONS(1931), + [anon_sym_final] = ACTIONS(1931), + [anon_sym_class] = ACTIONS(1931), + [anon_sym_interface] = ACTIONS(1931), + [anon_sym_enum] = ACTIONS(1931), + [anon_sym_typedef] = ACTIONS(1931), + [anon_sym_function] = ACTIONS(1931), + [anon_sym_var] = ACTIONS(1931), + [aux_sym_integer_token1] = ACTIONS(1931), + [aux_sym_integer_token2] = ACTIONS(1929), + [aux_sym_float_token1] = ACTIONS(1931), + [aux_sym_float_token2] = ACTIONS(1929), + [anon_sym_true] = ACTIONS(1931), + [anon_sym_false] = ACTIONS(1931), + [aux_sym_string_token1] = ACTIONS(1929), + [aux_sym_string_token3] = ACTIONS(1929), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1929), [sym__closing_brace_unmarker] = ACTIONS(3), }, [391] = { - [sym_identifier] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_package] = ACTIONS(1960), - [anon_sym_import] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_throw] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_case] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1960), - [anon_sym_cast] = ACTIONS(1960), - [anon_sym_DOLLARtype] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_untyped] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_this] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_AT_COLON] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_GT_GT_GT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP_AMP] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_LT_EQ] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1960), - [anon_sym_GT_EQ] = ACTIONS(1962), - [anon_sym_EQ_GT] = ACTIONS(1962), - [anon_sym_QMARK_QMARK] = ACTIONS(1962), - [anon_sym_EQ] = ACTIONS(1960), - [sym__rangeOperator] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_macro] = ACTIONS(1960), - [anon_sym_abstract] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_public] = ACTIONS(1960), - [anon_sym_private] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_overload] = ACTIONS(1960), - [anon_sym_override] = ACTIONS(1960), - [anon_sym_final] = ACTIONS(1960), - [anon_sym_class] = ACTIONS(1960), - [anon_sym_interface] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1960), - [anon_sym_function] = ACTIONS(1960), - [anon_sym_var] = ACTIONS(1960), - [aux_sym_integer_token1] = ACTIONS(1960), - [aux_sym_integer_token2] = ACTIONS(1962), - [aux_sym_float_token1] = ACTIONS(1960), - [aux_sym_float_token2] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [aux_sym_string_token1] = ACTIONS(1962), - [aux_sym_string_token3] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1783), + [anon_sym_POUND] = ACTIONS(1781), + [anon_sym_package] = ACTIONS(1783), + [anon_sym_DOT] = ACTIONS(1783), + [anon_sym_import] = ACTIONS(1783), + [anon_sym_STAR] = ACTIONS(1781), + [anon_sym_using] = ACTIONS(1783), + [anon_sym_throw] = ACTIONS(1783), + [anon_sym_LPAREN] = ACTIONS(1781), + [anon_sym_switch] = ACTIONS(1783), + [anon_sym_LBRACE] = ACTIONS(1781), + [anon_sym_case] = ACTIONS(1783), + [anon_sym_default] = ACTIONS(1783), + [anon_sym_cast] = ACTIONS(1783), + [anon_sym_COMMA] = ACTIONS(1781), + [anon_sym_DOLLARtype] = ACTIONS(1781), + [anon_sym_for] = ACTIONS(1783), + [anon_sym_return] = ACTIONS(1783), + [anon_sym_untyped] = ACTIONS(1783), + [anon_sym_break] = ACTIONS(1783), + [anon_sym_continue] = ACTIONS(1783), + [anon_sym_LBRACK] = ACTIONS(1781), + [anon_sym_this] = ACTIONS(1783), + [anon_sym_QMARK] = ACTIONS(1783), + [anon_sym_AT] = ACTIONS(1783), + [anon_sym_AT_COLON] = ACTIONS(1781), + [anon_sym_try] = ACTIONS(1783), + [anon_sym_catch] = ACTIONS(1783), + [anon_sym_else] = ACTIONS(1783), + [anon_sym_if] = ACTIONS(1783), + [anon_sym_while] = ACTIONS(1783), + [anon_sym_do] = ACTIONS(1783), + [anon_sym_new] = ACTIONS(1783), + [anon_sym_TILDE] = ACTIONS(1781), + [anon_sym_BANG] = ACTIONS(1783), + [anon_sym_DASH] = ACTIONS(1783), + [anon_sym_PLUS_PLUS] = ACTIONS(1781), + [anon_sym_DASH_DASH] = ACTIONS(1781), + [anon_sym_PERCENT] = ACTIONS(1781), + [anon_sym_SLASH] = ACTIONS(1783), + [anon_sym_PLUS] = ACTIONS(1783), + [anon_sym_LT_LT] = ACTIONS(1781), + [anon_sym_GT_GT] = ACTIONS(1783), + [anon_sym_GT_GT_GT] = ACTIONS(1781), + [anon_sym_AMP] = ACTIONS(1783), + [anon_sym_PIPE] = ACTIONS(1783), + [anon_sym_CARET] = ACTIONS(1781), + [anon_sym_AMP_AMP] = ACTIONS(1781), + [anon_sym_PIPE_PIPE] = ACTIONS(1781), + [anon_sym_EQ_EQ] = ACTIONS(1781), + [anon_sym_BANG_EQ] = ACTIONS(1781), + [anon_sym_LT] = ACTIONS(1783), + [anon_sym_LT_EQ] = ACTIONS(1781), + [anon_sym_GT] = ACTIONS(1783), + [anon_sym_GT_EQ] = ACTIONS(1781), + [anon_sym_EQ_GT] = ACTIONS(1781), + [anon_sym_QMARK_QMARK] = ACTIONS(1781), + [anon_sym_EQ] = ACTIONS(1783), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1781), + [anon_sym_null] = ACTIONS(1783), + [anon_sym_macro] = ACTIONS(1783), + [anon_sym_abstract] = ACTIONS(1783), + [anon_sym_static] = ACTIONS(1783), + [anon_sym_public] = ACTIONS(1783), + [anon_sym_private] = ACTIONS(1783), + [anon_sym_extern] = ACTIONS(1783), + [anon_sym_inline] = ACTIONS(1783), + [anon_sym_overload] = ACTIONS(1783), + [anon_sym_override] = ACTIONS(1783), + [anon_sym_final] = ACTIONS(1783), + [anon_sym_class] = ACTIONS(1783), + [anon_sym_interface] = ACTIONS(1783), + [anon_sym_enum] = ACTIONS(1783), + [anon_sym_typedef] = ACTIONS(1783), + [anon_sym_function] = ACTIONS(1783), + [anon_sym_var] = ACTIONS(1783), + [aux_sym_integer_token1] = ACTIONS(1783), + [aux_sym_integer_token2] = ACTIONS(1781), + [aux_sym_float_token1] = ACTIONS(1783), + [aux_sym_float_token2] = ACTIONS(1781), + [anon_sym_true] = ACTIONS(1783), + [anon_sym_false] = ACTIONS(1783), + [aux_sym_string_token1] = ACTIONS(1781), + [aux_sym_string_token3] = ACTIONS(1781), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1781), [sym__closing_brace_unmarker] = ACTIONS(3), }, [392] = { - [sym_identifier] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_using] = ACTIONS(1964), - [anon_sym_throw] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1964), - [anon_sym_default] = ACTIONS(1964), - [anon_sym_cast] = ACTIONS(1964), - [anon_sym_DOLLARtype] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_untyped] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_AT_COLON] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_GT_GT_GT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym_AMP_AMP] = ACTIONS(1966), - [anon_sym_PIPE_PIPE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_BANG_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1964), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1966), - [anon_sym_QMARK_QMARK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1964), - [sym__rangeOperator] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1964), - [anon_sym_macro] = ACTIONS(1964), - [anon_sym_abstract] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_private] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_inline] = ACTIONS(1964), - [anon_sym_overload] = ACTIONS(1964), - [anon_sym_override] = ACTIONS(1964), - [anon_sym_final] = ACTIONS(1964), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_interface] = ACTIONS(1964), - [anon_sym_typedef] = ACTIONS(1964), - [anon_sym_function] = ACTIONS(1964), - [anon_sym_var] = ACTIONS(1964), - [aux_sym_integer_token1] = ACTIONS(1964), - [aux_sym_integer_token2] = ACTIONS(1966), - [aux_sym_float_token1] = ACTIONS(1964), - [aux_sym_float_token2] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [aux_sym_string_token1] = ACTIONS(1966), - [aux_sym_string_token3] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1966), + [sym_else_clause] = STATE(572), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2631), + [sym__closing_brace_marker] = ACTIONS(2629), [sym__closing_brace_unmarker] = ACTIONS(3), }, [393] = { - [sym_identifier] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_package] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_cast] = ACTIONS(1968), - [anon_sym_DOLLARtype] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_untyped] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_this] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1968), - [anon_sym_AT_COLON] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_GT_GT_GT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1970), - [anon_sym_BANG_EQ] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_LT_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1968), - [sym__rangeOperator] = ACTIONS(1970), - [anon_sym_null] = ACTIONS(1968), - [anon_sym_macro] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_inline] = ACTIONS(1968), - [anon_sym_overload] = ACTIONS(1968), - [anon_sym_override] = ACTIONS(1968), - [anon_sym_final] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_typedef] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [aux_sym_integer_token1] = ACTIONS(1968), - [aux_sym_integer_token2] = ACTIONS(1970), - [aux_sym_float_token1] = ACTIONS(1968), - [aux_sym_float_token2] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [aux_sym_string_token1] = ACTIONS(1970), - [aux_sym_string_token3] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1970), + [sym_identifier] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_package] = ACTIONS(2633), + [anon_sym_import] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_cast] = ACTIONS(2633), + [anon_sym_DOLLARtype] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_untyped] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_this] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_AT_COLON] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_catch] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_QMARK_QMARK] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_macro] = ACTIONS(2633), + [anon_sym_abstract] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_public] = ACTIONS(2633), + [anon_sym_private] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_overload] = ACTIONS(2633), + [anon_sym_override] = ACTIONS(2633), + [anon_sym_final] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_interface] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_function] = ACTIONS(2633), + [anon_sym_var] = ACTIONS(2633), + [aux_sym_integer_token1] = ACTIONS(2633), + [aux_sym_integer_token2] = ACTIONS(2635), + [aux_sym_float_token1] = ACTIONS(2633), + [aux_sym_float_token2] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [aux_sym_string_token1] = ACTIONS(2635), + [aux_sym_string_token3] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2637), + [sym__closing_brace_marker] = ACTIONS(2635), [sym__closing_brace_unmarker] = ACTIONS(3), }, [394] = { - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_case] = ACTIONS(1972), - [anon_sym_default] = ACTIONS(1972), - [anon_sym_cast] = ACTIONS(1972), - [anon_sym_DOLLARtype] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_untyped] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_this] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_AT_COLON] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_GT_GT_GT] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_EQ_EQ] = ACTIONS(1974), - [anon_sym_BANG_EQ] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_LT_EQ] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_EQ] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_QMARK_QMARK] = ACTIONS(1974), - [anon_sym_EQ] = ACTIONS(1972), - [sym__rangeOperator] = ACTIONS(1974), - [anon_sym_null] = ACTIONS(1972), - [anon_sym_macro] = ACTIONS(1972), - [anon_sym_abstract] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_public] = ACTIONS(1972), - [anon_sym_private] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_overload] = ACTIONS(1972), - [anon_sym_override] = ACTIONS(1972), - [anon_sym_final] = ACTIONS(1972), - [anon_sym_class] = ACTIONS(1972), - [anon_sym_interface] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_var] = ACTIONS(1972), - [aux_sym_integer_token1] = ACTIONS(1972), - [aux_sym_integer_token2] = ACTIONS(1974), - [aux_sym_float_token1] = ACTIONS(1972), - [aux_sym_float_token2] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [aux_sym_string_token1] = ACTIONS(1974), - [aux_sym_string_token3] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1974), + [sym_identifier] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2641), + [anon_sym_package] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_cast] = ACTIONS(2639), + [anon_sym_DOLLARtype] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_untyped] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_this] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_AT_COLON] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_QMARK_QMARK] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [anon_sym_null] = ACTIONS(2639), + [anon_sym_macro] = ACTIONS(2639), + [anon_sym_abstract] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_public] = ACTIONS(2639), + [anon_sym_private] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_overload] = ACTIONS(2639), + [anon_sym_override] = ACTIONS(2639), + [anon_sym_final] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_function] = ACTIONS(2639), + [anon_sym_var] = ACTIONS(2639), + [aux_sym_integer_token1] = ACTIONS(2639), + [aux_sym_integer_token2] = ACTIONS(2641), + [aux_sym_float_token1] = ACTIONS(2639), + [aux_sym_float_token2] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [aux_sym_string_token1] = ACTIONS(2641), + [aux_sym_string_token3] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2643), + [sym__closing_brace_marker] = ACTIONS(2641), [sym__closing_brace_unmarker] = ACTIONS(3), }, [395] = { - [sym_identifier] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_package] = ACTIONS(1976), - [anon_sym_import] = ACTIONS(1976), - [anon_sym_using] = ACTIONS(1976), - [anon_sym_throw] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_switch] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_case] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1976), - [anon_sym_cast] = ACTIONS(1976), - [anon_sym_DOLLARtype] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_untyped] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_this] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1976), - [anon_sym_AT_COLON] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_new] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [anon_sym_PLUS_PLUS] = ACTIONS(1978), - [anon_sym_DASH_DASH] = ACTIONS(1978), - [anon_sym_PERCENT] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_SLASH] = ACTIONS(1976), - [anon_sym_PLUS] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_GT_GT_GT] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_CARET] = ACTIONS(1978), - [anon_sym_AMP_AMP] = ACTIONS(1978), - [anon_sym_PIPE_PIPE] = ACTIONS(1978), - [anon_sym_EQ_EQ] = ACTIONS(1978), - [anon_sym_BANG_EQ] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_LT_EQ] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1976), - [anon_sym_GT_EQ] = ACTIONS(1978), - [anon_sym_EQ_GT] = ACTIONS(1978), - [anon_sym_QMARK_QMARK] = ACTIONS(1978), - [anon_sym_EQ] = ACTIONS(1976), - [sym__rangeOperator] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1976), - [anon_sym_macro] = ACTIONS(1976), - [anon_sym_abstract] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_public] = ACTIONS(1976), - [anon_sym_private] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_inline] = ACTIONS(1976), - [anon_sym_overload] = ACTIONS(1976), - [anon_sym_override] = ACTIONS(1976), - [anon_sym_final] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1976), - [anon_sym_interface] = ACTIONS(1976), - [anon_sym_typedef] = ACTIONS(1976), - [anon_sym_function] = ACTIONS(1976), - [anon_sym_var] = ACTIONS(1976), - [aux_sym_integer_token1] = ACTIONS(1976), - [aux_sym_integer_token2] = ACTIONS(1978), - [aux_sym_float_token1] = ACTIONS(1976), - [aux_sym_float_token2] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [aux_sym_string_token1] = ACTIONS(1978), - [aux_sym_string_token3] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1978), + [ts_builtin_sym_end] = ACTIONS(1905), + [sym_identifier] = ACTIONS(1907), + [anon_sym_POUND] = ACTIONS(1905), + [anon_sym_package] = ACTIONS(1907), + [anon_sym_DOT] = ACTIONS(1907), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_STAR] = ACTIONS(1905), + [anon_sym_using] = ACTIONS(1907), + [anon_sym_throw] = ACTIONS(1907), + [anon_sym_LPAREN] = ACTIONS(1905), + [anon_sym_switch] = ACTIONS(1907), + [anon_sym_LBRACE] = ACTIONS(1905), + [anon_sym_cast] = ACTIONS(1907), + [anon_sym_DOLLARtype] = ACTIONS(1905), + [anon_sym_for] = ACTIONS(1907), + [anon_sym_return] = ACTIONS(1907), + [anon_sym_untyped] = ACTIONS(1907), + [anon_sym_break] = ACTIONS(1907), + [anon_sym_continue] = ACTIONS(1907), + [anon_sym_LBRACK] = ACTIONS(1905), + [anon_sym_this] = ACTIONS(1907), + [anon_sym_QMARK] = ACTIONS(1907), + [anon_sym_AT] = ACTIONS(1907), + [anon_sym_AT_COLON] = ACTIONS(1905), + [anon_sym_try] = ACTIONS(1907), + [anon_sym_catch] = ACTIONS(1907), + [anon_sym_else] = ACTIONS(1907), + [anon_sym_if] = ACTIONS(1907), + [anon_sym_while] = ACTIONS(1907), + [anon_sym_do] = ACTIONS(1907), + [anon_sym_new] = ACTIONS(1907), + [anon_sym_TILDE] = ACTIONS(1905), + [anon_sym_BANG] = ACTIONS(1907), + [anon_sym_DASH] = ACTIONS(1907), + [anon_sym_PLUS_PLUS] = ACTIONS(1905), + [anon_sym_DASH_DASH] = ACTIONS(1905), + [anon_sym_PERCENT] = ACTIONS(1905), + [anon_sym_SLASH] = ACTIONS(1907), + [anon_sym_PLUS] = ACTIONS(1907), + [anon_sym_LT_LT] = ACTIONS(1905), + [anon_sym_GT_GT] = ACTIONS(1907), + [anon_sym_GT_GT_GT] = ACTIONS(1905), + [anon_sym_AMP] = ACTIONS(1907), + [anon_sym_PIPE] = ACTIONS(1907), + [anon_sym_CARET] = ACTIONS(1905), + [anon_sym_AMP_AMP] = ACTIONS(1905), + [anon_sym_PIPE_PIPE] = ACTIONS(1905), + [anon_sym_EQ_EQ] = ACTIONS(1905), + [anon_sym_BANG_EQ] = ACTIONS(1905), + [anon_sym_LT] = ACTIONS(1907), + [anon_sym_LT_EQ] = ACTIONS(1905), + [anon_sym_GT] = ACTIONS(1907), + [anon_sym_GT_EQ] = ACTIONS(1905), + [anon_sym_EQ_GT] = ACTIONS(1905), + [anon_sym_QMARK_QMARK] = ACTIONS(1905), + [anon_sym_EQ] = ACTIONS(1907), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1905), + [anon_sym_null] = ACTIONS(1907), + [anon_sym_macro] = ACTIONS(1907), + [anon_sym_abstract] = ACTIONS(1907), + [anon_sym_static] = ACTIONS(1907), + [anon_sym_public] = ACTIONS(1907), + [anon_sym_private] = ACTIONS(1907), + [anon_sym_extern] = ACTIONS(1907), + [anon_sym_inline] = ACTIONS(1907), + [anon_sym_overload] = ACTIONS(1907), + [anon_sym_override] = ACTIONS(1907), + [anon_sym_final] = ACTIONS(1907), + [anon_sym_class] = ACTIONS(1907), + [anon_sym_interface] = ACTIONS(1907), + [anon_sym_enum] = ACTIONS(1907), + [anon_sym_typedef] = ACTIONS(1907), + [anon_sym_function] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1907), + [aux_sym_integer_token1] = ACTIONS(1907), + [aux_sym_integer_token2] = ACTIONS(1905), + [aux_sym_float_token1] = ACTIONS(1907), + [aux_sym_float_token2] = ACTIONS(1905), + [anon_sym_true] = ACTIONS(1907), + [anon_sym_false] = ACTIONS(1907), + [aux_sym_string_token1] = ACTIONS(1905), + [aux_sym_string_token3] = ACTIONS(1905), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1905), [sym__closing_brace_unmarker] = ACTIONS(3), }, [396] = { - [sym_identifier] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_package] = ACTIONS(1980), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_using] = ACTIONS(1980), - [anon_sym_throw] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1980), - [anon_sym_default] = ACTIONS(1980), - [anon_sym_cast] = ACTIONS(1980), - [anon_sym_DOLLARtype] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_untyped] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1980), - [anon_sym_AT_COLON] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_new] = ACTIONS(1980), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1980), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1980), - [anon_sym_GT_GT_GT] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_CARET] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1982), - [anon_sym_BANG_EQ] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1982), - [anon_sym_EQ_GT] = ACTIONS(1982), - [anon_sym_QMARK_QMARK] = ACTIONS(1982), - [anon_sym_EQ] = ACTIONS(1980), - [sym__rangeOperator] = ACTIONS(1982), - [anon_sym_null] = ACTIONS(1980), - [anon_sym_macro] = ACTIONS(1980), - [anon_sym_abstract] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_inline] = ACTIONS(1980), - [anon_sym_overload] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_final] = ACTIONS(1980), - [anon_sym_class] = ACTIONS(1980), - [anon_sym_interface] = ACTIONS(1980), - [anon_sym_typedef] = ACTIONS(1980), - [anon_sym_function] = ACTIONS(1980), - [anon_sym_var] = ACTIONS(1980), - [aux_sym_integer_token1] = ACTIONS(1980), - [aux_sym_integer_token2] = ACTIONS(1982), - [aux_sym_float_token1] = ACTIONS(1980), - [aux_sym_float_token2] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [aux_sym_string_token1] = ACTIONS(1982), - [aux_sym_string_token3] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1982), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [397] = { - [sym_identifier] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_package] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_using] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_cast] = ACTIONS(1984), - [anon_sym_DOLLARtype] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_untyped] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_this] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1984), - [anon_sym_AT_COLON] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PERCENT] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_GT_GT_GT] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_PIPE_PIPE] = ACTIONS(1986), - [anon_sym_EQ_EQ] = ACTIONS(1986), - [anon_sym_BANG_EQ] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1984), - [anon_sym_GT_EQ] = ACTIONS(1986), - [anon_sym_EQ_GT] = ACTIONS(1986), - [anon_sym_QMARK_QMARK] = ACTIONS(1986), - [anon_sym_EQ] = ACTIONS(1984), - [sym__rangeOperator] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1984), - [anon_sym_macro] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_inline] = ACTIONS(1984), - [anon_sym_overload] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_final] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [aux_sym_integer_token1] = ACTIONS(1984), - [aux_sym_integer_token2] = ACTIONS(1986), - [aux_sym_float_token1] = ACTIONS(1984), - [aux_sym_float_token2] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [aux_sym_string_token1] = ACTIONS(1986), - [aux_sym_string_token3] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1986), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_package] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_COLON] = ACTIONS(1757), + [anon_sym_cast] = ACTIONS(1755), + [anon_sym_DOLLARtype] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_untyped] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_this] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_AT_COLON] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_EQ_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_null] = ACTIONS(1755), + [anon_sym_macro] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_overload] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_final] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_typedef] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [aux_sym_integer_token1] = ACTIONS(1755), + [aux_sym_integer_token2] = ACTIONS(1753), + [aux_sym_float_token1] = ACTIONS(1755), + [aux_sym_float_token2] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1753), + [aux_sym_string_token3] = ACTIONS(1753), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [398] = { - [sym_identifier] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_package] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_throw] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_cast] = ACTIONS(1988), - [anon_sym_DOLLARtype] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_untyped] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_this] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_AT_COLON] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [anon_sym_PERCENT] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_LT_LT] = ACTIONS(1990), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_GT_GT_GT] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_CARET] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1990), - [anon_sym_PIPE_PIPE] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1990), - [anon_sym_BANG_EQ] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(1988), - [anon_sym_GT_EQ] = ACTIONS(1990), - [anon_sym_EQ_GT] = ACTIONS(1990), - [anon_sym_QMARK_QMARK] = ACTIONS(1990), - [anon_sym_EQ] = ACTIONS(1988), - [sym__rangeOperator] = ACTIONS(1990), - [anon_sym_null] = ACTIONS(1988), - [anon_sym_macro] = ACTIONS(1988), - [anon_sym_abstract] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_overload] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_final] = ACTIONS(1988), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_interface] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_var] = ACTIONS(1988), - [aux_sym_integer_token1] = ACTIONS(1988), - [aux_sym_integer_token2] = ACTIONS(1990), - [aux_sym_float_token1] = ACTIONS(1988), - [aux_sym_float_token2] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [aux_sym_string_token1] = ACTIONS(1990), - [aux_sym_string_token3] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [399] = { - [sym_identifier] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_package] = ACTIONS(1992), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_using] = ACTIONS(1992), - [anon_sym_throw] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_case] = ACTIONS(1992), - [anon_sym_default] = ACTIONS(1992), - [anon_sym_cast] = ACTIONS(1992), - [anon_sym_DOLLARtype] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_untyped] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_this] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1992), - [anon_sym_AT_COLON] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1994), - [anon_sym_PERCENT] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_SLASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_LT_LT] = ACTIONS(1994), - [anon_sym_GT_GT] = ACTIONS(1992), - [anon_sym_GT_GT_GT] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_CARET] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_EQ_EQ] = ACTIONS(1994), - [anon_sym_BANG_EQ] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_LT_EQ] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_EQ] = ACTIONS(1994), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_QMARK_QMARK] = ACTIONS(1994), - [anon_sym_EQ] = ACTIONS(1992), - [sym__rangeOperator] = ACTIONS(1994), - [anon_sym_null] = ACTIONS(1992), - [anon_sym_macro] = ACTIONS(1992), - [anon_sym_abstract] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_inline] = ACTIONS(1992), - [anon_sym_overload] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_final] = ACTIONS(1992), - [anon_sym_class] = ACTIONS(1992), - [anon_sym_interface] = ACTIONS(1992), - [anon_sym_typedef] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_var] = ACTIONS(1992), - [aux_sym_integer_token1] = ACTIONS(1992), - [aux_sym_integer_token2] = ACTIONS(1994), - [aux_sym_float_token1] = ACTIONS(1992), - [aux_sym_float_token2] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [aux_sym_string_token1] = ACTIONS(1994), - [aux_sym_string_token3] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1994), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2645), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2649), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [400] = { - [sym_identifier] = ACTIONS(1996), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_package] = ACTIONS(1996), - [anon_sym_import] = ACTIONS(1996), - [anon_sym_using] = ACTIONS(1996), - [anon_sym_throw] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_case] = ACTIONS(1996), - [anon_sym_default] = ACTIONS(1996), - [anon_sym_cast] = ACTIONS(1996), - [anon_sym_DOLLARtype] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_untyped] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_this] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1996), - [anon_sym_AT_COLON] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_new] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(1998), - [anon_sym_PERCENT] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_SLASH] = ACTIONS(1996), - [anon_sym_PLUS] = ACTIONS(1996), - [anon_sym_LT_LT] = ACTIONS(1998), - [anon_sym_GT_GT] = ACTIONS(1996), - [anon_sym_GT_GT_GT] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1998), - [anon_sym_AMP_AMP] = ACTIONS(1998), - [anon_sym_PIPE_PIPE] = ACTIONS(1998), - [anon_sym_EQ_EQ] = ACTIONS(1998), - [anon_sym_BANG_EQ] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_LT_EQ] = ACTIONS(1998), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_GT_EQ] = ACTIONS(1998), - [anon_sym_EQ_GT] = ACTIONS(1998), - [anon_sym_QMARK_QMARK] = ACTIONS(1998), - [anon_sym_EQ] = ACTIONS(1996), - [sym__rangeOperator] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(1996), - [anon_sym_macro] = ACTIONS(1996), - [anon_sym_abstract] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_public] = ACTIONS(1996), - [anon_sym_private] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_inline] = ACTIONS(1996), - [anon_sym_overload] = ACTIONS(1996), - [anon_sym_override] = ACTIONS(1996), - [anon_sym_final] = ACTIONS(1996), - [anon_sym_class] = ACTIONS(1996), - [anon_sym_interface] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1996), - [anon_sym_function] = ACTIONS(1996), - [anon_sym_var] = ACTIONS(1996), - [aux_sym_integer_token1] = ACTIONS(1996), - [aux_sym_integer_token2] = ACTIONS(1998), - [aux_sym_float_token1] = ACTIONS(1996), - [aux_sym_float_token2] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [aux_sym_string_token1] = ACTIONS(1998), - [aux_sym_string_token3] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1998), + [ts_builtin_sym_end] = ACTIONS(1636), + [sym_identifier] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_package] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_using] = ACTIONS(1638), + [anon_sym_throw] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_switch] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_cast] = ACTIONS(1638), + [anon_sym_DOLLARtype] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_untyped] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_this] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_AT_COLON] = ACTIONS(1636), + [anon_sym_try] = ACTIONS(1638), + [anon_sym_catch] = ACTIONS(1638), + [anon_sym_else] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1638), + [anon_sym_GT_GT_GT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_EQ_GT] = ACTIONS(1636), + [anon_sym_QMARK_QMARK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1636), + [anon_sym_null] = ACTIONS(1638), + [anon_sym_macro] = ACTIONS(1638), + [anon_sym_abstract] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_public] = ACTIONS(1638), + [anon_sym_private] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_inline] = ACTIONS(1638), + [anon_sym_overload] = ACTIONS(1638), + [anon_sym_override] = ACTIONS(1638), + [anon_sym_final] = ACTIONS(1638), + [anon_sym_class] = ACTIONS(1638), + [anon_sym_interface] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_typedef] = ACTIONS(1638), + [anon_sym_function] = ACTIONS(1638), + [anon_sym_var] = ACTIONS(1638), + [aux_sym_integer_token1] = ACTIONS(1638), + [aux_sym_integer_token2] = ACTIONS(1636), + [aux_sym_float_token1] = ACTIONS(1638), + [aux_sym_float_token2] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [aux_sym_string_token1] = ACTIONS(1636), + [aux_sym_string_token3] = ACTIONS(1636), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [401] = { - [sym_identifier] = ACTIONS(2000), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_package] = ACTIONS(2000), - [anon_sym_import] = ACTIONS(2000), - [anon_sym_using] = ACTIONS(2000), - [anon_sym_throw] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_case] = ACTIONS(2000), - [anon_sym_default] = ACTIONS(2000), - [anon_sym_cast] = ACTIONS(2000), - [anon_sym_DOLLARtype] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_untyped] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_this] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(2000), - [anon_sym_AT_COLON] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_new] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_PERCENT] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT] = ACTIONS(2000), - [anon_sym_GT_GT_GT] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2002), - [anon_sym_AMP_AMP] = ACTIONS(2002), - [anon_sym_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2000), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2002), - [anon_sym_QMARK_QMARK] = ACTIONS(2002), - [anon_sym_EQ] = ACTIONS(2000), - [sym__rangeOperator] = ACTIONS(2002), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_macro] = ACTIONS(2000), - [anon_sym_abstract] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_public] = ACTIONS(2000), - [anon_sym_private] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), - [anon_sym_overload] = ACTIONS(2000), - [anon_sym_override] = ACTIONS(2000), - [anon_sym_final] = ACTIONS(2000), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_interface] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(2000), - [anon_sym_function] = ACTIONS(2000), - [anon_sym_var] = ACTIONS(2000), - [aux_sym_integer_token1] = ACTIONS(2000), - [aux_sym_integer_token2] = ACTIONS(2002), - [aux_sym_float_token1] = ACTIONS(2000), - [aux_sym_float_token2] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [aux_sym_string_token1] = ACTIONS(2002), - [aux_sym_string_token3] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_package] = ACTIONS(2661), + [anon_sym_import] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_cast] = ACTIONS(2661), + [anon_sym_DOLLARtype] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_untyped] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_this] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_AT_COLON] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_catch] = ACTIONS(2661), + [anon_sym_else] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PERCENT] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2663), + [anon_sym_GT_GT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_PIPE_PIPE] = ACTIONS(2663), + [anon_sym_EQ_EQ] = ACTIONS(2663), + [anon_sym_BANG_EQ] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2663), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2663), + [anon_sym_EQ_GT] = ACTIONS(2663), + [anon_sym_QMARK_QMARK] = ACTIONS(2663), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2661), + [anon_sym_macro] = ACTIONS(2661), + [anon_sym_abstract] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_public] = ACTIONS(2661), + [anon_sym_private] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_overload] = ACTIONS(2661), + [anon_sym_override] = ACTIONS(2661), + [anon_sym_final] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_interface] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_function] = ACTIONS(2661), + [anon_sym_var] = ACTIONS(2661), + [aux_sym_integer_token1] = ACTIONS(2661), + [aux_sym_integer_token2] = ACTIONS(2663), + [aux_sym_float_token1] = ACTIONS(2661), + [aux_sym_float_token2] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [aux_sym_string_token1] = ACTIONS(2663), + [aux_sym_string_token3] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2665), + [sym__closing_brace_marker] = ACTIONS(2663), [sym__closing_brace_unmarker] = ACTIONS(3), }, [402] = { - [sym_identifier] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_package] = ACTIONS(2004), - [anon_sym_import] = ACTIONS(2004), - [anon_sym_using] = ACTIONS(2004), - [anon_sym_throw] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_case] = ACTIONS(2004), - [anon_sym_default] = ACTIONS(2004), - [anon_sym_cast] = ACTIONS(2004), - [anon_sym_DOLLARtype] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_untyped] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(2004), - [anon_sym_AT_COLON] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_LT_LT] = ACTIONS(2006), - [anon_sym_GT_GT] = ACTIONS(2004), - [anon_sym_GT_GT_GT] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym_AMP_AMP] = ACTIONS(2006), - [anon_sym_PIPE_PIPE] = ACTIONS(2006), - [anon_sym_EQ_EQ] = ACTIONS(2006), - [anon_sym_BANG_EQ] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2006), - [anon_sym_GT] = ACTIONS(2004), - [anon_sym_GT_EQ] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2006), - [anon_sym_QMARK_QMARK] = ACTIONS(2006), - [anon_sym_EQ] = ACTIONS(2004), - [sym__rangeOperator] = ACTIONS(2006), - [anon_sym_null] = ACTIONS(2004), - [anon_sym_macro] = ACTIONS(2004), - [anon_sym_abstract] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_private] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), - [anon_sym_overload] = ACTIONS(2004), - [anon_sym_override] = ACTIONS(2004), - [anon_sym_final] = ACTIONS(2004), - [anon_sym_class] = ACTIONS(2004), - [anon_sym_interface] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(2004), - [anon_sym_var] = ACTIONS(2004), - [aux_sym_integer_token1] = ACTIONS(2004), - [aux_sym_integer_token2] = ACTIONS(2006), - [aux_sym_float_token1] = ACTIONS(2004), - [aux_sym_float_token2] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [aux_sym_string_token1] = ACTIONS(2006), - [aux_sym_string_token3] = ACTIONS(2006), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2006), + [sym_else_clause] = STATE(587), + [sym_identifier] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_package] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_case] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_cast] = ACTIONS(2667), + [anon_sym_DOLLARtype] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_untyped] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_this] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_AT_COLON] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_EQ_GT] = ACTIONS(2669), + [anon_sym_QMARK_QMARK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_null] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym_overload] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_final] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [aux_sym_integer_token1] = ACTIONS(2667), + [aux_sym_integer_token2] = ACTIONS(2669), + [aux_sym_float_token1] = ACTIONS(2667), + [aux_sym_float_token2] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym_string_token1] = ACTIONS(2669), + [aux_sym_string_token3] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2669), [sym__closing_brace_unmarker] = ACTIONS(3), }, [403] = { - [sym_identifier] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_package] = ACTIONS(2008), - [anon_sym_import] = ACTIONS(2008), - [anon_sym_using] = ACTIONS(2008), - [anon_sym_throw] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2008), - [anon_sym_default] = ACTIONS(2008), - [anon_sym_cast] = ACTIONS(2008), - [anon_sym_DOLLARtype] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_untyped] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_this] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2008), - [anon_sym_AT_COLON] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_new] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym_PERCENT] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_LT_LT] = ACTIONS(2010), - [anon_sym_GT_GT] = ACTIONS(2008), - [anon_sym_GT_GT_GT] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_PIPE] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2010), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [anon_sym_PIPE_PIPE] = ACTIONS(2010), - [anon_sym_EQ_EQ] = ACTIONS(2010), - [anon_sym_BANG_EQ] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2008), - [anon_sym_LT_EQ] = ACTIONS(2010), - [anon_sym_GT] = ACTIONS(2008), - [anon_sym_GT_EQ] = ACTIONS(2010), - [anon_sym_EQ_GT] = ACTIONS(2010), - [anon_sym_QMARK_QMARK] = ACTIONS(2010), - [anon_sym_EQ] = ACTIONS(2008), - [sym__rangeOperator] = ACTIONS(2010), - [anon_sym_null] = ACTIONS(2008), - [anon_sym_macro] = ACTIONS(2008), - [anon_sym_abstract] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_private] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_overload] = ACTIONS(2008), - [anon_sym_override] = ACTIONS(2008), - [anon_sym_final] = ACTIONS(2008), - [anon_sym_class] = ACTIONS(2008), - [anon_sym_interface] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2008), - [anon_sym_function] = ACTIONS(2008), - [anon_sym_var] = ACTIONS(2008), - [aux_sym_integer_token1] = ACTIONS(2008), - [aux_sym_integer_token2] = ACTIONS(2010), - [aux_sym_float_token1] = ACTIONS(2008), - [aux_sym_float_token2] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [aux_sym_string_token1] = ACTIONS(2010), - [aux_sym_string_token3] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2010), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym_identifier] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(1857), + [anon_sym_package] = ACTIONS(1859), + [anon_sym_DOT] = ACTIONS(1859), + [anon_sym_import] = ACTIONS(1859), + [anon_sym_STAR] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1859), + [anon_sym_throw] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_switch] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_cast] = ACTIONS(1859), + [anon_sym_DOLLARtype] = ACTIONS(1857), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_untyped] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_this] = ACTIONS(1859), + [anon_sym_QMARK] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(1859), + [anon_sym_AT_COLON] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_new] = ACTIONS(1859), + [anon_sym_TILDE] = ACTIONS(1857), + [anon_sym_BANG] = ACTIONS(1859), + [anon_sym_DASH] = ACTIONS(1859), + [anon_sym_PLUS_PLUS] = ACTIONS(1857), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_PERCENT] = ACTIONS(1857), + [anon_sym_SLASH] = ACTIONS(1859), + [anon_sym_PLUS] = ACTIONS(1859), + [anon_sym_LT_LT] = ACTIONS(1857), + [anon_sym_GT_GT] = ACTIONS(1859), + [anon_sym_GT_GT_GT] = ACTIONS(1857), + [anon_sym_AMP] = ACTIONS(1859), + [anon_sym_PIPE] = ACTIONS(1859), + [anon_sym_CARET] = ACTIONS(1857), + [anon_sym_AMP_AMP] = ACTIONS(1857), + [anon_sym_PIPE_PIPE] = ACTIONS(1857), + [anon_sym_EQ_EQ] = ACTIONS(1857), + [anon_sym_BANG_EQ] = ACTIONS(1857), + [anon_sym_LT] = ACTIONS(1859), + [anon_sym_LT_EQ] = ACTIONS(1857), + [anon_sym_GT] = ACTIONS(1859), + [anon_sym_GT_EQ] = ACTIONS(1857), + [anon_sym_EQ_GT] = ACTIONS(1857), + [anon_sym_QMARK_QMARK] = ACTIONS(1857), + [anon_sym_EQ] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1859), + [anon_sym_macro] = ACTIONS(1859), + [anon_sym_abstract] = ACTIONS(1859), + [anon_sym_static] = ACTIONS(1859), + [anon_sym_public] = ACTIONS(1859), + [anon_sym_private] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_inline] = ACTIONS(1859), + [anon_sym_overload] = ACTIONS(1859), + [anon_sym_override] = ACTIONS(1859), + [anon_sym_final] = ACTIONS(1859), + [anon_sym_class] = ACTIONS(1859), + [anon_sym_interface] = ACTIONS(1859), + [anon_sym_enum] = ACTIONS(1859), + [anon_sym_typedef] = ACTIONS(1859), + [anon_sym_function] = ACTIONS(1859), + [anon_sym_var] = ACTIONS(1859), + [aux_sym_integer_token1] = ACTIONS(1859), + [aux_sym_integer_token2] = ACTIONS(1857), + [aux_sym_float_token1] = ACTIONS(1859), + [aux_sym_float_token2] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1859), + [anon_sym_false] = ACTIONS(1859), + [aux_sym_string_token1] = ACTIONS(1857), + [aux_sym_string_token3] = ACTIONS(1857), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1857), [sym__closing_brace_unmarker] = ACTIONS(3), }, [404] = { - [sym_identifier] = ACTIONS(2012), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_package] = ACTIONS(2012), - [anon_sym_import] = ACTIONS(2012), - [anon_sym_using] = ACTIONS(2012), - [anon_sym_throw] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_case] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_cast] = ACTIONS(2012), - [anon_sym_DOLLARtype] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_untyped] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_this] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2012), - [anon_sym_AT_COLON] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2012), - [anon_sym_TILDE] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2014), - [anon_sym_PERCENT] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_LT_LT] = ACTIONS(2014), - [anon_sym_GT_GT] = ACTIONS(2012), - [anon_sym_GT_GT_GT] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_PIPE] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2014), - [anon_sym_EQ_EQ] = ACTIONS(2014), - [anon_sym_BANG_EQ] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2012), - [anon_sym_LT_EQ] = ACTIONS(2014), - [anon_sym_GT] = ACTIONS(2012), - [anon_sym_GT_EQ] = ACTIONS(2014), - [anon_sym_EQ_GT] = ACTIONS(2014), - [anon_sym_QMARK_QMARK] = ACTIONS(2014), - [anon_sym_EQ] = ACTIONS(2012), - [sym__rangeOperator] = ACTIONS(2014), - [anon_sym_null] = ACTIONS(2012), - [anon_sym_macro] = ACTIONS(2012), - [anon_sym_abstract] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_inline] = ACTIONS(2012), - [anon_sym_overload] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_final] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2012), - [anon_sym_interface] = ACTIONS(2012), - [anon_sym_typedef] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_var] = ACTIONS(2012), - [aux_sym_integer_token1] = ACTIONS(2012), - [aux_sym_integer_token2] = ACTIONS(2014), - [aux_sym_float_token1] = ACTIONS(2012), - [aux_sym_float_token2] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [aux_sym_string_token1] = ACTIONS(2014), - [aux_sym_string_token3] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2014), + [sym__rangeOperator] = STATE(2528), + [sym_identifier] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [405] = { - [sym_identifier] = ACTIONS(2016), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_package] = ACTIONS(2016), - [anon_sym_import] = ACTIONS(2016), - [anon_sym_using] = ACTIONS(2016), - [anon_sym_throw] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2016), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_case] = ACTIONS(2016), - [anon_sym_default] = ACTIONS(2016), - [anon_sym_cast] = ACTIONS(2016), - [anon_sym_DOLLARtype] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_untyped] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_this] = ACTIONS(2016), - [anon_sym_AT] = ACTIONS(2016), - [anon_sym_AT_COLON] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2018), - [anon_sym_PERCENT] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_LT_LT] = ACTIONS(2018), - [anon_sym_GT_GT] = ACTIONS(2016), - [anon_sym_GT_GT_GT] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2016), - [anon_sym_CARET] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2018), - [anon_sym_GT] = ACTIONS(2016), - [anon_sym_GT_EQ] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2018), - [anon_sym_QMARK_QMARK] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(2016), - [sym__rangeOperator] = ACTIONS(2018), - [anon_sym_null] = ACTIONS(2016), - [anon_sym_macro] = ACTIONS(2016), - [anon_sym_abstract] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_public] = ACTIONS(2016), - [anon_sym_private] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_overload] = ACTIONS(2016), - [anon_sym_override] = ACTIONS(2016), - [anon_sym_final] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_interface] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_function] = ACTIONS(2016), - [anon_sym_var] = ACTIONS(2016), - [aux_sym_integer_token1] = ACTIONS(2016), - [aux_sym_integer_token2] = ACTIONS(2018), - [aux_sym_float_token1] = ACTIONS(2016), - [aux_sym_float_token2] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [aux_sym_string_token1] = ACTIONS(2018), - [aux_sym_string_token3] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_package] = ACTIONS(2671), + [anon_sym_import] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_cast] = ACTIONS(2671), + [anon_sym_DOLLARtype] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_untyped] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_this] = ACTIONS(2671), + [anon_sym_AT] = ACTIONS(2671), + [anon_sym_AT_COLON] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_catch] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PERCENT] = ACTIONS(2673), + [anon_sym_SLASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_LT_LT] = ACTIONS(2673), + [anon_sym_GT_GT] = ACTIONS(2671), + [anon_sym_GT_GT_GT] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_PIPE_PIPE] = ACTIONS(2673), + [anon_sym_EQ_EQ] = ACTIONS(2673), + [anon_sym_BANG_EQ] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_LT_EQ] = ACTIONS(2673), + [anon_sym_GT] = ACTIONS(2671), + [anon_sym_GT_EQ] = ACTIONS(2673), + [anon_sym_EQ_GT] = ACTIONS(2673), + [anon_sym_QMARK_QMARK] = ACTIONS(2673), + [anon_sym_EQ] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2673), + [anon_sym_null] = ACTIONS(2671), + [anon_sym_macro] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym_overload] = ACTIONS(2671), + [anon_sym_override] = ACTIONS(2671), + [anon_sym_final] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_interface] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_function] = ACTIONS(2671), + [anon_sym_var] = ACTIONS(2671), + [aux_sym_integer_token1] = ACTIONS(2671), + [aux_sym_integer_token2] = ACTIONS(2673), + [aux_sym_float_token1] = ACTIONS(2671), + [aux_sym_float_token2] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [aux_sym_string_token1] = ACTIONS(2673), + [aux_sym_string_token3] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(2675), + [sym__closing_brace_marker] = ACTIONS(2673), [sym__closing_brace_unmarker] = ACTIONS(3), }, [406] = { - [sym_identifier] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_package] = ACTIONS(2020), - [anon_sym_import] = ACTIONS(2020), - [anon_sym_using] = ACTIONS(2020), - [anon_sym_throw] = ACTIONS(2020), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_switch] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_case] = ACTIONS(2020), - [anon_sym_default] = ACTIONS(2020), - [anon_sym_cast] = ACTIONS(2020), - [anon_sym_DOLLARtype] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_untyped] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_this] = ACTIONS(2020), - [anon_sym_AT] = ACTIONS(2020), - [anon_sym_AT_COLON] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_new] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2022), - [anon_sym_PERCENT] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_BANG_EQ] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_EQ_GT] = ACTIONS(2022), - [anon_sym_QMARK_QMARK] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(2020), - [sym__rangeOperator] = ACTIONS(2022), - [anon_sym_null] = ACTIONS(2020), - [anon_sym_macro] = ACTIONS(2020), - [anon_sym_abstract] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_public] = ACTIONS(2020), - [anon_sym_private] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_inline] = ACTIONS(2020), - [anon_sym_overload] = ACTIONS(2020), - [anon_sym_override] = ACTIONS(2020), - [anon_sym_final] = ACTIONS(2020), - [anon_sym_class] = ACTIONS(2020), - [anon_sym_interface] = ACTIONS(2020), - [anon_sym_typedef] = ACTIONS(2020), - [anon_sym_function] = ACTIONS(2020), - [anon_sym_var] = ACTIONS(2020), - [aux_sym_integer_token1] = ACTIONS(2020), - [aux_sym_integer_token2] = ACTIONS(2022), - [aux_sym_float_token1] = ACTIONS(2020), - [aux_sym_float_token2] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [aux_sym_string_token1] = ACTIONS(2022), - [aux_sym_string_token3] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2022), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [407] = { - [sym_identifier] = ACTIONS(2024), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_package] = ACTIONS(2024), - [anon_sym_import] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2024), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_case] = ACTIONS(2024), - [anon_sym_default] = ACTIONS(2024), - [anon_sym_cast] = ACTIONS(2024), - [anon_sym_DOLLARtype] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_untyped] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_this] = ACTIONS(2024), - [anon_sym_AT] = ACTIONS(2024), - [anon_sym_AT_COLON] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_new] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_GT_GT_GT] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(2026), - [anon_sym_QMARK_QMARK] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(2024), - [sym__rangeOperator] = ACTIONS(2026), - [anon_sym_null] = ACTIONS(2024), - [anon_sym_macro] = ACTIONS(2024), - [anon_sym_abstract] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_public] = ACTIONS(2024), - [anon_sym_private] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym_overload] = ACTIONS(2024), - [anon_sym_override] = ACTIONS(2024), - [anon_sym_final] = ACTIONS(2024), - [anon_sym_class] = ACTIONS(2024), - [anon_sym_interface] = ACTIONS(2024), - [anon_sym_typedef] = ACTIONS(2024), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_var] = ACTIONS(2024), - [aux_sym_integer_token1] = ACTIONS(2024), - [aux_sym_integer_token2] = ACTIONS(2026), - [aux_sym_float_token1] = ACTIONS(2024), - [aux_sym_float_token2] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [aux_sym_string_token1] = ACTIONS(2026), - [aux_sym_string_token3] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2026), + [sym_else_clause] = STATE(421), + [sym_identifier] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_package] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_case] = ACTIONS(2677), + [anon_sym_default] = ACTIONS(2677), + [anon_sym_cast] = ACTIONS(2677), + [anon_sym_DOLLARtype] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_untyped] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_this] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_AT_COLON] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_catch] = ACTIONS(2677), + [anon_sym_else] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_QMARK_QMARK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2677), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_overload] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_final] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [aux_sym_integer_token1] = ACTIONS(2677), + [aux_sym_integer_token2] = ACTIONS(2679), + [aux_sym_float_token1] = ACTIONS(2677), + [aux_sym_float_token2] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [aux_sym_string_token1] = ACTIONS(2679), + [aux_sym_string_token3] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2679), [sym__closing_brace_unmarker] = ACTIONS(3), }, [408] = { - [sym_identifier] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_package] = ACTIONS(2028), - [anon_sym_import] = ACTIONS(2028), - [anon_sym_using] = ACTIONS(2028), - [anon_sym_throw] = ACTIONS(2028), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_switch] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_case] = ACTIONS(2028), - [anon_sym_default] = ACTIONS(2028), - [anon_sym_cast] = ACTIONS(2028), - [anon_sym_DOLLARtype] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_untyped] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_this] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2028), - [anon_sym_AT_COLON] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_new] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2030), - [anon_sym_DASH_DASH] = ACTIONS(2030), - [anon_sym_PERCENT] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2030), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_GT_GT_GT] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_EQ_EQ] = ACTIONS(2030), - [anon_sym_BANG_EQ] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_LT_EQ] = ACTIONS(2030), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_EQ] = ACTIONS(2030), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_QMARK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2028), - [sym__rangeOperator] = ACTIONS(2030), - [anon_sym_null] = ACTIONS(2028), - [anon_sym_macro] = ACTIONS(2028), - [anon_sym_abstract] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_public] = ACTIONS(2028), - [anon_sym_private] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_inline] = ACTIONS(2028), - [anon_sym_overload] = ACTIONS(2028), - [anon_sym_override] = ACTIONS(2028), - [anon_sym_final] = ACTIONS(2028), - [anon_sym_class] = ACTIONS(2028), - [anon_sym_interface] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2028), - [anon_sym_function] = ACTIONS(2028), - [anon_sym_var] = ACTIONS(2028), - [aux_sym_integer_token1] = ACTIONS(2028), - [aux_sym_integer_token2] = ACTIONS(2030), - [aux_sym_float_token1] = ACTIONS(2028), - [aux_sym_float_token2] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [aux_sym_string_token1] = ACTIONS(2030), - [aux_sym_string_token3] = ACTIONS(2030), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2030), + [sym_identifier] = ACTIONS(1638), + [anon_sym_POUND] = ACTIONS(1636), + [anon_sym_package] = ACTIONS(1638), + [anon_sym_DOT] = ACTIONS(1638), + [anon_sym_import] = ACTIONS(1638), + [anon_sym_STAR] = ACTIONS(1636), + [anon_sym_using] = ACTIONS(1638), + [anon_sym_throw] = ACTIONS(1638), + [anon_sym_LPAREN] = ACTIONS(1636), + [anon_sym_switch] = ACTIONS(1638), + [anon_sym_LBRACE] = ACTIONS(1636), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_cast] = ACTIONS(1638), + [anon_sym_DOLLARtype] = ACTIONS(1636), + [anon_sym_for] = ACTIONS(1638), + [anon_sym_return] = ACTIONS(1638), + [anon_sym_untyped] = ACTIONS(1638), + [anon_sym_break] = ACTIONS(1638), + [anon_sym_continue] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1636), + [anon_sym_this] = ACTIONS(1638), + [anon_sym_QMARK] = ACTIONS(1638), + [anon_sym_AT] = ACTIONS(1638), + [anon_sym_AT_COLON] = ACTIONS(1636), + [anon_sym_try] = ACTIONS(1638), + [anon_sym_catch] = ACTIONS(1638), + [anon_sym_else] = ACTIONS(1638), + [anon_sym_if] = ACTIONS(1638), + [anon_sym_while] = ACTIONS(1638), + [anon_sym_do] = ACTIONS(1638), + [anon_sym_new] = ACTIONS(1638), + [anon_sym_TILDE] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1638), + [anon_sym_DASH] = ACTIONS(1638), + [anon_sym_PLUS_PLUS] = ACTIONS(1636), + [anon_sym_DASH_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1636), + [anon_sym_SLASH] = ACTIONS(1638), + [anon_sym_PLUS] = ACTIONS(1638), + [anon_sym_LT_LT] = ACTIONS(1636), + [anon_sym_GT_GT] = ACTIONS(1638), + [anon_sym_GT_GT_GT] = ACTIONS(1636), + [anon_sym_AMP] = ACTIONS(1638), + [anon_sym_PIPE] = ACTIONS(1638), + [anon_sym_CARET] = ACTIONS(1636), + [anon_sym_AMP_AMP] = ACTIONS(1636), + [anon_sym_PIPE_PIPE] = ACTIONS(1636), + [anon_sym_EQ_EQ] = ACTIONS(1636), + [anon_sym_BANG_EQ] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1638), + [anon_sym_LT_EQ] = ACTIONS(1636), + [anon_sym_GT] = ACTIONS(1638), + [anon_sym_GT_EQ] = ACTIONS(1636), + [anon_sym_EQ_GT] = ACTIONS(1636), + [anon_sym_QMARK_QMARK] = ACTIONS(1636), + [anon_sym_EQ] = ACTIONS(1638), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1636), + [anon_sym_null] = ACTIONS(1638), + [anon_sym_macro] = ACTIONS(1638), + [anon_sym_abstract] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1638), + [anon_sym_public] = ACTIONS(1638), + [anon_sym_private] = ACTIONS(1638), + [anon_sym_extern] = ACTIONS(1638), + [anon_sym_inline] = ACTIONS(1638), + [anon_sym_overload] = ACTIONS(1638), + [anon_sym_override] = ACTIONS(1638), + [anon_sym_final] = ACTIONS(1638), + [anon_sym_class] = ACTIONS(1638), + [anon_sym_interface] = ACTIONS(1638), + [anon_sym_enum] = ACTIONS(1638), + [anon_sym_typedef] = ACTIONS(1638), + [anon_sym_function] = ACTIONS(1638), + [anon_sym_var] = ACTIONS(1638), + [aux_sym_integer_token1] = ACTIONS(1638), + [aux_sym_integer_token2] = ACTIONS(1636), + [aux_sym_float_token1] = ACTIONS(1638), + [aux_sym_float_token2] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1638), + [anon_sym_false] = ACTIONS(1638), + [aux_sym_string_token1] = ACTIONS(1636), + [aux_sym_string_token3] = ACTIONS(1636), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1636), [sym__closing_brace_unmarker] = ACTIONS(3), }, [409] = { - [sym_identifier] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_package] = ACTIONS(2032), - [anon_sym_import] = ACTIONS(2032), - [anon_sym_using] = ACTIONS(2032), - [anon_sym_throw] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2032), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_case] = ACTIONS(2032), - [anon_sym_default] = ACTIONS(2032), - [anon_sym_cast] = ACTIONS(2032), - [anon_sym_DOLLARtype] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_untyped] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2032), - [anon_sym_AT_COLON] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_new] = ACTIONS(2032), - [anon_sym_TILDE] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_SLASH] = ACTIONS(2032), - [anon_sym_PLUS] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_GT_GT_GT] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_QMARK_QMARK] = ACTIONS(2034), - [anon_sym_EQ] = ACTIONS(2032), - [sym__rangeOperator] = ACTIONS(2034), - [anon_sym_null] = ACTIONS(2032), - [anon_sym_macro] = ACTIONS(2032), - [anon_sym_abstract] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym_overload] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_final] = ACTIONS(2032), - [anon_sym_class] = ACTIONS(2032), - [anon_sym_interface] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2032), - [anon_sym_var] = ACTIONS(2032), - [aux_sym_integer_token1] = ACTIONS(2032), - [aux_sym_integer_token2] = ACTIONS(2034), - [aux_sym_float_token1] = ACTIONS(2032), - [aux_sym_float_token2] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [aux_sym_string_token1] = ACTIONS(2034), - [aux_sym_string_token3] = ACTIONS(2034), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2651), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2653), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [410] = { - [sym_identifier] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_package] = ACTIONS(2036), - [anon_sym_import] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2036), - [anon_sym_throw] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_case] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2036), - [anon_sym_cast] = ACTIONS(2036), - [anon_sym_DOLLARtype] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_untyped] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_this] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2036), - [anon_sym_AT_COLON] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_new] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2036), - [anon_sym_PLUS] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_GT_GT_GT] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2038), - [anon_sym_AMP_AMP] = ACTIONS(2038), - [anon_sym_PIPE_PIPE] = ACTIONS(2038), - [anon_sym_EQ_EQ] = ACTIONS(2038), - [anon_sym_BANG_EQ] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2038), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_EQ] = ACTIONS(2038), - [anon_sym_EQ_GT] = ACTIONS(2038), - [anon_sym_QMARK_QMARK] = ACTIONS(2038), - [anon_sym_EQ] = ACTIONS(2036), - [sym__rangeOperator] = ACTIONS(2038), - [anon_sym_null] = ACTIONS(2036), - [anon_sym_macro] = ACTIONS(2036), - [anon_sym_abstract] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_public] = ACTIONS(2036), - [anon_sym_private] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_inline] = ACTIONS(2036), - [anon_sym_overload] = ACTIONS(2036), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2036), - [anon_sym_class] = ACTIONS(2036), - [anon_sym_interface] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2036), - [anon_sym_function] = ACTIONS(2036), - [anon_sym_var] = ACTIONS(2036), - [aux_sym_integer_token1] = ACTIONS(2036), - [aux_sym_integer_token2] = ACTIONS(2038), - [aux_sym_float_token1] = ACTIONS(2036), - [aux_sym_float_token2] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [aux_sym_string_token1] = ACTIONS(2038), - [aux_sym_string_token3] = ACTIONS(2038), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym_identifier] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(1853), + [anon_sym_package] = ACTIONS(1855), + [anon_sym_DOT] = ACTIONS(1855), + [anon_sym_import] = ACTIONS(1855), + [anon_sym_STAR] = ACTIONS(1853), + [anon_sym_using] = ACTIONS(1855), + [anon_sym_throw] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_switch] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_cast] = ACTIONS(1855), + [anon_sym_DOLLARtype] = ACTIONS(1853), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_untyped] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_this] = ACTIONS(1855), + [anon_sym_QMARK] = ACTIONS(1855), + [anon_sym_AT] = ACTIONS(1855), + [anon_sym_AT_COLON] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_new] = ACTIONS(1855), + [anon_sym_TILDE] = ACTIONS(1853), + [anon_sym_BANG] = ACTIONS(1855), + [anon_sym_DASH] = ACTIONS(1855), + [anon_sym_PLUS_PLUS] = ACTIONS(1853), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_PERCENT] = ACTIONS(1853), + [anon_sym_SLASH] = ACTIONS(1855), + [anon_sym_PLUS] = ACTIONS(1855), + [anon_sym_LT_LT] = ACTIONS(1853), + [anon_sym_GT_GT] = ACTIONS(1855), + [anon_sym_GT_GT_GT] = ACTIONS(1853), + [anon_sym_AMP] = ACTIONS(1855), + [anon_sym_PIPE] = ACTIONS(1855), + [anon_sym_CARET] = ACTIONS(1853), + [anon_sym_AMP_AMP] = ACTIONS(1853), + [anon_sym_PIPE_PIPE] = ACTIONS(1853), + [anon_sym_EQ_EQ] = ACTIONS(1853), + [anon_sym_BANG_EQ] = ACTIONS(1853), + [anon_sym_LT] = ACTIONS(1855), + [anon_sym_LT_EQ] = ACTIONS(1853), + [anon_sym_GT] = ACTIONS(1855), + [anon_sym_GT_EQ] = ACTIONS(1853), + [anon_sym_EQ_GT] = ACTIONS(1853), + [anon_sym_QMARK_QMARK] = ACTIONS(1853), + [anon_sym_EQ] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1855), + [anon_sym_macro] = ACTIONS(1855), + [anon_sym_abstract] = ACTIONS(1855), + [anon_sym_static] = ACTIONS(1855), + [anon_sym_public] = ACTIONS(1855), + [anon_sym_private] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_inline] = ACTIONS(1855), + [anon_sym_overload] = ACTIONS(1855), + [anon_sym_override] = ACTIONS(1855), + [anon_sym_final] = ACTIONS(1855), + [anon_sym_class] = ACTIONS(1855), + [anon_sym_interface] = ACTIONS(1855), + [anon_sym_enum] = ACTIONS(1855), + [anon_sym_typedef] = ACTIONS(1855), + [anon_sym_function] = ACTIONS(1855), + [anon_sym_var] = ACTIONS(1855), + [aux_sym_integer_token1] = ACTIONS(1855), + [aux_sym_integer_token2] = ACTIONS(1853), + [aux_sym_float_token1] = ACTIONS(1855), + [aux_sym_float_token2] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1855), + [anon_sym_false] = ACTIONS(1855), + [aux_sym_string_token1] = ACTIONS(1853), + [aux_sym_string_token3] = ACTIONS(1853), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1853), [sym__closing_brace_unmarker] = ACTIONS(3), }, [411] = { - [sym_identifier] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_package] = ACTIONS(2040), - [anon_sym_import] = ACTIONS(2040), - [anon_sym_using] = ACTIONS(2040), - [anon_sym_throw] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_switch] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_case] = ACTIONS(2040), - [anon_sym_default] = ACTIONS(2040), - [anon_sym_cast] = ACTIONS(2040), - [anon_sym_DOLLARtype] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_untyped] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_this] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2040), - [anon_sym_AT_COLON] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_new] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2042), - [anon_sym_DASH_DASH] = ACTIONS(2042), - [anon_sym_PERCENT] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_LT_LT] = ACTIONS(2042), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_GT_GT_GT] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2042), - [anon_sym_AMP_AMP] = ACTIONS(2042), - [anon_sym_PIPE_PIPE] = ACTIONS(2042), - [anon_sym_EQ_EQ] = ACTIONS(2042), - [anon_sym_BANG_EQ] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_LT_EQ] = ACTIONS(2042), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2042), - [anon_sym_EQ_GT] = ACTIONS(2042), - [anon_sym_QMARK_QMARK] = ACTIONS(2042), - [anon_sym_EQ] = ACTIONS(2040), - [sym__rangeOperator] = ACTIONS(2042), - [anon_sym_null] = ACTIONS(2040), - [anon_sym_macro] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_overload] = ACTIONS(2040), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2040), - [anon_sym_function] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [aux_sym_integer_token1] = ACTIONS(2040), - [aux_sym_integer_token2] = ACTIONS(2042), - [aux_sym_float_token1] = ACTIONS(2040), - [aux_sym_float_token2] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [aux_sym_string_token1] = ACTIONS(2042), - [aux_sym_string_token3] = ACTIONS(2042), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2042), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [412] = { - [sym_identifier] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_package] = ACTIONS(2044), - [anon_sym_import] = ACTIONS(2044), - [anon_sym_using] = ACTIONS(2044), - [anon_sym_throw] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2044), - [anon_sym_cast] = ACTIONS(2044), - [anon_sym_DOLLARtype] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_untyped] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_this] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2044), - [anon_sym_AT_COLON] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_new] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2044), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_PERCENT] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2044), - [anon_sym_LT_LT] = ACTIONS(2046), - [anon_sym_GT_GT] = ACTIONS(2044), - [anon_sym_GT_GT_GT] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_EQ_EQ] = ACTIONS(2046), - [anon_sym_BANG_EQ] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2044), - [anon_sym_LT_EQ] = ACTIONS(2046), - [anon_sym_GT] = ACTIONS(2044), - [anon_sym_GT_EQ] = ACTIONS(2046), - [anon_sym_EQ_GT] = ACTIONS(2046), - [anon_sym_QMARK_QMARK] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2044), - [sym__rangeOperator] = ACTIONS(2046), - [anon_sym_null] = ACTIONS(2044), - [anon_sym_macro] = ACTIONS(2044), - [anon_sym_abstract] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_public] = ACTIONS(2044), - [anon_sym_private] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_inline] = ACTIONS(2044), - [anon_sym_overload] = ACTIONS(2044), - [anon_sym_override] = ACTIONS(2044), - [anon_sym_final] = ACTIONS(2044), - [anon_sym_class] = ACTIONS(2044), - [anon_sym_interface] = ACTIONS(2044), - [anon_sym_typedef] = ACTIONS(2044), - [anon_sym_function] = ACTIONS(2044), - [anon_sym_var] = ACTIONS(2044), - [aux_sym_integer_token1] = ACTIONS(2044), - [aux_sym_integer_token2] = ACTIONS(2046), - [aux_sym_float_token1] = ACTIONS(2044), - [aux_sym_float_token2] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [aux_sym_string_token1] = ACTIONS(2046), - [aux_sym_string_token3] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2046), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2655), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2659), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [413] = { - [sym_identifier] = ACTIONS(2048), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_package] = ACTIONS(2048), - [anon_sym_import] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2048), - [anon_sym_throw] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_case] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_cast] = ACTIONS(2048), - [anon_sym_DOLLARtype] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_untyped] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_this] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2048), - [anon_sym_AT_COLON] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2050), - [anon_sym_PERCENT] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2050), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_GT_GT_GT] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_CARET] = ACTIONS(2050), - [anon_sym_AMP_AMP] = ACTIONS(2050), - [anon_sym_PIPE_PIPE] = ACTIONS(2050), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_EQ] = ACTIONS(2050), - [anon_sym_EQ_GT] = ACTIONS(2050), - [anon_sym_QMARK_QMARK] = ACTIONS(2050), - [anon_sym_EQ] = ACTIONS(2048), - [sym__rangeOperator] = ACTIONS(2050), - [anon_sym_null] = ACTIONS(2048), - [anon_sym_macro] = ACTIONS(2048), - [anon_sym_abstract] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_public] = ACTIONS(2048), - [anon_sym_private] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_inline] = ACTIONS(2048), - [anon_sym_overload] = ACTIONS(2048), - [anon_sym_override] = ACTIONS(2048), - [anon_sym_final] = ACTIONS(2048), - [anon_sym_class] = ACTIONS(2048), - [anon_sym_interface] = ACTIONS(2048), - [anon_sym_typedef] = ACTIONS(2048), - [anon_sym_function] = ACTIONS(2048), - [anon_sym_var] = ACTIONS(2048), - [aux_sym_integer_token1] = ACTIONS(2048), - [aux_sym_integer_token2] = ACTIONS(2050), - [aux_sym_float_token1] = ACTIONS(2048), - [aux_sym_float_token2] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [aux_sym_string_token1] = ACTIONS(2050), - [aux_sym_string_token3] = ACTIONS(2050), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2050), + [sym_else_clause] = STATE(572), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_case] = ACTIONS(2627), + [anon_sym_default] = ACTIONS(2627), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2629), [sym__closing_brace_unmarker] = ACTIONS(3), }, [414] = { - [sym_identifier] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_package] = ACTIONS(2052), - [anon_sym_import] = ACTIONS(2052), - [anon_sym_using] = ACTIONS(2052), - [anon_sym_throw] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_switch] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_case] = ACTIONS(2052), - [anon_sym_default] = ACTIONS(2052), - [anon_sym_cast] = ACTIONS(2052), - [anon_sym_DOLLARtype] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_untyped] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_this] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_AT_COLON] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_new] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2054), - [anon_sym_DASH_DASH] = ACTIONS(2054), - [anon_sym_PERCENT] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(2054), - [anon_sym_GT_GT] = ACTIONS(2052), - [anon_sym_GT_GT_GT] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2054), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [anon_sym_EQ_EQ] = ACTIONS(2054), - [anon_sym_BANG_EQ] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2054), - [anon_sym_GT] = ACTIONS(2052), - [anon_sym_GT_EQ] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2054), - [anon_sym_QMARK_QMARK] = ACTIONS(2054), - [anon_sym_EQ] = ACTIONS(2052), - [sym__rangeOperator] = ACTIONS(2054), - [anon_sym_null] = ACTIONS(2052), - [anon_sym_macro] = ACTIONS(2052), - [anon_sym_abstract] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_public] = ACTIONS(2052), - [anon_sym_private] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_inline] = ACTIONS(2052), - [anon_sym_overload] = ACTIONS(2052), - [anon_sym_override] = ACTIONS(2052), - [anon_sym_final] = ACTIONS(2052), - [anon_sym_class] = ACTIONS(2052), - [anon_sym_interface] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2052), - [anon_sym_function] = ACTIONS(2052), - [anon_sym_var] = ACTIONS(2052), - [aux_sym_integer_token1] = ACTIONS(2052), - [aux_sym_integer_token2] = ACTIONS(2054), - [aux_sym_float_token1] = ACTIONS(2052), - [aux_sym_float_token2] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [aux_sym_string_token1] = ACTIONS(2054), - [aux_sym_string_token3] = ACTIONS(2054), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2054), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(2425), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_COLON] = ACTIONS(2657), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(2161), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(2427), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [415] = { - [sym_identifier] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_package] = ACTIONS(2056), - [anon_sym_import] = ACTIONS(2056), - [anon_sym_using] = ACTIONS(2056), - [anon_sym_throw] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_case] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2056), - [anon_sym_cast] = ACTIONS(2056), - [anon_sym_DOLLARtype] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_untyped] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_this] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_AT_COLON] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_new] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_PERCENT] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_GT_GT_GT] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2056), - [anon_sym_LT_EQ] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2056), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_EQ_GT] = ACTIONS(2058), - [anon_sym_QMARK_QMARK] = ACTIONS(2058), - [anon_sym_EQ] = ACTIONS(2056), - [sym__rangeOperator] = ACTIONS(2058), - [anon_sym_null] = ACTIONS(2056), - [anon_sym_macro] = ACTIONS(2056), - [anon_sym_abstract] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_public] = ACTIONS(2056), - [anon_sym_private] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_inline] = ACTIONS(2056), - [anon_sym_overload] = ACTIONS(2056), - [anon_sym_override] = ACTIONS(2056), - [anon_sym_final] = ACTIONS(2056), - [anon_sym_class] = ACTIONS(2056), - [anon_sym_interface] = ACTIONS(2056), - [anon_sym_typedef] = ACTIONS(2056), - [anon_sym_function] = ACTIONS(2056), - [anon_sym_var] = ACTIONS(2056), - [aux_sym_integer_token1] = ACTIONS(2056), - [aux_sym_integer_token2] = ACTIONS(2058), - [aux_sym_float_token1] = ACTIONS(2056), - [aux_sym_float_token2] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [aux_sym_string_token1] = ACTIONS(2058), - [aux_sym_string_token3] = ACTIONS(2058), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(2625), + [anon_sym_package] = ACTIONS(2623), + [anon_sym_DOT] = ACTIONS(1835), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_cast] = ACTIONS(2623), + [anon_sym_DOLLARtype] = ACTIONS(2625), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_untyped] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2623), + [anon_sym_QMARK] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_AT_COLON] = ACTIONS(2625), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(1833), + [anon_sym_BANG] = ACTIONS(1835), + [anon_sym_DASH] = ACTIONS(1835), + [anon_sym_PLUS_PLUS] = ACTIONS(1833), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_PERCENT] = ACTIONS(1833), + [anon_sym_SLASH] = ACTIONS(1835), + [anon_sym_PLUS] = ACTIONS(1835), + [anon_sym_LT_LT] = ACTIONS(1833), + [anon_sym_GT_GT] = ACTIONS(1835), + [anon_sym_GT_GT_GT] = ACTIONS(1833), + [anon_sym_AMP] = ACTIONS(1835), + [anon_sym_PIPE] = ACTIONS(1835), + [anon_sym_CARET] = ACTIONS(1833), + [anon_sym_AMP_AMP] = ACTIONS(1833), + [anon_sym_PIPE_PIPE] = ACTIONS(1833), + [anon_sym_EQ_EQ] = ACTIONS(1833), + [anon_sym_BANG_EQ] = ACTIONS(1833), + [anon_sym_LT] = ACTIONS(1835), + [anon_sym_LT_EQ] = ACTIONS(1833), + [anon_sym_GT] = ACTIONS(1835), + [anon_sym_GT_EQ] = ACTIONS(1833), + [anon_sym_EQ_GT] = ACTIONS(1833), + [anon_sym_QMARK_QMARK] = ACTIONS(1833), + [anon_sym_EQ] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(2623), + [anon_sym_macro] = ACTIONS(2623), + [anon_sym_abstract] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_private] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_overload] = ACTIONS(2623), + [anon_sym_override] = ACTIONS(2623), + [anon_sym_final] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_interface] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(2623), + [anon_sym_var] = ACTIONS(2623), + [aux_sym_integer_token1] = ACTIONS(2623), + [aux_sym_integer_token2] = ACTIONS(2625), + [aux_sym_float_token1] = ACTIONS(2623), + [aux_sym_float_token2] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [aux_sym_string_token1] = ACTIONS(2625), + [aux_sym_string_token3] = ACTIONS(2625), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1833), [sym__closing_brace_unmarker] = ACTIONS(3), }, [416] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(2062), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1608), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [ts_builtin_sym_end] = ACTIONS(1945), + [sym_identifier] = ACTIONS(1947), + [anon_sym_POUND] = ACTIONS(1945), + [anon_sym_package] = ACTIONS(1947), + [anon_sym_DOT] = ACTIONS(1947), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_STAR] = ACTIONS(1945), + [anon_sym_using] = ACTIONS(1947), + [anon_sym_throw] = ACTIONS(1947), + [anon_sym_LPAREN] = ACTIONS(1945), + [anon_sym_switch] = ACTIONS(1947), + [anon_sym_LBRACE] = ACTIONS(1945), + [anon_sym_cast] = ACTIONS(1947), + [anon_sym_DOLLARtype] = ACTIONS(1945), + [anon_sym_for] = ACTIONS(1947), + [anon_sym_return] = ACTIONS(1947), + [anon_sym_untyped] = ACTIONS(1947), + [anon_sym_break] = ACTIONS(1947), + [anon_sym_continue] = ACTIONS(1947), + [anon_sym_LBRACK] = ACTIONS(1945), + [anon_sym_this] = ACTIONS(1947), + [anon_sym_QMARK] = ACTIONS(1947), + [anon_sym_AT] = ACTIONS(1947), + [anon_sym_AT_COLON] = ACTIONS(1945), + [anon_sym_try] = ACTIONS(1947), + [anon_sym_catch] = ACTIONS(1947), + [anon_sym_else] = ACTIONS(1947), + [anon_sym_if] = ACTIONS(1947), + [anon_sym_while] = ACTIONS(1947), + [anon_sym_do] = ACTIONS(1947), + [anon_sym_new] = ACTIONS(1947), + [anon_sym_TILDE] = ACTIONS(1945), + [anon_sym_BANG] = ACTIONS(1947), + [anon_sym_DASH] = ACTIONS(1947), + [anon_sym_PLUS_PLUS] = ACTIONS(1945), + [anon_sym_DASH_DASH] = ACTIONS(1945), + [anon_sym_PERCENT] = ACTIONS(1945), + [anon_sym_SLASH] = ACTIONS(1947), + [anon_sym_PLUS] = ACTIONS(1947), + [anon_sym_LT_LT] = ACTIONS(1945), + [anon_sym_GT_GT] = ACTIONS(1947), + [anon_sym_GT_GT_GT] = ACTIONS(1945), + [anon_sym_AMP] = ACTIONS(1947), + [anon_sym_PIPE] = ACTIONS(1947), + [anon_sym_CARET] = ACTIONS(1945), + [anon_sym_AMP_AMP] = ACTIONS(1945), + [anon_sym_PIPE_PIPE] = ACTIONS(1945), + [anon_sym_EQ_EQ] = ACTIONS(1945), + [anon_sym_BANG_EQ] = ACTIONS(1945), + [anon_sym_LT] = ACTIONS(1947), + [anon_sym_LT_EQ] = ACTIONS(1945), + [anon_sym_GT] = ACTIONS(1947), + [anon_sym_GT_EQ] = ACTIONS(1945), + [anon_sym_EQ_GT] = ACTIONS(1945), + [anon_sym_QMARK_QMARK] = ACTIONS(1945), + [anon_sym_EQ] = ACTIONS(1947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1945), + [anon_sym_null] = ACTIONS(1947), + [anon_sym_macro] = ACTIONS(1947), + [anon_sym_abstract] = ACTIONS(1947), + [anon_sym_static] = ACTIONS(1947), + [anon_sym_public] = ACTIONS(1947), + [anon_sym_private] = ACTIONS(1947), + [anon_sym_extern] = ACTIONS(1947), + [anon_sym_inline] = ACTIONS(1947), + [anon_sym_overload] = ACTIONS(1947), + [anon_sym_override] = ACTIONS(1947), + [anon_sym_final] = ACTIONS(1947), + [anon_sym_class] = ACTIONS(1947), + [anon_sym_interface] = ACTIONS(1947), + [anon_sym_enum] = ACTIONS(1947), + [anon_sym_typedef] = ACTIONS(1947), + [anon_sym_function] = ACTIONS(1947), + [anon_sym_var] = ACTIONS(1947), + [aux_sym_integer_token1] = ACTIONS(1947), + [aux_sym_integer_token2] = ACTIONS(1945), + [aux_sym_float_token1] = ACTIONS(1947), + [aux_sym_float_token2] = ACTIONS(1945), + [anon_sym_true] = ACTIONS(1947), + [anon_sym_false] = ACTIONS(1947), + [aux_sym_string_token1] = ACTIONS(1945), + [aux_sym_string_token3] = ACTIONS(1945), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(1945), [sym__closing_brace_unmarker] = ACTIONS(3), }, [417] = { - [sym_identifier] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_package] = ACTIONS(2064), - [anon_sym_import] = ACTIONS(2064), - [anon_sym_using] = ACTIONS(2064), - [anon_sym_throw] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_case] = ACTIONS(2064), - [anon_sym_default] = ACTIONS(2064), - [anon_sym_cast] = ACTIONS(2064), - [anon_sym_DOLLARtype] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_untyped] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_this] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2064), - [anon_sym_AT_COLON] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2064), - [anon_sym_PLUS_PLUS] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2066), - [anon_sym_PERCENT] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_GT_GT_GT] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_EQ_EQ] = ACTIONS(2066), - [anon_sym_BANG_EQ] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_EQ] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_QMARK_QMARK] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2064), - [sym__rangeOperator] = ACTIONS(2066), - [anon_sym_null] = ACTIONS(2064), - [anon_sym_macro] = ACTIONS(2064), - [anon_sym_abstract] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_public] = ACTIONS(2064), - [anon_sym_private] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_inline] = ACTIONS(2064), - [anon_sym_overload] = ACTIONS(2064), - [anon_sym_override] = ACTIONS(2064), - [anon_sym_final] = ACTIONS(2064), - [anon_sym_class] = ACTIONS(2064), - [anon_sym_interface] = ACTIONS(2064), - [anon_sym_typedef] = ACTIONS(2064), - [anon_sym_function] = ACTIONS(2064), - [anon_sym_var] = ACTIONS(2064), - [aux_sym_integer_token1] = ACTIONS(2064), - [aux_sym_integer_token2] = ACTIONS(2066), - [aux_sym_float_token1] = ACTIONS(2064), - [aux_sym_float_token2] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [aux_sym_string_token1] = ACTIONS(2066), - [aux_sym_string_token3] = ACTIONS(2066), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2066), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [418] = { - [sym_identifier] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_package] = ACTIONS(2068), - [anon_sym_import] = ACTIONS(2068), - [anon_sym_using] = ACTIONS(2068), - [anon_sym_throw] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_case] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2068), - [anon_sym_cast] = ACTIONS(2068), - [anon_sym_DOLLARtype] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_untyped] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_this] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2068), - [anon_sym_AT_COLON] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_new] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_PLUS_PLUS] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2070), - [anon_sym_PERCENT] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_LT_LT] = ACTIONS(2070), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_GT_GT_GT] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(2070), - [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_EQ_EQ] = ACTIONS(2070), - [anon_sym_BANG_EQ] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_EQ] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_QMARK] = ACTIONS(2070), - [anon_sym_EQ] = ACTIONS(2068), - [sym__rangeOperator] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2068), - [anon_sym_macro] = ACTIONS(2068), - [anon_sym_abstract] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_public] = ACTIONS(2068), - [anon_sym_private] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_inline] = ACTIONS(2068), - [anon_sym_overload] = ACTIONS(2068), - [anon_sym_override] = ACTIONS(2068), - [anon_sym_final] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2068), - [anon_sym_interface] = ACTIONS(2068), - [anon_sym_typedef] = ACTIONS(2068), - [anon_sym_function] = ACTIONS(2068), - [anon_sym_var] = ACTIONS(2068), - [aux_sym_integer_token1] = ACTIONS(2068), - [aux_sym_integer_token2] = ACTIONS(2070), - [aux_sym_float_token1] = ACTIONS(2068), - [aux_sym_float_token2] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [aux_sym_string_token1] = ACTIONS(2070), - [aux_sym_string_token3] = ACTIONS(2070), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_package] = ACTIONS(2685), + [anon_sym_import] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_case] = ACTIONS(2685), + [anon_sym_default] = ACTIONS(2685), + [anon_sym_cast] = ACTIONS(2685), + [anon_sym_DOLLARtype] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_untyped] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_this] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), + [anon_sym_AT_COLON] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_catch] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2687), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_EQ_EQ] = ACTIONS(2687), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2687), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2687), + [anon_sym_EQ_GT] = ACTIONS(2687), + [anon_sym_QMARK_QMARK] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_macro] = ACTIONS(2685), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_public] = ACTIONS(2685), + [anon_sym_private] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_overload] = ACTIONS(2685), + [anon_sym_override] = ACTIONS(2685), + [anon_sym_final] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_var] = ACTIONS(2685), + [aux_sym_integer_token1] = ACTIONS(2685), + [aux_sym_integer_token2] = ACTIONS(2687), + [aux_sym_float_token1] = ACTIONS(2685), + [aux_sym_float_token2] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [aux_sym_string_token1] = ACTIONS(2687), + [aux_sym_string_token3] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2687), [sym__closing_brace_unmarker] = ACTIONS(3), }, [419] = { - [sym_identifier] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_package] = ACTIONS(2072), - [anon_sym_import] = ACTIONS(2072), - [anon_sym_using] = ACTIONS(2072), - [anon_sym_throw] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_switch] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_case] = ACTIONS(2072), - [anon_sym_default] = ACTIONS(2072), - [anon_sym_cast] = ACTIONS(2072), - [anon_sym_DOLLARtype] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_untyped] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_this] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2072), - [anon_sym_AT_COLON] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_PERCENT] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2074), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_GT_GT_GT] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_QMARK_QMARK] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(2072), - [sym__rangeOperator] = ACTIONS(2074), - [anon_sym_null] = ACTIONS(2072), - [anon_sym_macro] = ACTIONS(2072), - [anon_sym_abstract] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_public] = ACTIONS(2072), - [anon_sym_private] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_inline] = ACTIONS(2072), - [anon_sym_overload] = ACTIONS(2072), - [anon_sym_override] = ACTIONS(2072), - [anon_sym_final] = ACTIONS(2072), - [anon_sym_class] = ACTIONS(2072), - [anon_sym_interface] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2072), - [anon_sym_function] = ACTIONS(2072), - [anon_sym_var] = ACTIONS(2072), - [aux_sym_integer_token1] = ACTIONS(2072), - [aux_sym_integer_token2] = ACTIONS(2074), - [aux_sym_float_token1] = ACTIONS(2072), - [aux_sym_float_token2] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [aux_sym_string_token1] = ACTIONS(2074), - [aux_sym_string_token3] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2074), + [sym_identifier] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_package] = ACTIONS(2689), + [anon_sym_import] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_case] = ACTIONS(2689), + [anon_sym_default] = ACTIONS(2689), + [anon_sym_cast] = ACTIONS(2689), + [anon_sym_DOLLARtype] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_untyped] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2689), + [anon_sym_AT_COLON] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_catch] = ACTIONS(2689), + [anon_sym_else] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2691), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_EQ_GT] = ACTIONS(2691), + [anon_sym_QMARK_QMARK] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), + [anon_sym_null] = ACTIONS(2689), + [anon_sym_macro] = ACTIONS(2689), + [anon_sym_abstract] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_public] = ACTIONS(2689), + [anon_sym_private] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_overload] = ACTIONS(2689), + [anon_sym_override] = ACTIONS(2689), + [anon_sym_final] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_function] = ACTIONS(2689), + [anon_sym_var] = ACTIONS(2689), + [aux_sym_integer_token1] = ACTIONS(2689), + [aux_sym_integer_token2] = ACTIONS(2691), + [aux_sym_float_token1] = ACTIONS(2689), + [aux_sym_float_token2] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [aux_sym_string_token1] = ACTIONS(2691), + [aux_sym_string_token3] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2691), [sym__closing_brace_unmarker] = ACTIONS(3), }, [420] = { - [sym_identifier] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_package] = ACTIONS(2076), - [anon_sym_import] = ACTIONS(2076), - [anon_sym_using] = ACTIONS(2076), - [anon_sym_throw] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_case] = ACTIONS(2076), - [anon_sym_default] = ACTIONS(2076), - [anon_sym_cast] = ACTIONS(2076), - [anon_sym_DOLLARtype] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_untyped] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_this] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_AT_COLON] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_new] = ACTIONS(2076), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_PERCENT] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2078), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), - [anon_sym_EQ_EQ] = ACTIONS(2078), - [anon_sym_BANG_EQ] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2078), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2078), - [anon_sym_EQ_GT] = ACTIONS(2078), - [anon_sym_QMARK_QMARK] = ACTIONS(2078), - [anon_sym_EQ] = ACTIONS(2076), - [sym__rangeOperator] = ACTIONS(2078), - [anon_sym_null] = ACTIONS(2076), - [anon_sym_macro] = ACTIONS(2076), - [anon_sym_abstract] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_public] = ACTIONS(2076), - [anon_sym_private] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_inline] = ACTIONS(2076), - [anon_sym_overload] = ACTIONS(2076), - [anon_sym_override] = ACTIONS(2076), - [anon_sym_final] = ACTIONS(2076), - [anon_sym_class] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_typedef] = ACTIONS(2076), - [anon_sym_function] = ACTIONS(2076), - [anon_sym_var] = ACTIONS(2076), - [aux_sym_integer_token1] = ACTIONS(2076), - [aux_sym_integer_token2] = ACTIONS(2078), - [aux_sym_float_token1] = ACTIONS(2076), - [aux_sym_float_token2] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [aux_sym_string_token1] = ACTIONS(2078), - [aux_sym_string_token3] = ACTIONS(2078), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2078), + [sym_identifier] = ACTIONS(2693), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_package] = ACTIONS(2693), + [anon_sym_import] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_case] = ACTIONS(2693), + [anon_sym_default] = ACTIONS(2693), + [anon_sym_cast] = ACTIONS(2693), + [anon_sym_DOLLARtype] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_untyped] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_this] = ACTIONS(2693), + [anon_sym_AT] = ACTIONS(2693), + [anon_sym_AT_COLON] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_catch] = ACTIONS(2693), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2693), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_EQ_GT] = ACTIONS(2695), + [anon_sym_QMARK_QMARK] = ACTIONS(2695), + [anon_sym_EQ] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_macro] = ACTIONS(2693), + [anon_sym_abstract] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_public] = ACTIONS(2693), + [anon_sym_private] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_overload] = ACTIONS(2693), + [anon_sym_override] = ACTIONS(2693), + [anon_sym_final] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_interface] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_var] = ACTIONS(2693), + [aux_sym_integer_token1] = ACTIONS(2693), + [aux_sym_integer_token2] = ACTIONS(2695), + [aux_sym_float_token1] = ACTIONS(2693), + [aux_sym_float_token2] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [aux_sym_string_token1] = ACTIONS(2695), + [aux_sym_string_token3] = ACTIONS(2695), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2695), [sym__closing_brace_unmarker] = ACTIONS(3), }, [421] = { - [sym_identifier] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_package] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_using] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_case] = ACTIONS(2080), - [anon_sym_default] = ACTIONS(2080), - [anon_sym_cast] = ACTIONS(2080), - [anon_sym_DOLLARtype] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_untyped] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_this] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2080), - [anon_sym_AT_COLON] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2082), - [anon_sym_PERCENT] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_GT_GT_GT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_EQ_EQ] = ACTIONS(2082), - [anon_sym_BANG_EQ] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2080), - [anon_sym_GT_EQ] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_QMARK_QMARK] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(2080), - [sym__rangeOperator] = ACTIONS(2082), - [anon_sym_null] = ACTIONS(2080), - [anon_sym_macro] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_inline] = ACTIONS(2080), - [anon_sym_overload] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_final] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [aux_sym_integer_token1] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token1] = ACTIONS(2080), - [aux_sym_float_token2] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [aux_sym_string_token1] = ACTIONS(2082), - [aux_sym_string_token3] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2082), + [sym_identifier] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_package] = ACTIONS(2697), + [anon_sym_import] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_case] = ACTIONS(2697), + [anon_sym_default] = ACTIONS(2697), + [anon_sym_cast] = ACTIONS(2697), + [anon_sym_DOLLARtype] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_untyped] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_this] = ACTIONS(2697), + [anon_sym_AT] = ACTIONS(2697), + [anon_sym_AT_COLON] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_catch] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2699), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_EQ_EQ] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2699), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2699), + [anon_sym_EQ_GT] = ACTIONS(2699), + [anon_sym_QMARK_QMARK] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2699), + [anon_sym_null] = ACTIONS(2697), + [anon_sym_macro] = ACTIONS(2697), + [anon_sym_abstract] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_overload] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2697), + [anon_sym_final] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_interface] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_function] = ACTIONS(2697), + [anon_sym_var] = ACTIONS(2697), + [aux_sym_integer_token1] = ACTIONS(2697), + [aux_sym_integer_token2] = ACTIONS(2699), + [aux_sym_float_token1] = ACTIONS(2697), + [aux_sym_float_token2] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [aux_sym_string_token1] = ACTIONS(2699), + [aux_sym_string_token3] = ACTIONS(2699), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2699), [sym__closing_brace_unmarker] = ACTIONS(3), }, [422] = { - [sym_identifier] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_package] = ACTIONS(2084), - [anon_sym_import] = ACTIONS(2084), - [anon_sym_using] = ACTIONS(2084), - [anon_sym_throw] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_case] = ACTIONS(2084), - [anon_sym_default] = ACTIONS(2084), - [anon_sym_cast] = ACTIONS(2084), - [anon_sym_DOLLARtype] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_untyped] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_this] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2084), - [anon_sym_AT_COLON] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_new] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2086), - [anon_sym_PERCENT] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_LT_LT] = ACTIONS(2086), - [anon_sym_GT_GT] = ACTIONS(2084), - [anon_sym_GT_GT_GT] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2086), - [anon_sym_AMP_AMP] = ACTIONS(2086), - [anon_sym_PIPE_PIPE] = ACTIONS(2086), - [anon_sym_EQ_EQ] = ACTIONS(2086), - [anon_sym_BANG_EQ] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2086), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_GT_EQ] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2086), - [anon_sym_QMARK_QMARK] = ACTIONS(2086), - [anon_sym_EQ] = ACTIONS(2084), - [sym__rangeOperator] = ACTIONS(2086), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_macro] = ACTIONS(2084), - [anon_sym_abstract] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_public] = ACTIONS(2084), - [anon_sym_private] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_inline] = ACTIONS(2084), - [anon_sym_overload] = ACTIONS(2084), - [anon_sym_override] = ACTIONS(2084), - [anon_sym_final] = ACTIONS(2084), - [anon_sym_class] = ACTIONS(2084), - [anon_sym_interface] = ACTIONS(2084), - [anon_sym_typedef] = ACTIONS(2084), - [anon_sym_function] = ACTIONS(2084), - [anon_sym_var] = ACTIONS(2084), - [aux_sym_integer_token1] = ACTIONS(2084), - [aux_sym_integer_token2] = ACTIONS(2086), - [aux_sym_float_token1] = ACTIONS(2084), - [aux_sym_float_token2] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym_string_token1] = ACTIONS(2086), - [aux_sym_string_token3] = ACTIONS(2086), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2086), + [sym_identifier] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_package] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_case] = ACTIONS(2701), + [anon_sym_default] = ACTIONS(2701), + [anon_sym_cast] = ACTIONS(2701), + [anon_sym_DOLLARtype] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_untyped] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_this] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2701), + [anon_sym_AT_COLON] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_catch] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2701), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_EQ_GT] = ACTIONS(2703), + [anon_sym_QMARK_QMARK] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2701), + [anon_sym_macro] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_overload] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_final] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [aux_sym_integer_token1] = ACTIONS(2701), + [aux_sym_integer_token2] = ACTIONS(2703), + [aux_sym_float_token1] = ACTIONS(2701), + [aux_sym_float_token2] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [aux_sym_string_token1] = ACTIONS(2703), + [aux_sym_string_token3] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2703), [sym__closing_brace_unmarker] = ACTIONS(3), }, [423] = { - [sym_identifier] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_package] = ACTIONS(2088), - [anon_sym_import] = ACTIONS(2088), - [anon_sym_using] = ACTIONS(2088), - [anon_sym_throw] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_case] = ACTIONS(2088), - [anon_sym_default] = ACTIONS(2088), - [anon_sym_cast] = ACTIONS(2088), - [anon_sym_DOLLARtype] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_untyped] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_this] = ACTIONS(2088), - [anon_sym_AT] = ACTIONS(2088), - [anon_sym_AT_COLON] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_new] = ACTIONS(2088), - [anon_sym_TILDE] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2088), - [anon_sym_PLUS_PLUS] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2088), - [anon_sym_PLUS] = ACTIONS(2088), - [anon_sym_LT_LT] = ACTIONS(2090), - [anon_sym_GT_GT] = ACTIONS(2088), - [anon_sym_GT_GT_GT] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_LT_EQ] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_EQ] = ACTIONS(2090), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_QMARK_QMARK] = ACTIONS(2090), - [anon_sym_EQ] = ACTIONS(2088), - [sym__rangeOperator] = ACTIONS(2090), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_macro] = ACTIONS(2088), - [anon_sym_abstract] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_public] = ACTIONS(2088), - [anon_sym_private] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_inline] = ACTIONS(2088), - [anon_sym_overload] = ACTIONS(2088), - [anon_sym_override] = ACTIONS(2088), - [anon_sym_final] = ACTIONS(2088), - [anon_sym_class] = ACTIONS(2088), - [anon_sym_interface] = ACTIONS(2088), - [anon_sym_typedef] = ACTIONS(2088), - [anon_sym_function] = ACTIONS(2088), - [anon_sym_var] = ACTIONS(2088), - [aux_sym_integer_token1] = ACTIONS(2088), - [aux_sym_integer_token2] = ACTIONS(2090), - [aux_sym_float_token1] = ACTIONS(2088), - [aux_sym_float_token2] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [aux_sym_string_token1] = ACTIONS(2090), - [aux_sym_string_token3] = ACTIONS(2090), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2090), + [sym_identifier] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_package] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_case] = ACTIONS(2705), + [anon_sym_default] = ACTIONS(2705), + [anon_sym_cast] = ACTIONS(2705), + [anon_sym_DOLLARtype] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_untyped] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_this] = ACTIONS(2705), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_AT_COLON] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_catch] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2707), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_EQ_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_EQ_GT] = ACTIONS(2707), + [anon_sym_QMARK_QMARK] = ACTIONS(2707), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2707), + [anon_sym_null] = ACTIONS(2705), + [anon_sym_macro] = ACTIONS(2705), + [anon_sym_abstract] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_private] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_overload] = ACTIONS(2705), + [anon_sym_override] = ACTIONS(2705), + [anon_sym_final] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_function] = ACTIONS(2705), + [anon_sym_var] = ACTIONS(2705), + [aux_sym_integer_token1] = ACTIONS(2705), + [aux_sym_integer_token2] = ACTIONS(2707), + [aux_sym_float_token1] = ACTIONS(2705), + [aux_sym_float_token2] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [aux_sym_string_token1] = ACTIONS(2707), + [aux_sym_string_token3] = ACTIONS(2707), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2707), [sym__closing_brace_unmarker] = ACTIONS(3), }, [424] = { - [sym_identifier] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_package] = ACTIONS(2092), - [anon_sym_import] = ACTIONS(2092), - [anon_sym_using] = ACTIONS(2092), - [anon_sym_throw] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_case] = ACTIONS(2092), - [anon_sym_default] = ACTIONS(2092), - [anon_sym_cast] = ACTIONS(2092), - [anon_sym_DOLLARtype] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_untyped] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_this] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_AT_COLON] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_new] = ACTIONS(2092), - [anon_sym_TILDE] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2092), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2094), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_GT_GT_GT] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_EQ_GT] = ACTIONS(2094), - [anon_sym_QMARK_QMARK] = ACTIONS(2094), - [anon_sym_EQ] = ACTIONS(2092), - [sym__rangeOperator] = ACTIONS(2094), - [anon_sym_null] = ACTIONS(2092), - [anon_sym_macro] = ACTIONS(2092), - [anon_sym_abstract] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_public] = ACTIONS(2092), - [anon_sym_private] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_inline] = ACTIONS(2092), - [anon_sym_overload] = ACTIONS(2092), - [anon_sym_override] = ACTIONS(2092), - [anon_sym_final] = ACTIONS(2092), - [anon_sym_class] = ACTIONS(2092), - [anon_sym_interface] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2092), - [anon_sym_function] = ACTIONS(2092), - [anon_sym_var] = ACTIONS(2092), - [aux_sym_integer_token1] = ACTIONS(2092), - [aux_sym_integer_token2] = ACTIONS(2094), - [aux_sym_float_token1] = ACTIONS(2092), - [aux_sym_float_token2] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [aux_sym_string_token1] = ACTIONS(2094), - [aux_sym_string_token3] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2094), + [sym_identifier] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_package] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_case] = ACTIONS(2709), + [anon_sym_default] = ACTIONS(2709), + [anon_sym_cast] = ACTIONS(2709), + [anon_sym_DOLLARtype] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_untyped] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_this] = ACTIONS(2709), + [anon_sym_AT] = ACTIONS(2709), + [anon_sym_AT_COLON] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_LT_LT] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_GT_GT_GT] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2711), + [anon_sym_EQ_GT] = ACTIONS(2711), + [anon_sym_QMARK_QMARK] = ACTIONS(2711), + [anon_sym_EQ] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2711), + [anon_sym_null] = ACTIONS(2709), + [anon_sym_macro] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_overload] = ACTIONS(2709), + [anon_sym_override] = ACTIONS(2709), + [anon_sym_final] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_interface] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_function] = ACTIONS(2709), + [anon_sym_var] = ACTIONS(2709), + [aux_sym_integer_token1] = ACTIONS(2709), + [aux_sym_integer_token2] = ACTIONS(2711), + [aux_sym_float_token1] = ACTIONS(2709), + [aux_sym_float_token2] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [aux_sym_string_token1] = ACTIONS(2711), + [aux_sym_string_token3] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2711), [sym__closing_brace_unmarker] = ACTIONS(3), }, [425] = { - [sym_identifier] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_package] = ACTIONS(2096), - [anon_sym_import] = ACTIONS(2096), - [anon_sym_using] = ACTIONS(2096), - [anon_sym_throw] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_case] = ACTIONS(2096), - [anon_sym_default] = ACTIONS(2096), - [anon_sym_cast] = ACTIONS(2096), - [anon_sym_DOLLARtype] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_untyped] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2096), - [anon_sym_AT_COLON] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_new] = ACTIONS(2096), - [anon_sym_TILDE] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_GT_GT_GT] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_QMARK_QMARK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym__rangeOperator] = ACTIONS(2098), - [anon_sym_null] = ACTIONS(2096), - [anon_sym_macro] = ACTIONS(2096), - [anon_sym_abstract] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_public] = ACTIONS(2096), - [anon_sym_private] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_inline] = ACTIONS(2096), - [anon_sym_overload] = ACTIONS(2096), - [anon_sym_override] = ACTIONS(2096), - [anon_sym_final] = ACTIONS(2096), - [anon_sym_class] = ACTIONS(2096), - [anon_sym_interface] = ACTIONS(2096), - [anon_sym_typedef] = ACTIONS(2096), - [anon_sym_function] = ACTIONS(2096), - [anon_sym_var] = ACTIONS(2096), - [aux_sym_integer_token1] = ACTIONS(2096), - [aux_sym_integer_token2] = ACTIONS(2098), - [aux_sym_float_token1] = ACTIONS(2096), - [aux_sym_float_token2] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [aux_sym_string_token1] = ACTIONS(2098), - [aux_sym_string_token3] = ACTIONS(2098), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2098), + [sym_identifier] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_package] = ACTIONS(2713), + [anon_sym_import] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_case] = ACTIONS(2713), + [anon_sym_default] = ACTIONS(2713), + [anon_sym_cast] = ACTIONS(2713), + [anon_sym_DOLLARtype] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_untyped] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_this] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_AT_COLON] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_catch] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2713), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_EQ_GT] = ACTIONS(2715), + [anon_sym_QMARK_QMARK] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), + [anon_sym_null] = ACTIONS(2713), + [anon_sym_macro] = ACTIONS(2713), + [anon_sym_abstract] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_public] = ACTIONS(2713), + [anon_sym_private] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_overload] = ACTIONS(2713), + [anon_sym_override] = ACTIONS(2713), + [anon_sym_final] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_function] = ACTIONS(2713), + [anon_sym_var] = ACTIONS(2713), + [aux_sym_integer_token1] = ACTIONS(2713), + [aux_sym_integer_token2] = ACTIONS(2715), + [aux_sym_float_token1] = ACTIONS(2713), + [aux_sym_float_token2] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [aux_sym_string_token1] = ACTIONS(2715), + [aux_sym_string_token3] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2715), [sym__closing_brace_unmarker] = ACTIONS(3), }, [426] = { - [sym_identifier] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_package] = ACTIONS(2100), - [anon_sym_import] = ACTIONS(2100), - [anon_sym_using] = ACTIONS(2100), - [anon_sym_throw] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_case] = ACTIONS(2100), - [anon_sym_default] = ACTIONS(2100), - [anon_sym_cast] = ACTIONS(2100), - [anon_sym_DOLLARtype] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_untyped] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_this] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2100), - [anon_sym_AT_COLON] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_new] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2102), - [anon_sym_PERCENT] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_SLASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2102), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_GT_GT_GT] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_EQ_EQ] = ACTIONS(2102), - [anon_sym_BANG_EQ] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_LT_EQ] = ACTIONS(2102), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2102), - [anon_sym_EQ_GT] = ACTIONS(2102), - [anon_sym_QMARK_QMARK] = ACTIONS(2102), - [anon_sym_EQ] = ACTIONS(2100), - [sym__rangeOperator] = ACTIONS(2102), - [anon_sym_null] = ACTIONS(2100), - [anon_sym_macro] = ACTIONS(2100), - [anon_sym_abstract] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_public] = ACTIONS(2100), - [anon_sym_private] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_inline] = ACTIONS(2100), - [anon_sym_overload] = ACTIONS(2100), - [anon_sym_override] = ACTIONS(2100), - [anon_sym_final] = ACTIONS(2100), - [anon_sym_class] = ACTIONS(2100), - [anon_sym_interface] = ACTIONS(2100), - [anon_sym_typedef] = ACTIONS(2100), - [anon_sym_function] = ACTIONS(2100), - [anon_sym_var] = ACTIONS(2100), - [aux_sym_integer_token1] = ACTIONS(2100), - [aux_sym_integer_token2] = ACTIONS(2102), - [aux_sym_float_token1] = ACTIONS(2100), - [aux_sym_float_token2] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [aux_sym_string_token1] = ACTIONS(2102), - [aux_sym_string_token3] = ACTIONS(2102), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2102), + [sym_identifier] = ACTIONS(2717), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_package] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_case] = ACTIONS(2717), + [anon_sym_default] = ACTIONS(2717), + [anon_sym_cast] = ACTIONS(2717), + [anon_sym_DOLLARtype] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_untyped] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_this] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_AT_COLON] = ACTIONS(2719), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_catch] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2717), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2717), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_EQ_GT] = ACTIONS(2719), + [anon_sym_QMARK_QMARK] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2719), + [anon_sym_null] = ACTIONS(2717), + [anon_sym_macro] = ACTIONS(2717), + [anon_sym_abstract] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_public] = ACTIONS(2717), + [anon_sym_private] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_overload] = ACTIONS(2717), + [anon_sym_override] = ACTIONS(2717), + [anon_sym_final] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_interface] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_function] = ACTIONS(2717), + [anon_sym_var] = ACTIONS(2717), + [aux_sym_integer_token1] = ACTIONS(2717), + [aux_sym_integer_token2] = ACTIONS(2719), + [aux_sym_float_token1] = ACTIONS(2717), + [aux_sym_float_token2] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [aux_sym_string_token1] = ACTIONS(2719), + [aux_sym_string_token3] = ACTIONS(2719), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2719), [sym__closing_brace_unmarker] = ACTIONS(3), }, [427] = { - [sym_identifier] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_package] = ACTIONS(2104), - [anon_sym_import] = ACTIONS(2104), - [anon_sym_using] = ACTIONS(2104), - [anon_sym_throw] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_case] = ACTIONS(2104), - [anon_sym_default] = ACTIONS(2104), - [anon_sym_cast] = ACTIONS(2104), - [anon_sym_DOLLARtype] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_untyped] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_this] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2104), - [anon_sym_AT_COLON] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_new] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PERCENT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_GT_GT_GT] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_EQ_EQ] = ACTIONS(2106), - [anon_sym_BANG_EQ] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_LT_EQ] = ACTIONS(2106), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_EQ] = ACTIONS(2106), - [anon_sym_EQ_GT] = ACTIONS(2106), - [anon_sym_QMARK_QMARK] = ACTIONS(2106), - [anon_sym_EQ] = ACTIONS(2104), - [sym__rangeOperator] = ACTIONS(2106), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_macro] = ACTIONS(2104), - [anon_sym_abstract] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_public] = ACTIONS(2104), - [anon_sym_private] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_inline] = ACTIONS(2104), - [anon_sym_overload] = ACTIONS(2104), - [anon_sym_override] = ACTIONS(2104), - [anon_sym_final] = ACTIONS(2104), - [anon_sym_class] = ACTIONS(2104), - [anon_sym_interface] = ACTIONS(2104), - [anon_sym_typedef] = ACTIONS(2104), - [anon_sym_function] = ACTIONS(2104), - [anon_sym_var] = ACTIONS(2104), - [aux_sym_integer_token1] = ACTIONS(2104), - [aux_sym_integer_token2] = ACTIONS(2106), - [aux_sym_float_token1] = ACTIONS(2104), - [aux_sym_float_token2] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [aux_sym_string_token1] = ACTIONS(2106), - [aux_sym_string_token3] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2106), + [sym_identifier] = ACTIONS(2721), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_package] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_case] = ACTIONS(2721), + [anon_sym_default] = ACTIONS(2721), + [anon_sym_cast] = ACTIONS(2721), + [anon_sym_DOLLARtype] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_untyped] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_this] = ACTIONS(2721), + [anon_sym_AT] = ACTIONS(2721), + [anon_sym_AT_COLON] = ACTIONS(2723), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT] = ACTIONS(2721), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2721), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_EQ_GT] = ACTIONS(2723), + [anon_sym_QMARK_QMARK] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2723), + [anon_sym_null] = ACTIONS(2721), + [anon_sym_macro] = ACTIONS(2721), + [anon_sym_abstract] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_overload] = ACTIONS(2721), + [anon_sym_override] = ACTIONS(2721), + [anon_sym_final] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_interface] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_function] = ACTIONS(2721), + [anon_sym_var] = ACTIONS(2721), + [aux_sym_integer_token1] = ACTIONS(2721), + [aux_sym_integer_token2] = ACTIONS(2723), + [aux_sym_float_token1] = ACTIONS(2721), + [aux_sym_float_token2] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [aux_sym_string_token1] = ACTIONS(2723), + [aux_sym_string_token3] = ACTIONS(2723), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2723), [sym__closing_brace_unmarker] = ACTIONS(3), }, [428] = { - [sym_identifier] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_package] = ACTIONS(1596), - [anon_sym_import] = ACTIONS(1596), - [anon_sym_using] = ACTIONS(1596), - [anon_sym_throw] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_case] = ACTIONS(1596), - [anon_sym_default] = ACTIONS(1596), - [anon_sym_cast] = ACTIONS(1596), - [anon_sym_DOLLARtype] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_untyped] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_this] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_AT_COLON] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_PERCENT] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1598), - [anon_sym_GT_GT] = ACTIONS(1596), - [anon_sym_GT_GT_GT] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1598), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1598), - [anon_sym_EQ_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [anon_sym_QMARK_QMARK] = ACTIONS(1598), - [anon_sym_EQ] = ACTIONS(1596), - [sym__rangeOperator] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_macro] = ACTIONS(1596), - [anon_sym_abstract] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_inline] = ACTIONS(1596), - [anon_sym_overload] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_final] = ACTIONS(1596), - [anon_sym_class] = ACTIONS(1596), - [anon_sym_interface] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1596), - [anon_sym_function] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [aux_sym_integer_token1] = ACTIONS(1596), - [aux_sym_integer_token2] = ACTIONS(1598), - [aux_sym_float_token1] = ACTIONS(1596), - [aux_sym_float_token2] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym_string_token1] = ACTIONS(1598), - [aux_sym_string_token3] = ACTIONS(1598), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1598), + [sym_identifier] = ACTIONS(2725), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_package] = ACTIONS(2725), + [anon_sym_import] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_case] = ACTIONS(2725), + [anon_sym_default] = ACTIONS(2725), + [anon_sym_cast] = ACTIONS(2725), + [anon_sym_DOLLARtype] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_untyped] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_this] = ACTIONS(2725), + [anon_sym_AT] = ACTIONS(2725), + [anon_sym_AT_COLON] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_catch] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_EQ_GT] = ACTIONS(2727), + [anon_sym_QMARK_QMARK] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), + [anon_sym_null] = ACTIONS(2725), + [anon_sym_macro] = ACTIONS(2725), + [anon_sym_abstract] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_overload] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2725), + [anon_sym_final] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_interface] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_function] = ACTIONS(2725), + [anon_sym_var] = ACTIONS(2725), + [aux_sym_integer_token1] = ACTIONS(2725), + [aux_sym_integer_token2] = ACTIONS(2727), + [aux_sym_float_token1] = ACTIONS(2725), + [aux_sym_float_token2] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [aux_sym_string_token1] = ACTIONS(2727), + [aux_sym_string_token3] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2727), [sym__closing_brace_unmarker] = ACTIONS(3), }, [429] = { - [sym_identifier] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_package] = ACTIONS(2108), - [anon_sym_import] = ACTIONS(2108), - [anon_sym_using] = ACTIONS(2108), - [anon_sym_throw] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_switch] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_case] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2108), - [anon_sym_cast] = ACTIONS(2108), - [anon_sym_DOLLARtype] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_untyped] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_this] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_AT_COLON] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_new] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2110), - [anon_sym_PERCENT] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(2110), - [anon_sym_GT_GT] = ACTIONS(2108), - [anon_sym_GT_GT_GT] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2110), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_EQ_EQ] = ACTIONS(2110), - [anon_sym_BANG_EQ] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2110), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2110), - [anon_sym_QMARK_QMARK] = ACTIONS(2110), - [anon_sym_EQ] = ACTIONS(2108), - [sym__rangeOperator] = ACTIONS(2110), - [anon_sym_null] = ACTIONS(2108), - [anon_sym_macro] = ACTIONS(2108), - [anon_sym_abstract] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_public] = ACTIONS(2108), - [anon_sym_private] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_inline] = ACTIONS(2108), - [anon_sym_overload] = ACTIONS(2108), - [anon_sym_override] = ACTIONS(2108), - [anon_sym_final] = ACTIONS(2108), - [anon_sym_class] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_typedef] = ACTIONS(2108), - [anon_sym_function] = ACTIONS(2108), - [anon_sym_var] = ACTIONS(2108), - [aux_sym_integer_token1] = ACTIONS(2108), - [aux_sym_integer_token2] = ACTIONS(2110), - [aux_sym_float_token1] = ACTIONS(2108), - [aux_sym_float_token2] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [aux_sym_string_token1] = ACTIONS(2110), - [aux_sym_string_token3] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2110), + [sym_identifier] = ACTIONS(2729), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_package] = ACTIONS(2729), + [anon_sym_import] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_case] = ACTIONS(2729), + [anon_sym_default] = ACTIONS(2729), + [anon_sym_cast] = ACTIONS(2729), + [anon_sym_DOLLARtype] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_untyped] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_this] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_AT_COLON] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_catch] = ACTIONS(2729), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2731), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_LT_LT] = ACTIONS(2731), + [anon_sym_GT_GT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_PIPE_PIPE] = ACTIONS(2731), + [anon_sym_EQ_EQ] = ACTIONS(2731), + [anon_sym_BANG_EQ] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2731), + [anon_sym_EQ_GT] = ACTIONS(2731), + [anon_sym_QMARK_QMARK] = ACTIONS(2731), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2729), + [anon_sym_macro] = ACTIONS(2729), + [anon_sym_abstract] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_public] = ACTIONS(2729), + [anon_sym_private] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_overload] = ACTIONS(2729), + [anon_sym_override] = ACTIONS(2729), + [anon_sym_final] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_interface] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_function] = ACTIONS(2729), + [anon_sym_var] = ACTIONS(2729), + [aux_sym_integer_token1] = ACTIONS(2729), + [aux_sym_integer_token2] = ACTIONS(2731), + [aux_sym_float_token1] = ACTIONS(2729), + [aux_sym_float_token2] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [aux_sym_string_token1] = ACTIONS(2731), + [aux_sym_string_token3] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2731), [sym__closing_brace_unmarker] = ACTIONS(3), }, [430] = { - [sym_identifier] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_package] = ACTIONS(2112), - [anon_sym_import] = ACTIONS(2112), - [anon_sym_using] = ACTIONS(2112), - [anon_sym_throw] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2112), - [anon_sym_default] = ACTIONS(2112), - [anon_sym_cast] = ACTIONS(2112), - [anon_sym_DOLLARtype] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_untyped] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_this] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_AT_COLON] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_new] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2114), - [anon_sym_PERCENT] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(2114), - [anon_sym_GT_GT] = ACTIONS(2112), - [anon_sym_GT_GT_GT] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(2114), - [anon_sym_AMP_AMP] = ACTIONS(2114), - [anon_sym_PIPE_PIPE] = ACTIONS(2114), - [anon_sym_EQ_EQ] = ACTIONS(2114), - [anon_sym_BANG_EQ] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2114), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2114), - [anon_sym_QMARK_QMARK] = ACTIONS(2114), - [anon_sym_EQ] = ACTIONS(2112), - [sym__rangeOperator] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2112), - [anon_sym_macro] = ACTIONS(2112), - [anon_sym_abstract] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_public] = ACTIONS(2112), - [anon_sym_private] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_inline] = ACTIONS(2112), - [anon_sym_overload] = ACTIONS(2112), - [anon_sym_override] = ACTIONS(2112), - [anon_sym_final] = ACTIONS(2112), - [anon_sym_class] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_typedef] = ACTIONS(2112), - [anon_sym_function] = ACTIONS(2112), - [anon_sym_var] = ACTIONS(2112), - [aux_sym_integer_token1] = ACTIONS(2112), - [aux_sym_integer_token2] = ACTIONS(2114), - [aux_sym_float_token1] = ACTIONS(2112), - [aux_sym_float_token2] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [aux_sym_string_token1] = ACTIONS(2114), - [aux_sym_string_token3] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2114), + [sym_identifier] = ACTIONS(2733), + [anon_sym_POUND] = ACTIONS(2735), + [anon_sym_package] = ACTIONS(2733), + [anon_sym_import] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_case] = ACTIONS(2733), + [anon_sym_default] = ACTIONS(2733), + [anon_sym_cast] = ACTIONS(2733), + [anon_sym_DOLLARtype] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_untyped] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_this] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_AT_COLON] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_catch] = ACTIONS(2733), + [anon_sym_else] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PERCENT] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_LT_LT] = ACTIONS(2735), + [anon_sym_GT_GT] = ACTIONS(2733), + [anon_sym_GT_GT_GT] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_PIPE] = ACTIONS(2733), + [anon_sym_CARET] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2733), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2733), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(2735), + [anon_sym_QMARK_QMARK] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(2733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2735), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_macro] = ACTIONS(2733), + [anon_sym_abstract] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_public] = ACTIONS(2733), + [anon_sym_private] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_overload] = ACTIONS(2733), + [anon_sym_override] = ACTIONS(2733), + [anon_sym_final] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_interface] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_function] = ACTIONS(2733), + [anon_sym_var] = ACTIONS(2733), + [aux_sym_integer_token1] = ACTIONS(2733), + [aux_sym_integer_token2] = ACTIONS(2735), + [aux_sym_float_token1] = ACTIONS(2733), + [aux_sym_float_token2] = ACTIONS(2735), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [aux_sym_string_token1] = ACTIONS(2735), + [aux_sym_string_token3] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2735), [sym__closing_brace_unmarker] = ACTIONS(3), }, [431] = { - [sym_identifier] = ACTIONS(2116), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_package] = ACTIONS(2116), - [anon_sym_import] = ACTIONS(2116), - [anon_sym_using] = ACTIONS(2116), - [anon_sym_throw] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_switch] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_case] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_cast] = ACTIONS(2116), - [anon_sym_DOLLARtype] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_untyped] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_this] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2116), - [anon_sym_AT_COLON] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_new] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_PERCENT] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_LT_LT] = ACTIONS(2118), - [anon_sym_GT_GT] = ACTIONS(2116), - [anon_sym_GT_GT_GT] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2118), - [anon_sym_PIPE_PIPE] = ACTIONS(2118), - [anon_sym_EQ_EQ] = ACTIONS(2118), - [anon_sym_BANG_EQ] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_LT_EQ] = ACTIONS(2118), - [anon_sym_GT] = ACTIONS(2116), - [anon_sym_GT_EQ] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2118), - [anon_sym_QMARK_QMARK] = ACTIONS(2118), - [anon_sym_EQ] = ACTIONS(2116), - [sym__rangeOperator] = ACTIONS(2118), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_macro] = ACTIONS(2116), - [anon_sym_abstract] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_public] = ACTIONS(2116), - [anon_sym_private] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_inline] = ACTIONS(2116), - [anon_sym_overload] = ACTIONS(2116), - [anon_sym_override] = ACTIONS(2116), - [anon_sym_final] = ACTIONS(2116), - [anon_sym_class] = ACTIONS(2116), - [anon_sym_interface] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(2116), - [anon_sym_var] = ACTIONS(2116), - [aux_sym_integer_token1] = ACTIONS(2116), - [aux_sym_integer_token2] = ACTIONS(2118), - [aux_sym_float_token1] = ACTIONS(2116), - [aux_sym_float_token2] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [aux_sym_string_token1] = ACTIONS(2118), - [aux_sym_string_token3] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2118), + [sym_identifier] = ACTIONS(2737), + [anon_sym_POUND] = ACTIONS(2739), + [anon_sym_package] = ACTIONS(2737), + [anon_sym_import] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_case] = ACTIONS(2737), + [anon_sym_default] = ACTIONS(2737), + [anon_sym_cast] = ACTIONS(2737), + [anon_sym_DOLLARtype] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_untyped] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_this] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_AT_COLON] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_catch] = ACTIONS(2737), + [anon_sym_else] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PERCENT] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_LT_LT] = ACTIONS(2739), + [anon_sym_GT_GT] = ACTIONS(2737), + [anon_sym_GT_GT_GT] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_PIPE_PIPE] = ACTIONS(2739), + [anon_sym_EQ_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_EQ_GT] = ACTIONS(2739), + [anon_sym_QMARK_QMARK] = ACTIONS(2739), + [anon_sym_EQ] = ACTIONS(2737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2739), + [anon_sym_null] = ACTIONS(2737), + [anon_sym_macro] = ACTIONS(2737), + [anon_sym_abstract] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_public] = ACTIONS(2737), + [anon_sym_private] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_overload] = ACTIONS(2737), + [anon_sym_override] = ACTIONS(2737), + [anon_sym_final] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_interface] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_function] = ACTIONS(2737), + [anon_sym_var] = ACTIONS(2737), + [aux_sym_integer_token1] = ACTIONS(2737), + [aux_sym_integer_token2] = ACTIONS(2739), + [aux_sym_float_token1] = ACTIONS(2737), + [aux_sym_float_token2] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2737), + [anon_sym_false] = ACTIONS(2737), + [aux_sym_string_token1] = ACTIONS(2739), + [aux_sym_string_token3] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2739), [sym__closing_brace_unmarker] = ACTIONS(3), }, [432] = { - [sym_identifier] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_package] = ACTIONS(2120), - [anon_sym_import] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(2120), - [anon_sym_throw] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_case] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2120), - [anon_sym_cast] = ACTIONS(2120), - [anon_sym_DOLLARtype] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_untyped] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_this] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2120), - [anon_sym_AT_COLON] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2120), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_EQ] = ACTIONS(2120), - [sym__rangeOperator] = ACTIONS(2122), - [anon_sym_null] = ACTIONS(2120), - [anon_sym_macro] = ACTIONS(2120), - [anon_sym_abstract] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_public] = ACTIONS(2120), - [anon_sym_private] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_inline] = ACTIONS(2120), - [anon_sym_overload] = ACTIONS(2120), - [anon_sym_override] = ACTIONS(2120), - [anon_sym_final] = ACTIONS(2120), - [anon_sym_class] = ACTIONS(2120), - [anon_sym_interface] = ACTIONS(2120), - [anon_sym_typedef] = ACTIONS(2120), - [anon_sym_function] = ACTIONS(2120), - [anon_sym_var] = ACTIONS(2120), - [aux_sym_integer_token1] = ACTIONS(2120), - [aux_sym_integer_token2] = ACTIONS(2122), - [aux_sym_float_token1] = ACTIONS(2120), - [aux_sym_float_token2] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [aux_sym_string_token1] = ACTIONS(2122), - [aux_sym_string_token3] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2122), + [sym_identifier] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_package] = ACTIONS(2741), + [anon_sym_import] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_case] = ACTIONS(2741), + [anon_sym_default] = ACTIONS(2741), + [anon_sym_cast] = ACTIONS(2741), + [anon_sym_DOLLARtype] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_untyped] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_this] = ACTIONS(2741), + [anon_sym_AT] = ACTIONS(2741), + [anon_sym_AT_COLON] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_catch] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_EQ_GT] = ACTIONS(2743), + [anon_sym_QMARK_QMARK] = ACTIONS(2743), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2743), + [anon_sym_null] = ACTIONS(2741), + [anon_sym_macro] = ACTIONS(2741), + [anon_sym_abstract] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_public] = ACTIONS(2741), + [anon_sym_private] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_overload] = ACTIONS(2741), + [anon_sym_override] = ACTIONS(2741), + [anon_sym_final] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_function] = ACTIONS(2741), + [anon_sym_var] = ACTIONS(2741), + [aux_sym_integer_token1] = ACTIONS(2741), + [aux_sym_integer_token2] = ACTIONS(2743), + [aux_sym_float_token1] = ACTIONS(2741), + [aux_sym_float_token2] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [aux_sym_string_token1] = ACTIONS(2743), + [aux_sym_string_token3] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2743), [sym__closing_brace_unmarker] = ACTIONS(3), }, [433] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(2124), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(2126), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2747), + [anon_sym_package] = ACTIONS(2745), + [anon_sym_import] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_case] = ACTIONS(2745), + [anon_sym_default] = ACTIONS(2745), + [anon_sym_cast] = ACTIONS(2745), + [anon_sym_DOLLARtype] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_untyped] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_this] = ACTIONS(2745), + [anon_sym_AT] = ACTIONS(2745), + [anon_sym_AT_COLON] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_catch] = ACTIONS(2745), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PERCENT] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_EQ_GT] = ACTIONS(2747), + [anon_sym_QMARK_QMARK] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2747), + [anon_sym_null] = ACTIONS(2745), + [anon_sym_macro] = ACTIONS(2745), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_public] = ACTIONS(2745), + [anon_sym_private] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_overload] = ACTIONS(2745), + [anon_sym_override] = ACTIONS(2745), + [anon_sym_final] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_function] = ACTIONS(2745), + [anon_sym_var] = ACTIONS(2745), + [aux_sym_integer_token1] = ACTIONS(2745), + [aux_sym_integer_token2] = ACTIONS(2747), + [aux_sym_float_token1] = ACTIONS(2745), + [aux_sym_float_token2] = ACTIONS(2747), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [aux_sym_string_token1] = ACTIONS(2747), + [aux_sym_string_token3] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2747), [sym__closing_brace_unmarker] = ACTIONS(3), }, [434] = { - [sym_identifier] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_package] = ACTIONS(2128), - [anon_sym_import] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(2128), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_switch] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_case] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_cast] = ACTIONS(2128), - [anon_sym_DOLLARtype] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_untyped] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_this] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2128), - [anon_sym_AT_COLON] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2130), - [anon_sym_PERCENT] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_SLASH] = ACTIONS(2128), - [anon_sym_PLUS] = ACTIONS(2128), - [anon_sym_LT_LT] = ACTIONS(2130), - [anon_sym_GT_GT] = ACTIONS(2128), - [anon_sym_GT_GT_GT] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_CARET] = ACTIONS(2130), - [anon_sym_AMP_AMP] = ACTIONS(2130), - [anon_sym_PIPE_PIPE] = ACTIONS(2130), - [anon_sym_EQ_EQ] = ACTIONS(2130), - [anon_sym_BANG_EQ] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_LT_EQ] = ACTIONS(2130), - [anon_sym_GT] = ACTIONS(2128), - [anon_sym_GT_EQ] = ACTIONS(2130), - [anon_sym_EQ_GT] = ACTIONS(2130), - [anon_sym_QMARK_QMARK] = ACTIONS(2130), - [anon_sym_EQ] = ACTIONS(2128), - [sym__rangeOperator] = ACTIONS(2130), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_macro] = ACTIONS(2128), - [anon_sym_abstract] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_inline] = ACTIONS(2128), - [anon_sym_overload] = ACTIONS(2128), - [anon_sym_override] = ACTIONS(2128), - [anon_sym_final] = ACTIONS(2128), - [anon_sym_class] = ACTIONS(2128), - [anon_sym_interface] = ACTIONS(2128), - [anon_sym_typedef] = ACTIONS(2128), - [anon_sym_function] = ACTIONS(2128), - [anon_sym_var] = ACTIONS(2128), - [aux_sym_integer_token1] = ACTIONS(2128), - [aux_sym_integer_token2] = ACTIONS(2130), - [aux_sym_float_token1] = ACTIONS(2128), - [aux_sym_float_token2] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym_string_token1] = ACTIONS(2130), - [aux_sym_string_token3] = ACTIONS(2130), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2749), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_package] = ACTIONS(2749), + [anon_sym_import] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_case] = ACTIONS(2749), + [anon_sym_default] = ACTIONS(2749), + [anon_sym_cast] = ACTIONS(2749), + [anon_sym_DOLLARtype] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_untyped] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_this] = ACTIONS(2749), + [anon_sym_AT] = ACTIONS(2749), + [anon_sym_AT_COLON] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_catch] = ACTIONS(2749), + [anon_sym_else] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_EQ_GT] = ACTIONS(2751), + [anon_sym_QMARK_QMARK] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2751), + [anon_sym_null] = ACTIONS(2749), + [anon_sym_macro] = ACTIONS(2749), + [anon_sym_abstract] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_public] = ACTIONS(2749), + [anon_sym_private] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_overload] = ACTIONS(2749), + [anon_sym_override] = ACTIONS(2749), + [anon_sym_final] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_interface] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_function] = ACTIONS(2749), + [anon_sym_var] = ACTIONS(2749), + [aux_sym_integer_token1] = ACTIONS(2749), + [aux_sym_integer_token2] = ACTIONS(2751), + [aux_sym_float_token1] = ACTIONS(2749), + [aux_sym_float_token2] = ACTIONS(2751), + [anon_sym_true] = ACTIONS(2749), + [anon_sym_false] = ACTIONS(2749), + [aux_sym_string_token1] = ACTIONS(2751), + [aux_sym_string_token3] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2751), [sym__closing_brace_unmarker] = ACTIONS(3), }, [435] = { - [ts_builtin_sym_end] = ACTIONS(1518), - [sym_identifier] = ACTIONS(1520), - [anon_sym_POUND] = ACTIONS(1518), - [anon_sym_package] = ACTIONS(1520), - [anon_sym_import] = ACTIONS(1520), - [anon_sym_using] = ACTIONS(1520), - [anon_sym_throw] = ACTIONS(1520), - [anon_sym_LPAREN] = ACTIONS(1518), - [anon_sym_switch] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1518), - [anon_sym_cast] = ACTIONS(1520), - [anon_sym_DOLLARtype] = ACTIONS(1518), - [anon_sym_return] = ACTIONS(1520), - [anon_sym_untyped] = ACTIONS(1520), - [anon_sym_break] = ACTIONS(1520), - [anon_sym_continue] = ACTIONS(1520), - [anon_sym_LBRACK] = ACTIONS(1518), - [anon_sym_this] = ACTIONS(1520), - [anon_sym_AT] = ACTIONS(1520), - [anon_sym_AT_COLON] = ACTIONS(1518), - [anon_sym_if] = ACTIONS(1520), - [anon_sym_else] = ACTIONS(1520), - [anon_sym_elseif] = ACTIONS(1518), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_TILDE] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1520), - [anon_sym_DASH] = ACTIONS(1520), - [anon_sym_PLUS_PLUS] = ACTIONS(1518), - [anon_sym_DASH_DASH] = ACTIONS(1518), - [anon_sym_PERCENT] = ACTIONS(1518), - [anon_sym_STAR] = ACTIONS(1518), - [anon_sym_SLASH] = ACTIONS(1520), - [anon_sym_PLUS] = ACTIONS(1520), - [anon_sym_LT_LT] = ACTIONS(1518), - [anon_sym_GT_GT] = ACTIONS(1520), - [anon_sym_GT_GT_GT] = ACTIONS(1518), - [anon_sym_AMP] = ACTIONS(1520), - [anon_sym_PIPE] = ACTIONS(1520), - [anon_sym_CARET] = ACTIONS(1518), - [anon_sym_AMP_AMP] = ACTIONS(1518), - [anon_sym_PIPE_PIPE] = ACTIONS(1518), - [anon_sym_EQ_EQ] = ACTIONS(1518), - [anon_sym_BANG_EQ] = ACTIONS(1518), - [anon_sym_LT] = ACTIONS(1520), - [anon_sym_LT_EQ] = ACTIONS(1518), - [anon_sym_GT] = ACTIONS(1520), - [anon_sym_GT_EQ] = ACTIONS(1518), - [anon_sym_EQ_GT] = ACTIONS(1518), - [anon_sym_QMARK_QMARK] = ACTIONS(1518), - [anon_sym_EQ] = ACTIONS(1520), - [sym__rangeOperator] = ACTIONS(1518), - [anon_sym_null] = ACTIONS(1520), - [anon_sym_macro] = ACTIONS(1520), - [anon_sym_abstract] = ACTIONS(1520), - [anon_sym_static] = ACTIONS(1520), - [anon_sym_public] = ACTIONS(1520), - [anon_sym_private] = ACTIONS(1520), - [anon_sym_extern] = ACTIONS(1520), - [anon_sym_inline] = ACTIONS(1520), - [anon_sym_overload] = ACTIONS(1520), - [anon_sym_override] = ACTIONS(1520), - [anon_sym_final] = ACTIONS(1520), - [anon_sym_class] = ACTIONS(1520), - [anon_sym_interface] = ACTIONS(1520), - [anon_sym_typedef] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1520), - [anon_sym_var] = ACTIONS(1520), - [aux_sym_integer_token1] = ACTIONS(1520), - [aux_sym_integer_token2] = ACTIONS(1518), - [aux_sym_float_token1] = ACTIONS(1520), - [aux_sym_float_token2] = ACTIONS(1518), - [anon_sym_true] = ACTIONS(1520), - [anon_sym_false] = ACTIONS(1520), - [aux_sym_string_token1] = ACTIONS(1518), - [aux_sym_string_token3] = ACTIONS(1518), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2753), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_package] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_case] = ACTIONS(2753), + [anon_sym_default] = ACTIONS(2753), + [anon_sym_cast] = ACTIONS(2753), + [anon_sym_DOLLARtype] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_untyped] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_this] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2753), + [anon_sym_AT_COLON] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_catch] = ACTIONS(2753), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_LT_LT] = ACTIONS(2755), + [anon_sym_GT_GT] = ACTIONS(2753), + [anon_sym_GT_GT_GT] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_PIPE] = ACTIONS(2753), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_PIPE_PIPE] = ACTIONS(2755), + [anon_sym_EQ_EQ] = ACTIONS(2755), + [anon_sym_BANG_EQ] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_LT_EQ] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2755), + [anon_sym_EQ_GT] = ACTIONS(2755), + [anon_sym_QMARK_QMARK] = ACTIONS(2755), + [anon_sym_EQ] = ACTIONS(2753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2755), + [anon_sym_null] = ACTIONS(2753), + [anon_sym_macro] = ACTIONS(2753), + [anon_sym_abstract] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_private] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_overload] = ACTIONS(2753), + [anon_sym_override] = ACTIONS(2753), + [anon_sym_final] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_interface] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_function] = ACTIONS(2753), + [anon_sym_var] = ACTIONS(2753), + [aux_sym_integer_token1] = ACTIONS(2753), + [aux_sym_integer_token2] = ACTIONS(2755), + [aux_sym_float_token1] = ACTIONS(2753), + [aux_sym_float_token2] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2753), + [anon_sym_false] = ACTIONS(2753), + [aux_sym_string_token1] = ACTIONS(2755), + [aux_sym_string_token3] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2755), [sym__closing_brace_unmarker] = ACTIONS(3), }, [436] = { - [sym_identifier] = ACTIONS(1394), - [anon_sym_POUND] = ACTIONS(1392), - [anon_sym_package] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_import] = ACTIONS(1394), - [anon_sym_using] = ACTIONS(1394), - [anon_sym_throw] = ACTIONS(1394), - [anon_sym_LPAREN] = ACTIONS(1392), - [anon_sym_switch] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1392), - [anon_sym_cast] = ACTIONS(1394), - [anon_sym_DOLLARtype] = ACTIONS(1392), - [anon_sym_return] = ACTIONS(1394), - [anon_sym_untyped] = ACTIONS(1394), - [anon_sym_break] = ACTIONS(1394), - [anon_sym_continue] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1392), - [anon_sym_this] = ACTIONS(1394), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AT] = ACTIONS(1394), - [anon_sym_AT_COLON] = ACTIONS(1392), - [anon_sym_if] = ACTIONS(1394), - [anon_sym_new] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1394), - [anon_sym_DASH] = ACTIONS(1394), - [anon_sym_PLUS_PLUS] = ACTIONS(1392), - [anon_sym_DASH_DASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1392), - [anon_sym_PIPE_PIPE] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1392), - [anon_sym_BANG_EQ] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1392), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_GT_EQ] = ACTIONS(1392), - [anon_sym_EQ_GT] = ACTIONS(1392), - [anon_sym_QMARK_QMARK] = ACTIONS(1392), - [anon_sym_EQ] = ACTIONS(1394), - [sym__rangeOperator] = ACTIONS(1392), - [anon_sym_null] = ACTIONS(1394), - [anon_sym_macro] = ACTIONS(1394), - [anon_sym_abstract] = ACTIONS(1394), - [anon_sym_static] = ACTIONS(1394), - [anon_sym_public] = ACTIONS(1394), - [anon_sym_private] = ACTIONS(1394), - [anon_sym_extern] = ACTIONS(1394), - [anon_sym_inline] = ACTIONS(1394), - [anon_sym_overload] = ACTIONS(1394), - [anon_sym_override] = ACTIONS(1394), - [anon_sym_final] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1394), - [anon_sym_interface] = ACTIONS(1394), - [anon_sym_typedef] = ACTIONS(1394), - [anon_sym_function] = ACTIONS(1394), - [anon_sym_var] = ACTIONS(1394), - [aux_sym_integer_token1] = ACTIONS(1394), - [aux_sym_integer_token2] = ACTIONS(1392), - [aux_sym_float_token1] = ACTIONS(1394), - [aux_sym_float_token2] = ACTIONS(1392), - [anon_sym_true] = ACTIONS(1394), - [anon_sym_false] = ACTIONS(1394), - [aux_sym_string_token1] = ACTIONS(1392), - [aux_sym_string_token3] = ACTIONS(1392), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1392), + [sym_identifier] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_package] = ACTIONS(2757), + [anon_sym_import] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_case] = ACTIONS(2757), + [anon_sym_default] = ACTIONS(2757), + [anon_sym_cast] = ACTIONS(2757), + [anon_sym_DOLLARtype] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_untyped] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_this] = ACTIONS(2757), + [anon_sym_AT] = ACTIONS(2757), + [anon_sym_AT_COLON] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_catch] = ACTIONS(2757), + [anon_sym_else] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2757), + [anon_sym_GT_GT_GT] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_PIPE_PIPE] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_EQ_GT] = ACTIONS(2759), + [anon_sym_QMARK_QMARK] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2759), + [anon_sym_null] = ACTIONS(2757), + [anon_sym_macro] = ACTIONS(2757), + [anon_sym_abstract] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_public] = ACTIONS(2757), + [anon_sym_private] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_overload] = ACTIONS(2757), + [anon_sym_override] = ACTIONS(2757), + [anon_sym_final] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_interface] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_function] = ACTIONS(2757), + [anon_sym_var] = ACTIONS(2757), + [aux_sym_integer_token1] = ACTIONS(2757), + [aux_sym_integer_token2] = ACTIONS(2759), + [aux_sym_float_token1] = ACTIONS(2757), + [aux_sym_float_token2] = ACTIONS(2759), + [anon_sym_true] = ACTIONS(2757), + [anon_sym_false] = ACTIONS(2757), + [aux_sym_string_token1] = ACTIONS(2759), + [aux_sym_string_token3] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2759), [sym__closing_brace_unmarker] = ACTIONS(3), }, [437] = { - [sym_identifier] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_package] = ACTIONS(2132), - [anon_sym_import] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2132), - [anon_sym_throw] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_case] = ACTIONS(2132), - [anon_sym_default] = ACTIONS(2132), - [anon_sym_cast] = ACTIONS(2132), - [anon_sym_DOLLARtype] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_untyped] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_this] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_AT_COLON] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_new] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_PLUS_PLUS] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2134), - [anon_sym_PERCENT] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_SLASH] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(2132), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2132), - [anon_sym_GT_GT_GT] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_LT_EQ] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_GT_EQ] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), - [anon_sym_QMARK_QMARK] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2132), - [sym__rangeOperator] = ACTIONS(2134), - [anon_sym_null] = ACTIONS(2132), - [anon_sym_macro] = ACTIONS(2132), - [anon_sym_abstract] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_public] = ACTIONS(2132), - [anon_sym_private] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_inline] = ACTIONS(2132), - [anon_sym_overload] = ACTIONS(2132), - [anon_sym_override] = ACTIONS(2132), - [anon_sym_final] = ACTIONS(2132), - [anon_sym_class] = ACTIONS(2132), - [anon_sym_interface] = ACTIONS(2132), - [anon_sym_typedef] = ACTIONS(2132), - [anon_sym_function] = ACTIONS(2132), - [anon_sym_var] = ACTIONS(2132), - [aux_sym_integer_token1] = ACTIONS(2132), - [aux_sym_integer_token2] = ACTIONS(2134), - [aux_sym_float_token1] = ACTIONS(2132), - [aux_sym_float_token2] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [aux_sym_string_token1] = ACTIONS(2134), - [aux_sym_string_token3] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2134), + [sym_identifier] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_package] = ACTIONS(2761), + [anon_sym_import] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_case] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2761), + [anon_sym_cast] = ACTIONS(2761), + [anon_sym_DOLLARtype] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_untyped] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_this] = ACTIONS(2761), + [anon_sym_AT] = ACTIONS(2761), + [anon_sym_AT_COLON] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_catch] = ACTIONS(2761), + [anon_sym_else] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2763), + [anon_sym_GT_GT] = ACTIONS(2761), + [anon_sym_GT_GT_GT] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_PIPE_PIPE] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_EQ_GT] = ACTIONS(2763), + [anon_sym_QMARK_QMARK] = ACTIONS(2763), + [anon_sym_EQ] = ACTIONS(2761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2763), + [anon_sym_null] = ACTIONS(2761), + [anon_sym_macro] = ACTIONS(2761), + [anon_sym_abstract] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_public] = ACTIONS(2761), + [anon_sym_private] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_overload] = ACTIONS(2761), + [anon_sym_override] = ACTIONS(2761), + [anon_sym_final] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_function] = ACTIONS(2761), + [anon_sym_var] = ACTIONS(2761), + [aux_sym_integer_token1] = ACTIONS(2761), + [aux_sym_integer_token2] = ACTIONS(2763), + [aux_sym_float_token1] = ACTIONS(2761), + [aux_sym_float_token2] = ACTIONS(2763), + [anon_sym_true] = ACTIONS(2761), + [anon_sym_false] = ACTIONS(2761), + [aux_sym_string_token1] = ACTIONS(2763), + [aux_sym_string_token3] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2763), [sym__closing_brace_unmarker] = ACTIONS(3), }, [438] = { - [sym_identifier] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_import] = ACTIONS(2136), - [anon_sym_using] = ACTIONS(2136), - [anon_sym_throw] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2136), - [anon_sym_default] = ACTIONS(2136), - [anon_sym_cast] = ACTIONS(2136), - [anon_sym_DOLLARtype] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_untyped] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_this] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2136), - [anon_sym_AT_COLON] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_PLUS] = ACTIONS(2136), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2136), - [anon_sym_GT_GT_GT] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_EQ_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_EQ_GT] = ACTIONS(2138), - [anon_sym_QMARK_QMARK] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2136), - [sym__rangeOperator] = ACTIONS(2138), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_macro] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_inline] = ACTIONS(2136), - [anon_sym_overload] = ACTIONS(2136), - [anon_sym_override] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_class] = ACTIONS(2136), - [anon_sym_interface] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2136), - [anon_sym_function] = ACTIONS(2136), - [anon_sym_var] = ACTIONS(2136), - [aux_sym_integer_token1] = ACTIONS(2136), - [aux_sym_integer_token2] = ACTIONS(2138), - [aux_sym_float_token1] = ACTIONS(2136), - [aux_sym_float_token2] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym_string_token1] = ACTIONS(2138), - [aux_sym_string_token3] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2138), + [sym_identifier] = ACTIONS(2765), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_package] = ACTIONS(2765), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_case] = ACTIONS(2765), + [anon_sym_default] = ACTIONS(2765), + [anon_sym_cast] = ACTIONS(2765), + [anon_sym_DOLLARtype] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_untyped] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_this] = ACTIONS(2765), + [anon_sym_AT] = ACTIONS(2765), + [anon_sym_AT_COLON] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2767), + [anon_sym_GT_GT] = ACTIONS(2765), + [anon_sym_GT_GT_GT] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2767), + [anon_sym_EQ_EQ] = ACTIONS(2767), + [anon_sym_BANG_EQ] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_EQ_GT] = ACTIONS(2767), + [anon_sym_QMARK_QMARK] = ACTIONS(2767), + [anon_sym_EQ] = ACTIONS(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2767), + [anon_sym_null] = ACTIONS(2765), + [anon_sym_macro] = ACTIONS(2765), + [anon_sym_abstract] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_public] = ACTIONS(2765), + [anon_sym_private] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_overload] = ACTIONS(2765), + [anon_sym_override] = ACTIONS(2765), + [anon_sym_final] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_interface] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_function] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2765), + [aux_sym_integer_token1] = ACTIONS(2765), + [aux_sym_integer_token2] = ACTIONS(2767), + [aux_sym_float_token1] = ACTIONS(2765), + [aux_sym_float_token2] = ACTIONS(2767), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [aux_sym_string_token1] = ACTIONS(2767), + [aux_sym_string_token3] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2767), [sym__closing_brace_unmarker] = ACTIONS(3), }, [439] = { - [sym_identifier] = ACTIONS(1406), - [anon_sym_POUND] = ACTIONS(1404), - [anon_sym_package] = ACTIONS(1406), - [anon_sym_DOT] = ACTIONS(1406), - [anon_sym_import] = ACTIONS(1406), - [anon_sym_using] = ACTIONS(1406), - [anon_sym_throw] = ACTIONS(1406), - [anon_sym_LPAREN] = ACTIONS(1404), - [anon_sym_switch] = ACTIONS(1406), - [anon_sym_LBRACE] = ACTIONS(1404), - [anon_sym_cast] = ACTIONS(1406), - [anon_sym_DOLLARtype] = ACTIONS(1404), - [anon_sym_return] = ACTIONS(1406), - [anon_sym_untyped] = ACTIONS(1406), - [anon_sym_break] = ACTIONS(1406), - [anon_sym_continue] = ACTIONS(1406), - [anon_sym_LBRACK] = ACTIONS(1404), - [anon_sym_this] = ACTIONS(1406), - [anon_sym_QMARK] = ACTIONS(1406), - [anon_sym_AT] = ACTIONS(1406), - [anon_sym_AT_COLON] = ACTIONS(1404), - [anon_sym_if] = ACTIONS(1406), - [anon_sym_new] = ACTIONS(1406), - [anon_sym_TILDE] = ACTIONS(1404), - [anon_sym_BANG] = ACTIONS(1406), - [anon_sym_DASH] = ACTIONS(1406), - [anon_sym_PLUS_PLUS] = ACTIONS(1404), - [anon_sym_DASH_DASH] = ACTIONS(1404), - [anon_sym_PERCENT] = ACTIONS(1404), - [anon_sym_STAR] = ACTIONS(1404), - [anon_sym_SLASH] = ACTIONS(1406), - [anon_sym_PLUS] = ACTIONS(1406), - [anon_sym_LT_LT] = ACTIONS(1404), - [anon_sym_GT_GT] = ACTIONS(1406), - [anon_sym_GT_GT_GT] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(1406), - [anon_sym_PIPE] = ACTIONS(1406), - [anon_sym_CARET] = ACTIONS(1404), - [anon_sym_AMP_AMP] = ACTIONS(1404), - [anon_sym_PIPE_PIPE] = ACTIONS(1404), - [anon_sym_EQ_EQ] = ACTIONS(1404), - [anon_sym_BANG_EQ] = ACTIONS(1404), - [anon_sym_LT] = ACTIONS(1406), - [anon_sym_LT_EQ] = ACTIONS(1404), - [anon_sym_GT] = ACTIONS(1406), - [anon_sym_GT_EQ] = ACTIONS(1404), - [anon_sym_EQ_GT] = ACTIONS(1404), - [anon_sym_QMARK_QMARK] = ACTIONS(1404), - [anon_sym_EQ] = ACTIONS(1406), - [sym__rangeOperator] = ACTIONS(1404), - [anon_sym_null] = ACTIONS(1406), - [anon_sym_macro] = ACTIONS(1406), - [anon_sym_abstract] = ACTIONS(1406), - [anon_sym_static] = ACTIONS(1406), - [anon_sym_public] = ACTIONS(1406), - [anon_sym_private] = ACTIONS(1406), - [anon_sym_extern] = ACTIONS(1406), - [anon_sym_inline] = ACTIONS(1406), - [anon_sym_overload] = ACTIONS(1406), - [anon_sym_override] = ACTIONS(1406), - [anon_sym_final] = ACTIONS(1406), - [anon_sym_class] = ACTIONS(1406), - [anon_sym_interface] = ACTIONS(1406), - [anon_sym_typedef] = ACTIONS(1406), - [anon_sym_function] = ACTIONS(1406), - [anon_sym_var] = ACTIONS(1406), - [aux_sym_integer_token1] = ACTIONS(1406), - [aux_sym_integer_token2] = ACTIONS(1404), - [aux_sym_float_token1] = ACTIONS(1406), - [aux_sym_float_token2] = ACTIONS(1404), - [anon_sym_true] = ACTIONS(1406), - [anon_sym_false] = ACTIONS(1406), - [aux_sym_string_token1] = ACTIONS(1404), - [aux_sym_string_token3] = ACTIONS(1404), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1404), + [sym_identifier] = ACTIONS(2769), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_package] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_case] = ACTIONS(2769), + [anon_sym_default] = ACTIONS(2769), + [anon_sym_cast] = ACTIONS(2769), + [anon_sym_DOLLARtype] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_untyped] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_this] = ACTIONS(2769), + [anon_sym_AT] = ACTIONS(2769), + [anon_sym_AT_COLON] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_catch] = ACTIONS(2769), + [anon_sym_else] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2769), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_PIPE] = ACTIONS(2769), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2769), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_EQ_GT] = ACTIONS(2771), + [anon_sym_QMARK_QMARK] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_null] = ACTIONS(2769), + [anon_sym_macro] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_private] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_overload] = ACTIONS(2769), + [anon_sym_override] = ACTIONS(2769), + [anon_sym_final] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_interface] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_function] = ACTIONS(2769), + [anon_sym_var] = ACTIONS(2769), + [aux_sym_integer_token1] = ACTIONS(2769), + [aux_sym_integer_token2] = ACTIONS(2771), + [aux_sym_float_token1] = ACTIONS(2769), + [aux_sym_float_token2] = ACTIONS(2771), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [aux_sym_string_token1] = ACTIONS(2771), + [aux_sym_string_token3] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2771), [sym__closing_brace_unmarker] = ACTIONS(3), }, [440] = { - [sym_identifier] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_package] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_cast] = ACTIONS(2140), - [anon_sym_DOLLARtype] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_untyped] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_this] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_AT_COLON] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_EQ_GT] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2140), - [sym__rangeOperator] = ACTIONS(2142), - [anon_sym_null] = ACTIONS(2140), - [anon_sym_macro] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_inline] = ACTIONS(2140), - [anon_sym_overload] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_final] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_typedef] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2140), - [aux_sym_integer_token2] = ACTIONS(2142), - [aux_sym_float_token1] = ACTIONS(2140), - [aux_sym_float_token2] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [aux_sym_string_token1] = ACTIONS(2142), - [aux_sym_string_token3] = ACTIONS(2142), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2142), + [sym_identifier] = ACTIONS(2773), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_package] = ACTIONS(2773), + [anon_sym_import] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_case] = ACTIONS(2773), + [anon_sym_default] = ACTIONS(2773), + [anon_sym_cast] = ACTIONS(2773), + [anon_sym_DOLLARtype] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_untyped] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_this] = ACTIONS(2773), + [anon_sym_AT] = ACTIONS(2773), + [anon_sym_AT_COLON] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_catch] = ACTIONS(2773), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_LT_LT] = ACTIONS(2775), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_GT_GT_GT] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_PIPE_PIPE] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2773), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_EQ_GT] = ACTIONS(2775), + [anon_sym_QMARK_QMARK] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(2773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2775), + [anon_sym_null] = ACTIONS(2773), + [anon_sym_macro] = ACTIONS(2773), + [anon_sym_abstract] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_public] = ACTIONS(2773), + [anon_sym_private] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_overload] = ACTIONS(2773), + [anon_sym_override] = ACTIONS(2773), + [anon_sym_final] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_interface] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_function] = ACTIONS(2773), + [anon_sym_var] = ACTIONS(2773), + [aux_sym_integer_token1] = ACTIONS(2773), + [aux_sym_integer_token2] = ACTIONS(2775), + [aux_sym_float_token1] = ACTIONS(2773), + [aux_sym_float_token2] = ACTIONS(2775), + [anon_sym_true] = ACTIONS(2773), + [anon_sym_false] = ACTIONS(2773), + [aux_sym_string_token1] = ACTIONS(2775), + [aux_sym_string_token3] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2775), [sym__closing_brace_unmarker] = ACTIONS(3), }, [441] = { - [sym_identifier] = ACTIONS(1918), - [anon_sym_POUND] = ACTIONS(1916), - [anon_sym_package] = ACTIONS(1918), - [anon_sym_import] = ACTIONS(1918), - [anon_sym_using] = ACTIONS(1918), - [anon_sym_throw] = ACTIONS(1918), - [anon_sym_LPAREN] = ACTIONS(1916), - [anon_sym_switch] = ACTIONS(1918), - [anon_sym_LBRACE] = ACTIONS(1916), - [anon_sym_cast] = ACTIONS(1918), - [anon_sym_DOLLARtype] = ACTIONS(1916), - [anon_sym_return] = ACTIONS(1918), - [anon_sym_untyped] = ACTIONS(1918), - [anon_sym_break] = ACTIONS(1918), - [anon_sym_continue] = ACTIONS(1918), - [anon_sym_LBRACK] = ACTIONS(1916), - [anon_sym_this] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1918), - [anon_sym_AT_COLON] = ACTIONS(1916), - [anon_sym_if] = ACTIONS(1918), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_elseif] = ACTIONS(2146), - [anon_sym_new] = ACTIONS(1918), - [anon_sym_TILDE] = ACTIONS(1916), - [anon_sym_BANG] = ACTIONS(1918), - [anon_sym_DASH] = ACTIONS(1918), - [anon_sym_PLUS_PLUS] = ACTIONS(1916), - [anon_sym_DASH_DASH] = ACTIONS(1916), - [anon_sym_PERCENT] = ACTIONS(1916), - [anon_sym_STAR] = ACTIONS(1916), - [anon_sym_SLASH] = ACTIONS(1918), - [anon_sym_PLUS] = ACTIONS(1918), - [anon_sym_LT_LT] = ACTIONS(1916), - [anon_sym_GT_GT] = ACTIONS(1918), - [anon_sym_GT_GT_GT] = ACTIONS(1916), - [anon_sym_AMP] = ACTIONS(1918), - [anon_sym_PIPE] = ACTIONS(1918), - [anon_sym_CARET] = ACTIONS(1916), - [anon_sym_AMP_AMP] = ACTIONS(1916), - [anon_sym_PIPE_PIPE] = ACTIONS(1916), - [anon_sym_EQ_EQ] = ACTIONS(1916), - [anon_sym_BANG_EQ] = ACTIONS(1916), - [anon_sym_LT] = ACTIONS(1918), - [anon_sym_LT_EQ] = ACTIONS(1916), - [anon_sym_GT] = ACTIONS(1918), - [anon_sym_GT_EQ] = ACTIONS(1916), - [anon_sym_EQ_GT] = ACTIONS(1916), - [anon_sym_QMARK_QMARK] = ACTIONS(1916), - [anon_sym_EQ] = ACTIONS(1918), - [sym__rangeOperator] = ACTIONS(1916), - [anon_sym_null] = ACTIONS(1918), - [anon_sym_macro] = ACTIONS(1918), - [anon_sym_abstract] = ACTIONS(1918), - [anon_sym_static] = ACTIONS(1918), - [anon_sym_public] = ACTIONS(1918), - [anon_sym_private] = ACTIONS(1918), - [anon_sym_extern] = ACTIONS(1918), - [anon_sym_inline] = ACTIONS(1918), - [anon_sym_overload] = ACTIONS(1918), - [anon_sym_override] = ACTIONS(1918), - [anon_sym_final] = ACTIONS(1918), - [anon_sym_class] = ACTIONS(1918), - [anon_sym_interface] = ACTIONS(1918), - [anon_sym_typedef] = ACTIONS(1918), - [anon_sym_function] = ACTIONS(1918), - [anon_sym_var] = ACTIONS(1918), - [aux_sym_integer_token1] = ACTIONS(1918), - [aux_sym_integer_token2] = ACTIONS(1916), - [aux_sym_float_token1] = ACTIONS(1918), - [aux_sym_float_token2] = ACTIONS(1916), - [anon_sym_true] = ACTIONS(1918), - [anon_sym_false] = ACTIONS(1918), - [aux_sym_string_token1] = ACTIONS(1916), - [aux_sym_string_token3] = ACTIONS(1916), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1916), + [sym_identifier] = ACTIONS(2777), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_package] = ACTIONS(2777), + [anon_sym_import] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_case] = ACTIONS(2777), + [anon_sym_default] = ACTIONS(2777), + [anon_sym_cast] = ACTIONS(2777), + [anon_sym_DOLLARtype] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_untyped] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_this] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2777), + [anon_sym_AT_COLON] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2777), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2777), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_EQ_GT] = ACTIONS(2779), + [anon_sym_QMARK_QMARK] = ACTIONS(2779), + [anon_sym_EQ] = ACTIONS(2777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), + [anon_sym_null] = ACTIONS(2777), + [anon_sym_macro] = ACTIONS(2777), + [anon_sym_abstract] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_public] = ACTIONS(2777), + [anon_sym_private] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_overload] = ACTIONS(2777), + [anon_sym_override] = ACTIONS(2777), + [anon_sym_final] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_interface] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_var] = ACTIONS(2777), + [aux_sym_integer_token1] = ACTIONS(2777), + [aux_sym_integer_token2] = ACTIONS(2779), + [aux_sym_float_token1] = ACTIONS(2777), + [aux_sym_float_token2] = ACTIONS(2779), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [aux_sym_string_token1] = ACTIONS(2779), + [aux_sym_string_token3] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2779), [sym__closing_brace_unmarker] = ACTIONS(3), }, [442] = { - [sym_identifier] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_package] = ACTIONS(2148), - [anon_sym_import] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_case] = ACTIONS(2148), - [anon_sym_default] = ACTIONS(2148), - [anon_sym_cast] = ACTIONS(2148), - [anon_sym_DOLLARtype] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_untyped] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_this] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2148), - [anon_sym_AT_COLON] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_PERCENT] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_LT_LT] = ACTIONS(2150), - [anon_sym_GT_GT] = ACTIONS(2148), - [anon_sym_GT_GT_GT] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2150), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [anon_sym_PIPE_PIPE] = ACTIONS(2150), - [anon_sym_EQ_EQ] = ACTIONS(2150), - [anon_sym_BANG_EQ] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2148), - [anon_sym_LT_EQ] = ACTIONS(2150), - [anon_sym_GT] = ACTIONS(2148), - [anon_sym_GT_EQ] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_QMARK] = ACTIONS(2150), - [anon_sym_EQ] = ACTIONS(2148), - [sym__rangeOperator] = ACTIONS(2150), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_macro] = ACTIONS(2148), - [anon_sym_abstract] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym_overload] = ACTIONS(2148), - [anon_sym_override] = ACTIONS(2148), - [anon_sym_final] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_interface] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_function] = ACTIONS(2148), - [anon_sym_var] = ACTIONS(2148), - [aux_sym_integer_token1] = ACTIONS(2148), - [aux_sym_integer_token2] = ACTIONS(2150), - [aux_sym_float_token1] = ACTIONS(2148), - [aux_sym_float_token2] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [aux_sym_string_token1] = ACTIONS(2150), - [aux_sym_string_token3] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2150), + [sym_identifier] = ACTIONS(2781), + [anon_sym_POUND] = ACTIONS(2783), + [anon_sym_package] = ACTIONS(2781), + [anon_sym_import] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_case] = ACTIONS(2781), + [anon_sym_default] = ACTIONS(2781), + [anon_sym_cast] = ACTIONS(2781), + [anon_sym_DOLLARtype] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_untyped] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_this] = ACTIONS(2781), + [anon_sym_AT] = ACTIONS(2781), + [anon_sym_AT_COLON] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_catch] = ACTIONS(2781), + [anon_sym_else] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PERCENT] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT_GT] = ACTIONS(2781), + [anon_sym_GT_GT_GT] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_PIPE] = ACTIONS(2781), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [anon_sym_LT] = ACTIONS(2781), + [anon_sym_LT_EQ] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2781), + [anon_sym_GT_EQ] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2783), + [anon_sym_QMARK_QMARK] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2783), + [anon_sym_null] = ACTIONS(2781), + [anon_sym_macro] = ACTIONS(2781), + [anon_sym_abstract] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_overload] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2781), + [anon_sym_final] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_interface] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2781), + [anon_sym_var] = ACTIONS(2781), + [aux_sym_integer_token1] = ACTIONS(2781), + [aux_sym_integer_token2] = ACTIONS(2783), + [aux_sym_float_token1] = ACTIONS(2781), + [aux_sym_float_token2] = ACTIONS(2783), + [anon_sym_true] = ACTIONS(2781), + [anon_sym_false] = ACTIONS(2781), + [aux_sym_string_token1] = ACTIONS(2783), + [aux_sym_string_token3] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2783), [sym__closing_brace_unmarker] = ACTIONS(3), }, [443] = { - [sym_identifier] = ACTIONS(1402), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_package] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_import] = ACTIONS(1402), - [anon_sym_using] = ACTIONS(1402), - [anon_sym_throw] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_switch] = ACTIONS(1402), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_cast] = ACTIONS(1402), - [anon_sym_DOLLARtype] = ACTIONS(1400), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_untyped] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_this] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1402), - [anon_sym_AT] = ACTIONS(1402), - [anon_sym_AT_COLON] = ACTIONS(1400), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_TILDE] = ACTIONS(1400), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_PLUS_PLUS] = ACTIONS(1400), - [anon_sym_DASH_DASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1400), - [anon_sym_STAR] = ACTIONS(1400), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_LT_LT] = ACTIONS(1400), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_GT_GT_GT] = ACTIONS(1400), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1400), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ_GT] = ACTIONS(1400), - [anon_sym_QMARK_QMARK] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [sym__rangeOperator] = ACTIONS(1400), - [anon_sym_null] = ACTIONS(1402), - [anon_sym_macro] = ACTIONS(1402), - [anon_sym_abstract] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_public] = ACTIONS(1402), - [anon_sym_private] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_inline] = ACTIONS(1402), - [anon_sym_overload] = ACTIONS(1402), - [anon_sym_override] = ACTIONS(1402), - [anon_sym_final] = ACTIONS(1402), - [anon_sym_class] = ACTIONS(1402), - [anon_sym_interface] = ACTIONS(1402), - [anon_sym_typedef] = ACTIONS(1402), - [anon_sym_function] = ACTIONS(1402), - [anon_sym_var] = ACTIONS(1402), - [aux_sym_integer_token1] = ACTIONS(1402), - [aux_sym_integer_token2] = ACTIONS(1400), - [aux_sym_float_token1] = ACTIONS(1402), - [aux_sym_float_token2] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [aux_sym_string_token1] = ACTIONS(1400), - [aux_sym_string_token3] = ACTIONS(1400), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1400), + [sym_identifier] = ACTIONS(2785), + [anon_sym_POUND] = ACTIONS(2787), + [anon_sym_package] = ACTIONS(2785), + [anon_sym_import] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_case] = ACTIONS(2785), + [anon_sym_default] = ACTIONS(2785), + [anon_sym_cast] = ACTIONS(2785), + [anon_sym_DOLLARtype] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_untyped] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_this] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2785), + [anon_sym_AT_COLON] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_catch] = ACTIONS(2785), + [anon_sym_else] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PERCENT] = ACTIONS(2787), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_LT_LT] = ACTIONS(2787), + [anon_sym_GT_GT] = ACTIONS(2785), + [anon_sym_GT_GT_GT] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_CARET] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_PIPE_PIPE] = ACTIONS(2787), + [anon_sym_EQ_EQ] = ACTIONS(2787), + [anon_sym_BANG_EQ] = ACTIONS(2787), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_LT_EQ] = ACTIONS(2787), + [anon_sym_GT] = ACTIONS(2785), + [anon_sym_GT_EQ] = ACTIONS(2787), + [anon_sym_EQ_GT] = ACTIONS(2787), + [anon_sym_QMARK_QMARK] = ACTIONS(2787), + [anon_sym_EQ] = ACTIONS(2785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2787), + [anon_sym_null] = ACTIONS(2785), + [anon_sym_macro] = ACTIONS(2785), + [anon_sym_abstract] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_public] = ACTIONS(2785), + [anon_sym_private] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_overload] = ACTIONS(2785), + [anon_sym_override] = ACTIONS(2785), + [anon_sym_final] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_function] = ACTIONS(2785), + [anon_sym_var] = ACTIONS(2785), + [aux_sym_integer_token1] = ACTIONS(2785), + [aux_sym_integer_token2] = ACTIONS(2787), + [aux_sym_float_token1] = ACTIONS(2785), + [aux_sym_float_token2] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2785), + [anon_sym_false] = ACTIONS(2785), + [aux_sym_string_token1] = ACTIONS(2787), + [aux_sym_string_token3] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2787), [sym__closing_brace_unmarker] = ACTIONS(3), }, [444] = { - [sym_identifier] = ACTIONS(1398), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_package] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_import] = ACTIONS(1398), - [anon_sym_using] = ACTIONS(1398), - [anon_sym_throw] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_switch] = ACTIONS(1398), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_cast] = ACTIONS(1398), - [anon_sym_DOLLARtype] = ACTIONS(1396), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_untyped] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_this] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1398), - [anon_sym_AT] = ACTIONS(1398), - [anon_sym_AT_COLON] = ACTIONS(1396), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1398), - [anon_sym_TILDE] = ACTIONS(1396), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_PLUS_PLUS] = ACTIONS(1396), - [anon_sym_DASH_DASH] = ACTIONS(1396), - [anon_sym_PERCENT] = ACTIONS(1396), - [anon_sym_STAR] = ACTIONS(1396), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1396), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_GT_GT_GT] = ACTIONS(1396), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1396), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_EQ_GT] = ACTIONS(1396), - [anon_sym_QMARK_QMARK] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1398), - [sym__rangeOperator] = ACTIONS(1396), - [anon_sym_null] = ACTIONS(1398), - [anon_sym_macro] = ACTIONS(1398), - [anon_sym_abstract] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_public] = ACTIONS(1398), - [anon_sym_private] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_inline] = ACTIONS(1398), - [anon_sym_overload] = ACTIONS(1398), - [anon_sym_override] = ACTIONS(1398), - [anon_sym_final] = ACTIONS(1398), - [anon_sym_class] = ACTIONS(1398), - [anon_sym_interface] = ACTIONS(1398), - [anon_sym_typedef] = ACTIONS(1398), - [anon_sym_function] = ACTIONS(1398), - [anon_sym_var] = ACTIONS(1398), - [aux_sym_integer_token1] = ACTIONS(1398), - [aux_sym_integer_token2] = ACTIONS(1396), - [aux_sym_float_token1] = ACTIONS(1398), - [aux_sym_float_token2] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [aux_sym_string_token1] = ACTIONS(1396), - [aux_sym_string_token3] = ACTIONS(1396), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1396), + [sym_identifier] = ACTIONS(2789), + [anon_sym_POUND] = ACTIONS(2791), + [anon_sym_package] = ACTIONS(2789), + [anon_sym_import] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_case] = ACTIONS(2789), + [anon_sym_default] = ACTIONS(2789), + [anon_sym_cast] = ACTIONS(2789), + [anon_sym_DOLLARtype] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_untyped] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_this] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2789), + [anon_sym_AT_COLON] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_catch] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PERCENT] = ACTIONS(2791), + [anon_sym_SLASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2791), + [anon_sym_GT_GT] = ACTIONS(2789), + [anon_sym_GT_GT_GT] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2789), + [anon_sym_CARET] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_PIPE_PIPE] = ACTIONS(2791), + [anon_sym_EQ_EQ] = ACTIONS(2791), + [anon_sym_BANG_EQ] = ACTIONS(2791), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(2791), + [anon_sym_GT] = ACTIONS(2789), + [anon_sym_GT_EQ] = ACTIONS(2791), + [anon_sym_EQ_GT] = ACTIONS(2791), + [anon_sym_QMARK_QMARK] = ACTIONS(2791), + [anon_sym_EQ] = ACTIONS(2789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), + [anon_sym_null] = ACTIONS(2789), + [anon_sym_macro] = ACTIONS(2789), + [anon_sym_abstract] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_public] = ACTIONS(2789), + [anon_sym_private] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_overload] = ACTIONS(2789), + [anon_sym_override] = ACTIONS(2789), + [anon_sym_final] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_interface] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_function] = ACTIONS(2789), + [anon_sym_var] = ACTIONS(2789), + [aux_sym_integer_token1] = ACTIONS(2789), + [aux_sym_integer_token2] = ACTIONS(2791), + [aux_sym_float_token1] = ACTIONS(2789), + [aux_sym_float_token2] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [aux_sym_string_token1] = ACTIONS(2791), + [aux_sym_string_token3] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2791), [sym__closing_brace_unmarker] = ACTIONS(3), }, [445] = { - [sym_identifier] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_package] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_cast] = ACTIONS(2152), - [anon_sym_DOLLARtype] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_untyped] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_this] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_AT_COLON] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2152), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_EQ] = ACTIONS(2152), - [sym__rangeOperator] = ACTIONS(2154), - [anon_sym_null] = ACTIONS(2152), - [anon_sym_macro] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_inline] = ACTIONS(2152), - [anon_sym_overload] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_final] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [aux_sym_integer_token1] = ACTIONS(2152), - [aux_sym_integer_token2] = ACTIONS(2154), - [aux_sym_float_token1] = ACTIONS(2152), - [aux_sym_float_token2] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [aux_sym_string_token1] = ACTIONS(2154), - [aux_sym_string_token3] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2154), + [sym_identifier] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(2795), + [anon_sym_package] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_case] = ACTIONS(2793), + [anon_sym_default] = ACTIONS(2793), + [anon_sym_cast] = ACTIONS(2793), + [anon_sym_DOLLARtype] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_untyped] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_this] = ACTIONS(2793), + [anon_sym_AT] = ACTIONS(2793), + [anon_sym_AT_COLON] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_catch] = ACTIONS(2793), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2793), + [anon_sym_GT_GT_GT] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2793), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2793), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_EQ_GT] = ACTIONS(2795), + [anon_sym_QMARK_QMARK] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), + [anon_sym_null] = ACTIONS(2793), + [anon_sym_macro] = ACTIONS(2793), + [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_public] = ACTIONS(2793), + [anon_sym_private] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_overload] = ACTIONS(2793), + [anon_sym_override] = ACTIONS(2793), + [anon_sym_final] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_interface] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_function] = ACTIONS(2793), + [anon_sym_var] = ACTIONS(2793), + [aux_sym_integer_token1] = ACTIONS(2793), + [aux_sym_integer_token2] = ACTIONS(2795), + [aux_sym_float_token1] = ACTIONS(2793), + [aux_sym_float_token2] = ACTIONS(2795), + [anon_sym_true] = ACTIONS(2793), + [anon_sym_false] = ACTIONS(2793), + [aux_sym_string_token1] = ACTIONS(2795), + [aux_sym_string_token3] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2795), [sym__closing_brace_unmarker] = ACTIONS(3), }, [446] = { - [sym_identifier] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_package] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_case] = ACTIONS(2156), - [anon_sym_default] = ACTIONS(2156), - [anon_sym_cast] = ACTIONS(2156), - [anon_sym_DOLLARtype] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_untyped] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_this] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_AT_COLON] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2156), - [anon_sym_GT_GT_GT] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_EQ_GT] = ACTIONS(2158), - [anon_sym_QMARK_QMARK] = ACTIONS(2158), - [anon_sym_EQ] = ACTIONS(2156), - [sym__rangeOperator] = ACTIONS(2158), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_macro] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_overload] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_final] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [aux_sym_integer_token1] = ACTIONS(2156), - [aux_sym_integer_token2] = ACTIONS(2158), - [aux_sym_float_token1] = ACTIONS(2156), - [aux_sym_float_token2] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [aux_sym_string_token1] = ACTIONS(2158), - [aux_sym_string_token3] = ACTIONS(2158), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2158), + [sym_identifier] = ACTIONS(2797), + [anon_sym_POUND] = ACTIONS(2799), + [anon_sym_package] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_case] = ACTIONS(2797), + [anon_sym_default] = ACTIONS(2797), + [anon_sym_cast] = ACTIONS(2797), + [anon_sym_DOLLARtype] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_untyped] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_this] = ACTIONS(2797), + [anon_sym_AT] = ACTIONS(2797), + [anon_sym_AT_COLON] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_catch] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PERCENT] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_LT_LT] = ACTIONS(2799), + [anon_sym_GT_GT] = ACTIONS(2797), + [anon_sym_GT_GT_GT] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2797), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_PIPE_PIPE] = ACTIONS(2799), + [anon_sym_EQ_EQ] = ACTIONS(2799), + [anon_sym_BANG_EQ] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_LT_EQ] = ACTIONS(2799), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2799), + [anon_sym_EQ_GT] = ACTIONS(2799), + [anon_sym_QMARK_QMARK] = ACTIONS(2799), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), + [anon_sym_null] = ACTIONS(2797), + [anon_sym_macro] = ACTIONS(2797), + [anon_sym_abstract] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_private] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_overload] = ACTIONS(2797), + [anon_sym_override] = ACTIONS(2797), + [anon_sym_final] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_interface] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2797), + [anon_sym_var] = ACTIONS(2797), + [aux_sym_integer_token1] = ACTIONS(2797), + [aux_sym_integer_token2] = ACTIONS(2799), + [aux_sym_float_token1] = ACTIONS(2797), + [aux_sym_float_token2] = ACTIONS(2799), + [anon_sym_true] = ACTIONS(2797), + [anon_sym_false] = ACTIONS(2797), + [aux_sym_string_token1] = ACTIONS(2799), + [aux_sym_string_token3] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2799), [sym__closing_brace_unmarker] = ACTIONS(3), }, [447] = { - [sym_identifier] = ACTIONS(2160), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_package] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_cast] = ACTIONS(2160), - [anon_sym_DOLLARtype] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_untyped] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_this] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_AT_COLON] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_EQ_GT] = ACTIONS(2162), - [anon_sym_QMARK_QMARK] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2160), - [sym__rangeOperator] = ACTIONS(2162), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_macro] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_inline] = ACTIONS(2160), - [anon_sym_overload] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_final] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_typedef] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [aux_sym_integer_token1] = ACTIONS(2160), - [aux_sym_integer_token2] = ACTIONS(2162), - [aux_sym_float_token1] = ACTIONS(2160), - [aux_sym_float_token2] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [aux_sym_string_token1] = ACTIONS(2162), - [aux_sym_string_token3] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2162), + [sym_identifier] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2803), + [anon_sym_package] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_case] = ACTIONS(2801), + [anon_sym_default] = ACTIONS(2801), + [anon_sym_cast] = ACTIONS(2801), + [anon_sym_DOLLARtype] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_untyped] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_this] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2801), + [anon_sym_AT_COLON] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_catch] = ACTIONS(2801), + [anon_sym_else] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PERCENT] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_CARET] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_EQ_GT] = ACTIONS(2803), + [anon_sym_QMARK_QMARK] = ACTIONS(2803), + [anon_sym_EQ] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_macro] = ACTIONS(2801), + [anon_sym_abstract] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_private] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_overload] = ACTIONS(2801), + [anon_sym_override] = ACTIONS(2801), + [anon_sym_final] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_interface] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_var] = ACTIONS(2801), + [aux_sym_integer_token1] = ACTIONS(2801), + [aux_sym_integer_token2] = ACTIONS(2803), + [aux_sym_float_token1] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_true] = ACTIONS(2801), + [anon_sym_false] = ACTIONS(2801), + [aux_sym_string_token1] = ACTIONS(2803), + [aux_sym_string_token3] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2803), [sym__closing_brace_unmarker] = ACTIONS(3), }, [448] = { - [sym_identifier] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_package] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_case] = ACTIONS(2164), - [anon_sym_default] = ACTIONS(2164), - [anon_sym_cast] = ACTIONS(2164), - [anon_sym_DOLLARtype] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_untyped] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_this] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_AT_COLON] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2164), - [sym__rangeOperator] = ACTIONS(2166), - [anon_sym_null] = ACTIONS(2164), - [anon_sym_macro] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_inline] = ACTIONS(2164), - [anon_sym_overload] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_final] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_typedef] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [aux_sym_integer_token1] = ACTIONS(2164), - [aux_sym_integer_token2] = ACTIONS(2166), - [aux_sym_float_token1] = ACTIONS(2164), - [aux_sym_float_token2] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [aux_sym_string_token1] = ACTIONS(2166), - [aux_sym_string_token3] = ACTIONS(2166), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2807), + [anon_sym_package] = ACTIONS(2805), + [anon_sym_import] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_case] = ACTIONS(2805), + [anon_sym_default] = ACTIONS(2805), + [anon_sym_cast] = ACTIONS(2805), + [anon_sym_DOLLARtype] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_untyped] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_this] = ACTIONS(2805), + [anon_sym_AT] = ACTIONS(2805), + [anon_sym_AT_COLON] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_catch] = ACTIONS(2805), + [anon_sym_else] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_LT_LT] = ACTIONS(2807), + [anon_sym_GT_GT] = ACTIONS(2805), + [anon_sym_GT_GT_GT] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_EQ_EQ] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_LT_EQ] = ACTIONS(2807), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2807), + [anon_sym_EQ_GT] = ACTIONS(2807), + [anon_sym_QMARK_QMARK] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2807), + [anon_sym_null] = ACTIONS(2805), + [anon_sym_macro] = ACTIONS(2805), + [anon_sym_abstract] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_public] = ACTIONS(2805), + [anon_sym_private] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_overload] = ACTIONS(2805), + [anon_sym_override] = ACTIONS(2805), + [anon_sym_final] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_interface] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_function] = ACTIONS(2805), + [anon_sym_var] = ACTIONS(2805), + [aux_sym_integer_token1] = ACTIONS(2805), + [aux_sym_integer_token2] = ACTIONS(2807), + [aux_sym_float_token1] = ACTIONS(2805), + [aux_sym_float_token2] = ACTIONS(2807), + [anon_sym_true] = ACTIONS(2805), + [anon_sym_false] = ACTIONS(2805), + [aux_sym_string_token1] = ACTIONS(2807), + [aux_sym_string_token3] = ACTIONS(2807), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2807), [sym__closing_brace_unmarker] = ACTIONS(3), }, [449] = { - [sym_identifier] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_package] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_cast] = ACTIONS(2168), - [anon_sym_DOLLARtype] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_untyped] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_this] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_AT_COLON] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2170), - [anon_sym_PERCENT] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_GT_GT_GT] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_QMARK_QMARK] = ACTIONS(2170), - [anon_sym_EQ] = ACTIONS(2168), - [sym__rangeOperator] = ACTIONS(2170), - [anon_sym_null] = ACTIONS(2168), - [anon_sym_macro] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_inline] = ACTIONS(2168), - [anon_sym_overload] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_final] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_typedef] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [aux_sym_integer_token1] = ACTIONS(2168), - [aux_sym_integer_token2] = ACTIONS(2170), - [aux_sym_float_token1] = ACTIONS(2168), - [aux_sym_float_token2] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [aux_sym_string_token1] = ACTIONS(2170), - [aux_sym_string_token3] = ACTIONS(2170), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2170), + [sym_identifier] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_package] = ACTIONS(2633), + [anon_sym_import] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_case] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_cast] = ACTIONS(2633), + [anon_sym_DOLLARtype] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_untyped] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_this] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_AT_COLON] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_catch] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_QMARK_QMARK] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_macro] = ACTIONS(2633), + [anon_sym_abstract] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_public] = ACTIONS(2633), + [anon_sym_private] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_overload] = ACTIONS(2633), + [anon_sym_override] = ACTIONS(2633), + [anon_sym_final] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_interface] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_function] = ACTIONS(2633), + [anon_sym_var] = ACTIONS(2633), + [aux_sym_integer_token1] = ACTIONS(2633), + [aux_sym_integer_token2] = ACTIONS(2635), + [aux_sym_float_token1] = ACTIONS(2633), + [aux_sym_float_token2] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [aux_sym_string_token1] = ACTIONS(2635), + [aux_sym_string_token3] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2635), [sym__closing_brace_unmarker] = ACTIONS(3), }, [450] = { - [sym_identifier] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_package] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_case] = ACTIONS(2172), - [anon_sym_default] = ACTIONS(2172), - [anon_sym_cast] = ACTIONS(2172), - [anon_sym_DOLLARtype] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_untyped] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_this] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_AT_COLON] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2174), - [anon_sym_PERCENT] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_GT_GT_GT] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2174), - [anon_sym_AMP_AMP] = ACTIONS(2174), - [anon_sym_PIPE_PIPE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_BANG_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_LT_EQ] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_GT_EQ] = ACTIONS(2174), - [anon_sym_EQ_GT] = ACTIONS(2174), - [anon_sym_QMARK_QMARK] = ACTIONS(2174), - [anon_sym_EQ] = ACTIONS(2172), - [sym__rangeOperator] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2172), - [anon_sym_macro] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_inline] = ACTIONS(2172), - [anon_sym_overload] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_final] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_typedef] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [aux_sym_integer_token1] = ACTIONS(2172), - [aux_sym_integer_token2] = ACTIONS(2174), - [aux_sym_float_token1] = ACTIONS(2172), - [aux_sym_float_token2] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [aux_sym_string_token1] = ACTIONS(2174), - [aux_sym_string_token3] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2641), + [anon_sym_package] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_case] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_cast] = ACTIONS(2639), + [anon_sym_DOLLARtype] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_untyped] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_this] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_AT_COLON] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_QMARK_QMARK] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [anon_sym_null] = ACTIONS(2639), + [anon_sym_macro] = ACTIONS(2639), + [anon_sym_abstract] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_public] = ACTIONS(2639), + [anon_sym_private] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_overload] = ACTIONS(2639), + [anon_sym_override] = ACTIONS(2639), + [anon_sym_final] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_function] = ACTIONS(2639), + [anon_sym_var] = ACTIONS(2639), + [aux_sym_integer_token1] = ACTIONS(2639), + [aux_sym_integer_token2] = ACTIONS(2641), + [aux_sym_float_token1] = ACTIONS(2639), + [aux_sym_float_token2] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [aux_sym_string_token1] = ACTIONS(2641), + [aux_sym_string_token3] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2641), [sym__closing_brace_unmarker] = ACTIONS(3), }, [451] = { - [sym_identifier] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_package] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_cast] = ACTIONS(2176), - [anon_sym_DOLLARtype] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_untyped] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_this] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_AT_COLON] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2176), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_EQ_GT] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_EQ] = ACTIONS(2176), - [sym__rangeOperator] = ACTIONS(2178), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_macro] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_inline] = ACTIONS(2176), - [anon_sym_overload] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_final] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [aux_sym_integer_token1] = ACTIONS(2176), - [aux_sym_integer_token2] = ACTIONS(2178), - [aux_sym_float_token1] = ACTIONS(2176), - [aux_sym_float_token2] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [aux_sym_string_token1] = ACTIONS(2178), - [aux_sym_string_token3] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2178), + [sym_identifier] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2811), + [anon_sym_package] = ACTIONS(2809), + [anon_sym_import] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_case] = ACTIONS(2809), + [anon_sym_default] = ACTIONS(2809), + [anon_sym_cast] = ACTIONS(2809), + [anon_sym_DOLLARtype] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_untyped] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_this] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_AT_COLON] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_catch] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PERCENT] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_LT_LT] = ACTIONS(2811), + [anon_sym_GT_GT] = ACTIONS(2809), + [anon_sym_GT_GT_GT] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_PIPE_PIPE] = ACTIONS(2811), + [anon_sym_EQ_EQ] = ACTIONS(2811), + [anon_sym_BANG_EQ] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_LT_EQ] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_GT_EQ] = ACTIONS(2811), + [anon_sym_EQ_GT] = ACTIONS(2811), + [anon_sym_QMARK_QMARK] = ACTIONS(2811), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2811), + [anon_sym_null] = ACTIONS(2809), + [anon_sym_macro] = ACTIONS(2809), + [anon_sym_abstract] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_public] = ACTIONS(2809), + [anon_sym_private] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_overload] = ACTIONS(2809), + [anon_sym_override] = ACTIONS(2809), + [anon_sym_final] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_interface] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2809), + [anon_sym_var] = ACTIONS(2809), + [aux_sym_integer_token1] = ACTIONS(2809), + [aux_sym_integer_token2] = ACTIONS(2811), + [aux_sym_float_token1] = ACTIONS(2809), + [aux_sym_float_token2] = ACTIONS(2811), + [anon_sym_true] = ACTIONS(2809), + [anon_sym_false] = ACTIONS(2809), + [aux_sym_string_token1] = ACTIONS(2811), + [aux_sym_string_token3] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2811), [sym__closing_brace_unmarker] = ACTIONS(3), }, [452] = { - [sym_identifier] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_package] = ACTIONS(2180), - [anon_sym_import] = ACTIONS(2180), - [anon_sym_using] = ACTIONS(2180), - [anon_sym_throw] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2180), - [anon_sym_default] = ACTIONS(2180), - [anon_sym_cast] = ACTIONS(2180), - [anon_sym_DOLLARtype] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_untyped] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_this] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2180), - [anon_sym_AT_COLON] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_new] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_GT_GT_GT] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2182), - [anon_sym_EQ_EQ] = ACTIONS(2182), - [anon_sym_BANG_EQ] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_LT_EQ] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_GT_EQ] = ACTIONS(2182), - [anon_sym_EQ_GT] = ACTIONS(2182), - [anon_sym_QMARK_QMARK] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(2180), - [sym__rangeOperator] = ACTIONS(2182), - [anon_sym_null] = ACTIONS(2180), - [anon_sym_macro] = ACTIONS(2180), - [anon_sym_abstract] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2180), - [anon_sym_inline] = ACTIONS(2180), - [anon_sym_overload] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(2180), - [anon_sym_final] = ACTIONS(2180), - [anon_sym_class] = ACTIONS(2180), - [anon_sym_interface] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2180), - [anon_sym_function] = ACTIONS(2180), - [anon_sym_var] = ACTIONS(2180), - [aux_sym_integer_token1] = ACTIONS(2180), - [aux_sym_integer_token2] = ACTIONS(2182), - [aux_sym_float_token1] = ACTIONS(2180), - [aux_sym_float_token2] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [aux_sym_string_token1] = ACTIONS(2182), - [aux_sym_string_token3] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2182), + [sym_identifier] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2815), + [anon_sym_package] = ACTIONS(2813), + [anon_sym_import] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_case] = ACTIONS(2813), + [anon_sym_default] = ACTIONS(2813), + [anon_sym_cast] = ACTIONS(2813), + [anon_sym_DOLLARtype] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_untyped] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_this] = ACTIONS(2813), + [anon_sym_AT] = ACTIONS(2813), + [anon_sym_AT_COLON] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_catch] = ACTIONS(2813), + [anon_sym_else] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_LT_LT] = ACTIONS(2815), + [anon_sym_GT_GT] = ACTIONS(2813), + [anon_sym_GT_GT_GT] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_PIPE_PIPE] = ACTIONS(2815), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_EQ_GT] = ACTIONS(2815), + [anon_sym_QMARK_QMARK] = ACTIONS(2815), + [anon_sym_EQ] = ACTIONS(2813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2815), + [anon_sym_null] = ACTIONS(2813), + [anon_sym_macro] = ACTIONS(2813), + [anon_sym_abstract] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2813), + [anon_sym_private] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_overload] = ACTIONS(2813), + [anon_sym_override] = ACTIONS(2813), + [anon_sym_final] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_interface] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_function] = ACTIONS(2813), + [anon_sym_var] = ACTIONS(2813), + [aux_sym_integer_token1] = ACTIONS(2813), + [aux_sym_integer_token2] = ACTIONS(2815), + [aux_sym_float_token1] = ACTIONS(2813), + [aux_sym_float_token2] = ACTIONS(2815), + [anon_sym_true] = ACTIONS(2813), + [anon_sym_false] = ACTIONS(2813), + [aux_sym_string_token1] = ACTIONS(2815), + [aux_sym_string_token3] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2815), [sym__closing_brace_unmarker] = ACTIONS(3), }, [453] = { - [sym_identifier] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_package] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_case] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2184), - [anon_sym_cast] = ACTIONS(2184), - [anon_sym_DOLLARtype] = ACTIONS(2186), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_untyped] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_this] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_AT_COLON] = ACTIONS(2186), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2186), - [anon_sym_DASH_DASH] = ACTIONS(2186), - [anon_sym_PERCENT] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_EQ_EQ] = ACTIONS(2186), - [anon_sym_BANG_EQ] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2186), - [anon_sym_EQ_GT] = ACTIONS(2186), - [anon_sym_QMARK_QMARK] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2184), - [sym__rangeOperator] = ACTIONS(2186), - [anon_sym_null] = ACTIONS(2184), - [anon_sym_macro] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_inline] = ACTIONS(2184), - [anon_sym_overload] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_final] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_typedef] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [aux_sym_integer_token1] = ACTIONS(2184), - [aux_sym_integer_token2] = ACTIONS(2186), - [aux_sym_float_token1] = ACTIONS(2184), - [aux_sym_float_token2] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [aux_sym_string_token1] = ACTIONS(2186), - [aux_sym_string_token3] = ACTIONS(2186), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2186), + [sym_identifier] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2819), + [anon_sym_package] = ACTIONS(2817), + [anon_sym_import] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_case] = ACTIONS(2817), + [anon_sym_default] = ACTIONS(2817), + [anon_sym_cast] = ACTIONS(2817), + [anon_sym_DOLLARtype] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_untyped] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_this] = ACTIONS(2817), + [anon_sym_AT] = ACTIONS(2817), + [anon_sym_AT_COLON] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_catch] = ACTIONS(2817), + [anon_sym_else] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_EQ_GT] = ACTIONS(2819), + [anon_sym_QMARK_QMARK] = ACTIONS(2819), + [anon_sym_EQ] = ACTIONS(2817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2819), + [anon_sym_null] = ACTIONS(2817), + [anon_sym_macro] = ACTIONS(2817), + [anon_sym_abstract] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_public] = ACTIONS(2817), + [anon_sym_private] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_overload] = ACTIONS(2817), + [anon_sym_override] = ACTIONS(2817), + [anon_sym_final] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_interface] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_function] = ACTIONS(2817), + [anon_sym_var] = ACTIONS(2817), + [aux_sym_integer_token1] = ACTIONS(2817), + [aux_sym_integer_token2] = ACTIONS(2819), + [aux_sym_float_token1] = ACTIONS(2817), + [aux_sym_float_token2] = ACTIONS(2819), + [anon_sym_true] = ACTIONS(2817), + [anon_sym_false] = ACTIONS(2817), + [aux_sym_string_token1] = ACTIONS(2819), + [aux_sym_string_token3] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2819), [sym__closing_brace_unmarker] = ACTIONS(3), }, [454] = { - [sym_identifier] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_package] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2188), - [anon_sym_default] = ACTIONS(2188), - [anon_sym_cast] = ACTIONS(2188), - [anon_sym_DOLLARtype] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_untyped] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_this] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [anon_sym_AT_COLON] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2188), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_EQ_GT] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2188), - [sym__rangeOperator] = ACTIONS(2190), - [anon_sym_null] = ACTIONS(2188), - [anon_sym_macro] = ACTIONS(2188), - [anon_sym_abstract] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_public] = ACTIONS(2188), - [anon_sym_private] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_inline] = ACTIONS(2188), - [anon_sym_overload] = ACTIONS(2188), - [anon_sym_override] = ACTIONS(2188), - [anon_sym_final] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_typedef] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [aux_sym_integer_token1] = ACTIONS(2188), - [aux_sym_integer_token2] = ACTIONS(2190), - [aux_sym_float_token1] = ACTIONS(2188), - [aux_sym_float_token2] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [aux_sym_string_token1] = ACTIONS(2190), - [aux_sym_string_token3] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2823), + [anon_sym_package] = ACTIONS(2821), + [anon_sym_import] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_case] = ACTIONS(2821), + [anon_sym_default] = ACTIONS(2821), + [anon_sym_cast] = ACTIONS(2821), + [anon_sym_DOLLARtype] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_untyped] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_this] = ACTIONS(2821), + [anon_sym_AT] = ACTIONS(2821), + [anon_sym_AT_COLON] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_catch] = ACTIONS(2821), + [anon_sym_else] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2823), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_PIPE_PIPE] = ACTIONS(2823), + [anon_sym_EQ_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_EQ_GT] = ACTIONS(2823), + [anon_sym_QMARK_QMARK] = ACTIONS(2823), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2823), + [anon_sym_null] = ACTIONS(2821), + [anon_sym_macro] = ACTIONS(2821), + [anon_sym_abstract] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_private] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_overload] = ACTIONS(2821), + [anon_sym_override] = ACTIONS(2821), + [anon_sym_final] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_function] = ACTIONS(2821), + [anon_sym_var] = ACTIONS(2821), + [aux_sym_integer_token1] = ACTIONS(2821), + [aux_sym_integer_token2] = ACTIONS(2823), + [aux_sym_float_token1] = ACTIONS(2821), + [aux_sym_float_token2] = ACTIONS(2823), + [anon_sym_true] = ACTIONS(2821), + [anon_sym_false] = ACTIONS(2821), + [aux_sym_string_token1] = ACTIONS(2823), + [aux_sym_string_token3] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2823), [sym__closing_brace_unmarker] = ACTIONS(3), }, [455] = { - [sym_identifier] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(2194), - [anon_sym_package] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_cast] = ACTIONS(2192), - [anon_sym_DOLLARtype] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_untyped] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_this] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_AT_COLON] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2192), - [sym__rangeOperator] = ACTIONS(2194), - [anon_sym_null] = ACTIONS(2192), - [anon_sym_macro] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_inline] = ACTIONS(2192), - [anon_sym_overload] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_final] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_typedef] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [aux_sym_integer_token1] = ACTIONS(2192), - [aux_sym_integer_token2] = ACTIONS(2194), - [aux_sym_float_token1] = ACTIONS(2192), - [aux_sym_float_token2] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [aux_sym_string_token1] = ACTIONS(2194), - [aux_sym_string_token3] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2194), + [sym_identifier] = ACTIONS(2825), + [anon_sym_POUND] = ACTIONS(2827), + [anon_sym_package] = ACTIONS(2825), + [anon_sym_import] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_case] = ACTIONS(2825), + [anon_sym_default] = ACTIONS(2825), + [anon_sym_cast] = ACTIONS(2825), + [anon_sym_DOLLARtype] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_untyped] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_this] = ACTIONS(2825), + [anon_sym_AT] = ACTIONS(2825), + [anon_sym_AT_COLON] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_catch] = ACTIONS(2825), + [anon_sym_else] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PERCENT] = ACTIONS(2827), + [anon_sym_SLASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_LT_LT] = ACTIONS(2827), + [anon_sym_GT_GT] = ACTIONS(2825), + [anon_sym_GT_GT_GT] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_CARET] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_PIPE_PIPE] = ACTIONS(2827), + [anon_sym_EQ_EQ] = ACTIONS(2827), + [anon_sym_BANG_EQ] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_LT_EQ] = ACTIONS(2827), + [anon_sym_GT] = ACTIONS(2825), + [anon_sym_GT_EQ] = ACTIONS(2827), + [anon_sym_EQ_GT] = ACTIONS(2827), + [anon_sym_QMARK_QMARK] = ACTIONS(2827), + [anon_sym_EQ] = ACTIONS(2825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2827), + [anon_sym_null] = ACTIONS(2825), + [anon_sym_macro] = ACTIONS(2825), + [anon_sym_abstract] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_public] = ACTIONS(2825), + [anon_sym_private] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_overload] = ACTIONS(2825), + [anon_sym_override] = ACTIONS(2825), + [anon_sym_final] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_interface] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_function] = ACTIONS(2825), + [anon_sym_var] = ACTIONS(2825), + [aux_sym_integer_token1] = ACTIONS(2825), + [aux_sym_integer_token2] = ACTIONS(2827), + [aux_sym_float_token1] = ACTIONS(2825), + [aux_sym_float_token2] = ACTIONS(2827), + [anon_sym_true] = ACTIONS(2825), + [anon_sym_false] = ACTIONS(2825), + [aux_sym_string_token1] = ACTIONS(2827), + [aux_sym_string_token3] = ACTIONS(2827), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2827), [sym__closing_brace_unmarker] = ACTIONS(3), }, [456] = { - [sym_identifier] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(2198), - [anon_sym_package] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_case] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_cast] = ACTIONS(2196), - [anon_sym_DOLLARtype] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_untyped] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_this] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_AT_COLON] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2198), - [anon_sym_PERCENT] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2198), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_EQ_EQ] = ACTIONS(2198), - [anon_sym_BANG_EQ] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_LT_EQ] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), - [anon_sym_QMARK_QMARK] = ACTIONS(2198), - [anon_sym_EQ] = ACTIONS(2196), - [sym__rangeOperator] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2196), - [anon_sym_macro] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_inline] = ACTIONS(2196), - [anon_sym_overload] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_final] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_typedef] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [aux_sym_integer_token1] = ACTIONS(2196), - [aux_sym_integer_token2] = ACTIONS(2198), - [aux_sym_float_token1] = ACTIONS(2196), - [aux_sym_float_token2] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [aux_sym_string_token1] = ACTIONS(2198), - [aux_sym_string_token3] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2831), + [anon_sym_package] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_case] = ACTIONS(2829), + [anon_sym_default] = ACTIONS(2829), + [anon_sym_cast] = ACTIONS(2829), + [anon_sym_DOLLARtype] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_untyped] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_this] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_AT_COLON] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_catch] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2831), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_EQ_GT] = ACTIONS(2831), + [anon_sym_QMARK_QMARK] = ACTIONS(2831), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2831), + [anon_sym_null] = ACTIONS(2829), + [anon_sym_macro] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_public] = ACTIONS(2829), + [anon_sym_private] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_overload] = ACTIONS(2829), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_final] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_function] = ACTIONS(2829), + [anon_sym_var] = ACTIONS(2829), + [aux_sym_integer_token1] = ACTIONS(2829), + [aux_sym_integer_token2] = ACTIONS(2831), + [aux_sym_float_token1] = ACTIONS(2829), + [aux_sym_float_token2] = ACTIONS(2831), + [anon_sym_true] = ACTIONS(2829), + [anon_sym_false] = ACTIONS(2829), + [aux_sym_string_token1] = ACTIONS(2831), + [aux_sym_string_token3] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2831), [sym__closing_brace_unmarker] = ACTIONS(3), }, [457] = { - [sym_identifier] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(2202), - [anon_sym_package] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_case] = ACTIONS(2200), - [anon_sym_default] = ACTIONS(2200), - [anon_sym_cast] = ACTIONS(2200), - [anon_sym_DOLLARtype] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_untyped] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_this] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_AT_COLON] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2200), - [anon_sym_GT_GT_GT] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_EQ_GT] = ACTIONS(2202), - [anon_sym_QMARK_QMARK] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2200), - [sym__rangeOperator] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2200), - [anon_sym_macro] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_inline] = ACTIONS(2200), - [anon_sym_overload] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_final] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_typedef] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [aux_sym_integer_token1] = ACTIONS(2200), - [aux_sym_integer_token2] = ACTIONS(2202), - [aux_sym_float_token1] = ACTIONS(2200), - [aux_sym_float_token2] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [aux_sym_string_token1] = ACTIONS(2202), - [aux_sym_string_token3] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2202), + [sym_identifier] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2835), + [anon_sym_package] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_case] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2833), + [anon_sym_cast] = ACTIONS(2833), + [anon_sym_DOLLARtype] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_untyped] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_this] = ACTIONS(2833), + [anon_sym_AT] = ACTIONS(2833), + [anon_sym_AT_COLON] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_catch] = ACTIONS(2833), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_PIPE_PIPE] = ACTIONS(2835), + [anon_sym_EQ_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2835), + [anon_sym_EQ_GT] = ACTIONS(2835), + [anon_sym_QMARK_QMARK] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_macro] = ACTIONS(2833), + [anon_sym_abstract] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_public] = ACTIONS(2833), + [anon_sym_private] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_overload] = ACTIONS(2833), + [anon_sym_override] = ACTIONS(2833), + [anon_sym_final] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_var] = ACTIONS(2833), + [aux_sym_integer_token1] = ACTIONS(2833), + [aux_sym_integer_token2] = ACTIONS(2835), + [aux_sym_float_token1] = ACTIONS(2833), + [aux_sym_float_token2] = ACTIONS(2835), + [anon_sym_true] = ACTIONS(2833), + [anon_sym_false] = ACTIONS(2833), + [aux_sym_string_token1] = ACTIONS(2835), + [aux_sym_string_token3] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2835), [sym__closing_brace_unmarker] = ACTIONS(3), }, [458] = { - [sym_identifier] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(2206), - [anon_sym_package] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_cast] = ACTIONS(2204), - [anon_sym_DOLLARtype] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_untyped] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_this] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_AT_COLON] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_GT_GT_GT] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2206), - [anon_sym_AMP_AMP] = ACTIONS(2206), - [anon_sym_PIPE_PIPE] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_EQ_GT] = ACTIONS(2206), - [anon_sym_QMARK_QMARK] = ACTIONS(2206), - [anon_sym_EQ] = ACTIONS(2204), - [sym__rangeOperator] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2204), - [anon_sym_macro] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_inline] = ACTIONS(2204), - [anon_sym_overload] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_final] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_typedef] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [aux_sym_integer_token1] = ACTIONS(2204), - [aux_sym_integer_token2] = ACTIONS(2206), - [aux_sym_float_token1] = ACTIONS(2204), - [aux_sym_float_token2] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [aux_sym_string_token1] = ACTIONS(2206), - [aux_sym_string_token3] = ACTIONS(2206), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2206), + [sym_identifier] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2839), + [anon_sym_package] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_case] = ACTIONS(2837), + [anon_sym_default] = ACTIONS(2837), + [anon_sym_cast] = ACTIONS(2837), + [anon_sym_DOLLARtype] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_untyped] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_this] = ACTIONS(2837), + [anon_sym_AT] = ACTIONS(2837), + [anon_sym_AT_COLON] = ACTIONS(2839), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_catch] = ACTIONS(2837), + [anon_sym_else] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PERCENT] = ACTIONS(2839), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_EQ_EQ] = ACTIONS(2839), + [anon_sym_BANG_EQ] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2839), + [anon_sym_EQ_GT] = ACTIONS(2839), + [anon_sym_QMARK_QMARK] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2839), + [anon_sym_null] = ACTIONS(2837), + [anon_sym_macro] = ACTIONS(2837), + [anon_sym_abstract] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_public] = ACTIONS(2837), + [anon_sym_private] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_overload] = ACTIONS(2837), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_final] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_function] = ACTIONS(2837), + [anon_sym_var] = ACTIONS(2837), + [aux_sym_integer_token1] = ACTIONS(2837), + [aux_sym_integer_token2] = ACTIONS(2839), + [aux_sym_float_token1] = ACTIONS(2837), + [aux_sym_float_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2837), + [anon_sym_false] = ACTIONS(2837), + [aux_sym_string_token1] = ACTIONS(2839), + [aux_sym_string_token3] = ACTIONS(2839), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2839), [sym__closing_brace_unmarker] = ACTIONS(3), }, [459] = { - [sym_identifier] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_package] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_cast] = ACTIONS(2208), - [anon_sym_DOLLARtype] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_untyped] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_this] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_AT_COLON] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2210), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_EQ_GT] = ACTIONS(2210), - [anon_sym_QMARK_QMARK] = ACTIONS(2210), - [anon_sym_EQ] = ACTIONS(2208), - [sym__rangeOperator] = ACTIONS(2210), - [anon_sym_null] = ACTIONS(2208), - [anon_sym_macro] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_inline] = ACTIONS(2208), - [anon_sym_overload] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_final] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_typedef] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [aux_sym_integer_token1] = ACTIONS(2208), - [aux_sym_integer_token2] = ACTIONS(2210), - [aux_sym_float_token1] = ACTIONS(2208), - [aux_sym_float_token2] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [aux_sym_string_token1] = ACTIONS(2210), - [aux_sym_string_token3] = ACTIONS(2210), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2210), + [sym_identifier] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2843), + [anon_sym_package] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_case] = ACTIONS(2841), + [anon_sym_default] = ACTIONS(2841), + [anon_sym_cast] = ACTIONS(2841), + [anon_sym_DOLLARtype] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_untyped] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_this] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2841), + [anon_sym_AT_COLON] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_catch] = ACTIONS(2841), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2843), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_GT_GT_GT] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_PIPE_PIPE] = ACTIONS(2843), + [anon_sym_EQ_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_EQ_GT] = ACTIONS(2843), + [anon_sym_QMARK_QMARK] = ACTIONS(2843), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2843), + [anon_sym_null] = ACTIONS(2841), + [anon_sym_macro] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_overload] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_final] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [aux_sym_integer_token1] = ACTIONS(2841), + [aux_sym_integer_token2] = ACTIONS(2843), + [aux_sym_float_token1] = ACTIONS(2841), + [aux_sym_float_token2] = ACTIONS(2843), + [anon_sym_true] = ACTIONS(2841), + [anon_sym_false] = ACTIONS(2841), + [aux_sym_string_token1] = ACTIONS(2843), + [aux_sym_string_token3] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2843), [sym__closing_brace_unmarker] = ACTIONS(3), }, [460] = { - [sym_identifier] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_package] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_case] = ACTIONS(2212), - [anon_sym_default] = ACTIONS(2212), - [anon_sym_cast] = ACTIONS(2212), - [anon_sym_DOLLARtype] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_untyped] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_this] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [anon_sym_AT_COLON] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2212), - [anon_sym_GT_GT_GT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2212), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2212), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_QMARK_QMARK] = ACTIONS(2214), - [anon_sym_EQ] = ACTIONS(2212), - [sym__rangeOperator] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2212), - [anon_sym_macro] = ACTIONS(2212), - [anon_sym_abstract] = ACTIONS(2212), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_inline] = ACTIONS(2212), - [anon_sym_overload] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_final] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [aux_sym_integer_token1] = ACTIONS(2212), - [aux_sym_integer_token2] = ACTIONS(2214), - [aux_sym_float_token1] = ACTIONS(2212), - [aux_sym_float_token2] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [aux_sym_string_token1] = ACTIONS(2214), - [aux_sym_string_token3] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2214), + [sym_identifier] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2847), + [anon_sym_package] = ACTIONS(2845), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_case] = ACTIONS(2845), + [anon_sym_default] = ACTIONS(2845), + [anon_sym_cast] = ACTIONS(2845), + [anon_sym_DOLLARtype] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_untyped] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_this] = ACTIONS(2845), + [anon_sym_AT] = ACTIONS(2845), + [anon_sym_AT_COLON] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_catch] = ACTIONS(2845), + [anon_sym_else] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_LT_LT] = ACTIONS(2847), + [anon_sym_GT_GT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_CARET] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_PIPE_PIPE] = ACTIONS(2847), + [anon_sym_EQ_EQ] = ACTIONS(2847), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2847), + [anon_sym_EQ_GT] = ACTIONS(2847), + [anon_sym_QMARK_QMARK] = ACTIONS(2847), + [anon_sym_EQ] = ACTIONS(2845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), + [anon_sym_null] = ACTIONS(2845), + [anon_sym_macro] = ACTIONS(2845), + [anon_sym_abstract] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_public] = ACTIONS(2845), + [anon_sym_private] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_overload] = ACTIONS(2845), + [anon_sym_override] = ACTIONS(2845), + [anon_sym_final] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_interface] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_function] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2845), + [aux_sym_integer_token1] = ACTIONS(2845), + [aux_sym_integer_token2] = ACTIONS(2847), + [aux_sym_float_token1] = ACTIONS(2845), + [aux_sym_float_token2] = ACTIONS(2847), + [anon_sym_true] = ACTIONS(2845), + [anon_sym_false] = ACTIONS(2845), + [aux_sym_string_token1] = ACTIONS(2847), + [aux_sym_string_token3] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2847), [sym__closing_brace_unmarker] = ACTIONS(3), }, [461] = { - [sym_identifier] = ACTIONS(2216), - [anon_sym_POUND] = ACTIONS(2218), - [anon_sym_package] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_case] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_cast] = ACTIONS(2216), - [anon_sym_DOLLARtype] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_untyped] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_this] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_AT_COLON] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2218), - [anon_sym_DASH_DASH] = ACTIONS(2218), - [anon_sym_PERCENT] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2218), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2218), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_AMP_AMP] = ACTIONS(2218), - [anon_sym_PIPE_PIPE] = ACTIONS(2218), - [anon_sym_EQ_EQ] = ACTIONS(2218), - [anon_sym_BANG_EQ] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2218), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_QMARK_QMARK] = ACTIONS(2218), - [anon_sym_EQ] = ACTIONS(2216), - [sym__rangeOperator] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2216), - [anon_sym_macro] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_inline] = ACTIONS(2216), - [anon_sym_overload] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_final] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_typedef] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [aux_sym_integer_token1] = ACTIONS(2216), - [aux_sym_integer_token2] = ACTIONS(2218), - [aux_sym_float_token1] = ACTIONS(2216), - [aux_sym_float_token2] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [aux_sym_string_token1] = ACTIONS(2218), - [aux_sym_string_token3] = ACTIONS(2218), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2218), + [sym_identifier] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2851), + [anon_sym_package] = ACTIONS(2849), + [anon_sym_import] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_case] = ACTIONS(2849), + [anon_sym_default] = ACTIONS(2849), + [anon_sym_cast] = ACTIONS(2849), + [anon_sym_DOLLARtype] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_untyped] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_this] = ACTIONS(2849), + [anon_sym_AT] = ACTIONS(2849), + [anon_sym_AT_COLON] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_catch] = ACTIONS(2849), + [anon_sym_else] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2851), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_PIPE_PIPE] = ACTIONS(2851), + [anon_sym_EQ_EQ] = ACTIONS(2851), + [anon_sym_BANG_EQ] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2851), + [anon_sym_EQ_GT] = ACTIONS(2851), + [anon_sym_QMARK_QMARK] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_null] = ACTIONS(2849), + [anon_sym_macro] = ACTIONS(2849), + [anon_sym_abstract] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_public] = ACTIONS(2849), + [anon_sym_private] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_overload] = ACTIONS(2849), + [anon_sym_override] = ACTIONS(2849), + [anon_sym_final] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_interface] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_function] = ACTIONS(2849), + [anon_sym_var] = ACTIONS(2849), + [aux_sym_integer_token1] = ACTIONS(2849), + [aux_sym_integer_token2] = ACTIONS(2851), + [aux_sym_float_token1] = ACTIONS(2849), + [aux_sym_float_token2] = ACTIONS(2851), + [anon_sym_true] = ACTIONS(2849), + [anon_sym_false] = ACTIONS(2849), + [aux_sym_string_token1] = ACTIONS(2851), + [aux_sym_string_token3] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2851), [sym__closing_brace_unmarker] = ACTIONS(3), }, [462] = { - [sym_identifier] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_package] = ACTIONS(2220), - [anon_sym_import] = ACTIONS(2220), - [anon_sym_using] = ACTIONS(2220), - [anon_sym_throw] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_case] = ACTIONS(2220), - [anon_sym_default] = ACTIONS(2220), - [anon_sym_cast] = ACTIONS(2220), - [anon_sym_DOLLARtype] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_untyped] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_this] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_AT_COLON] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(2222), - [anon_sym_GT_GT] = ACTIONS(2220), - [anon_sym_GT_GT_GT] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2222), - [anon_sym_PIPE_PIPE] = ACTIONS(2222), - [anon_sym_EQ_EQ] = ACTIONS(2222), - [anon_sym_BANG_EQ] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_LT_EQ] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_GT_EQ] = ACTIONS(2222), - [anon_sym_EQ_GT] = ACTIONS(2222), - [anon_sym_QMARK_QMARK] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2220), - [sym__rangeOperator] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2220), - [anon_sym_macro] = ACTIONS(2220), - [anon_sym_abstract] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2220), - [anon_sym_public] = ACTIONS(2220), - [anon_sym_private] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_inline] = ACTIONS(2220), - [anon_sym_overload] = ACTIONS(2220), - [anon_sym_override] = ACTIONS(2220), - [anon_sym_final] = ACTIONS(2220), - [anon_sym_class] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_typedef] = ACTIONS(2220), - [anon_sym_function] = ACTIONS(2220), - [anon_sym_var] = ACTIONS(2220), - [aux_sym_integer_token1] = ACTIONS(2220), - [aux_sym_integer_token2] = ACTIONS(2222), - [aux_sym_float_token1] = ACTIONS(2220), - [aux_sym_float_token2] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [aux_sym_string_token1] = ACTIONS(2222), - [aux_sym_string_token3] = ACTIONS(2222), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2853), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_package] = ACTIONS(2853), + [anon_sym_import] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_case] = ACTIONS(2853), + [anon_sym_default] = ACTIONS(2853), + [anon_sym_cast] = ACTIONS(2853), + [anon_sym_DOLLARtype] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_untyped] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_this] = ACTIONS(2853), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_AT_COLON] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_catch] = ACTIONS(2853), + [anon_sym_else] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2853), + [anon_sym_GT_GT_GT] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_EQ_GT] = ACTIONS(2855), + [anon_sym_QMARK_QMARK] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), + [anon_sym_null] = ACTIONS(2853), + [anon_sym_macro] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_public] = ACTIONS(2853), + [anon_sym_private] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_overload] = ACTIONS(2853), + [anon_sym_override] = ACTIONS(2853), + [anon_sym_final] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_interface] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_typedef] = ACTIONS(2853), + [anon_sym_function] = ACTIONS(2853), + [anon_sym_var] = ACTIONS(2853), + [aux_sym_integer_token1] = ACTIONS(2853), + [aux_sym_integer_token2] = ACTIONS(2855), + [aux_sym_float_token1] = ACTIONS(2853), + [aux_sym_float_token2] = ACTIONS(2855), + [anon_sym_true] = ACTIONS(2853), + [anon_sym_false] = ACTIONS(2853), + [aux_sym_string_token1] = ACTIONS(2855), + [aux_sym_string_token3] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2855), [sym__closing_brace_unmarker] = ACTIONS(3), }, [463] = { - [sym_identifier] = ACTIONS(2224), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_package] = ACTIONS(2224), - [anon_sym_import] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_case] = ACTIONS(2224), - [anon_sym_default] = ACTIONS(2224), - [anon_sym_cast] = ACTIONS(2224), - [anon_sym_DOLLARtype] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_untyped] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_this] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(2224), - [anon_sym_AT_COLON] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2226), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_PIPE_PIPE] = ACTIONS(2226), - [anon_sym_EQ_EQ] = ACTIONS(2226), - [anon_sym_BANG_EQ] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_LT_EQ] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2226), - [anon_sym_EQ_GT] = ACTIONS(2226), - [anon_sym_QMARK_QMARK] = ACTIONS(2226), - [anon_sym_EQ] = ACTIONS(2224), - [sym__rangeOperator] = ACTIONS(2226), - [anon_sym_null] = ACTIONS(2224), - [anon_sym_macro] = ACTIONS(2224), - [anon_sym_abstract] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym_overload] = ACTIONS(2224), - [anon_sym_override] = ACTIONS(2224), - [anon_sym_final] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_function] = ACTIONS(2224), - [anon_sym_var] = ACTIONS(2224), - [aux_sym_integer_token1] = ACTIONS(2224), - [aux_sym_integer_token2] = ACTIONS(2226), - [aux_sym_float_token1] = ACTIONS(2224), - [aux_sym_float_token2] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [aux_sym_string_token1] = ACTIONS(2226), - [aux_sym_string_token3] = ACTIONS(2226), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2226), + [sym_identifier] = ACTIONS(2857), + [anon_sym_POUND] = ACTIONS(2859), + [anon_sym_package] = ACTIONS(2857), + [anon_sym_import] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_case] = ACTIONS(2857), + [anon_sym_default] = ACTIONS(2857), + [anon_sym_cast] = ACTIONS(2857), + [anon_sym_DOLLARtype] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_untyped] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_this] = ACTIONS(2857), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_AT_COLON] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_LT_LT] = ACTIONS(2859), + [anon_sym_GT_GT] = ACTIONS(2857), + [anon_sym_GT_GT_GT] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_CARET] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_PIPE_PIPE] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2859), + [anon_sym_BANG_EQ] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_EQ] = ACTIONS(2859), + [anon_sym_EQ_GT] = ACTIONS(2859), + [anon_sym_QMARK_QMARK] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), + [anon_sym_null] = ACTIONS(2857), + [anon_sym_macro] = ACTIONS(2857), + [anon_sym_abstract] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_public] = ACTIONS(2857), + [anon_sym_private] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_overload] = ACTIONS(2857), + [anon_sym_override] = ACTIONS(2857), + [anon_sym_final] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_interface] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2857), + [anon_sym_var] = ACTIONS(2857), + [aux_sym_integer_token1] = ACTIONS(2857), + [aux_sym_integer_token2] = ACTIONS(2859), + [aux_sym_float_token1] = ACTIONS(2857), + [aux_sym_float_token2] = ACTIONS(2859), + [anon_sym_true] = ACTIONS(2857), + [anon_sym_false] = ACTIONS(2857), + [aux_sym_string_token1] = ACTIONS(2859), + [aux_sym_string_token3] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2859), [sym__closing_brace_unmarker] = ACTIONS(3), }, [464] = { - [sym_identifier] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_cast] = ACTIONS(2228), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_untyped] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2228), - [sym__rangeOperator] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2228), - [anon_sym_macro] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_inline] = ACTIONS(2228), - [anon_sym_overload] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_final] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_typedef] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [aux_sym_integer_token1] = ACTIONS(2228), - [aux_sym_integer_token2] = ACTIONS(2230), - [aux_sym_float_token1] = ACTIONS(2228), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2230), + [sym_identifier] = ACTIONS(2861), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_package] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_case] = ACTIONS(2861), + [anon_sym_default] = ACTIONS(2861), + [anon_sym_cast] = ACTIONS(2861), + [anon_sym_DOLLARtype] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_untyped] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_this] = ACTIONS(2861), + [anon_sym_AT] = ACTIONS(2861), + [anon_sym_AT_COLON] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_catch] = ACTIONS(2861), + [anon_sym_else] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2861), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2861), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2861), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2861), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_EQ_GT] = ACTIONS(2863), + [anon_sym_QMARK_QMARK] = ACTIONS(2863), + [anon_sym_EQ] = ACTIONS(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2863), + [anon_sym_null] = ACTIONS(2861), + [anon_sym_macro] = ACTIONS(2861), + [anon_sym_abstract] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_public] = ACTIONS(2861), + [anon_sym_private] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_overload] = ACTIONS(2861), + [anon_sym_override] = ACTIONS(2861), + [anon_sym_final] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_interface] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_function] = ACTIONS(2861), + [anon_sym_var] = ACTIONS(2861), + [aux_sym_integer_token1] = ACTIONS(2861), + [aux_sym_integer_token2] = ACTIONS(2863), + [aux_sym_float_token1] = ACTIONS(2861), + [aux_sym_float_token2] = ACTIONS(2863), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [aux_sym_string_token1] = ACTIONS(2863), + [aux_sym_string_token3] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2863), [sym__closing_brace_unmarker] = ACTIONS(3), }, [465] = { - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_case] = ACTIONS(2232), - [anon_sym_default] = ACTIONS(2232), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2234), - [anon_sym_EQ_EQ] = ACTIONS(2234), - [anon_sym_BANG_EQ] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2232), - [anon_sym_LT_EQ] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2234), - [anon_sym_EQ_GT] = ACTIONS(2234), - [anon_sym_QMARK_QMARK] = ACTIONS(2234), - [anon_sym_EQ] = ACTIONS(2232), - [sym__rangeOperator] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2232), - [anon_sym_macro] = ACTIONS(2232), - [anon_sym_abstract] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_public] = ACTIONS(2232), - [anon_sym_private] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_inline] = ACTIONS(2232), - [anon_sym_overload] = ACTIONS(2232), - [anon_sym_override] = ACTIONS(2232), - [anon_sym_final] = ACTIONS(2232), - [anon_sym_class] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2232), - [anon_sym_typedef] = ACTIONS(2232), - [anon_sym_function] = ACTIONS(2232), - [anon_sym_var] = ACTIONS(2232), - [aux_sym_integer_token1] = ACTIONS(2232), - [aux_sym_integer_token2] = ACTIONS(2234), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2234), - [aux_sym_string_token3] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2234), + [sym_identifier] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_package] = ACTIONS(2865), + [anon_sym_import] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_case] = ACTIONS(2865), + [anon_sym_default] = ACTIONS(2865), + [anon_sym_cast] = ACTIONS(2865), + [anon_sym_DOLLARtype] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_untyped] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_this] = ACTIONS(2865), + [anon_sym_AT] = ACTIONS(2865), + [anon_sym_AT_COLON] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_catch] = ACTIONS(2865), + [anon_sym_else] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_EQ_GT] = ACTIONS(2867), + [anon_sym_QMARK_QMARK] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_null] = ACTIONS(2865), + [anon_sym_macro] = ACTIONS(2865), + [anon_sym_abstract] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_public] = ACTIONS(2865), + [anon_sym_private] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_overload] = ACTIONS(2865), + [anon_sym_override] = ACTIONS(2865), + [anon_sym_final] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_function] = ACTIONS(2865), + [anon_sym_var] = ACTIONS(2865), + [aux_sym_integer_token1] = ACTIONS(2865), + [aux_sym_integer_token2] = ACTIONS(2867), + [aux_sym_float_token1] = ACTIONS(2865), + [aux_sym_float_token2] = ACTIONS(2867), + [anon_sym_true] = ACTIONS(2865), + [anon_sym_false] = ACTIONS(2865), + [aux_sym_string_token1] = ACTIONS(2867), + [aux_sym_string_token3] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2867), [sym__closing_brace_unmarker] = ACTIONS(3), }, [466] = { - [sym_identifier] = ACTIONS(2236), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_package] = ACTIONS(2236), - [anon_sym_import] = ACTIONS(2236), - [anon_sym_using] = ACTIONS(2236), - [anon_sym_throw] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2236), - [anon_sym_default] = ACTIONS(2236), - [anon_sym_cast] = ACTIONS(2236), - [anon_sym_DOLLARtype] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_untyped] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_this] = ACTIONS(2236), - [anon_sym_AT] = ACTIONS(2236), - [anon_sym_AT_COLON] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2238), - [anon_sym_GT_GT] = ACTIONS(2236), - [anon_sym_GT_GT_GT] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2238), - [anon_sym_PIPE_PIPE] = ACTIONS(2238), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2236), - [anon_sym_LT_EQ] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_GT_EQ] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(2238), - [anon_sym_QMARK_QMARK] = ACTIONS(2238), - [anon_sym_EQ] = ACTIONS(2236), - [sym__rangeOperator] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2236), - [anon_sym_macro] = ACTIONS(2236), - [anon_sym_abstract] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_public] = ACTIONS(2236), - [anon_sym_private] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_inline] = ACTIONS(2236), - [anon_sym_overload] = ACTIONS(2236), - [anon_sym_override] = ACTIONS(2236), - [anon_sym_final] = ACTIONS(2236), - [anon_sym_class] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2236), - [anon_sym_typedef] = ACTIONS(2236), - [anon_sym_function] = ACTIONS(2236), - [anon_sym_var] = ACTIONS(2236), - [aux_sym_integer_token1] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token1] = ACTIONS(2236), - [aux_sym_float_token2] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [aux_sym_string_token1] = ACTIONS(2238), - [aux_sym_string_token3] = ACTIONS(2238), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2238), + [sym_identifier] = ACTIONS(2869), + [anon_sym_POUND] = ACTIONS(2871), + [anon_sym_package] = ACTIONS(2869), + [anon_sym_import] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_case] = ACTIONS(2869), + [anon_sym_default] = ACTIONS(2869), + [anon_sym_cast] = ACTIONS(2869), + [anon_sym_DOLLARtype] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_untyped] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_this] = ACTIONS(2869), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_AT_COLON] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_catch] = ACTIONS(2869), + [anon_sym_else] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_GT_GT_GT] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_PIPE_PIPE] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_EQ_GT] = ACTIONS(2871), + [anon_sym_QMARK_QMARK] = ACTIONS(2871), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [anon_sym_null] = ACTIONS(2869), + [anon_sym_macro] = ACTIONS(2869), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_public] = ACTIONS(2869), + [anon_sym_private] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_overload] = ACTIONS(2869), + [anon_sym_override] = ACTIONS(2869), + [anon_sym_final] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_interface] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_typedef] = ACTIONS(2869), + [anon_sym_function] = ACTIONS(2869), + [anon_sym_var] = ACTIONS(2869), + [aux_sym_integer_token1] = ACTIONS(2869), + [aux_sym_integer_token2] = ACTIONS(2871), + [aux_sym_float_token1] = ACTIONS(2869), + [aux_sym_float_token2] = ACTIONS(2871), + [anon_sym_true] = ACTIONS(2869), + [anon_sym_false] = ACTIONS(2869), + [aux_sym_string_token1] = ACTIONS(2871), + [aux_sym_string_token3] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2871), [sym__closing_brace_unmarker] = ACTIONS(3), }, [467] = { - [sym_identifier] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_package] = ACTIONS(2240), - [anon_sym_import] = ACTIONS(2240), - [anon_sym_using] = ACTIONS(2240), - [anon_sym_throw] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_case] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2240), - [anon_sym_cast] = ACTIONS(2240), - [anon_sym_DOLLARtype] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_untyped] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_this] = ACTIONS(2240), - [anon_sym_AT] = ACTIONS(2240), - [anon_sym_AT_COLON] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2242), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2242), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2240), - [anon_sym_LT_EQ] = ACTIONS(2242), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2242), - [anon_sym_QMARK_QMARK] = ACTIONS(2242), - [anon_sym_EQ] = ACTIONS(2240), - [sym__rangeOperator] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2240), - [anon_sym_macro] = ACTIONS(2240), - [anon_sym_abstract] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_public] = ACTIONS(2240), - [anon_sym_private] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_inline] = ACTIONS(2240), - [anon_sym_overload] = ACTIONS(2240), - [anon_sym_override] = ACTIONS(2240), - [anon_sym_final] = ACTIONS(2240), - [anon_sym_class] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2240), - [anon_sym_typedef] = ACTIONS(2240), - [anon_sym_function] = ACTIONS(2240), - [anon_sym_var] = ACTIONS(2240), - [aux_sym_integer_token1] = ACTIONS(2240), - [aux_sym_integer_token2] = ACTIONS(2242), - [aux_sym_float_token1] = ACTIONS(2240), - [aux_sym_float_token2] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [aux_sym_string_token1] = ACTIONS(2242), - [aux_sym_string_token3] = ACTIONS(2242), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2242), + [sym_identifier] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2875), + [anon_sym_package] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_case] = ACTIONS(2873), + [anon_sym_default] = ACTIONS(2873), + [anon_sym_cast] = ACTIONS(2873), + [anon_sym_DOLLARtype] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_untyped] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_this] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2873), + [anon_sym_AT_COLON] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_catch] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2875), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2875), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2875), + [anon_sym_AMP_AMP] = ACTIONS(2875), + [anon_sym_PIPE_PIPE] = ACTIONS(2875), + [anon_sym_EQ_EQ] = ACTIONS(2875), + [anon_sym_BANG_EQ] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2875), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2875), + [anon_sym_EQ_GT] = ACTIONS(2875), + [anon_sym_QMARK_QMARK] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2875), + [anon_sym_null] = ACTIONS(2873), + [anon_sym_macro] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_extern] = ACTIONS(2873), + [anon_sym_inline] = ACTIONS(2873), + [anon_sym_overload] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_final] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_typedef] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [aux_sym_integer_token1] = ACTIONS(2873), + [aux_sym_integer_token2] = ACTIONS(2875), + [aux_sym_float_token1] = ACTIONS(2873), + [aux_sym_float_token2] = ACTIONS(2875), + [anon_sym_true] = ACTIONS(2873), + [anon_sym_false] = ACTIONS(2873), + [aux_sym_string_token1] = ACTIONS(2875), + [aux_sym_string_token3] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2875), [sym__closing_brace_unmarker] = ACTIONS(3), }, [468] = { - [sym_identifier] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_package] = ACTIONS(2244), - [anon_sym_import] = ACTIONS(2244), - [anon_sym_using] = ACTIONS(2244), - [anon_sym_throw] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2244), - [anon_sym_default] = ACTIONS(2244), - [anon_sym_cast] = ACTIONS(2244), - [anon_sym_DOLLARtype] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_untyped] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_this] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(2244), - [anon_sym_AT_COLON] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2244), - [sym__rangeOperator] = ACTIONS(2246), - [anon_sym_null] = ACTIONS(2244), - [anon_sym_macro] = ACTIONS(2244), - [anon_sym_abstract] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_public] = ACTIONS(2244), - [anon_sym_private] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_inline] = ACTIONS(2244), - [anon_sym_overload] = ACTIONS(2244), - [anon_sym_override] = ACTIONS(2244), - [anon_sym_final] = ACTIONS(2244), - [anon_sym_class] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2244), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(2244), - [anon_sym_var] = ACTIONS(2244), - [aux_sym_integer_token1] = ACTIONS(2244), - [aux_sym_integer_token2] = ACTIONS(2246), - [aux_sym_float_token1] = ACTIONS(2244), - [aux_sym_float_token2] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [aux_sym_string_token1] = ACTIONS(2246), - [aux_sym_string_token3] = ACTIONS(2246), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2879), + [anon_sym_package] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2877), + [anon_sym_throw] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_case] = ACTIONS(2877), + [anon_sym_default] = ACTIONS(2877), + [anon_sym_cast] = ACTIONS(2877), + [anon_sym_DOLLARtype] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_untyped] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_this] = ACTIONS(2877), + [anon_sym_AT] = ACTIONS(2877), + [anon_sym_AT_COLON] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_catch] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_do] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2879), + [anon_sym_PERCENT] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2879), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2879), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2879), + [anon_sym_AMP_AMP] = ACTIONS(2879), + [anon_sym_PIPE_PIPE] = ACTIONS(2879), + [anon_sym_EQ_EQ] = ACTIONS(2879), + [anon_sym_BANG_EQ] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_EQ_GT] = ACTIONS(2879), + [anon_sym_QMARK_QMARK] = ACTIONS(2879), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2879), + [anon_sym_null] = ACTIONS(2877), + [anon_sym_macro] = ACTIONS(2877), + [anon_sym_abstract] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_private] = ACTIONS(2877), + [anon_sym_extern] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2877), + [anon_sym_overload] = ACTIONS(2877), + [anon_sym_override] = ACTIONS(2877), + [anon_sym_final] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_interface] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2877), + [anon_sym_function] = ACTIONS(2877), + [anon_sym_var] = ACTIONS(2877), + [aux_sym_integer_token1] = ACTIONS(2877), + [aux_sym_integer_token2] = ACTIONS(2879), + [aux_sym_float_token1] = ACTIONS(2877), + [aux_sym_float_token2] = ACTIONS(2879), + [anon_sym_true] = ACTIONS(2877), + [anon_sym_false] = ACTIONS(2877), + [aux_sym_string_token1] = ACTIONS(2879), + [aux_sym_string_token3] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2879), [sym__closing_brace_unmarker] = ACTIONS(3), }, [469] = { - [sym_identifier] = ACTIONS(770), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_case] = ACTIONS(770), - [anon_sym_default] = ACTIONS(770), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_this] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_if] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_EQ_EQ] = ACTIONS(772), - [anon_sym_BANG_EQ] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(770), - [sym__rangeOperator] = ACTIONS(772), - [anon_sym_null] = ACTIONS(770), - [anon_sym_macro] = ACTIONS(770), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_static] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_extern] = ACTIONS(770), - [anon_sym_inline] = ACTIONS(770), - [anon_sym_overload] = ACTIONS(770), - [anon_sym_override] = ACTIONS(770), - [anon_sym_final] = ACTIONS(770), - [anon_sym_class] = ACTIONS(770), - [anon_sym_interface] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(770), - [aux_sym_integer_token2] = ACTIONS(772), - [aux_sym_float_token1] = ACTIONS(770), - [aux_sym_float_token2] = ACTIONS(772), - [anon_sym_true] = ACTIONS(770), - [anon_sym_false] = ACTIONS(770), - [aux_sym_string_token1] = ACTIONS(772), - [aux_sym_string_token3] = ACTIONS(772), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(772), + [sym_identifier] = ACTIONS(2881), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_package] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2881), + [anon_sym_throw] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_case] = ACTIONS(2881), + [anon_sym_default] = ACTIONS(2881), + [anon_sym_cast] = ACTIONS(2881), + [anon_sym_DOLLARtype] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2881), + [anon_sym_return] = ACTIONS(2881), + [anon_sym_untyped] = ACTIONS(2881), + [anon_sym_break] = ACTIONS(2881), + [anon_sym_continue] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_this] = ACTIONS(2881), + [anon_sym_AT] = ACTIONS(2881), + [anon_sym_AT_COLON] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2881), + [anon_sym_catch] = ACTIONS(2881), + [anon_sym_else] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_while] = ACTIONS(2881), + [anon_sym_do] = ACTIONS(2881), + [anon_sym_new] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2881), + [anon_sym_GT_GT_GT] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2881), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_EQ_GT] = ACTIONS(2883), + [anon_sym_QMARK_QMARK] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), + [anon_sym_null] = ACTIONS(2881), + [anon_sym_macro] = ACTIONS(2881), + [anon_sym_abstract] = ACTIONS(2881), + [anon_sym_static] = ACTIONS(2881), + [anon_sym_public] = ACTIONS(2881), + [anon_sym_private] = ACTIONS(2881), + [anon_sym_extern] = ACTIONS(2881), + [anon_sym_inline] = ACTIONS(2881), + [anon_sym_overload] = ACTIONS(2881), + [anon_sym_override] = ACTIONS(2881), + [anon_sym_final] = ACTIONS(2881), + [anon_sym_class] = ACTIONS(2881), + [anon_sym_interface] = ACTIONS(2881), + [anon_sym_enum] = ACTIONS(2881), + [anon_sym_typedef] = ACTIONS(2881), + [anon_sym_function] = ACTIONS(2881), + [anon_sym_var] = ACTIONS(2881), + [aux_sym_integer_token1] = ACTIONS(2881), + [aux_sym_integer_token2] = ACTIONS(2883), + [aux_sym_float_token1] = ACTIONS(2881), + [aux_sym_float_token2] = ACTIONS(2883), + [anon_sym_true] = ACTIONS(2881), + [anon_sym_false] = ACTIONS(2881), + [aux_sym_string_token1] = ACTIONS(2883), + [aux_sym_string_token3] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2883), [sym__closing_brace_unmarker] = ACTIONS(3), }, [470] = { - [sym_identifier] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2248), - [anon_sym_import] = ACTIONS(2248), - [anon_sym_using] = ACTIONS(2248), - [anon_sym_throw] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_case] = ACTIONS(2248), - [anon_sym_default] = ACTIONS(2248), - [anon_sym_cast] = ACTIONS(2248), - [anon_sym_DOLLARtype] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_untyped] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_this] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2248), - [anon_sym_AT_COLON] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_new] = ACTIONS(2248), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2248), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_EQ] = ACTIONS(2248), - [sym__rangeOperator] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2248), - [anon_sym_macro] = ACTIONS(2248), - [anon_sym_abstract] = ACTIONS(2248), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(2248), - [anon_sym_private] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_inline] = ACTIONS(2248), - [anon_sym_overload] = ACTIONS(2248), - [anon_sym_override] = ACTIONS(2248), - [anon_sym_final] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2248), - [anon_sym_interface] = ACTIONS(2248), - [anon_sym_typedef] = ACTIONS(2248), - [anon_sym_function] = ACTIONS(2248), - [anon_sym_var] = ACTIONS(2248), - [aux_sym_integer_token1] = ACTIONS(2248), - [aux_sym_integer_token2] = ACTIONS(2250), - [aux_sym_float_token1] = ACTIONS(2248), - [aux_sym_float_token2] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [aux_sym_string_token1] = ACTIONS(2250), - [aux_sym_string_token3] = ACTIONS(2250), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2250), + [sym_identifier] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_package] = ACTIONS(2885), + [anon_sym_import] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2885), + [anon_sym_throw] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_case] = ACTIONS(2885), + [anon_sym_default] = ACTIONS(2885), + [anon_sym_cast] = ACTIONS(2885), + [anon_sym_DOLLARtype] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_return] = ACTIONS(2885), + [anon_sym_untyped] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(2885), + [anon_sym_continue] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_this] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_AT_COLON] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2885), + [anon_sym_catch] = ACTIONS(2885), + [anon_sym_else] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_while] = ACTIONS(2885), + [anon_sym_do] = ACTIONS(2885), + [anon_sym_new] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_EQ_GT] = ACTIONS(2887), + [anon_sym_QMARK_QMARK] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2885), + [anon_sym_macro] = ACTIONS(2885), + [anon_sym_abstract] = ACTIONS(2885), + [anon_sym_static] = ACTIONS(2885), + [anon_sym_public] = ACTIONS(2885), + [anon_sym_private] = ACTIONS(2885), + [anon_sym_extern] = ACTIONS(2885), + [anon_sym_inline] = ACTIONS(2885), + [anon_sym_overload] = ACTIONS(2885), + [anon_sym_override] = ACTIONS(2885), + [anon_sym_final] = ACTIONS(2885), + [anon_sym_class] = ACTIONS(2885), + [anon_sym_interface] = ACTIONS(2885), + [anon_sym_enum] = ACTIONS(2885), + [anon_sym_typedef] = ACTIONS(2885), + [anon_sym_function] = ACTIONS(2885), + [anon_sym_var] = ACTIONS(2885), + [aux_sym_integer_token1] = ACTIONS(2885), + [aux_sym_integer_token2] = ACTIONS(2887), + [aux_sym_float_token1] = ACTIONS(2885), + [aux_sym_float_token2] = ACTIONS(2887), + [anon_sym_true] = ACTIONS(2885), + [anon_sym_false] = ACTIONS(2885), + [aux_sym_string_token1] = ACTIONS(2887), + [aux_sym_string_token3] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2887), [sym__closing_brace_unmarker] = ACTIONS(3), }, [471] = { - [sym_identifier] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_package] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_case] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_cast] = ACTIONS(2252), - [anon_sym_DOLLARtype] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_untyped] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_this] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_AT_COLON] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_EQ] = ACTIONS(2252), - [sym__rangeOperator] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2252), - [anon_sym_macro] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_inline] = ACTIONS(2252), - [anon_sym_overload] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_final] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_typedef] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [aux_sym_integer_token1] = ACTIONS(2252), - [aux_sym_integer_token2] = ACTIONS(2254), - [aux_sym_float_token1] = ACTIONS(2252), - [aux_sym_float_token2] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [aux_sym_string_token1] = ACTIONS(2254), - [aux_sym_string_token3] = ACTIONS(2254), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_package] = ACTIONS(2889), + [anon_sym_import] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2889), + [anon_sym_throw] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_case] = ACTIONS(2889), + [anon_sym_default] = ACTIONS(2889), + [anon_sym_cast] = ACTIONS(2889), + [anon_sym_DOLLARtype] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_untyped] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_this] = ACTIONS(2889), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_AT_COLON] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2889), + [anon_sym_catch] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_while] = ACTIONS(2889), + [anon_sym_do] = ACTIONS(2889), + [anon_sym_new] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_EQ_GT] = ACTIONS(2891), + [anon_sym_QMARK_QMARK] = ACTIONS(2891), + [anon_sym_EQ] = ACTIONS(2889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), + [anon_sym_null] = ACTIONS(2889), + [anon_sym_macro] = ACTIONS(2889), + [anon_sym_abstract] = ACTIONS(2889), + [anon_sym_static] = ACTIONS(2889), + [anon_sym_public] = ACTIONS(2889), + [anon_sym_private] = ACTIONS(2889), + [anon_sym_extern] = ACTIONS(2889), + [anon_sym_inline] = ACTIONS(2889), + [anon_sym_overload] = ACTIONS(2889), + [anon_sym_override] = ACTIONS(2889), + [anon_sym_final] = ACTIONS(2889), + [anon_sym_class] = ACTIONS(2889), + [anon_sym_interface] = ACTIONS(2889), + [anon_sym_enum] = ACTIONS(2889), + [anon_sym_typedef] = ACTIONS(2889), + [anon_sym_function] = ACTIONS(2889), + [anon_sym_var] = ACTIONS(2889), + [aux_sym_integer_token1] = ACTIONS(2889), + [aux_sym_integer_token2] = ACTIONS(2891), + [aux_sym_float_token1] = ACTIONS(2889), + [aux_sym_float_token2] = ACTIONS(2891), + [anon_sym_true] = ACTIONS(2889), + [anon_sym_false] = ACTIONS(2889), + [aux_sym_string_token1] = ACTIONS(2891), + [aux_sym_string_token3] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2891), [sym__closing_brace_unmarker] = ACTIONS(3), }, [472] = { - [sym_identifier] = ACTIONS(2256), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_package] = ACTIONS(2256), - [anon_sym_import] = ACTIONS(2256), - [anon_sym_using] = ACTIONS(2256), - [anon_sym_throw] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2256), - [anon_sym_default] = ACTIONS(2256), - [anon_sym_cast] = ACTIONS(2256), - [anon_sym_DOLLARtype] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_untyped] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_this] = ACTIONS(2256), - [anon_sym_AT] = ACTIONS(2256), - [anon_sym_AT_COLON] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_GT_GT_GT] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_QMARK_QMARK] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2256), - [sym__rangeOperator] = ACTIONS(2258), - [anon_sym_null] = ACTIONS(2256), - [anon_sym_macro] = ACTIONS(2256), - [anon_sym_abstract] = ACTIONS(2256), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_public] = ACTIONS(2256), - [anon_sym_private] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_inline] = ACTIONS(2256), - [anon_sym_overload] = ACTIONS(2256), - [anon_sym_override] = ACTIONS(2256), - [anon_sym_final] = ACTIONS(2256), - [anon_sym_class] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2256), - [anon_sym_typedef] = ACTIONS(2256), - [anon_sym_function] = ACTIONS(2256), - [anon_sym_var] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [aux_sym_integer_token2] = ACTIONS(2258), - [aux_sym_float_token1] = ACTIONS(2256), - [aux_sym_float_token2] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [aux_sym_string_token3] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_package] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2893), + [anon_sym_throw] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_case] = ACTIONS(2893), + [anon_sym_default] = ACTIONS(2893), + [anon_sym_cast] = ACTIONS(2893), + [anon_sym_DOLLARtype] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_untyped] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_this] = ACTIONS(2893), + [anon_sym_AT] = ACTIONS(2893), + [anon_sym_AT_COLON] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2893), + [anon_sym_catch] = ACTIONS(2893), + [anon_sym_else] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_while] = ACTIONS(2893), + [anon_sym_do] = ACTIONS(2893), + [anon_sym_new] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2895), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_EQ_GT] = ACTIONS(2895), + [anon_sym_QMARK_QMARK] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2895), + [anon_sym_null] = ACTIONS(2893), + [anon_sym_macro] = ACTIONS(2893), + [anon_sym_abstract] = ACTIONS(2893), + [anon_sym_static] = ACTIONS(2893), + [anon_sym_public] = ACTIONS(2893), + [anon_sym_private] = ACTIONS(2893), + [anon_sym_extern] = ACTIONS(2893), + [anon_sym_inline] = ACTIONS(2893), + [anon_sym_overload] = ACTIONS(2893), + [anon_sym_override] = ACTIONS(2893), + [anon_sym_final] = ACTIONS(2893), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(2893), + [anon_sym_function] = ACTIONS(2893), + [anon_sym_var] = ACTIONS(2893), + [aux_sym_integer_token1] = ACTIONS(2893), + [aux_sym_integer_token2] = ACTIONS(2895), + [aux_sym_float_token1] = ACTIONS(2893), + [aux_sym_float_token2] = ACTIONS(2895), + [anon_sym_true] = ACTIONS(2893), + [anon_sym_false] = ACTIONS(2893), + [aux_sym_string_token1] = ACTIONS(2895), + [aux_sym_string_token3] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2895), [sym__closing_brace_unmarker] = ACTIONS(3), }, [473] = { - [sym_identifier] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_package] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2260), - [anon_sym_default] = ACTIONS(2260), - [anon_sym_cast] = ACTIONS(2260), - [anon_sym_DOLLARtype] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_untyped] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_this] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [anon_sym_AT_COLON] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2260), - [anon_sym_GT_GT_GT] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_CARET] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_EQ_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_QMARK_QMARK] = ACTIONS(2262), - [anon_sym_EQ] = ACTIONS(2260), - [sym__rangeOperator] = ACTIONS(2262), - [anon_sym_null] = ACTIONS(2260), - [anon_sym_macro] = ACTIONS(2260), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_public] = ACTIONS(2260), - [anon_sym_private] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_inline] = ACTIONS(2260), - [anon_sym_overload] = ACTIONS(2260), - [anon_sym_override] = ACTIONS(2260), - [anon_sym_final] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_typedef] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [aux_sym_integer_token1] = ACTIONS(2260), - [aux_sym_integer_token2] = ACTIONS(2262), - [aux_sym_float_token1] = ACTIONS(2260), - [aux_sym_float_token2] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [aux_sym_string_token1] = ACTIONS(2262), - [aux_sym_string_token3] = ACTIONS(2262), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2897), + [anon_sym_POUND] = ACTIONS(2899), + [anon_sym_package] = ACTIONS(2897), + [anon_sym_import] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_using] = ACTIONS(2897), + [anon_sym_throw] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_case] = ACTIONS(2897), + [anon_sym_default] = ACTIONS(2897), + [anon_sym_cast] = ACTIONS(2897), + [anon_sym_DOLLARtype] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_untyped] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_this] = ACTIONS(2897), + [anon_sym_AT] = ACTIONS(2897), + [anon_sym_AT_COLON] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2897), + [anon_sym_catch] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_new] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2897), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_LT_LT] = ACTIONS(2899), + [anon_sym_GT_GT] = ACTIONS(2897), + [anon_sym_GT_GT_GT] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2899), + [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [anon_sym_EQ_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_EQ_GT] = ACTIONS(2899), + [anon_sym_QMARK_QMARK] = ACTIONS(2899), + [anon_sym_EQ] = ACTIONS(2897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2897), + [anon_sym_macro] = ACTIONS(2897), + [anon_sym_abstract] = ACTIONS(2897), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_public] = ACTIONS(2897), + [anon_sym_private] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_overload] = ACTIONS(2897), + [anon_sym_override] = ACTIONS(2897), + [anon_sym_final] = ACTIONS(2897), + [anon_sym_class] = ACTIONS(2897), + [anon_sym_interface] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_function] = ACTIONS(2897), + [anon_sym_var] = ACTIONS(2897), + [aux_sym_integer_token1] = ACTIONS(2897), + [aux_sym_integer_token2] = ACTIONS(2899), + [aux_sym_float_token1] = ACTIONS(2897), + [aux_sym_float_token2] = ACTIONS(2899), + [anon_sym_true] = ACTIONS(2897), + [anon_sym_false] = ACTIONS(2897), + [aux_sym_string_token1] = ACTIONS(2899), + [aux_sym_string_token3] = ACTIONS(2899), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2899), [sym__closing_brace_unmarker] = ACTIONS(3), }, [474] = { - [sym_identifier] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_package] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_case] = ACTIONS(2264), - [anon_sym_default] = ACTIONS(2264), - [anon_sym_cast] = ACTIONS(2264), - [anon_sym_DOLLARtype] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_untyped] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_this] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_AT_COLON] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_EQ_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2264), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_EQ_GT] = ACTIONS(2266), - [anon_sym_QMARK_QMARK] = ACTIONS(2266), - [anon_sym_EQ] = ACTIONS(2264), - [sym__rangeOperator] = ACTIONS(2266), - [anon_sym_null] = ACTIONS(2264), - [anon_sym_macro] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_inline] = ACTIONS(2264), - [anon_sym_overload] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_final] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_typedef] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [aux_sym_integer_token1] = ACTIONS(2264), - [aux_sym_integer_token2] = ACTIONS(2266), - [aux_sym_float_token1] = ACTIONS(2264), - [aux_sym_float_token2] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [aux_sym_string_token1] = ACTIONS(2266), - [aux_sym_string_token3] = ACTIONS(2266), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2266), + [sym_identifier] = ACTIONS(2901), + [anon_sym_POUND] = ACTIONS(2903), + [anon_sym_package] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_case] = ACTIONS(2901), + [anon_sym_default] = ACTIONS(2901), + [anon_sym_cast] = ACTIONS(2901), + [anon_sym_DOLLARtype] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_untyped] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_this] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_AT_COLON] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_catch] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_GT_GT_GT] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2901), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_EQ_GT] = ACTIONS(2903), + [anon_sym_QMARK_QMARK] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2901), + [anon_sym_macro] = ACTIONS(2901), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_public] = ACTIONS(2901), + [anon_sym_private] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_overload] = ACTIONS(2901), + [anon_sym_override] = ACTIONS(2901), + [anon_sym_final] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_interface] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_function] = ACTIONS(2901), + [anon_sym_var] = ACTIONS(2901), + [aux_sym_integer_token1] = ACTIONS(2901), + [aux_sym_integer_token2] = ACTIONS(2903), + [aux_sym_float_token1] = ACTIONS(2901), + [aux_sym_float_token2] = ACTIONS(2903), + [anon_sym_true] = ACTIONS(2901), + [anon_sym_false] = ACTIONS(2901), + [aux_sym_string_token1] = ACTIONS(2903), + [aux_sym_string_token3] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2903), [sym__closing_brace_unmarker] = ACTIONS(3), }, [475] = { - [sym_identifier] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_package] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_case] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2268), - [anon_sym_cast] = ACTIONS(2268), - [anon_sym_DOLLARtype] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_untyped] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_AT_COLON] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2270), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_GT_GT_GT] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_CARET] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_EQ_GT] = ACTIONS(2270), - [anon_sym_QMARK_QMARK] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(2268), - [sym__rangeOperator] = ACTIONS(2270), - [anon_sym_null] = ACTIONS(2268), - [anon_sym_macro] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_inline] = ACTIONS(2268), - [anon_sym_overload] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_final] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_typedef] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [aux_sym_integer_token1] = ACTIONS(2268), - [aux_sym_integer_token2] = ACTIONS(2270), - [aux_sym_float_token1] = ACTIONS(2268), - [aux_sym_float_token2] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [aux_sym_string_token1] = ACTIONS(2270), - [aux_sym_string_token3] = ACTIONS(2270), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2907), + [anon_sym_package] = ACTIONS(2905), + [anon_sym_import] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_case] = ACTIONS(2905), + [anon_sym_default] = ACTIONS(2905), + [anon_sym_cast] = ACTIONS(2905), + [anon_sym_DOLLARtype] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_untyped] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_this] = ACTIONS(2905), + [anon_sym_AT] = ACTIONS(2905), + [anon_sym_AT_COLON] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_catch] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_GT_GT_GT] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_PIPE_PIPE] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_EQ_GT] = ACTIONS(2907), + [anon_sym_QMARK_QMARK] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(2905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), + [anon_sym_null] = ACTIONS(2905), + [anon_sym_macro] = ACTIONS(2905), + [anon_sym_abstract] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_public] = ACTIONS(2905), + [anon_sym_private] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_overload] = ACTIONS(2905), + [anon_sym_override] = ACTIONS(2905), + [anon_sym_final] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_function] = ACTIONS(2905), + [anon_sym_var] = ACTIONS(2905), + [aux_sym_integer_token1] = ACTIONS(2905), + [aux_sym_integer_token2] = ACTIONS(2907), + [aux_sym_float_token1] = ACTIONS(2905), + [aux_sym_float_token2] = ACTIONS(2907), + [anon_sym_true] = ACTIONS(2905), + [anon_sym_false] = ACTIONS(2905), + [aux_sym_string_token1] = ACTIONS(2907), + [aux_sym_string_token3] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2907), [sym__closing_brace_unmarker] = ACTIONS(3), }, [476] = { - [sym_identifier] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_package] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2272), - [anon_sym_default] = ACTIONS(2272), - [anon_sym_cast] = ACTIONS(2272), - [anon_sym_DOLLARtype] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_untyped] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_this] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_AT_COLON] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2272), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_GT] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_EQ_GT] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2272), - [sym__rangeOperator] = ACTIONS(2274), - [anon_sym_null] = ACTIONS(2272), - [anon_sym_macro] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_inline] = ACTIONS(2272), - [anon_sym_overload] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_final] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_typedef] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [aux_sym_integer_token1] = ACTIONS(2272), - [aux_sym_integer_token2] = ACTIONS(2274), - [aux_sym_float_token1] = ACTIONS(2272), - [aux_sym_float_token2] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [aux_sym_string_token1] = ACTIONS(2274), - [aux_sym_string_token3] = ACTIONS(2274), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2911), + [anon_sym_package] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_case] = ACTIONS(2909), + [anon_sym_default] = ACTIONS(2909), + [anon_sym_cast] = ACTIONS(2909), + [anon_sym_DOLLARtype] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_untyped] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_this] = ACTIONS(2909), + [anon_sym_AT] = ACTIONS(2909), + [anon_sym_AT_COLON] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_catch] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_LT_LT] = ACTIONS(2911), + [anon_sym_GT_GT] = ACTIONS(2909), + [anon_sym_GT_GT_GT] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_PIPE_PIPE] = ACTIONS(2911), + [anon_sym_EQ_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2909), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_EQ_GT] = ACTIONS(2911), + [anon_sym_QMARK_QMARK] = ACTIONS(2911), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_null] = ACTIONS(2909), + [anon_sym_macro] = ACTIONS(2909), + [anon_sym_abstract] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_public] = ACTIONS(2909), + [anon_sym_private] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym_overload] = ACTIONS(2909), + [anon_sym_override] = ACTIONS(2909), + [anon_sym_final] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_function] = ACTIONS(2909), + [anon_sym_var] = ACTIONS(2909), + [aux_sym_integer_token1] = ACTIONS(2909), + [aux_sym_integer_token2] = ACTIONS(2911), + [aux_sym_float_token1] = ACTIONS(2909), + [aux_sym_float_token2] = ACTIONS(2911), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [aux_sym_string_token1] = ACTIONS(2911), + [aux_sym_string_token3] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2911), [sym__closing_brace_unmarker] = ACTIONS(3), }, [477] = { - [sym_identifier] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_package] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_case] = ACTIONS(2276), - [anon_sym_default] = ACTIONS(2276), - [anon_sym_cast] = ACTIONS(2276), - [anon_sym_DOLLARtype] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_untyped] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_this] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_AT_COLON] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2278), - [anon_sym_GT_GT] = ACTIONS(2276), - [anon_sym_GT_GT_GT] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_CARET] = ACTIONS(2278), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2278), - [anon_sym_GT] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2278), - [anon_sym_EQ_GT] = ACTIONS(2278), - [anon_sym_QMARK_QMARK] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2276), - [sym__rangeOperator] = ACTIONS(2278), - [anon_sym_null] = ACTIONS(2276), - [anon_sym_macro] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_inline] = ACTIONS(2276), - [anon_sym_overload] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_final] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_typedef] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [aux_sym_integer_token1] = ACTIONS(2276), - [aux_sym_integer_token2] = ACTIONS(2278), - [aux_sym_float_token1] = ACTIONS(2276), - [aux_sym_float_token2] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [aux_sym_string_token1] = ACTIONS(2278), - [aux_sym_string_token3] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2278), + [sym_identifier] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2915), + [anon_sym_package] = ACTIONS(2913), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_case] = ACTIONS(2913), + [anon_sym_default] = ACTIONS(2913), + [anon_sym_cast] = ACTIONS(2913), + [anon_sym_DOLLARtype] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_untyped] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_this] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_AT_COLON] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_catch] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_GT_GT_GT] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_CARET] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_PIPE_PIPE] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_EQ_GT] = ACTIONS(2915), + [anon_sym_QMARK_QMARK] = ACTIONS(2915), + [anon_sym_EQ] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2915), + [anon_sym_null] = ACTIONS(2913), + [anon_sym_macro] = ACTIONS(2913), + [anon_sym_abstract] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_private] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_overload] = ACTIONS(2913), + [anon_sym_override] = ACTIONS(2913), + [anon_sym_final] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_function] = ACTIONS(2913), + [anon_sym_var] = ACTIONS(2913), + [aux_sym_integer_token1] = ACTIONS(2913), + [aux_sym_integer_token2] = ACTIONS(2915), + [aux_sym_float_token1] = ACTIONS(2913), + [aux_sym_float_token2] = ACTIONS(2915), + [anon_sym_true] = ACTIONS(2913), + [anon_sym_false] = ACTIONS(2913), + [aux_sym_string_token1] = ACTIONS(2915), + [aux_sym_string_token3] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2915), [sym__closing_brace_unmarker] = ACTIONS(3), }, [478] = { - [sym_identifier] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_package] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_cast] = ACTIONS(2280), - [anon_sym_DOLLARtype] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_untyped] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_this] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_AT_COLON] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2280), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_EQ_GT] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2280), - [sym__rangeOperator] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_macro] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_inline] = ACTIONS(2280), - [anon_sym_overload] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_final] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [aux_sym_integer_token1] = ACTIONS(2280), - [aux_sym_integer_token2] = ACTIONS(2282), - [aux_sym_float_token1] = ACTIONS(2280), - [aux_sym_float_token2] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [aux_sym_string_token1] = ACTIONS(2282), - [aux_sym_string_token3] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2282), + [sym_identifier] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2919), + [anon_sym_package] = ACTIONS(2917), + [anon_sym_import] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_case] = ACTIONS(2917), + [anon_sym_default] = ACTIONS(2917), + [anon_sym_cast] = ACTIONS(2917), + [anon_sym_DOLLARtype] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_untyped] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_this] = ACTIONS(2917), + [anon_sym_AT] = ACTIONS(2917), + [anon_sym_AT_COLON] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_catch] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2919), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_EQ_GT] = ACTIONS(2919), + [anon_sym_QMARK_QMARK] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2919), + [anon_sym_null] = ACTIONS(2917), + [anon_sym_macro] = ACTIONS(2917), + [anon_sym_abstract] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_public] = ACTIONS(2917), + [anon_sym_private] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym_overload] = ACTIONS(2917), + [anon_sym_override] = ACTIONS(2917), + [anon_sym_final] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_interface] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_function] = ACTIONS(2917), + [anon_sym_var] = ACTIONS(2917), + [aux_sym_integer_token1] = ACTIONS(2917), + [aux_sym_integer_token2] = ACTIONS(2919), + [aux_sym_float_token1] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_true] = ACTIONS(2917), + [anon_sym_false] = ACTIONS(2917), + [aux_sym_string_token1] = ACTIONS(2919), + [aux_sym_string_token3] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2919), [sym__closing_brace_unmarker] = ACTIONS(3), }, [479] = { - [sym_identifier] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_case] = ACTIONS(2284), - [anon_sym_default] = ACTIONS(2284), - [anon_sym_cast] = ACTIONS(2284), - [anon_sym_DOLLARtype] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_untyped] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_this] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_AT_COLON] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_EQ_GT] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_EQ] = ACTIONS(2284), - [sym__rangeOperator] = ACTIONS(2286), - [anon_sym_null] = ACTIONS(2284), - [anon_sym_macro] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_inline] = ACTIONS(2284), - [anon_sym_overload] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_final] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_typedef] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [aux_sym_integer_token1] = ACTIONS(2284), - [aux_sym_integer_token2] = ACTIONS(2286), - [aux_sym_float_token1] = ACTIONS(2284), - [aux_sym_float_token2] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [aux_sym_string_token1] = ACTIONS(2286), - [aux_sym_string_token3] = ACTIONS(2286), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2286), + [sym_identifier] = ACTIONS(2921), + [anon_sym_POUND] = ACTIONS(2923), + [anon_sym_package] = ACTIONS(2921), + [anon_sym_import] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_case] = ACTIONS(2921), + [anon_sym_default] = ACTIONS(2921), + [anon_sym_cast] = ACTIONS(2921), + [anon_sym_DOLLARtype] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_untyped] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_this] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_AT_COLON] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_catch] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_EQ_GT] = ACTIONS(2923), + [anon_sym_QMARK_QMARK] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2923), + [anon_sym_null] = ACTIONS(2921), + [anon_sym_macro] = ACTIONS(2921), + [anon_sym_abstract] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_public] = ACTIONS(2921), + [anon_sym_private] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_overload] = ACTIONS(2921), + [anon_sym_override] = ACTIONS(2921), + [anon_sym_final] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_interface] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_function] = ACTIONS(2921), + [anon_sym_var] = ACTIONS(2921), + [aux_sym_integer_token1] = ACTIONS(2921), + [aux_sym_integer_token2] = ACTIONS(2923), + [aux_sym_float_token1] = ACTIONS(2921), + [aux_sym_float_token2] = ACTIONS(2923), + [anon_sym_true] = ACTIONS(2921), + [anon_sym_false] = ACTIONS(2921), + [aux_sym_string_token1] = ACTIONS(2923), + [aux_sym_string_token3] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2923), [sym__closing_brace_unmarker] = ACTIONS(3), }, [480] = { - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(2290), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1608), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1502), + [sym_identifier] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_package] = ACTIONS(2925), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_case] = ACTIONS(2925), + [anon_sym_default] = ACTIONS(2925), + [anon_sym_cast] = ACTIONS(2925), + [anon_sym_DOLLARtype] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_untyped] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_this] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_AT_COLON] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_catch] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_EQ_GT] = ACTIONS(2927), + [anon_sym_QMARK_QMARK] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2927), + [anon_sym_null] = ACTIONS(2925), + [anon_sym_macro] = ACTIONS(2925), + [anon_sym_abstract] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_public] = ACTIONS(2925), + [anon_sym_private] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym_overload] = ACTIONS(2925), + [anon_sym_override] = ACTIONS(2925), + [anon_sym_final] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_interface] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_function] = ACTIONS(2925), + [anon_sym_var] = ACTIONS(2925), + [aux_sym_integer_token1] = ACTIONS(2925), + [aux_sym_integer_token2] = ACTIONS(2927), + [aux_sym_float_token1] = ACTIONS(2925), + [aux_sym_float_token2] = ACTIONS(2927), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [aux_sym_string_token1] = ACTIONS(2927), + [aux_sym_string_token3] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2927), [sym__closing_brace_unmarker] = ACTIONS(3), }, [481] = { - [sym_identifier] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_package] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_case] = ACTIONS(2292), - [anon_sym_default] = ACTIONS(2292), - [anon_sym_cast] = ACTIONS(2292), - [anon_sym_DOLLARtype] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_untyped] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_this] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_AT_COLON] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2292), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2292), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_EQ_GT] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_EQ] = ACTIONS(2292), - [sym__rangeOperator] = ACTIONS(2294), - [anon_sym_null] = ACTIONS(2292), - [anon_sym_macro] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_inline] = ACTIONS(2292), - [anon_sym_overload] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_final] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_typedef] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [aux_sym_integer_token1] = ACTIONS(2292), - [aux_sym_integer_token2] = ACTIONS(2294), - [aux_sym_float_token1] = ACTIONS(2292), - [aux_sym_float_token2] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2292), - [anon_sym_false] = ACTIONS(2292), - [aux_sym_string_token1] = ACTIONS(2294), - [aux_sym_string_token3] = ACTIONS(2294), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2294), + [sym_identifier] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2931), + [anon_sym_package] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2929), + [anon_sym_throw] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_case] = ACTIONS(2929), + [anon_sym_default] = ACTIONS(2929), + [anon_sym_cast] = ACTIONS(2929), + [anon_sym_DOLLARtype] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_untyped] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_this] = ACTIONS(2929), + [anon_sym_AT] = ACTIONS(2929), + [anon_sym_AT_COLON] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_catch] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_do] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2931), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_PIPE_PIPE] = ACTIONS(2931), + [anon_sym_EQ_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_EQ_GT] = ACTIONS(2931), + [anon_sym_QMARK_QMARK] = ACTIONS(2931), + [anon_sym_EQ] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), + [anon_sym_null] = ACTIONS(2929), + [anon_sym_macro] = ACTIONS(2929), + [anon_sym_abstract] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_private] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym_overload] = ACTIONS(2929), + [anon_sym_override] = ACTIONS(2929), + [anon_sym_final] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_typedef] = ACTIONS(2929), + [anon_sym_function] = ACTIONS(2929), + [anon_sym_var] = ACTIONS(2929), + [aux_sym_integer_token1] = ACTIONS(2929), + [aux_sym_integer_token2] = ACTIONS(2931), + [aux_sym_float_token1] = ACTIONS(2929), + [aux_sym_float_token2] = ACTIONS(2931), + [anon_sym_true] = ACTIONS(2929), + [anon_sym_false] = ACTIONS(2929), + [aux_sym_string_token1] = ACTIONS(2931), + [aux_sym_string_token3] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2931), [sym__closing_brace_unmarker] = ACTIONS(3), }, [482] = { - [sym_identifier] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_package] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_cast] = ACTIONS(2296), - [anon_sym_DOLLARtype] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_untyped] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_AT_COLON] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_EQ_GT] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_EQ] = ACTIONS(2296), - [sym__rangeOperator] = ACTIONS(2298), - [anon_sym_null] = ACTIONS(2296), - [anon_sym_macro] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_inline] = ACTIONS(2296), - [anon_sym_overload] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_final] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_typedef] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [aux_sym_integer_token1] = ACTIONS(2296), - [aux_sym_integer_token2] = ACTIONS(2298), - [aux_sym_float_token1] = ACTIONS(2296), - [aux_sym_float_token2] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [aux_sym_string_token1] = ACTIONS(2298), - [aux_sym_string_token3] = ACTIONS(2298), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2298), + [sym_identifier] = ACTIONS(2933), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_package] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_case] = ACTIONS(2933), + [anon_sym_default] = ACTIONS(2933), + [anon_sym_cast] = ACTIONS(2933), + [anon_sym_DOLLARtype] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_untyped] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_this] = ACTIONS(2933), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_AT_COLON] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_catch] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2933), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_EQ_GT] = ACTIONS(2935), + [anon_sym_QMARK_QMARK] = ACTIONS(2935), + [anon_sym_EQ] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_null] = ACTIONS(2933), + [anon_sym_macro] = ACTIONS(2933), + [anon_sym_abstract] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_public] = ACTIONS(2933), + [anon_sym_private] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym_overload] = ACTIONS(2933), + [anon_sym_override] = ACTIONS(2933), + [anon_sym_final] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_interface] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_function] = ACTIONS(2933), + [anon_sym_var] = ACTIONS(2933), + [aux_sym_integer_token1] = ACTIONS(2933), + [aux_sym_integer_token2] = ACTIONS(2935), + [aux_sym_float_token1] = ACTIONS(2933), + [aux_sym_float_token2] = ACTIONS(2935), + [anon_sym_true] = ACTIONS(2933), + [anon_sym_false] = ACTIONS(2933), + [aux_sym_string_token1] = ACTIONS(2935), + [aux_sym_string_token3] = ACTIONS(2935), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2935), [sym__closing_brace_unmarker] = ACTIONS(3), }, [483] = { - [sym_identifier] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_package] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2300), - [anon_sym_default] = ACTIONS(2300), - [anon_sym_cast] = ACTIONS(2300), - [anon_sym_DOLLARtype] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_untyped] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_this] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_AT_COLON] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_EQ_GT] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2300), - [sym__rangeOperator] = ACTIONS(2302), - [anon_sym_null] = ACTIONS(2300), - [anon_sym_macro] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [anon_sym_overload] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_final] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [aux_sym_integer_token1] = ACTIONS(2300), - [aux_sym_integer_token2] = ACTIONS(2302), - [aux_sym_float_token1] = ACTIONS(2300), - [aux_sym_float_token2] = ACTIONS(2302), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [aux_sym_string_token1] = ACTIONS(2302), - [aux_sym_string_token3] = ACTIONS(2302), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2939), + [anon_sym_package] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_case] = ACTIONS(2937), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_cast] = ACTIONS(2937), + [anon_sym_DOLLARtype] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_untyped] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_this] = ACTIONS(2937), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_AT_COLON] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_catch] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_PERCENT] = ACTIONS(2939), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2939), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_PIPE_PIPE] = ACTIONS(2939), + [anon_sym_EQ_EQ] = ACTIONS(2939), + [anon_sym_BANG_EQ] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2939), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(2939), + [anon_sym_QMARK_QMARK] = ACTIONS(2939), + [anon_sym_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2939), + [anon_sym_null] = ACTIONS(2937), + [anon_sym_macro] = ACTIONS(2937), + [anon_sym_abstract] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_private] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym_overload] = ACTIONS(2937), + [anon_sym_override] = ACTIONS(2937), + [anon_sym_final] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_function] = ACTIONS(2937), + [anon_sym_var] = ACTIONS(2937), + [aux_sym_integer_token1] = ACTIONS(2937), + [aux_sym_integer_token2] = ACTIONS(2939), + [aux_sym_float_token1] = ACTIONS(2937), + [aux_sym_float_token2] = ACTIONS(2939), + [anon_sym_true] = ACTIONS(2937), + [anon_sym_false] = ACTIONS(2937), + [aux_sym_string_token1] = ACTIONS(2939), + [aux_sym_string_token3] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2939), [sym__closing_brace_unmarker] = ACTIONS(3), }, [484] = { - [sym_identifier] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_package] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_case] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2304), - [anon_sym_cast] = ACTIONS(2304), - [anon_sym_DOLLARtype] = ACTIONS(2306), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_untyped] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_this] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_AT_COLON] = ACTIONS(2306), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_EQ_GT] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_EQ] = ACTIONS(2304), - [sym__rangeOperator] = ACTIONS(2306), - [anon_sym_null] = ACTIONS(2304), - [anon_sym_macro] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_inline] = ACTIONS(2304), - [anon_sym_overload] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_final] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [aux_sym_integer_token1] = ACTIONS(2304), - [aux_sym_integer_token2] = ACTIONS(2306), - [aux_sym_float_token1] = ACTIONS(2304), - [aux_sym_float_token2] = ACTIONS(2306), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [aux_sym_string_token1] = ACTIONS(2306), - [aux_sym_string_token3] = ACTIONS(2306), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2941), + [anon_sym_POUND] = ACTIONS(2943), + [anon_sym_package] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_case] = ACTIONS(2941), + [anon_sym_default] = ACTIONS(2941), + [anon_sym_cast] = ACTIONS(2941), + [anon_sym_DOLLARtype] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_untyped] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_this] = ACTIONS(2941), + [anon_sym_AT] = ACTIONS(2941), + [anon_sym_AT_COLON] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_catch] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2943), + [anon_sym_GT_GT] = ACTIONS(2941), + [anon_sym_GT_GT_GT] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_PIPE_PIPE] = ACTIONS(2943), + [anon_sym_EQ_EQ] = ACTIONS(2943), + [anon_sym_BANG_EQ] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_LT_EQ] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2943), + [anon_sym_EQ_GT] = ACTIONS(2943), + [anon_sym_QMARK_QMARK] = ACTIONS(2943), + [anon_sym_EQ] = ACTIONS(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_null] = ACTIONS(2941), + [anon_sym_macro] = ACTIONS(2941), + [anon_sym_abstract] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_private] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym_overload] = ACTIONS(2941), + [anon_sym_override] = ACTIONS(2941), + [anon_sym_final] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_interface] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_function] = ACTIONS(2941), + [anon_sym_var] = ACTIONS(2941), + [aux_sym_integer_token1] = ACTIONS(2941), + [aux_sym_integer_token2] = ACTIONS(2943), + [aux_sym_float_token1] = ACTIONS(2941), + [aux_sym_float_token2] = ACTIONS(2943), + [anon_sym_true] = ACTIONS(2941), + [anon_sym_false] = ACTIONS(2941), + [aux_sym_string_token1] = ACTIONS(2943), + [aux_sym_string_token3] = ACTIONS(2943), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2943), [sym__closing_brace_unmarker] = ACTIONS(3), }, [485] = { - [sym_identifier] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_case] = ACTIONS(2308), - [anon_sym_default] = ACTIONS(2308), - [anon_sym_cast] = ACTIONS(2308), - [anon_sym_DOLLARtype] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_untyped] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_this] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_AT_COLON] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_EQ_GT] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_EQ] = ACTIONS(2308), - [sym__rangeOperator] = ACTIONS(2310), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_macro] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_inline] = ACTIONS(2308), - [anon_sym_overload] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_final] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_typedef] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [aux_sym_integer_token1] = ACTIONS(2308), - [aux_sym_integer_token2] = ACTIONS(2310), - [aux_sym_float_token1] = ACTIONS(2308), - [aux_sym_float_token2] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [aux_sym_string_token1] = ACTIONS(2310), - [aux_sym_string_token3] = ACTIONS(2310), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2310), + [sym_identifier] = ACTIONS(2945), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_package] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_case] = ACTIONS(2945), + [anon_sym_default] = ACTIONS(2945), + [anon_sym_cast] = ACTIONS(2945), + [anon_sym_DOLLARtype] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_untyped] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_this] = ACTIONS(2945), + [anon_sym_AT] = ACTIONS(2945), + [anon_sym_AT_COLON] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_catch] = ACTIONS(2945), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_EQ_GT] = ACTIONS(2947), + [anon_sym_QMARK_QMARK] = ACTIONS(2947), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2947), + [anon_sym_null] = ACTIONS(2945), + [anon_sym_macro] = ACTIONS(2945), + [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_overload] = ACTIONS(2945), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_final] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_interface] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_function] = ACTIONS(2945), + [anon_sym_var] = ACTIONS(2945), + [aux_sym_integer_token1] = ACTIONS(2945), + [aux_sym_integer_token2] = ACTIONS(2947), + [aux_sym_float_token1] = ACTIONS(2945), + [aux_sym_float_token2] = ACTIONS(2947), + [anon_sym_true] = ACTIONS(2945), + [anon_sym_false] = ACTIONS(2945), + [aux_sym_string_token1] = ACTIONS(2947), + [aux_sym_string_token3] = ACTIONS(2947), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2947), [sym__closing_brace_unmarker] = ACTIONS(3), }, [486] = { - [sym_identifier] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_package] = ACTIONS(2312), - [anon_sym_import] = ACTIONS(2312), - [anon_sym_using] = ACTIONS(2312), - [anon_sym_throw] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_case] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2312), - [anon_sym_cast] = ACTIONS(2312), - [anon_sym_DOLLARtype] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_untyped] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_this] = ACTIONS(2312), - [anon_sym_AT] = ACTIONS(2312), - [anon_sym_AT_COLON] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_EQ_GT] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_EQ] = ACTIONS(2312), - [sym__rangeOperator] = ACTIONS(2314), - [anon_sym_null] = ACTIONS(2312), - [anon_sym_macro] = ACTIONS(2312), - [anon_sym_abstract] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_public] = ACTIONS(2312), - [anon_sym_private] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_inline] = ACTIONS(2312), - [anon_sym_overload] = ACTIONS(2312), - [anon_sym_override] = ACTIONS(2312), - [anon_sym_final] = ACTIONS(2312), - [anon_sym_class] = ACTIONS(2312), - [anon_sym_interface] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2312), - [anon_sym_function] = ACTIONS(2312), - [anon_sym_var] = ACTIONS(2312), - [aux_sym_integer_token1] = ACTIONS(2312), - [aux_sym_integer_token2] = ACTIONS(2314), - [aux_sym_float_token1] = ACTIONS(2312), - [aux_sym_float_token2] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [aux_sym_string_token1] = ACTIONS(2314), - [aux_sym_string_token3] = ACTIONS(2314), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2314), + [sym_identifier] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_package] = ACTIONS(2949), + [anon_sym_import] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_case] = ACTIONS(2949), + [anon_sym_default] = ACTIONS(2949), + [anon_sym_cast] = ACTIONS(2949), + [anon_sym_DOLLARtype] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_untyped] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_AT] = ACTIONS(2949), + [anon_sym_AT_COLON] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_catch] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2951), + [anon_sym_null] = ACTIONS(2949), + [anon_sym_macro] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym_overload] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_final] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_function] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [aux_sym_integer_token1] = ACTIONS(2949), + [aux_sym_integer_token2] = ACTIONS(2951), + [aux_sym_float_token1] = ACTIONS(2949), + [aux_sym_float_token2] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [aux_sym_string_token1] = ACTIONS(2951), + [aux_sym_string_token3] = ACTIONS(2951), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2951), [sym__closing_brace_unmarker] = ACTIONS(3), }, [487] = { - [sym_identifier] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_import] = ACTIONS(2316), - [anon_sym_using] = ACTIONS(2316), - [anon_sym_throw] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_switch] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_case] = ACTIONS(2316), - [anon_sym_default] = ACTIONS(2316), - [anon_sym_cast] = ACTIONS(2316), - [anon_sym_DOLLARtype] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_untyped] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_AT] = ACTIONS(2316), - [anon_sym_AT_COLON] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2316), - [anon_sym_TILDE] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2318), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_EQ_GT] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_EQ] = ACTIONS(2316), - [sym__rangeOperator] = ACTIONS(2318), - [anon_sym_null] = ACTIONS(2316), - [anon_sym_macro] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_inline] = ACTIONS(2316), - [anon_sym_overload] = ACTIONS(2316), - [anon_sym_override] = ACTIONS(2316), - [anon_sym_final] = ACTIONS(2316), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_interface] = ACTIONS(2316), - [anon_sym_typedef] = ACTIONS(2316), - [anon_sym_function] = ACTIONS(2316), - [anon_sym_var] = ACTIONS(2316), - [aux_sym_integer_token1] = ACTIONS(2316), - [aux_sym_integer_token2] = ACTIONS(2318), - [aux_sym_float_token1] = ACTIONS(2316), - [aux_sym_float_token2] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [aux_sym_string_token1] = ACTIONS(2318), - [aux_sym_string_token3] = ACTIONS(2318), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2318), + [sym_identifier] = ACTIONS(2953), + [anon_sym_POUND] = ACTIONS(2955), + [anon_sym_package] = ACTIONS(2953), + [anon_sym_import] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_case] = ACTIONS(2953), + [anon_sym_default] = ACTIONS(2953), + [anon_sym_cast] = ACTIONS(2953), + [anon_sym_DOLLARtype] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_untyped] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_this] = ACTIONS(2953), + [anon_sym_AT] = ACTIONS(2953), + [anon_sym_AT_COLON] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_catch] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), + [anon_sym_null] = ACTIONS(2953), + [anon_sym_macro] = ACTIONS(2953), + [anon_sym_abstract] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_public] = ACTIONS(2953), + [anon_sym_private] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym_overload] = ACTIONS(2953), + [anon_sym_override] = ACTIONS(2953), + [anon_sym_final] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_interface] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_function] = ACTIONS(2953), + [anon_sym_var] = ACTIONS(2953), + [aux_sym_integer_token1] = ACTIONS(2953), + [aux_sym_integer_token2] = ACTIONS(2955), + [aux_sym_float_token1] = ACTIONS(2953), + [aux_sym_float_token2] = ACTIONS(2955), + [anon_sym_true] = ACTIONS(2953), + [anon_sym_false] = ACTIONS(2953), + [aux_sym_string_token1] = ACTIONS(2955), + [aux_sym_string_token3] = ACTIONS(2955), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2955), [sym__closing_brace_unmarker] = ACTIONS(3), }, [488] = { - [ts_builtin_sym_end] = ACTIONS(1502), - [sym_identifier] = ACTIONS(1504), - [anon_sym_POUND] = ACTIONS(1502), - [anon_sym_package] = ACTIONS(1504), - [anon_sym_DOT] = ACTIONS(2320), - [anon_sym_import] = ACTIONS(1504), - [anon_sym_using] = ACTIONS(1504), - [anon_sym_throw] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_switch] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_cast] = ACTIONS(1504), - [anon_sym_DOLLARtype] = ACTIONS(1502), - [anon_sym_return] = ACTIONS(1504), - [anon_sym_untyped] = ACTIONS(1504), - [anon_sym_break] = ACTIONS(1504), - [anon_sym_continue] = ACTIONS(1504), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_this] = ACTIONS(1504), - [anon_sym_QMARK] = ACTIONS(2322), - [anon_sym_AT] = ACTIONS(1504), - [anon_sym_AT_COLON] = ACTIONS(1502), - [anon_sym_if] = ACTIONS(1504), - [anon_sym_new] = ACTIONS(1504), - [anon_sym_TILDE] = ACTIONS(1502), - [anon_sym_BANG] = ACTIONS(1504), - [anon_sym_DASH] = ACTIONS(1504), - [anon_sym_PLUS_PLUS] = ACTIONS(1502), - [anon_sym_DASH_DASH] = ACTIONS(1502), - [anon_sym_PERCENT] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(1504), - [anon_sym_PLUS] = ACTIONS(1504), - [anon_sym_LT_LT] = ACTIONS(1502), - [anon_sym_GT_GT] = ACTIONS(1504), - [anon_sym_GT_GT_GT] = ACTIONS(1502), - [anon_sym_AMP] = ACTIONS(1504), - [anon_sym_PIPE] = ACTIONS(1504), - [anon_sym_CARET] = ACTIONS(1502), - [anon_sym_AMP_AMP] = ACTIONS(1502), - [anon_sym_PIPE_PIPE] = ACTIONS(1502), - [anon_sym_EQ_EQ] = ACTIONS(1502), - [anon_sym_BANG_EQ] = ACTIONS(1502), - [anon_sym_LT] = ACTIONS(1504), - [anon_sym_LT_EQ] = ACTIONS(1502), - [anon_sym_GT] = ACTIONS(1504), - [anon_sym_GT_EQ] = ACTIONS(1502), - [anon_sym_EQ_GT] = ACTIONS(1602), - [anon_sym_QMARK_QMARK] = ACTIONS(1502), - [anon_sym_EQ] = ACTIONS(1504), - [sym__rangeOperator] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1504), - [anon_sym_macro] = ACTIONS(1504), - [anon_sym_abstract] = ACTIONS(1504), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_extern] = ACTIONS(1504), - [anon_sym_inline] = ACTIONS(1504), - [anon_sym_overload] = ACTIONS(1504), - [anon_sym_override] = ACTIONS(1504), - [anon_sym_final] = ACTIONS(1504), - [anon_sym_class] = ACTIONS(1504), - [anon_sym_interface] = ACTIONS(1504), - [anon_sym_typedef] = ACTIONS(1504), - [anon_sym_function] = ACTIONS(1504), - [anon_sym_var] = ACTIONS(1504), - [aux_sym_integer_token1] = ACTIONS(1504), - [aux_sym_integer_token2] = ACTIONS(1502), - [aux_sym_float_token1] = ACTIONS(1504), - [aux_sym_float_token2] = ACTIONS(1502), - [anon_sym_true] = ACTIONS(1504), - [anon_sym_false] = ACTIONS(1504), - [aux_sym_string_token1] = ACTIONS(1502), - [aux_sym_string_token3] = ACTIONS(1502), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_package] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_case] = ACTIONS(2957), + [anon_sym_default] = ACTIONS(2957), + [anon_sym_cast] = ACTIONS(2957), + [anon_sym_DOLLARtype] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_untyped] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_this] = ACTIONS(2957), + [anon_sym_AT] = ACTIONS(2957), + [anon_sym_AT_COLON] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_catch] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PERCENT] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2959), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_EQ_GT] = ACTIONS(2959), + [anon_sym_QMARK_QMARK] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_macro] = ACTIONS(2957), + [anon_sym_abstract] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym_overload] = ACTIONS(2957), + [anon_sym_override] = ACTIONS(2957), + [anon_sym_final] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_function] = ACTIONS(2957), + [anon_sym_var] = ACTIONS(2957), + [aux_sym_integer_token1] = ACTIONS(2957), + [aux_sym_integer_token2] = ACTIONS(2959), + [aux_sym_float_token1] = ACTIONS(2957), + [aux_sym_float_token2] = ACTIONS(2959), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym_string_token1] = ACTIONS(2959), + [aux_sym_string_token3] = ACTIONS(2959), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2959), [sym__closing_brace_unmarker] = ACTIONS(3), }, [489] = { - [sym_identifier] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_package] = ACTIONS(2324), - [anon_sym_import] = ACTIONS(2324), - [anon_sym_using] = ACTIONS(2324), - [anon_sym_throw] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_switch] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_case] = ACTIONS(2324), - [anon_sym_default] = ACTIONS(2324), - [anon_sym_cast] = ACTIONS(2324), - [anon_sym_DOLLARtype] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_untyped] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_this] = ACTIONS(2324), - [anon_sym_AT] = ACTIONS(2324), - [anon_sym_AT_COLON] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_new] = ACTIONS(2324), - [anon_sym_TILDE] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_EQ_GT] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(2324), - [sym__rangeOperator] = ACTIONS(2326), - [anon_sym_null] = ACTIONS(2324), - [anon_sym_macro] = ACTIONS(2324), - [anon_sym_abstract] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_public] = ACTIONS(2324), - [anon_sym_private] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_inline] = ACTIONS(2324), - [anon_sym_overload] = ACTIONS(2324), - [anon_sym_override] = ACTIONS(2324), - [anon_sym_final] = ACTIONS(2324), - [anon_sym_class] = ACTIONS(2324), - [anon_sym_interface] = ACTIONS(2324), - [anon_sym_typedef] = ACTIONS(2324), - [anon_sym_function] = ACTIONS(2324), - [anon_sym_var] = ACTIONS(2324), - [aux_sym_integer_token1] = ACTIONS(2324), - [aux_sym_integer_token2] = ACTIONS(2326), - [aux_sym_float_token1] = ACTIONS(2324), - [aux_sym_float_token2] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [aux_sym_string_token1] = ACTIONS(2326), - [aux_sym_string_token3] = ACTIONS(2326), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2326), + [sym_identifier] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2963), + [anon_sym_package] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_case] = ACTIONS(2961), + [anon_sym_default] = ACTIONS(2961), + [anon_sym_cast] = ACTIONS(2961), + [anon_sym_DOLLARtype] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_untyped] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_this] = ACTIONS(2961), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_AT_COLON] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_catch] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_EQ_GT] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), + [anon_sym_null] = ACTIONS(2961), + [anon_sym_macro] = ACTIONS(2961), + [anon_sym_abstract] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_private] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym_overload] = ACTIONS(2961), + [anon_sym_override] = ACTIONS(2961), + [anon_sym_final] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_function] = ACTIONS(2961), + [anon_sym_var] = ACTIONS(2961), + [aux_sym_integer_token1] = ACTIONS(2961), + [aux_sym_integer_token2] = ACTIONS(2963), + [aux_sym_float_token1] = ACTIONS(2961), + [aux_sym_float_token2] = ACTIONS(2963), + [anon_sym_true] = ACTIONS(2961), + [anon_sym_false] = ACTIONS(2961), + [aux_sym_string_token1] = ACTIONS(2963), + [aux_sym_string_token3] = ACTIONS(2963), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2963), [sym__closing_brace_unmarker] = ACTIONS(3), }, [490] = { - [sym_identifier] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_package] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_case] = ACTIONS(2328), - [anon_sym_default] = ACTIONS(2328), - [anon_sym_cast] = ACTIONS(2328), - [anon_sym_DOLLARtype] = ACTIONS(2330), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_untyped] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_this] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_AT_COLON] = ACTIONS(2330), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2330), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_EQ_EQ] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_EQ_GT] = ACTIONS(2330), - [anon_sym_QMARK_QMARK] = ACTIONS(2330), - [anon_sym_EQ] = ACTIONS(2328), - [sym__rangeOperator] = ACTIONS(2330), - [anon_sym_null] = ACTIONS(2328), - [anon_sym_macro] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_inline] = ACTIONS(2328), - [anon_sym_overload] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_final] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_typedef] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [aux_sym_integer_token1] = ACTIONS(2328), - [aux_sym_integer_token2] = ACTIONS(2330), - [aux_sym_float_token1] = ACTIONS(2328), - [aux_sym_float_token2] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [aux_sym_string_token1] = ACTIONS(2330), - [aux_sym_string_token3] = ACTIONS(2330), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2330), + [sym_identifier] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_package] = ACTIONS(2965), + [anon_sym_import] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_case] = ACTIONS(2965), + [anon_sym_default] = ACTIONS(2965), + [anon_sym_cast] = ACTIONS(2965), + [anon_sym_DOLLARtype] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_untyped] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_this] = ACTIONS(2965), + [anon_sym_AT] = ACTIONS(2965), + [anon_sym_AT_COLON] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_catch] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2965), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2965), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_EQ_GT] = ACTIONS(2967), + [anon_sym_QMARK_QMARK] = ACTIONS(2967), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), + [anon_sym_null] = ACTIONS(2965), + [anon_sym_macro] = ACTIONS(2965), + [anon_sym_abstract] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_public] = ACTIONS(2965), + [anon_sym_private] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym_overload] = ACTIONS(2965), + [anon_sym_override] = ACTIONS(2965), + [anon_sym_final] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_interface] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_function] = ACTIONS(2965), + [anon_sym_var] = ACTIONS(2965), + [aux_sym_integer_token1] = ACTIONS(2965), + [aux_sym_integer_token2] = ACTIONS(2967), + [aux_sym_float_token1] = ACTIONS(2965), + [aux_sym_float_token2] = ACTIONS(2967), + [anon_sym_true] = ACTIONS(2965), + [anon_sym_false] = ACTIONS(2965), + [aux_sym_string_token1] = ACTIONS(2967), + [aux_sym_string_token3] = ACTIONS(2967), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2967), [sym__closing_brace_unmarker] = ACTIONS(3), }, [491] = { - [sym_identifier] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_package] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_case] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_cast] = ACTIONS(2332), - [anon_sym_DOLLARtype] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_untyped] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_this] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_AT_COLON] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2334), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2334), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_EQ_GT] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_EQ] = ACTIONS(2332), - [sym__rangeOperator] = ACTIONS(2334), - [anon_sym_null] = ACTIONS(2332), - [anon_sym_macro] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_inline] = ACTIONS(2332), - [anon_sym_overload] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_final] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_typedef] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [aux_sym_integer_token1] = ACTIONS(2332), - [aux_sym_integer_token2] = ACTIONS(2334), - [aux_sym_float_token1] = ACTIONS(2332), - [aux_sym_float_token2] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [aux_sym_string_token1] = ACTIONS(2334), - [aux_sym_string_token3] = ACTIONS(2334), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2334), + [sym_identifier] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2971), + [anon_sym_package] = ACTIONS(2969), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_case] = ACTIONS(2969), + [anon_sym_default] = ACTIONS(2969), + [anon_sym_cast] = ACTIONS(2969), + [anon_sym_DOLLARtype] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_untyped] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_this] = ACTIONS(2969), + [anon_sym_AT] = ACTIONS(2969), + [anon_sym_AT_COLON] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_catch] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_EQ_GT] = ACTIONS(2971), + [anon_sym_QMARK_QMARK] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), + [anon_sym_null] = ACTIONS(2969), + [anon_sym_macro] = ACTIONS(2969), + [anon_sym_abstract] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_public] = ACTIONS(2969), + [anon_sym_private] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym_overload] = ACTIONS(2969), + [anon_sym_override] = ACTIONS(2969), + [anon_sym_final] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_interface] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_function] = ACTIONS(2969), + [anon_sym_var] = ACTIONS(2969), + [aux_sym_integer_token1] = ACTIONS(2969), + [aux_sym_integer_token2] = ACTIONS(2971), + [aux_sym_float_token1] = ACTIONS(2969), + [aux_sym_float_token2] = ACTIONS(2971), + [anon_sym_true] = ACTIONS(2969), + [anon_sym_false] = ACTIONS(2969), + [aux_sym_string_token1] = ACTIONS(2971), + [aux_sym_string_token3] = ACTIONS(2971), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2971), [sym__closing_brace_unmarker] = ACTIONS(3), }, [492] = { - [sym_identifier] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_using] = ACTIONS(2336), - [anon_sym_throw] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_case] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_cast] = ACTIONS(2336), - [anon_sym_DOLLARtype] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_untyped] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_this] = ACTIONS(2336), - [anon_sym_AT] = ACTIONS(2336), - [anon_sym_AT_COLON] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_EQ] = ACTIONS(2336), - [sym__rangeOperator] = ACTIONS(2338), - [anon_sym_null] = ACTIONS(2336), - [anon_sym_macro] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_inline] = ACTIONS(2336), - [anon_sym_overload] = ACTIONS(2336), - [anon_sym_override] = ACTIONS(2336), - [anon_sym_final] = ACTIONS(2336), - [anon_sym_class] = ACTIONS(2336), - [anon_sym_interface] = ACTIONS(2336), - [anon_sym_typedef] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_var] = ACTIONS(2336), - [aux_sym_integer_token1] = ACTIONS(2336), - [aux_sym_integer_token2] = ACTIONS(2338), - [aux_sym_float_token1] = ACTIONS(2336), - [aux_sym_float_token2] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [aux_sym_string_token1] = ACTIONS(2338), - [aux_sym_string_token3] = ACTIONS(2338), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2338), + [sym_identifier] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2975), + [anon_sym_package] = ACTIONS(2973), + [anon_sym_import] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_case] = ACTIONS(2973), + [anon_sym_default] = ACTIONS(2973), + [anon_sym_cast] = ACTIONS(2973), + [anon_sym_DOLLARtype] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_untyped] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_this] = ACTIONS(2973), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_AT_COLON] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_catch] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_PIPE_PIPE] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2975), + [anon_sym_EQ_GT] = ACTIONS(2975), + [anon_sym_QMARK_QMARK] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), + [anon_sym_null] = ACTIONS(2973), + [anon_sym_macro] = ACTIONS(2973), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_public] = ACTIONS(2973), + [anon_sym_private] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym_overload] = ACTIONS(2973), + [anon_sym_override] = ACTIONS(2973), + [anon_sym_final] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_interface] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_var] = ACTIONS(2973), + [aux_sym_integer_token1] = ACTIONS(2973), + [aux_sym_integer_token2] = ACTIONS(2975), + [aux_sym_float_token1] = ACTIONS(2973), + [aux_sym_float_token2] = ACTIONS(2975), + [anon_sym_true] = ACTIONS(2973), + [anon_sym_false] = ACTIONS(2973), + [aux_sym_string_token1] = ACTIONS(2975), + [aux_sym_string_token3] = ACTIONS(2975), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2975), [sym__closing_brace_unmarker] = ACTIONS(3), }, [493] = { - [sym_identifier] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_package] = ACTIONS(2340), - [anon_sym_import] = ACTIONS(2340), - [anon_sym_using] = ACTIONS(2340), - [anon_sym_throw] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_case] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_cast] = ACTIONS(2340), - [anon_sym_DOLLARtype] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_untyped] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_this] = ACTIONS(2340), - [anon_sym_AT] = ACTIONS(2340), - [anon_sym_AT_COLON] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(2340), - [sym__rangeOperator] = ACTIONS(2342), - [anon_sym_null] = ACTIONS(2340), - [anon_sym_macro] = ACTIONS(2340), - [anon_sym_abstract] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_public] = ACTIONS(2340), - [anon_sym_private] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_inline] = ACTIONS(2340), - [anon_sym_overload] = ACTIONS(2340), - [anon_sym_override] = ACTIONS(2340), - [anon_sym_final] = ACTIONS(2340), - [anon_sym_class] = ACTIONS(2340), - [anon_sym_interface] = ACTIONS(2340), - [anon_sym_typedef] = ACTIONS(2340), - [anon_sym_function] = ACTIONS(2340), - [anon_sym_var] = ACTIONS(2340), - [aux_sym_integer_token1] = ACTIONS(2340), - [aux_sym_integer_token2] = ACTIONS(2342), - [aux_sym_float_token1] = ACTIONS(2340), - [aux_sym_float_token2] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [aux_sym_string_token1] = ACTIONS(2342), - [aux_sym_string_token3] = ACTIONS(2342), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2342), + [sym_identifier] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2979), + [anon_sym_package] = ACTIONS(2977), + [anon_sym_import] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_case] = ACTIONS(2977), + [anon_sym_default] = ACTIONS(2977), + [anon_sym_cast] = ACTIONS(2977), + [anon_sym_DOLLARtype] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_untyped] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_AT] = ACTIONS(2977), + [anon_sym_AT_COLON] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_catch] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2977), + [anon_sym_macro] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym_overload] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_final] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_function] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [aux_sym_integer_token1] = ACTIONS(2977), + [aux_sym_integer_token2] = ACTIONS(2979), + [aux_sym_float_token1] = ACTIONS(2977), + [aux_sym_float_token2] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [aux_sym_string_token1] = ACTIONS(2979), + [aux_sym_string_token3] = ACTIONS(2979), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2979), [sym__closing_brace_unmarker] = ACTIONS(3), }, [494] = { - [sym_identifier] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_package] = ACTIONS(2344), - [anon_sym_import] = ACTIONS(2344), - [anon_sym_using] = ACTIONS(2344), - [anon_sym_throw] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_switch] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_case] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_cast] = ACTIONS(2344), - [anon_sym_DOLLARtype] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_untyped] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_this] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2344), - [anon_sym_AT_COLON] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2346), - [anon_sym_PERCENT] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2346), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2346), - [anon_sym_AMP_AMP] = ACTIONS(2346), - [anon_sym_PIPE_PIPE] = ACTIONS(2346), - [anon_sym_EQ_EQ] = ACTIONS(2346), - [anon_sym_BANG_EQ] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2346), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2346), - [anon_sym_EQ_GT] = ACTIONS(2346), - [anon_sym_QMARK_QMARK] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2344), - [sym__rangeOperator] = ACTIONS(2346), - [anon_sym_null] = ACTIONS(2344), - [anon_sym_macro] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_inline] = ACTIONS(2344), - [anon_sym_overload] = ACTIONS(2344), - [anon_sym_override] = ACTIONS(2344), - [anon_sym_final] = ACTIONS(2344), - [anon_sym_class] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2344), - [anon_sym_typedef] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_var] = ACTIONS(2344), - [aux_sym_integer_token1] = ACTIONS(2344), - [aux_sym_integer_token2] = ACTIONS(2346), - [aux_sym_float_token1] = ACTIONS(2344), - [aux_sym_float_token2] = ACTIONS(2346), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [aux_sym_string_token1] = ACTIONS(2346), - [aux_sym_string_token3] = ACTIONS(2346), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2346), + [sym_identifier] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2983), + [anon_sym_package] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_case] = ACTIONS(2981), + [anon_sym_default] = ACTIONS(2981), + [anon_sym_cast] = ACTIONS(2981), + [anon_sym_DOLLARtype] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_untyped] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_this] = ACTIONS(2981), + [anon_sym_AT] = ACTIONS(2981), + [anon_sym_AT_COLON] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_catch] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_null] = ACTIONS(2981), + [anon_sym_macro] = ACTIONS(2981), + [anon_sym_abstract] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_private] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_overload] = ACTIONS(2981), + [anon_sym_override] = ACTIONS(2981), + [anon_sym_final] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_interface] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_var] = ACTIONS(2981), + [aux_sym_integer_token1] = ACTIONS(2981), + [aux_sym_integer_token2] = ACTIONS(2983), + [aux_sym_float_token1] = ACTIONS(2981), + [aux_sym_float_token2] = ACTIONS(2983), + [anon_sym_true] = ACTIONS(2981), + [anon_sym_false] = ACTIONS(2981), + [aux_sym_string_token1] = ACTIONS(2983), + [aux_sym_string_token3] = ACTIONS(2983), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2983), [sym__closing_brace_unmarker] = ACTIONS(3), }, [495] = { - [sym_identifier] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_package] = ACTIONS(2348), - [anon_sym_import] = ACTIONS(2348), - [anon_sym_using] = ACTIONS(2348), - [anon_sym_throw] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_case] = ACTIONS(2348), - [anon_sym_default] = ACTIONS(2348), - [anon_sym_cast] = ACTIONS(2348), - [anon_sym_DOLLARtype] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_untyped] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_this] = ACTIONS(2348), - [anon_sym_AT] = ACTIONS(2348), - [anon_sym_AT_COLON] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2348), - [anon_sym_PLUS] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2348), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2348), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_EQ_GT] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_EQ] = ACTIONS(2348), - [sym__rangeOperator] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2348), - [anon_sym_macro] = ACTIONS(2348), - [anon_sym_abstract] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2348), - [anon_sym_public] = ACTIONS(2348), - [anon_sym_private] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_inline] = ACTIONS(2348), - [anon_sym_overload] = ACTIONS(2348), - [anon_sym_override] = ACTIONS(2348), - [anon_sym_final] = ACTIONS(2348), - [anon_sym_class] = ACTIONS(2348), - [anon_sym_interface] = ACTIONS(2348), - [anon_sym_typedef] = ACTIONS(2348), - [anon_sym_function] = ACTIONS(2348), - [anon_sym_var] = ACTIONS(2348), - [aux_sym_integer_token1] = ACTIONS(2348), - [aux_sym_integer_token2] = ACTIONS(2350), - [aux_sym_float_token1] = ACTIONS(2348), - [aux_sym_float_token2] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [aux_sym_string_token1] = ACTIONS(2350), - [aux_sym_string_token3] = ACTIONS(2350), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2350), + [sym_identifier] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2987), + [anon_sym_package] = ACTIONS(2985), + [anon_sym_import] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_case] = ACTIONS(2985), + [anon_sym_default] = ACTIONS(2985), + [anon_sym_cast] = ACTIONS(2985), + [anon_sym_DOLLARtype] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_untyped] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_this] = ACTIONS(2985), + [anon_sym_AT] = ACTIONS(2985), + [anon_sym_AT_COLON] = ACTIONS(2987), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_catch] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_BANG_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2987), + [anon_sym_EQ_GT] = ACTIONS(2987), + [anon_sym_QMARK_QMARK] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), + [anon_sym_null] = ACTIONS(2985), + [anon_sym_macro] = ACTIONS(2985), + [anon_sym_abstract] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_public] = ACTIONS(2985), + [anon_sym_private] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym_overload] = ACTIONS(2985), + [anon_sym_override] = ACTIONS(2985), + [anon_sym_final] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_function] = ACTIONS(2985), + [anon_sym_var] = ACTIONS(2985), + [aux_sym_integer_token1] = ACTIONS(2985), + [aux_sym_integer_token2] = ACTIONS(2987), + [aux_sym_float_token1] = ACTIONS(2985), + [aux_sym_float_token2] = ACTIONS(2987), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [aux_sym_string_token1] = ACTIONS(2987), + [aux_sym_string_token3] = ACTIONS(2987), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2987), [sym__closing_brace_unmarker] = ACTIONS(3), }, [496] = { - [sym_identifier] = ACTIONS(2352), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_package] = ACTIONS(2352), - [anon_sym_import] = ACTIONS(2352), - [anon_sym_using] = ACTIONS(2352), - [anon_sym_throw] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_case] = ACTIONS(2352), - [anon_sym_default] = ACTIONS(2352), - [anon_sym_cast] = ACTIONS(2352), - [anon_sym_DOLLARtype] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_untyped] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_this] = ACTIONS(2352), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_AT_COLON] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2352), - [anon_sym_PLUS] = ACTIONS(2352), - [anon_sym_LT_LT] = ACTIONS(2354), - [anon_sym_GT_GT] = ACTIONS(2352), - [anon_sym_GT_GT_GT] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(2352), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_CARET] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2354), - [anon_sym_PIPE_PIPE] = ACTIONS(2354), - [anon_sym_EQ_EQ] = ACTIONS(2354), - [anon_sym_BANG_EQ] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_LT_EQ] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_EQ] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(2354), - [anon_sym_QMARK_QMARK] = ACTIONS(2354), - [anon_sym_EQ] = ACTIONS(2352), - [sym__rangeOperator] = ACTIONS(2354), - [anon_sym_null] = ACTIONS(2352), - [anon_sym_macro] = ACTIONS(2352), - [anon_sym_abstract] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_public] = ACTIONS(2352), - [anon_sym_private] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_inline] = ACTIONS(2352), - [anon_sym_overload] = ACTIONS(2352), - [anon_sym_override] = ACTIONS(2352), - [anon_sym_final] = ACTIONS(2352), - [anon_sym_class] = ACTIONS(2352), - [anon_sym_interface] = ACTIONS(2352), - [anon_sym_typedef] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2352), - [anon_sym_var] = ACTIONS(2352), - [aux_sym_integer_token1] = ACTIONS(2352), - [aux_sym_integer_token2] = ACTIONS(2354), - [aux_sym_float_token1] = ACTIONS(2352), - [aux_sym_float_token2] = ACTIONS(2354), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [aux_sym_string_token1] = ACTIONS(2354), - [aux_sym_string_token3] = ACTIONS(2354), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2354), + [sym_identifier] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2991), + [anon_sym_package] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_case] = ACTIONS(2989), + [anon_sym_default] = ACTIONS(2989), + [anon_sym_cast] = ACTIONS(2989), + [anon_sym_DOLLARtype] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_untyped] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_this] = ACTIONS(2989), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_AT_COLON] = ACTIONS(2991), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_catch] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_EQ_GT] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(2989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2991), + [anon_sym_null] = ACTIONS(2989), + [anon_sym_macro] = ACTIONS(2989), + [anon_sym_abstract] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_public] = ACTIONS(2989), + [anon_sym_private] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym_overload] = ACTIONS(2989), + [anon_sym_override] = ACTIONS(2989), + [anon_sym_final] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_function] = ACTIONS(2989), + [anon_sym_var] = ACTIONS(2989), + [aux_sym_integer_token1] = ACTIONS(2989), + [aux_sym_integer_token2] = ACTIONS(2991), + [aux_sym_float_token1] = ACTIONS(2989), + [aux_sym_float_token2] = ACTIONS(2991), + [anon_sym_true] = ACTIONS(2989), + [anon_sym_false] = ACTIONS(2989), + [aux_sym_string_token1] = ACTIONS(2991), + [aux_sym_string_token3] = ACTIONS(2991), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2991), [sym__closing_brace_unmarker] = ACTIONS(3), }, [497] = { - [sym_identifier] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(2358), - [anon_sym_package] = ACTIONS(2356), - [anon_sym_import] = ACTIONS(2356), - [anon_sym_using] = ACTIONS(2356), - [anon_sym_throw] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(2358), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_case] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_cast] = ACTIONS(2356), - [anon_sym_DOLLARtype] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_untyped] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2358), - [anon_sym_this] = ACTIONS(2356), - [anon_sym_AT] = ACTIONS(2356), - [anon_sym_AT_COLON] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2358), - [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2358), - [anon_sym_DASH_DASH] = ACTIONS(2358), - [anon_sym_PERCENT] = ACTIONS(2358), - [anon_sym_STAR] = ACTIONS(2358), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2358), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_EQ_EQ] = ACTIONS(2358), - [anon_sym_BANG_EQ] = ACTIONS(2358), - [anon_sym_LT] = ACTIONS(2356), - [anon_sym_LT_EQ] = ACTIONS(2358), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2358), - [anon_sym_EQ_GT] = ACTIONS(2358), - [anon_sym_QMARK_QMARK] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(2356), - [sym__rangeOperator] = ACTIONS(2358), - [anon_sym_null] = ACTIONS(2356), - [anon_sym_macro] = ACTIONS(2356), - [anon_sym_abstract] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_public] = ACTIONS(2356), - [anon_sym_private] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_inline] = ACTIONS(2356), - [anon_sym_overload] = ACTIONS(2356), - [anon_sym_override] = ACTIONS(2356), - [anon_sym_final] = ACTIONS(2356), - [anon_sym_class] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2356), - [anon_sym_typedef] = ACTIONS(2356), - [anon_sym_function] = ACTIONS(2356), - [anon_sym_var] = ACTIONS(2356), - [aux_sym_integer_token1] = ACTIONS(2356), - [aux_sym_integer_token2] = ACTIONS(2358), - [aux_sym_float_token1] = ACTIONS(2356), - [aux_sym_float_token2] = ACTIONS(2358), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [aux_sym_string_token1] = ACTIONS(2358), - [aux_sym_string_token3] = ACTIONS(2358), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2995), + [anon_sym_package] = ACTIONS(2993), + [anon_sym_import] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_case] = ACTIONS(2993), + [anon_sym_default] = ACTIONS(2993), + [anon_sym_cast] = ACTIONS(2993), + [anon_sym_DOLLARtype] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_untyped] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_this] = ACTIONS(2993), + [anon_sym_AT] = ACTIONS(2993), + [anon_sym_AT_COLON] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_catch] = ACTIONS(2993), + [anon_sym_else] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_EQ_GT] = ACTIONS(2995), + [anon_sym_QMARK_QMARK] = ACTIONS(2995), + [anon_sym_EQ] = ACTIONS(2993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_macro] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_public] = ACTIONS(2993), + [anon_sym_private] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym_overload] = ACTIONS(2993), + [anon_sym_override] = ACTIONS(2993), + [anon_sym_final] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2993), + [aux_sym_integer_token1] = ACTIONS(2993), + [aux_sym_integer_token2] = ACTIONS(2995), + [aux_sym_float_token1] = ACTIONS(2993), + [aux_sym_float_token2] = ACTIONS(2995), + [anon_sym_true] = ACTIONS(2993), + [anon_sym_false] = ACTIONS(2993), + [aux_sym_string_token1] = ACTIONS(2995), + [aux_sym_string_token3] = ACTIONS(2995), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2995), [sym__closing_brace_unmarker] = ACTIONS(3), }, [498] = { - [ts_builtin_sym_end] = ACTIONS(2360), - [sym_identifier] = ACTIONS(2362), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_package] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_cast] = ACTIONS(2362), - [anon_sym_DOLLARtype] = ACTIONS(2360), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_untyped] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_this] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_AT_COLON] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2360), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2360), - [anon_sym_DASH_DASH] = ACTIONS(2360), - [anon_sym_PERCENT] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_LT_LT] = ACTIONS(2360), - [anon_sym_GT_GT] = ACTIONS(2362), - [anon_sym_GT_GT_GT] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_AMP_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(2360), - [anon_sym_BANG_EQ] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_LT_EQ] = ACTIONS(2360), - [anon_sym_GT] = ACTIONS(2362), - [anon_sym_GT_EQ] = ACTIONS(2360), - [anon_sym_EQ_GT] = ACTIONS(2360), - [anon_sym_QMARK_QMARK] = ACTIONS(2360), - [anon_sym_EQ] = ACTIONS(2362), - [sym__rangeOperator] = ACTIONS(2360), - [anon_sym_null] = ACTIONS(2362), - [anon_sym_macro] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_inline] = ACTIONS(2362), - [anon_sym_overload] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_final] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_typedef] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [aux_sym_integer_token1] = ACTIONS(2362), - [aux_sym_integer_token2] = ACTIONS(2360), - [aux_sym_float_token1] = ACTIONS(2362), - [aux_sym_float_token2] = ACTIONS(2360), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [aux_sym_string_token1] = ACTIONS(2360), - [aux_sym_string_token3] = ACTIONS(2360), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2364), + [sym_identifier] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2999), + [anon_sym_package] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_case] = ACTIONS(2997), + [anon_sym_default] = ACTIONS(2997), + [anon_sym_cast] = ACTIONS(2997), + [anon_sym_DOLLARtype] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_untyped] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_this] = ACTIONS(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_AT_COLON] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_catch] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_EQ_GT] = ACTIONS(2999), + [anon_sym_QMARK_QMARK] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_macro] = ACTIONS(2997), + [anon_sym_abstract] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym_overload] = ACTIONS(2997), + [anon_sym_override] = ACTIONS(2997), + [anon_sym_final] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_var] = ACTIONS(2997), + [aux_sym_integer_token1] = ACTIONS(2997), + [aux_sym_integer_token2] = ACTIONS(2999), + [aux_sym_float_token1] = ACTIONS(2997), + [aux_sym_float_token2] = ACTIONS(2999), + [anon_sym_true] = ACTIONS(2997), + [anon_sym_false] = ACTIONS(2997), + [aux_sym_string_token1] = ACTIONS(2999), + [aux_sym_string_token3] = ACTIONS(2999), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2999), [sym__closing_brace_unmarker] = ACTIONS(3), }, [499] = { - [sym_identifier] = ACTIONS(2362), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_package] = ACTIONS(2362), - [anon_sym_import] = ACTIONS(2362), - [anon_sym_using] = ACTIONS(2362), - [anon_sym_throw] = ACTIONS(2362), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_switch] = ACTIONS(2362), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_cast] = ACTIONS(2362), - [anon_sym_DOLLARtype] = ACTIONS(2360), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_untyped] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_this] = ACTIONS(2362), - [anon_sym_AT] = ACTIONS(2362), - [anon_sym_AT_COLON] = ACTIONS(2360), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_new] = ACTIONS(2362), - [anon_sym_TILDE] = ACTIONS(2360), - [anon_sym_BANG] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2362), - [anon_sym_PLUS_PLUS] = ACTIONS(2360), - [anon_sym_DASH_DASH] = ACTIONS(2360), - [anon_sym_PERCENT] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_SLASH] = ACTIONS(2362), - [anon_sym_PLUS] = ACTIONS(2362), - [anon_sym_LT_LT] = ACTIONS(2360), - [anon_sym_GT_GT] = ACTIONS(2362), - [anon_sym_GT_GT_GT] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2362), - [anon_sym_PIPE] = ACTIONS(2362), - [anon_sym_CARET] = ACTIONS(2360), - [anon_sym_AMP_AMP] = ACTIONS(2360), - [anon_sym_PIPE_PIPE] = ACTIONS(2360), - [anon_sym_EQ_EQ] = ACTIONS(2360), - [anon_sym_BANG_EQ] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(2362), - [anon_sym_LT_EQ] = ACTIONS(2360), - [anon_sym_GT] = ACTIONS(2362), - [anon_sym_GT_EQ] = ACTIONS(2360), - [anon_sym_EQ_GT] = ACTIONS(2360), - [anon_sym_QMARK_QMARK] = ACTIONS(2360), - [anon_sym_EQ] = ACTIONS(2362), - [sym__rangeOperator] = ACTIONS(2360), - [anon_sym_null] = ACTIONS(2362), - [anon_sym_macro] = ACTIONS(2362), - [anon_sym_abstract] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_public] = ACTIONS(2362), - [anon_sym_private] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_inline] = ACTIONS(2362), - [anon_sym_overload] = ACTIONS(2362), - [anon_sym_override] = ACTIONS(2362), - [anon_sym_final] = ACTIONS(2362), - [anon_sym_class] = ACTIONS(2362), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_typedef] = ACTIONS(2362), - [anon_sym_function] = ACTIONS(2362), - [anon_sym_var] = ACTIONS(2362), - [aux_sym_integer_token1] = ACTIONS(2362), - [aux_sym_integer_token2] = ACTIONS(2360), - [aux_sym_float_token1] = ACTIONS(2362), - [aux_sym_float_token2] = ACTIONS(2360), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [aux_sym_string_token1] = ACTIONS(2360), - [aux_sym_string_token3] = ACTIONS(2360), - [sym_comment] = ACTIONS(3), - [sym__lookback_semicolon] = ACTIONS(2366), - [sym__closing_brace_marker] = ACTIONS(2360), + [sym_identifier] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3003), + [anon_sym_package] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_case] = ACTIONS(3001), + [anon_sym_default] = ACTIONS(3001), + [anon_sym_cast] = ACTIONS(3001), + [anon_sym_DOLLARtype] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_untyped] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_this] = ACTIONS(3001), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_AT_COLON] = ACTIONS(3003), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_catch] = ACTIONS(3001), + [anon_sym_else] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_EQ_GT] = ACTIONS(3003), + [anon_sym_QMARK_QMARK] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_macro] = ACTIONS(3001), + [anon_sym_abstract] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_public] = ACTIONS(3001), + [anon_sym_private] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym_overload] = ACTIONS(3001), + [anon_sym_override] = ACTIONS(3001), + [anon_sym_final] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_var] = ACTIONS(3001), + [aux_sym_integer_token1] = ACTIONS(3001), + [aux_sym_integer_token2] = ACTIONS(3003), + [aux_sym_float_token1] = ACTIONS(3001), + [aux_sym_float_token2] = ACTIONS(3003), + [anon_sym_true] = ACTIONS(3001), + [anon_sym_false] = ACTIONS(3001), + [aux_sym_string_token1] = ACTIONS(3003), + [aux_sym_string_token3] = ACTIONS(3003), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3003), [sym__closing_brace_unmarker] = ACTIONS(3), }, [500] = { - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2164), - [anon_sym_POUND] = ACTIONS(2166), - [anon_sym_package] = ACTIONS(2164), - [anon_sym_import] = ACTIONS(2164), - [anon_sym_using] = ACTIONS(2164), - [anon_sym_throw] = ACTIONS(2164), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_switch] = ACTIONS(2164), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_cast] = ACTIONS(2164), - [anon_sym_DOLLARtype] = ACTIONS(2166), - [anon_sym_return] = ACTIONS(2164), - [anon_sym_untyped] = ACTIONS(2164), - [anon_sym_break] = ACTIONS(2164), - [anon_sym_continue] = ACTIONS(2164), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_this] = ACTIONS(2164), - [anon_sym_AT] = ACTIONS(2164), - [anon_sym_AT_COLON] = ACTIONS(2166), - [anon_sym_if] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2164), - [anon_sym_TILDE] = ACTIONS(2166), - [anon_sym_BANG] = ACTIONS(2164), - [anon_sym_DASH] = ACTIONS(2164), - [anon_sym_PLUS_PLUS] = ACTIONS(2166), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2164), - [anon_sym_PLUS] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2166), - [anon_sym_GT_GT] = ACTIONS(2164), - [anon_sym_GT_GT_GT] = ACTIONS(2166), - [anon_sym_AMP] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2164), - [anon_sym_CARET] = ACTIONS(2166), - [anon_sym_AMP_AMP] = ACTIONS(2166), - [anon_sym_PIPE_PIPE] = ACTIONS(2166), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_LT] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2166), - [anon_sym_EQ_GT] = ACTIONS(2166), - [anon_sym_QMARK_QMARK] = ACTIONS(2166), - [anon_sym_EQ] = ACTIONS(2164), - [sym__rangeOperator] = ACTIONS(2166), - [anon_sym_null] = ACTIONS(2164), - [anon_sym_macro] = ACTIONS(2164), - [anon_sym_abstract] = ACTIONS(2164), - [anon_sym_static] = ACTIONS(2164), - [anon_sym_public] = ACTIONS(2164), - [anon_sym_private] = ACTIONS(2164), - [anon_sym_extern] = ACTIONS(2164), - [anon_sym_inline] = ACTIONS(2164), - [anon_sym_overload] = ACTIONS(2164), - [anon_sym_override] = ACTIONS(2164), - [anon_sym_final] = ACTIONS(2164), - [anon_sym_class] = ACTIONS(2164), - [anon_sym_interface] = ACTIONS(2164), - [anon_sym_typedef] = ACTIONS(2164), - [anon_sym_function] = ACTIONS(2164), - [anon_sym_var] = ACTIONS(2164), - [aux_sym_integer_token1] = ACTIONS(2164), - [aux_sym_integer_token2] = ACTIONS(2166), - [aux_sym_float_token1] = ACTIONS(2164), - [aux_sym_float_token2] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2164), - [anon_sym_false] = ACTIONS(2164), - [aux_sym_string_token1] = ACTIONS(2166), - [aux_sym_string_token3] = ACTIONS(2166), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_package] = ACTIONS(3005), + [anon_sym_import] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_case] = ACTIONS(3005), + [anon_sym_default] = ACTIONS(3005), + [anon_sym_cast] = ACTIONS(3005), + [anon_sym_DOLLARtype] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_untyped] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_this] = ACTIONS(3005), + [anon_sym_AT] = ACTIONS(3005), + [anon_sym_AT_COLON] = ACTIONS(3007), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_catch] = ACTIONS(3005), + [anon_sym_else] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_EQ_GT] = ACTIONS(3007), + [anon_sym_QMARK_QMARK] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_macro] = ACTIONS(3005), + [anon_sym_abstract] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_public] = ACTIONS(3005), + [anon_sym_private] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym_overload] = ACTIONS(3005), + [anon_sym_override] = ACTIONS(3005), + [anon_sym_final] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_var] = ACTIONS(3005), + [aux_sym_integer_token1] = ACTIONS(3005), + [aux_sym_integer_token2] = ACTIONS(3007), + [aux_sym_float_token1] = ACTIONS(3005), + [aux_sym_float_token2] = ACTIONS(3007), + [anon_sym_true] = ACTIONS(3005), + [anon_sym_false] = ACTIONS(3005), + [aux_sym_string_token1] = ACTIONS(3007), + [aux_sym_string_token3] = ACTIONS(3007), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3007), [sym__closing_brace_unmarker] = ACTIONS(3), }, [501] = { - [ts_builtin_sym_end] = ACTIONS(2178), - [sym_identifier] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(2178), - [anon_sym_package] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2178), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2178), - [anon_sym_cast] = ACTIONS(2176), - [anon_sym_DOLLARtype] = ACTIONS(2178), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_untyped] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2178), - [anon_sym_this] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_AT_COLON] = ACTIONS(2178), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2178), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2178), - [anon_sym_DASH_DASH] = ACTIONS(2178), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2176), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_GT] = ACTIONS(2176), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_EQ_GT] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_EQ] = ACTIONS(2176), - [sym__rangeOperator] = ACTIONS(2178), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_macro] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_extern] = ACTIONS(2176), - [anon_sym_inline] = ACTIONS(2176), - [anon_sym_overload] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_final] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_typedef] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [aux_sym_integer_token1] = ACTIONS(2176), - [aux_sym_integer_token2] = ACTIONS(2178), - [aux_sym_float_token1] = ACTIONS(2176), - [aux_sym_float_token2] = ACTIONS(2178), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [aux_sym_string_token1] = ACTIONS(2178), - [aux_sym_string_token3] = ACTIONS(2178), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3011), + [anon_sym_package] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_case] = ACTIONS(3009), + [anon_sym_default] = ACTIONS(3009), + [anon_sym_cast] = ACTIONS(3009), + [anon_sym_DOLLARtype] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_untyped] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_this] = ACTIONS(3009), + [anon_sym_AT] = ACTIONS(3009), + [anon_sym_AT_COLON] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_catch] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_EQ_GT] = ACTIONS(3011), + [anon_sym_QMARK_QMARK] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_macro] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_public] = ACTIONS(3009), + [anon_sym_private] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym_overload] = ACTIONS(3009), + [anon_sym_override] = ACTIONS(3009), + [anon_sym_final] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_var] = ACTIONS(3009), + [aux_sym_integer_token1] = ACTIONS(3009), + [aux_sym_integer_token2] = ACTIONS(3011), + [aux_sym_float_token1] = ACTIONS(3009), + [aux_sym_float_token2] = ACTIONS(3011), + [anon_sym_true] = ACTIONS(3009), + [anon_sym_false] = ACTIONS(3009), + [aux_sym_string_token1] = ACTIONS(3011), + [aux_sym_string_token3] = ACTIONS(3011), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3011), [sym__closing_brace_unmarker] = ACTIONS(3), }, [502] = { - [ts_builtin_sym_end] = ACTIONS(1862), - [sym_identifier] = ACTIONS(1860), - [anon_sym_POUND] = ACTIONS(1862), - [anon_sym_package] = ACTIONS(1860), - [anon_sym_import] = ACTIONS(1860), - [anon_sym_using] = ACTIONS(1860), - [anon_sym_throw] = ACTIONS(1860), - [anon_sym_LPAREN] = ACTIONS(1862), - [anon_sym_switch] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1862), - [anon_sym_cast] = ACTIONS(1860), - [anon_sym_DOLLARtype] = ACTIONS(1862), - [anon_sym_return] = ACTIONS(1860), - [anon_sym_untyped] = ACTIONS(1860), - [anon_sym_break] = ACTIONS(1860), - [anon_sym_continue] = ACTIONS(1860), - [anon_sym_LBRACK] = ACTIONS(1862), - [anon_sym_this] = ACTIONS(1860), - [anon_sym_AT] = ACTIONS(1860), - [anon_sym_AT_COLON] = ACTIONS(1862), - [anon_sym_if] = ACTIONS(1860), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_TILDE] = ACTIONS(1862), - [anon_sym_BANG] = ACTIONS(1860), - [anon_sym_DASH] = ACTIONS(1860), - [anon_sym_PLUS_PLUS] = ACTIONS(1862), - [anon_sym_DASH_DASH] = ACTIONS(1862), - [anon_sym_PERCENT] = ACTIONS(1862), - [anon_sym_STAR] = ACTIONS(1862), - [anon_sym_SLASH] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1860), - [anon_sym_LT_LT] = ACTIONS(1862), - [anon_sym_GT_GT] = ACTIONS(1860), - [anon_sym_GT_GT_GT] = ACTIONS(1862), - [anon_sym_AMP] = ACTIONS(1860), - [anon_sym_PIPE] = ACTIONS(1860), - [anon_sym_CARET] = ACTIONS(1862), - [anon_sym_AMP_AMP] = ACTIONS(1862), - [anon_sym_PIPE_PIPE] = ACTIONS(1862), - [anon_sym_EQ_EQ] = ACTIONS(1862), - [anon_sym_BANG_EQ] = ACTIONS(1862), - [anon_sym_LT] = ACTIONS(1860), - [anon_sym_LT_EQ] = ACTIONS(1862), - [anon_sym_GT] = ACTIONS(1860), - [anon_sym_GT_EQ] = ACTIONS(1862), - [anon_sym_EQ_GT] = ACTIONS(1862), - [anon_sym_QMARK_QMARK] = ACTIONS(1862), - [anon_sym_EQ] = ACTIONS(1860), - [sym__rangeOperator] = ACTIONS(1862), - [anon_sym_null] = ACTIONS(1860), - [anon_sym_macro] = ACTIONS(1860), - [anon_sym_abstract] = ACTIONS(1860), - [anon_sym_static] = ACTIONS(1860), - [anon_sym_public] = ACTIONS(1860), - [anon_sym_private] = ACTIONS(1860), - [anon_sym_extern] = ACTIONS(1860), - [anon_sym_inline] = ACTIONS(1860), - [anon_sym_overload] = ACTIONS(1860), - [anon_sym_override] = ACTIONS(1860), - [anon_sym_final] = ACTIONS(1860), - [anon_sym_class] = ACTIONS(1860), - [anon_sym_interface] = ACTIONS(1860), - [anon_sym_typedef] = ACTIONS(1860), - [anon_sym_function] = ACTIONS(1860), - [anon_sym_var] = ACTIONS(1860), - [aux_sym_integer_token1] = ACTIONS(1860), - [aux_sym_integer_token2] = ACTIONS(1862), - [aux_sym_float_token1] = ACTIONS(1860), - [aux_sym_float_token2] = ACTIONS(1862), - [anon_sym_true] = ACTIONS(1860), - [anon_sym_false] = ACTIONS(1860), - [aux_sym_string_token1] = ACTIONS(1862), - [aux_sym_string_token3] = ACTIONS(1862), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3015), + [anon_sym_package] = ACTIONS(3013), + [anon_sym_import] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_case] = ACTIONS(3013), + [anon_sym_default] = ACTIONS(3013), + [anon_sym_cast] = ACTIONS(3013), + [anon_sym_DOLLARtype] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_untyped] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_AT] = ACTIONS(3013), + [anon_sym_AT_COLON] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_catch] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_EQ_GT] = ACTIONS(3015), + [anon_sym_QMARK_QMARK] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_macro] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_overload] = ACTIONS(3013), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_var] = ACTIONS(3013), + [aux_sym_integer_token1] = ACTIONS(3013), + [aux_sym_integer_token2] = ACTIONS(3015), + [aux_sym_float_token1] = ACTIONS(3013), + [aux_sym_float_token2] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [aux_sym_string_token1] = ACTIONS(3015), + [aux_sym_string_token3] = ACTIONS(3015), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3015), [sym__closing_brace_unmarker] = ACTIONS(3), }, [503] = { - [ts_builtin_sym_end] = ACTIONS(2122), - [sym_identifier] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(2122), - [anon_sym_package] = ACTIONS(2120), - [anon_sym_import] = ACTIONS(2120), - [anon_sym_using] = ACTIONS(2120), - [anon_sym_throw] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_switch] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_cast] = ACTIONS(2120), - [anon_sym_DOLLARtype] = ACTIONS(2122), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_untyped] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_this] = ACTIONS(2120), - [anon_sym_AT] = ACTIONS(2120), - [anon_sym_AT_COLON] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_new] = ACTIONS(2120), - [anon_sym_TILDE] = ACTIONS(2122), - [anon_sym_BANG] = ACTIONS(2120), - [anon_sym_DASH] = ACTIONS(2120), - [anon_sym_PLUS_PLUS] = ACTIONS(2122), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR] = ACTIONS(2122), - [anon_sym_SLASH] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2120), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2120), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2122), - [anon_sym_LT] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_EQ] = ACTIONS(2120), - [sym__rangeOperator] = ACTIONS(2122), - [anon_sym_null] = ACTIONS(2120), - [anon_sym_macro] = ACTIONS(2120), - [anon_sym_abstract] = ACTIONS(2120), - [anon_sym_static] = ACTIONS(2120), - [anon_sym_public] = ACTIONS(2120), - [anon_sym_private] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_inline] = ACTIONS(2120), - [anon_sym_overload] = ACTIONS(2120), - [anon_sym_override] = ACTIONS(2120), - [anon_sym_final] = ACTIONS(2120), - [anon_sym_class] = ACTIONS(2120), - [anon_sym_interface] = ACTIONS(2120), - [anon_sym_typedef] = ACTIONS(2120), - [anon_sym_function] = ACTIONS(2120), - [anon_sym_var] = ACTIONS(2120), - [aux_sym_integer_token1] = ACTIONS(2120), - [aux_sym_integer_token2] = ACTIONS(2122), - [aux_sym_float_token1] = ACTIONS(2120), - [aux_sym_float_token2] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2120), - [anon_sym_false] = ACTIONS(2120), - [aux_sym_string_token1] = ACTIONS(2122), - [aux_sym_string_token3] = ACTIONS(2122), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3017), + [anon_sym_POUND] = ACTIONS(3019), + [anon_sym_package] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_case] = ACTIONS(3017), + [anon_sym_default] = ACTIONS(3017), + [anon_sym_cast] = ACTIONS(3017), + [anon_sym_DOLLARtype] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_untyped] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_AT_COLON] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_catch] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_GT_GT_GT] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_EQ_GT] = ACTIONS(3019), + [anon_sym_QMARK_QMARK] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_macro] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_overload] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_interface] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3017), + [anon_sym_var] = ACTIONS(3017), + [aux_sym_integer_token1] = ACTIONS(3017), + [aux_sym_integer_token2] = ACTIONS(3019), + [aux_sym_float_token1] = ACTIONS(3017), + [aux_sym_float_token2] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [aux_sym_string_token1] = ACTIONS(3019), + [aux_sym_string_token3] = ACTIONS(3019), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3019), [sym__closing_brace_unmarker] = ACTIONS(3), }, [504] = { - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1984), - [anon_sym_POUND] = ACTIONS(1986), - [anon_sym_package] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_using] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_cast] = ACTIONS(1984), - [anon_sym_DOLLARtype] = ACTIONS(1986), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_untyped] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_this] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1984), - [anon_sym_AT_COLON] = ACTIONS(1986), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_PERCENT] = ACTIONS(1986), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_LT_LT] = ACTIONS(1986), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_GT_GT_GT] = ACTIONS(1986), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(1986), - [anon_sym_PIPE_PIPE] = ACTIONS(1986), - [anon_sym_EQ_EQ] = ACTIONS(1986), - [anon_sym_BANG_EQ] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_LT_EQ] = ACTIONS(1986), - [anon_sym_GT] = ACTIONS(1984), - [anon_sym_GT_EQ] = ACTIONS(1986), - [anon_sym_EQ_GT] = ACTIONS(1986), - [anon_sym_QMARK_QMARK] = ACTIONS(1986), - [anon_sym_EQ] = ACTIONS(1984), - [sym__rangeOperator] = ACTIONS(1986), - [anon_sym_null] = ACTIONS(1984), - [anon_sym_macro] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_extern] = ACTIONS(1984), - [anon_sym_inline] = ACTIONS(1984), - [anon_sym_overload] = ACTIONS(1984), - [anon_sym_override] = ACTIONS(1984), - [anon_sym_final] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_typedef] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [aux_sym_integer_token1] = ACTIONS(1984), - [aux_sym_integer_token2] = ACTIONS(1986), - [aux_sym_float_token1] = ACTIONS(1984), - [aux_sym_float_token2] = ACTIONS(1986), - [anon_sym_true] = ACTIONS(1984), - [anon_sym_false] = ACTIONS(1984), - [aux_sym_string_token1] = ACTIONS(1986), - [aux_sym_string_token3] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3021), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_package] = ACTIONS(3021), + [anon_sym_import] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_case] = ACTIONS(3021), + [anon_sym_default] = ACTIONS(3021), + [anon_sym_cast] = ACTIONS(3021), + [anon_sym_DOLLARtype] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_untyped] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_this] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_AT_COLON] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_catch] = ACTIONS(3021), + [anon_sym_else] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_EQ_GT] = ACTIONS(3023), + [anon_sym_QMARK_QMARK] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_null] = ACTIONS(3021), + [anon_sym_macro] = ACTIONS(3021), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_public] = ACTIONS(3021), + [anon_sym_private] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym_overload] = ACTIONS(3021), + [anon_sym_override] = ACTIONS(3021), + [anon_sym_final] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_interface] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_function] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3021), + [aux_sym_integer_token1] = ACTIONS(3021), + [aux_sym_integer_token2] = ACTIONS(3023), + [aux_sym_float_token1] = ACTIONS(3021), + [aux_sym_float_token2] = ACTIONS(3023), + [anon_sym_true] = ACTIONS(3021), + [anon_sym_false] = ACTIONS(3021), + [aux_sym_string_token1] = ACTIONS(3023), + [aux_sym_string_token3] = ACTIONS(3023), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3023), [sym__closing_brace_unmarker] = ACTIONS(3), }, [505] = { - [ts_builtin_sym_end] = ACTIONS(2266), - [sym_identifier] = ACTIONS(2264), - [anon_sym_POUND] = ACTIONS(2266), - [anon_sym_package] = ACTIONS(2264), - [anon_sym_import] = ACTIONS(2264), - [anon_sym_using] = ACTIONS(2264), - [anon_sym_throw] = ACTIONS(2264), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2264), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_cast] = ACTIONS(2264), - [anon_sym_DOLLARtype] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2264), - [anon_sym_untyped] = ACTIONS(2264), - [anon_sym_break] = ACTIONS(2264), - [anon_sym_continue] = ACTIONS(2264), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_this] = ACTIONS(2264), - [anon_sym_AT] = ACTIONS(2264), - [anon_sym_AT_COLON] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2264), - [anon_sym_new] = ACTIONS(2264), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2264), - [anon_sym_DASH] = ACTIONS(2264), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2264), - [anon_sym_PLUS] = ACTIONS(2264), - [anon_sym_LT_LT] = ACTIONS(2266), - [anon_sym_GT_GT] = ACTIONS(2264), - [anon_sym_GT_GT_GT] = ACTIONS(2266), - [anon_sym_AMP] = ACTIONS(2264), - [anon_sym_PIPE] = ACTIONS(2264), - [anon_sym_CARET] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2266), - [anon_sym_PIPE_PIPE] = ACTIONS(2266), - [anon_sym_EQ_EQ] = ACTIONS(2266), - [anon_sym_BANG_EQ] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2264), - [anon_sym_LT_EQ] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2264), - [anon_sym_GT_EQ] = ACTIONS(2266), - [anon_sym_EQ_GT] = ACTIONS(2266), - [anon_sym_QMARK_QMARK] = ACTIONS(2266), - [anon_sym_EQ] = ACTIONS(2264), - [sym__rangeOperator] = ACTIONS(2266), - [anon_sym_null] = ACTIONS(2264), - [anon_sym_macro] = ACTIONS(2264), - [anon_sym_abstract] = ACTIONS(2264), - [anon_sym_static] = ACTIONS(2264), - [anon_sym_public] = ACTIONS(2264), - [anon_sym_private] = ACTIONS(2264), - [anon_sym_extern] = ACTIONS(2264), - [anon_sym_inline] = ACTIONS(2264), - [anon_sym_overload] = ACTIONS(2264), - [anon_sym_override] = ACTIONS(2264), - [anon_sym_final] = ACTIONS(2264), - [anon_sym_class] = ACTIONS(2264), - [anon_sym_interface] = ACTIONS(2264), - [anon_sym_typedef] = ACTIONS(2264), - [anon_sym_function] = ACTIONS(2264), - [anon_sym_var] = ACTIONS(2264), - [aux_sym_integer_token1] = ACTIONS(2264), - [aux_sym_integer_token2] = ACTIONS(2266), - [aux_sym_float_token1] = ACTIONS(2264), - [aux_sym_float_token2] = ACTIONS(2266), - [anon_sym_true] = ACTIONS(2264), - [anon_sym_false] = ACTIONS(2264), - [aux_sym_string_token1] = ACTIONS(2266), - [aux_sym_string_token3] = ACTIONS(2266), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_package] = ACTIONS(3025), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3025), + [anon_sym_throw] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_case] = ACTIONS(3025), + [anon_sym_default] = ACTIONS(3025), + [anon_sym_cast] = ACTIONS(3025), + [anon_sym_DOLLARtype] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3025), + [anon_sym_return] = ACTIONS(3025), + [anon_sym_untyped] = ACTIONS(3025), + [anon_sym_break] = ACTIONS(3025), + [anon_sym_continue] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_this] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_AT_COLON] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3025), + [anon_sym_catch] = ACTIONS(3025), + [anon_sym_else] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_while] = ACTIONS(3025), + [anon_sym_do] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3025), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_EQ_GT] = ACTIONS(3027), + [anon_sym_QMARK_QMARK] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), + [anon_sym_null] = ACTIONS(3025), + [anon_sym_macro] = ACTIONS(3025), + [anon_sym_abstract] = ACTIONS(3025), + [anon_sym_static] = ACTIONS(3025), + [anon_sym_public] = ACTIONS(3025), + [anon_sym_private] = ACTIONS(3025), + [anon_sym_extern] = ACTIONS(3025), + [anon_sym_inline] = ACTIONS(3025), + [anon_sym_overload] = ACTIONS(3025), + [anon_sym_override] = ACTIONS(3025), + [anon_sym_final] = ACTIONS(3025), + [anon_sym_class] = ACTIONS(3025), + [anon_sym_interface] = ACTIONS(3025), + [anon_sym_enum] = ACTIONS(3025), + [anon_sym_typedef] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3025), + [anon_sym_var] = ACTIONS(3025), + [aux_sym_integer_token1] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token1] = ACTIONS(3025), + [aux_sym_float_token2] = ACTIONS(3027), + [anon_sym_true] = ACTIONS(3025), + [anon_sym_false] = ACTIONS(3025), + [aux_sym_string_token1] = ACTIONS(3027), + [aux_sym_string_token3] = ACTIONS(3027), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3027), [sym__closing_brace_unmarker] = ACTIONS(3), }, [506] = { - [ts_builtin_sym_end] = ACTIONS(2150), - [sym_identifier] = ACTIONS(2148), - [anon_sym_POUND] = ACTIONS(2150), - [anon_sym_package] = ACTIONS(2148), - [anon_sym_import] = ACTIONS(2148), - [anon_sym_using] = ACTIONS(2148), - [anon_sym_throw] = ACTIONS(2148), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_switch] = ACTIONS(2148), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_cast] = ACTIONS(2148), - [anon_sym_DOLLARtype] = ACTIONS(2150), - [anon_sym_return] = ACTIONS(2148), - [anon_sym_untyped] = ACTIONS(2148), - [anon_sym_break] = ACTIONS(2148), - [anon_sym_continue] = ACTIONS(2148), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_this] = ACTIONS(2148), - [anon_sym_AT] = ACTIONS(2148), - [anon_sym_AT_COLON] = ACTIONS(2150), - [anon_sym_if] = ACTIONS(2148), - [anon_sym_new] = ACTIONS(2148), - [anon_sym_TILDE] = ACTIONS(2150), - [anon_sym_BANG] = ACTIONS(2148), - [anon_sym_DASH] = ACTIONS(2148), - [anon_sym_PLUS_PLUS] = ACTIONS(2150), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_PERCENT] = ACTIONS(2150), - [anon_sym_STAR] = ACTIONS(2150), - [anon_sym_SLASH] = ACTIONS(2148), - [anon_sym_PLUS] = ACTIONS(2148), - [anon_sym_LT_LT] = ACTIONS(2150), - [anon_sym_GT_GT] = ACTIONS(2148), - [anon_sym_GT_GT_GT] = ACTIONS(2150), - [anon_sym_AMP] = ACTIONS(2148), - [anon_sym_PIPE] = ACTIONS(2148), - [anon_sym_CARET] = ACTIONS(2150), - [anon_sym_AMP_AMP] = ACTIONS(2150), - [anon_sym_PIPE_PIPE] = ACTIONS(2150), - [anon_sym_EQ_EQ] = ACTIONS(2150), - [anon_sym_BANG_EQ] = ACTIONS(2150), - [anon_sym_LT] = ACTIONS(2148), - [anon_sym_LT_EQ] = ACTIONS(2150), - [anon_sym_GT] = ACTIONS(2148), - [anon_sym_GT_EQ] = ACTIONS(2150), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_QMARK] = ACTIONS(2150), - [anon_sym_EQ] = ACTIONS(2148), - [sym__rangeOperator] = ACTIONS(2150), - [anon_sym_null] = ACTIONS(2148), - [anon_sym_macro] = ACTIONS(2148), - [anon_sym_abstract] = ACTIONS(2148), - [anon_sym_static] = ACTIONS(2148), - [anon_sym_public] = ACTIONS(2148), - [anon_sym_private] = ACTIONS(2148), - [anon_sym_extern] = ACTIONS(2148), - [anon_sym_inline] = ACTIONS(2148), - [anon_sym_overload] = ACTIONS(2148), - [anon_sym_override] = ACTIONS(2148), - [anon_sym_final] = ACTIONS(2148), - [anon_sym_class] = ACTIONS(2148), - [anon_sym_interface] = ACTIONS(2148), - [anon_sym_typedef] = ACTIONS(2148), - [anon_sym_function] = ACTIONS(2148), - [anon_sym_var] = ACTIONS(2148), - [aux_sym_integer_token1] = ACTIONS(2148), - [aux_sym_integer_token2] = ACTIONS(2150), - [aux_sym_float_token1] = ACTIONS(2148), - [aux_sym_float_token2] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2148), - [anon_sym_false] = ACTIONS(2148), - [aux_sym_string_token1] = ACTIONS(2150), - [aux_sym_string_token3] = ACTIONS(2150), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_package] = ACTIONS(3029), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3029), + [anon_sym_throw] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_case] = ACTIONS(3029), + [anon_sym_default] = ACTIONS(3029), + [anon_sym_cast] = ACTIONS(3029), + [anon_sym_DOLLARtype] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3029), + [anon_sym_untyped] = ACTIONS(3029), + [anon_sym_break] = ACTIONS(3029), + [anon_sym_continue] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_this] = ACTIONS(3029), + [anon_sym_AT] = ACTIONS(3029), + [anon_sym_AT_COLON] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3029), + [anon_sym_catch] = ACTIONS(3029), + [anon_sym_else] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_while] = ACTIONS(3029), + [anon_sym_do] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_EQ_GT] = ACTIONS(3031), + [anon_sym_QMARK_QMARK] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), + [anon_sym_null] = ACTIONS(3029), + [anon_sym_macro] = ACTIONS(3029), + [anon_sym_abstract] = ACTIONS(3029), + [anon_sym_static] = ACTIONS(3029), + [anon_sym_public] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3029), + [anon_sym_extern] = ACTIONS(3029), + [anon_sym_inline] = ACTIONS(3029), + [anon_sym_overload] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3029), + [anon_sym_final] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3029), + [anon_sym_interface] = ACTIONS(3029), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_typedef] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3029), + [anon_sym_var] = ACTIONS(3029), + [aux_sym_integer_token1] = ACTIONS(3029), + [aux_sym_integer_token2] = ACTIONS(3031), + [aux_sym_float_token1] = ACTIONS(3029), + [aux_sym_float_token2] = ACTIONS(3031), + [anon_sym_true] = ACTIONS(3029), + [anon_sym_false] = ACTIONS(3029), + [aux_sym_string_token1] = ACTIONS(3031), + [aux_sym_string_token3] = ACTIONS(3031), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3031), [sym__closing_brace_unmarker] = ACTIONS(3), }, [507] = { - [ts_builtin_sym_end] = ACTIONS(2282), - [sym_identifier] = ACTIONS(2280), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_package] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2282), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2282), - [anon_sym_cast] = ACTIONS(2280), - [anon_sym_DOLLARtype] = ACTIONS(2282), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_untyped] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2282), - [anon_sym_this] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_AT_COLON] = ACTIONS(2282), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2282), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2282), - [anon_sym_DASH_DASH] = ACTIONS(2282), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2280), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2280), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_GT] = ACTIONS(2280), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_EQ_GT] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_EQ] = ACTIONS(2280), - [sym__rangeOperator] = ACTIONS(2282), - [anon_sym_null] = ACTIONS(2280), - [anon_sym_macro] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_extern] = ACTIONS(2280), - [anon_sym_inline] = ACTIONS(2280), - [anon_sym_overload] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_final] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_typedef] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [aux_sym_integer_token1] = ACTIONS(2280), - [aux_sym_integer_token2] = ACTIONS(2282), - [aux_sym_float_token1] = ACTIONS(2280), - [aux_sym_float_token2] = ACTIONS(2282), - [anon_sym_true] = ACTIONS(2280), - [anon_sym_false] = ACTIONS(2280), - [aux_sym_string_token1] = ACTIONS(2282), - [aux_sym_string_token3] = ACTIONS(2282), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3033), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_package] = ACTIONS(3033), + [anon_sym_import] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3033), + [anon_sym_throw] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_case] = ACTIONS(3033), + [anon_sym_default] = ACTIONS(3033), + [anon_sym_cast] = ACTIONS(3033), + [anon_sym_DOLLARtype] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3033), + [anon_sym_untyped] = ACTIONS(3033), + [anon_sym_break] = ACTIONS(3033), + [anon_sym_continue] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_this] = ACTIONS(3033), + [anon_sym_AT] = ACTIONS(3033), + [anon_sym_AT_COLON] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3033), + [anon_sym_catch] = ACTIONS(3033), + [anon_sym_else] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_while] = ACTIONS(3033), + [anon_sym_do] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3033), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3033), + [anon_sym_PIPE] = ACTIONS(3033), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3033), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_EQ_GT] = ACTIONS(3035), + [anon_sym_QMARK_QMARK] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), + [anon_sym_null] = ACTIONS(3033), + [anon_sym_macro] = ACTIONS(3033), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_static] = ACTIONS(3033), + [anon_sym_public] = ACTIONS(3033), + [anon_sym_private] = ACTIONS(3033), + [anon_sym_extern] = ACTIONS(3033), + [anon_sym_inline] = ACTIONS(3033), + [anon_sym_overload] = ACTIONS(3033), + [anon_sym_override] = ACTIONS(3033), + [anon_sym_final] = ACTIONS(3033), + [anon_sym_class] = ACTIONS(3033), + [anon_sym_interface] = ACTIONS(3033), + [anon_sym_enum] = ACTIONS(3033), + [anon_sym_typedef] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3033), + [anon_sym_var] = ACTIONS(3033), + [aux_sym_integer_token1] = ACTIONS(3033), + [aux_sym_integer_token2] = ACTIONS(3035), + [aux_sym_float_token1] = ACTIONS(3033), + [aux_sym_float_token2] = ACTIONS(3035), + [anon_sym_true] = ACTIONS(3033), + [anon_sym_false] = ACTIONS(3033), + [aux_sym_string_token1] = ACTIONS(3035), + [aux_sym_string_token3] = ACTIONS(3035), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3035), [sym__closing_brace_unmarker] = ACTIONS(3), }, [508] = { - [ts_builtin_sym_end] = ACTIONS(2310), - [sym_identifier] = ACTIONS(2308), - [anon_sym_POUND] = ACTIONS(2310), - [anon_sym_package] = ACTIONS(2308), - [anon_sym_import] = ACTIONS(2308), - [anon_sym_using] = ACTIONS(2308), - [anon_sym_throw] = ACTIONS(2308), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2308), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_cast] = ACTIONS(2308), - [anon_sym_DOLLARtype] = ACTIONS(2310), - [anon_sym_return] = ACTIONS(2308), - [anon_sym_untyped] = ACTIONS(2308), - [anon_sym_break] = ACTIONS(2308), - [anon_sym_continue] = ACTIONS(2308), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_this] = ACTIONS(2308), - [anon_sym_AT] = ACTIONS(2308), - [anon_sym_AT_COLON] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2308), - [anon_sym_new] = ACTIONS(2308), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2308), - [anon_sym_DASH] = ACTIONS(2308), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2308), - [anon_sym_PLUS] = ACTIONS(2308), - [anon_sym_LT_LT] = ACTIONS(2310), - [anon_sym_GT_GT] = ACTIONS(2308), - [anon_sym_GT_GT_GT] = ACTIONS(2310), - [anon_sym_AMP] = ACTIONS(2308), - [anon_sym_PIPE] = ACTIONS(2308), - [anon_sym_CARET] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2310), - [anon_sym_PIPE_PIPE] = ACTIONS(2310), - [anon_sym_EQ_EQ] = ACTIONS(2310), - [anon_sym_BANG_EQ] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2308), - [anon_sym_LT_EQ] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2308), - [anon_sym_GT_EQ] = ACTIONS(2310), - [anon_sym_EQ_GT] = ACTIONS(2310), - [anon_sym_QMARK_QMARK] = ACTIONS(2310), - [anon_sym_EQ] = ACTIONS(2308), - [sym__rangeOperator] = ACTIONS(2310), - [anon_sym_null] = ACTIONS(2308), - [anon_sym_macro] = ACTIONS(2308), - [anon_sym_abstract] = ACTIONS(2308), - [anon_sym_static] = ACTIONS(2308), - [anon_sym_public] = ACTIONS(2308), - [anon_sym_private] = ACTIONS(2308), - [anon_sym_extern] = ACTIONS(2308), - [anon_sym_inline] = ACTIONS(2308), - [anon_sym_overload] = ACTIONS(2308), - [anon_sym_override] = ACTIONS(2308), - [anon_sym_final] = ACTIONS(2308), - [anon_sym_class] = ACTIONS(2308), - [anon_sym_interface] = ACTIONS(2308), - [anon_sym_typedef] = ACTIONS(2308), - [anon_sym_function] = ACTIONS(2308), - [anon_sym_var] = ACTIONS(2308), - [aux_sym_integer_token1] = ACTIONS(2308), - [aux_sym_integer_token2] = ACTIONS(2310), - [aux_sym_float_token1] = ACTIONS(2308), - [aux_sym_float_token2] = ACTIONS(2310), - [anon_sym_true] = ACTIONS(2308), - [anon_sym_false] = ACTIONS(2308), - [aux_sym_string_token1] = ACTIONS(2310), - [aux_sym_string_token3] = ACTIONS(2310), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3037), + [anon_sym_POUND] = ACTIONS(3039), + [anon_sym_package] = ACTIONS(3037), + [anon_sym_import] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3037), + [anon_sym_throw] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_case] = ACTIONS(3037), + [anon_sym_default] = ACTIONS(3037), + [anon_sym_cast] = ACTIONS(3037), + [anon_sym_DOLLARtype] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_untyped] = ACTIONS(3037), + [anon_sym_break] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_this] = ACTIONS(3037), + [anon_sym_AT] = ACTIONS(3037), + [anon_sym_AT_COLON] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_catch] = ACTIONS(3037), + [anon_sym_else] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3037), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_do] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_SLASH] = ACTIONS(3037), + [anon_sym_PLUS] = ACTIONS(3037), + [anon_sym_LT_LT] = ACTIONS(3039), + [anon_sym_GT_GT] = ACTIONS(3037), + [anon_sym_GT_GT_GT] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_PIPE] = ACTIONS(3037), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_EQ_EQ] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_LT_EQ] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3037), + [anon_sym_GT_EQ] = ACTIONS(3039), + [anon_sym_EQ_GT] = ACTIONS(3039), + [anon_sym_QMARK_QMARK] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), + [anon_sym_null] = ACTIONS(3037), + [anon_sym_macro] = ACTIONS(3037), + [anon_sym_abstract] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3037), + [anon_sym_public] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3037), + [anon_sym_extern] = ACTIONS(3037), + [anon_sym_inline] = ACTIONS(3037), + [anon_sym_overload] = ACTIONS(3037), + [anon_sym_override] = ACTIONS(3037), + [anon_sym_final] = ACTIONS(3037), + [anon_sym_class] = ACTIONS(3037), + [anon_sym_interface] = ACTIONS(3037), + [anon_sym_enum] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3037), + [anon_sym_var] = ACTIONS(3037), + [aux_sym_integer_token1] = ACTIONS(3037), + [aux_sym_integer_token2] = ACTIONS(3039), + [aux_sym_float_token1] = ACTIONS(3037), + [aux_sym_float_token2] = ACTIONS(3039), + [anon_sym_true] = ACTIONS(3037), + [anon_sym_false] = ACTIONS(3037), + [aux_sym_string_token1] = ACTIONS(3039), + [aux_sym_string_token3] = ACTIONS(3039), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3039), [sym__closing_brace_unmarker] = ACTIONS(3), }, [509] = { - [ts_builtin_sym_end] = ACTIONS(2246), - [sym_identifier] = ACTIONS(2244), - [anon_sym_POUND] = ACTIONS(2246), - [anon_sym_package] = ACTIONS(2244), - [anon_sym_import] = ACTIONS(2244), - [anon_sym_using] = ACTIONS(2244), - [anon_sym_throw] = ACTIONS(2244), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2244), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_cast] = ACTIONS(2244), - [anon_sym_DOLLARtype] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2244), - [anon_sym_untyped] = ACTIONS(2244), - [anon_sym_break] = ACTIONS(2244), - [anon_sym_continue] = ACTIONS(2244), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_this] = ACTIONS(2244), - [anon_sym_AT] = ACTIONS(2244), - [anon_sym_AT_COLON] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2244), - [anon_sym_new] = ACTIONS(2244), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2244), - [anon_sym_DASH] = ACTIONS(2244), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2244), - [anon_sym_PLUS] = ACTIONS(2244), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2244), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2244), - [anon_sym_PIPE] = ACTIONS(2244), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2244), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2244), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_EQ_GT] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_EQ] = ACTIONS(2244), - [sym__rangeOperator] = ACTIONS(2246), - [anon_sym_null] = ACTIONS(2244), - [anon_sym_macro] = ACTIONS(2244), - [anon_sym_abstract] = ACTIONS(2244), - [anon_sym_static] = ACTIONS(2244), - [anon_sym_public] = ACTIONS(2244), - [anon_sym_private] = ACTIONS(2244), - [anon_sym_extern] = ACTIONS(2244), - [anon_sym_inline] = ACTIONS(2244), - [anon_sym_overload] = ACTIONS(2244), - [anon_sym_override] = ACTIONS(2244), - [anon_sym_final] = ACTIONS(2244), - [anon_sym_class] = ACTIONS(2244), - [anon_sym_interface] = ACTIONS(2244), - [anon_sym_typedef] = ACTIONS(2244), - [anon_sym_function] = ACTIONS(2244), - [anon_sym_var] = ACTIONS(2244), - [aux_sym_integer_token1] = ACTIONS(2244), - [aux_sym_integer_token2] = ACTIONS(2246), - [aux_sym_float_token1] = ACTIONS(2244), - [aux_sym_float_token2] = ACTIONS(2246), - [anon_sym_true] = ACTIONS(2244), - [anon_sym_false] = ACTIONS(2244), - [aux_sym_string_token1] = ACTIONS(2246), - [aux_sym_string_token3] = ACTIONS(2246), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3043), + [anon_sym_package] = ACTIONS(3041), + [anon_sym_import] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3041), + [anon_sym_throw] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_case] = ACTIONS(3041), + [anon_sym_default] = ACTIONS(3041), + [anon_sym_cast] = ACTIONS(3041), + [anon_sym_DOLLARtype] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_untyped] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_this] = ACTIONS(3041), + [anon_sym_AT] = ACTIONS(3041), + [anon_sym_AT_COLON] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3041), + [anon_sym_catch] = ACTIONS(3041), + [anon_sym_else] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_while] = ACTIONS(3041), + [anon_sym_do] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_EQ_GT] = ACTIONS(3043), + [anon_sym_QMARK_QMARK] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3043), + [anon_sym_null] = ACTIONS(3041), + [anon_sym_macro] = ACTIONS(3041), + [anon_sym_abstract] = ACTIONS(3041), + [anon_sym_static] = ACTIONS(3041), + [anon_sym_public] = ACTIONS(3041), + [anon_sym_private] = ACTIONS(3041), + [anon_sym_extern] = ACTIONS(3041), + [anon_sym_inline] = ACTIONS(3041), + [anon_sym_overload] = ACTIONS(3041), + [anon_sym_override] = ACTIONS(3041), + [anon_sym_final] = ACTIONS(3041), + [anon_sym_class] = ACTIONS(3041), + [anon_sym_interface] = ACTIONS(3041), + [anon_sym_enum] = ACTIONS(3041), + [anon_sym_typedef] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3041), + [anon_sym_var] = ACTIONS(3041), + [aux_sym_integer_token1] = ACTIONS(3041), + [aux_sym_integer_token2] = ACTIONS(3043), + [aux_sym_float_token1] = ACTIONS(3041), + [aux_sym_float_token2] = ACTIONS(3043), + [anon_sym_true] = ACTIONS(3041), + [anon_sym_false] = ACTIONS(3041), + [aux_sym_string_token1] = ACTIONS(3043), + [aux_sym_string_token3] = ACTIONS(3043), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3043), [sym__closing_brace_unmarker] = ACTIONS(3), }, [510] = { - [ts_builtin_sym_end] = ACTIONS(1858), - [sym_identifier] = ACTIONS(1856), - [anon_sym_POUND] = ACTIONS(1858), - [anon_sym_package] = ACTIONS(1856), - [anon_sym_import] = ACTIONS(1856), - [anon_sym_using] = ACTIONS(1856), - [anon_sym_throw] = ACTIONS(1856), - [anon_sym_LPAREN] = ACTIONS(1858), - [anon_sym_switch] = ACTIONS(1856), - [anon_sym_LBRACE] = ACTIONS(1858), - [anon_sym_cast] = ACTIONS(1856), - [anon_sym_DOLLARtype] = ACTIONS(1858), - [anon_sym_return] = ACTIONS(1856), - [anon_sym_untyped] = ACTIONS(1856), - [anon_sym_break] = ACTIONS(1856), - [anon_sym_continue] = ACTIONS(1856), - [anon_sym_LBRACK] = ACTIONS(1858), - [anon_sym_this] = ACTIONS(1856), - [anon_sym_AT] = ACTIONS(1856), - [anon_sym_AT_COLON] = ACTIONS(1858), - [anon_sym_if] = ACTIONS(1856), - [anon_sym_new] = ACTIONS(1856), - [anon_sym_TILDE] = ACTIONS(1858), - [anon_sym_BANG] = ACTIONS(1856), - [anon_sym_DASH] = ACTIONS(1856), - [anon_sym_PLUS_PLUS] = ACTIONS(1858), - [anon_sym_DASH_DASH] = ACTIONS(1858), - [anon_sym_PERCENT] = ACTIONS(1858), - [anon_sym_STAR] = ACTIONS(1858), - [anon_sym_SLASH] = ACTIONS(1856), - [anon_sym_PLUS] = ACTIONS(1856), - [anon_sym_LT_LT] = ACTIONS(1858), - [anon_sym_GT_GT] = ACTIONS(1856), - [anon_sym_GT_GT_GT] = ACTIONS(1858), - [anon_sym_AMP] = ACTIONS(1856), - [anon_sym_PIPE] = ACTIONS(1856), - [anon_sym_CARET] = ACTIONS(1858), - [anon_sym_AMP_AMP] = ACTIONS(1858), - [anon_sym_PIPE_PIPE] = ACTIONS(1858), - [anon_sym_EQ_EQ] = ACTIONS(1858), - [anon_sym_BANG_EQ] = ACTIONS(1858), - [anon_sym_LT] = ACTIONS(1856), - [anon_sym_LT_EQ] = ACTIONS(1858), - [anon_sym_GT] = ACTIONS(1856), - [anon_sym_GT_EQ] = ACTIONS(1858), - [anon_sym_EQ_GT] = ACTIONS(1858), - [anon_sym_QMARK_QMARK] = ACTIONS(1858), - [anon_sym_EQ] = ACTIONS(1856), - [sym__rangeOperator] = ACTIONS(1858), - [anon_sym_null] = ACTIONS(1856), - [anon_sym_macro] = ACTIONS(1856), - [anon_sym_abstract] = ACTIONS(1856), - [anon_sym_static] = ACTIONS(1856), - [anon_sym_public] = ACTIONS(1856), - [anon_sym_private] = ACTIONS(1856), - [anon_sym_extern] = ACTIONS(1856), - [anon_sym_inline] = ACTIONS(1856), - [anon_sym_overload] = ACTIONS(1856), - [anon_sym_override] = ACTIONS(1856), - [anon_sym_final] = ACTIONS(1856), - [anon_sym_class] = ACTIONS(1856), - [anon_sym_interface] = ACTIONS(1856), - [anon_sym_typedef] = ACTIONS(1856), - [anon_sym_function] = ACTIONS(1856), - [anon_sym_var] = ACTIONS(1856), - [aux_sym_integer_token1] = ACTIONS(1856), - [aux_sym_integer_token2] = ACTIONS(1858), - [aux_sym_float_token1] = ACTIONS(1856), - [aux_sym_float_token2] = ACTIONS(1858), - [anon_sym_true] = ACTIONS(1856), - [anon_sym_false] = ACTIONS(1856), - [aux_sym_string_token1] = ACTIONS(1858), - [aux_sym_string_token3] = ACTIONS(1858), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3047), + [anon_sym_package] = ACTIONS(3045), + [anon_sym_import] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3045), + [anon_sym_throw] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_case] = ACTIONS(3045), + [anon_sym_default] = ACTIONS(3045), + [anon_sym_cast] = ACTIONS(3045), + [anon_sym_DOLLARtype] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_untyped] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_this] = ACTIONS(3045), + [anon_sym_AT] = ACTIONS(3045), + [anon_sym_AT_COLON] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3045), + [anon_sym_catch] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_while] = ACTIONS(3045), + [anon_sym_do] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_EQ_GT] = ACTIONS(3047), + [anon_sym_QMARK_QMARK] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), + [anon_sym_null] = ACTIONS(3045), + [anon_sym_macro] = ACTIONS(3045), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_static] = ACTIONS(3045), + [anon_sym_public] = ACTIONS(3045), + [anon_sym_private] = ACTIONS(3045), + [anon_sym_extern] = ACTIONS(3045), + [anon_sym_inline] = ACTIONS(3045), + [anon_sym_overload] = ACTIONS(3045), + [anon_sym_override] = ACTIONS(3045), + [anon_sym_final] = ACTIONS(3045), + [anon_sym_class] = ACTIONS(3045), + [anon_sym_interface] = ACTIONS(3045), + [anon_sym_enum] = ACTIONS(3045), + [anon_sym_typedef] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3045), + [anon_sym_var] = ACTIONS(3045), + [aux_sym_integer_token1] = ACTIONS(3045), + [aux_sym_integer_token2] = ACTIONS(3047), + [aux_sym_float_token1] = ACTIONS(3045), + [aux_sym_float_token2] = ACTIONS(3047), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [aux_sym_string_token1] = ACTIONS(3047), + [aux_sym_string_token3] = ACTIONS(3047), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3047), [sym__closing_brace_unmarker] = ACTIONS(3), }, [511] = { - [ts_builtin_sym_end] = ACTIONS(2154), - [sym_identifier] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(2154), - [anon_sym_package] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2154), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2154), - [anon_sym_cast] = ACTIONS(2152), - [anon_sym_DOLLARtype] = ACTIONS(2154), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_untyped] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2154), - [anon_sym_this] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_AT_COLON] = ACTIONS(2154), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2154), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2154), - [anon_sym_DASH_DASH] = ACTIONS(2154), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2152), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2152), - [anon_sym_PIPE] = ACTIONS(2152), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_GT] = ACTIONS(2152), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_EQ] = ACTIONS(2152), - [sym__rangeOperator] = ACTIONS(2154), - [anon_sym_null] = ACTIONS(2152), - [anon_sym_macro] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_inline] = ACTIONS(2152), - [anon_sym_overload] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_final] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_typedef] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [aux_sym_integer_token1] = ACTIONS(2152), - [aux_sym_integer_token2] = ACTIONS(2154), - [aux_sym_float_token1] = ACTIONS(2152), - [aux_sym_float_token2] = ACTIONS(2154), - [anon_sym_true] = ACTIONS(2152), - [anon_sym_false] = ACTIONS(2152), - [aux_sym_string_token1] = ACTIONS(2154), - [aux_sym_string_token3] = ACTIONS(2154), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3051), + [anon_sym_package] = ACTIONS(3049), + [anon_sym_import] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3049), + [anon_sym_throw] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_switch] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_case] = ACTIONS(3049), + [anon_sym_default] = ACTIONS(3049), + [anon_sym_cast] = ACTIONS(3049), + [anon_sym_DOLLARtype] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_untyped] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_this] = ACTIONS(3049), + [anon_sym_AT] = ACTIONS(3049), + [anon_sym_AT_COLON] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3049), + [anon_sym_catch] = ACTIONS(3049), + [anon_sym_else] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_while] = ACTIONS(3049), + [anon_sym_do] = ACTIONS(3049), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3051), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3051), + [anon_sym_PERCENT] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(3051), + [anon_sym_PIPE_PIPE] = ACTIONS(3051), + [anon_sym_EQ_EQ] = ACTIONS(3051), + [anon_sym_BANG_EQ] = ACTIONS(3051), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3051), + [anon_sym_EQ_GT] = ACTIONS(3051), + [anon_sym_QMARK_QMARK] = ACTIONS(3051), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3051), + [anon_sym_null] = ACTIONS(3049), + [anon_sym_macro] = ACTIONS(3049), + [anon_sym_abstract] = ACTIONS(3049), + [anon_sym_static] = ACTIONS(3049), + [anon_sym_public] = ACTIONS(3049), + [anon_sym_private] = ACTIONS(3049), + [anon_sym_extern] = ACTIONS(3049), + [anon_sym_inline] = ACTIONS(3049), + [anon_sym_overload] = ACTIONS(3049), + [anon_sym_override] = ACTIONS(3049), + [anon_sym_final] = ACTIONS(3049), + [anon_sym_class] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_typedef] = ACTIONS(3049), + [anon_sym_function] = ACTIONS(3049), + [anon_sym_var] = ACTIONS(3049), + [aux_sym_integer_token1] = ACTIONS(3049), + [aux_sym_integer_token2] = ACTIONS(3051), + [aux_sym_float_token1] = ACTIONS(3049), + [aux_sym_float_token2] = ACTIONS(3051), + [anon_sym_true] = ACTIONS(3049), + [anon_sym_false] = ACTIONS(3049), + [aux_sym_string_token1] = ACTIONS(3051), + [aux_sym_string_token3] = ACTIONS(3051), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3051), [sym__closing_brace_unmarker] = ACTIONS(3), }, [512] = { - [ts_builtin_sym_end] = ACTIONS(1998), - [sym_identifier] = ACTIONS(1996), - [anon_sym_POUND] = ACTIONS(1998), - [anon_sym_package] = ACTIONS(1996), - [anon_sym_import] = ACTIONS(1996), - [anon_sym_using] = ACTIONS(1996), - [anon_sym_throw] = ACTIONS(1996), - [anon_sym_LPAREN] = ACTIONS(1998), - [anon_sym_switch] = ACTIONS(1996), - [anon_sym_LBRACE] = ACTIONS(1998), - [anon_sym_cast] = ACTIONS(1996), - [anon_sym_DOLLARtype] = ACTIONS(1998), - [anon_sym_return] = ACTIONS(1996), - [anon_sym_untyped] = ACTIONS(1996), - [anon_sym_break] = ACTIONS(1996), - [anon_sym_continue] = ACTIONS(1996), - [anon_sym_LBRACK] = ACTIONS(1998), - [anon_sym_this] = ACTIONS(1996), - [anon_sym_AT] = ACTIONS(1996), - [anon_sym_AT_COLON] = ACTIONS(1998), - [anon_sym_if] = ACTIONS(1996), - [anon_sym_new] = ACTIONS(1996), - [anon_sym_TILDE] = ACTIONS(1998), - [anon_sym_BANG] = ACTIONS(1996), - [anon_sym_DASH] = ACTIONS(1996), - [anon_sym_PLUS_PLUS] = ACTIONS(1998), - [anon_sym_DASH_DASH] = ACTIONS(1998), - [anon_sym_PERCENT] = ACTIONS(1998), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_SLASH] = ACTIONS(1996), - [anon_sym_PLUS] = ACTIONS(1996), - [anon_sym_LT_LT] = ACTIONS(1998), - [anon_sym_GT_GT] = ACTIONS(1996), - [anon_sym_GT_GT_GT] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_CARET] = ACTIONS(1998), - [anon_sym_AMP_AMP] = ACTIONS(1998), - [anon_sym_PIPE_PIPE] = ACTIONS(1998), - [anon_sym_EQ_EQ] = ACTIONS(1998), - [anon_sym_BANG_EQ] = ACTIONS(1998), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_LT_EQ] = ACTIONS(1998), - [anon_sym_GT] = ACTIONS(1996), - [anon_sym_GT_EQ] = ACTIONS(1998), - [anon_sym_EQ_GT] = ACTIONS(1998), - [anon_sym_QMARK_QMARK] = ACTIONS(1998), - [anon_sym_EQ] = ACTIONS(1996), - [sym__rangeOperator] = ACTIONS(1998), - [anon_sym_null] = ACTIONS(1996), - [anon_sym_macro] = ACTIONS(1996), - [anon_sym_abstract] = ACTIONS(1996), - [anon_sym_static] = ACTIONS(1996), - [anon_sym_public] = ACTIONS(1996), - [anon_sym_private] = ACTIONS(1996), - [anon_sym_extern] = ACTIONS(1996), - [anon_sym_inline] = ACTIONS(1996), - [anon_sym_overload] = ACTIONS(1996), - [anon_sym_override] = ACTIONS(1996), - [anon_sym_final] = ACTIONS(1996), - [anon_sym_class] = ACTIONS(1996), - [anon_sym_interface] = ACTIONS(1996), - [anon_sym_typedef] = ACTIONS(1996), - [anon_sym_function] = ACTIONS(1996), - [anon_sym_var] = ACTIONS(1996), - [aux_sym_integer_token1] = ACTIONS(1996), - [aux_sym_integer_token2] = ACTIONS(1998), - [aux_sym_float_token1] = ACTIONS(1996), - [aux_sym_float_token2] = ACTIONS(1998), - [anon_sym_true] = ACTIONS(1996), - [anon_sym_false] = ACTIONS(1996), - [aux_sym_string_token1] = ACTIONS(1998), - [aux_sym_string_token3] = ACTIONS(1998), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3053), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_package] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3053), + [anon_sym_throw] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_switch] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_case] = ACTIONS(3053), + [anon_sym_default] = ACTIONS(3053), + [anon_sym_cast] = ACTIONS(3053), + [anon_sym_DOLLARtype] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3053), + [anon_sym_return] = ACTIONS(3053), + [anon_sym_untyped] = ACTIONS(3053), + [anon_sym_break] = ACTIONS(3053), + [anon_sym_continue] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_this] = ACTIONS(3053), + [anon_sym_AT] = ACTIONS(3053), + [anon_sym_AT_COLON] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3053), + [anon_sym_catch] = ACTIONS(3053), + [anon_sym_else] = ACTIONS(3053), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_while] = ACTIONS(3053), + [anon_sym_do] = ACTIONS(3053), + [anon_sym_new] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3053), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_EQ_GT] = ACTIONS(3055), + [anon_sym_QMARK_QMARK] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(3053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3055), + [anon_sym_null] = ACTIONS(3053), + [anon_sym_macro] = ACTIONS(3053), + [anon_sym_abstract] = ACTIONS(3053), + [anon_sym_static] = ACTIONS(3053), + [anon_sym_public] = ACTIONS(3053), + [anon_sym_private] = ACTIONS(3053), + [anon_sym_extern] = ACTIONS(3053), + [anon_sym_inline] = ACTIONS(3053), + [anon_sym_overload] = ACTIONS(3053), + [anon_sym_override] = ACTIONS(3053), + [anon_sym_final] = ACTIONS(3053), + [anon_sym_class] = ACTIONS(3053), + [anon_sym_interface] = ACTIONS(3053), + [anon_sym_enum] = ACTIONS(3053), + [anon_sym_typedef] = ACTIONS(3053), + [anon_sym_function] = ACTIONS(3053), + [anon_sym_var] = ACTIONS(3053), + [aux_sym_integer_token1] = ACTIONS(3053), + [aux_sym_integer_token2] = ACTIONS(3055), + [aux_sym_float_token1] = ACTIONS(3053), + [aux_sym_float_token2] = ACTIONS(3055), + [anon_sym_true] = ACTIONS(3053), + [anon_sym_false] = ACTIONS(3053), + [aux_sym_string_token1] = ACTIONS(3055), + [aux_sym_string_token3] = ACTIONS(3055), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3055), [sym__closing_brace_unmarker] = ACTIONS(3), }, [513] = { - [ts_builtin_sym_end] = ACTIONS(1846), - [sym_identifier] = ACTIONS(1844), - [anon_sym_POUND] = ACTIONS(1846), - [anon_sym_package] = ACTIONS(1844), - [anon_sym_import] = ACTIONS(1844), - [anon_sym_using] = ACTIONS(1844), - [anon_sym_throw] = ACTIONS(1844), - [anon_sym_LPAREN] = ACTIONS(1846), - [anon_sym_switch] = ACTIONS(1844), - [anon_sym_LBRACE] = ACTIONS(1846), - [anon_sym_cast] = ACTIONS(1844), - [anon_sym_DOLLARtype] = ACTIONS(1846), - [anon_sym_return] = ACTIONS(1844), - [anon_sym_untyped] = ACTIONS(1844), - [anon_sym_break] = ACTIONS(1844), - [anon_sym_continue] = ACTIONS(1844), - [anon_sym_LBRACK] = ACTIONS(1846), - [anon_sym_this] = ACTIONS(1844), - [anon_sym_AT] = ACTIONS(1844), - [anon_sym_AT_COLON] = ACTIONS(1846), - [anon_sym_if] = ACTIONS(1844), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_TILDE] = ACTIONS(1846), - [anon_sym_BANG] = ACTIONS(1844), - [anon_sym_DASH] = ACTIONS(1844), - [anon_sym_PLUS_PLUS] = ACTIONS(1846), - [anon_sym_DASH_DASH] = ACTIONS(1846), - [anon_sym_PERCENT] = ACTIONS(1846), - [anon_sym_STAR] = ACTIONS(1846), - [anon_sym_SLASH] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1844), - [anon_sym_LT_LT] = ACTIONS(1846), - [anon_sym_GT_GT] = ACTIONS(1844), - [anon_sym_GT_GT_GT] = ACTIONS(1846), - [anon_sym_AMP] = ACTIONS(1844), - [anon_sym_PIPE] = ACTIONS(1844), - [anon_sym_CARET] = ACTIONS(1846), - [anon_sym_AMP_AMP] = ACTIONS(1846), - [anon_sym_PIPE_PIPE] = ACTIONS(1846), - [anon_sym_EQ_EQ] = ACTIONS(1846), - [anon_sym_BANG_EQ] = ACTIONS(1846), - [anon_sym_LT] = ACTIONS(1844), - [anon_sym_LT_EQ] = ACTIONS(1846), - [anon_sym_GT] = ACTIONS(1844), - [anon_sym_GT_EQ] = ACTIONS(1846), - [anon_sym_EQ_GT] = ACTIONS(1846), - [anon_sym_QMARK_QMARK] = ACTIONS(1846), - [anon_sym_EQ] = ACTIONS(1844), - [sym__rangeOperator] = ACTIONS(1846), - [anon_sym_null] = ACTIONS(1844), - [anon_sym_macro] = ACTIONS(1844), - [anon_sym_abstract] = ACTIONS(1844), - [anon_sym_static] = ACTIONS(1844), - [anon_sym_public] = ACTIONS(1844), - [anon_sym_private] = ACTIONS(1844), - [anon_sym_extern] = ACTIONS(1844), - [anon_sym_inline] = ACTIONS(1844), - [anon_sym_overload] = ACTIONS(1844), - [anon_sym_override] = ACTIONS(1844), - [anon_sym_final] = ACTIONS(1844), - [anon_sym_class] = ACTIONS(1844), - [anon_sym_interface] = ACTIONS(1844), - [anon_sym_typedef] = ACTIONS(1844), - [anon_sym_function] = ACTIONS(1844), - [anon_sym_var] = ACTIONS(1844), - [aux_sym_integer_token1] = ACTIONS(1844), - [aux_sym_integer_token2] = ACTIONS(1846), - [aux_sym_float_token1] = ACTIONS(1844), - [aux_sym_float_token2] = ACTIONS(1846), - [anon_sym_true] = ACTIONS(1844), - [anon_sym_false] = ACTIONS(1844), - [aux_sym_string_token1] = ACTIONS(1846), - [aux_sym_string_token3] = ACTIONS(1846), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3057), + [anon_sym_POUND] = ACTIONS(3059), + [anon_sym_package] = ACTIONS(3057), + [anon_sym_import] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_switch] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_case] = ACTIONS(3057), + [anon_sym_default] = ACTIONS(3057), + [anon_sym_cast] = ACTIONS(3057), + [anon_sym_DOLLARtype] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_untyped] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_AT] = ACTIONS(3057), + [anon_sym_AT_COLON] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_catch] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_do] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3057), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_EQ_GT] = ACTIONS(3059), + [anon_sym_QMARK_QMARK] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_macro] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_extern] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_overload] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_class] = ACTIONS(3057), + [anon_sym_interface] = ACTIONS(3057), + [anon_sym_enum] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3057), + [anon_sym_var] = ACTIONS(3057), + [aux_sym_integer_token1] = ACTIONS(3057), + [aux_sym_integer_token2] = ACTIONS(3059), + [aux_sym_float_token1] = ACTIONS(3057), + [aux_sym_float_token2] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [aux_sym_string_token1] = ACTIONS(3059), + [aux_sym_string_token3] = ACTIONS(3059), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3059), [sym__closing_brace_unmarker] = ACTIONS(3), }, [514] = { - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(2206), - [anon_sym_package] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2206), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2206), - [anon_sym_cast] = ACTIONS(2204), - [anon_sym_DOLLARtype] = ACTIONS(2206), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_untyped] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2206), - [anon_sym_this] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_AT_COLON] = ACTIONS(2206), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2206), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2206), - [anon_sym_DASH_DASH] = ACTIONS(2206), - [anon_sym_PERCENT] = ACTIONS(2206), - [anon_sym_STAR] = ACTIONS(2206), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2206), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_GT_GT_GT] = ACTIONS(2206), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2206), - [anon_sym_AMP_AMP] = ACTIONS(2206), - [anon_sym_PIPE_PIPE] = ACTIONS(2206), - [anon_sym_EQ_EQ] = ACTIONS(2206), - [anon_sym_BANG_EQ] = ACTIONS(2206), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2206), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2206), - [anon_sym_EQ_GT] = ACTIONS(2206), - [anon_sym_QMARK_QMARK] = ACTIONS(2206), - [anon_sym_EQ] = ACTIONS(2204), - [sym__rangeOperator] = ACTIONS(2206), - [anon_sym_null] = ACTIONS(2204), - [anon_sym_macro] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_extern] = ACTIONS(2204), - [anon_sym_inline] = ACTIONS(2204), - [anon_sym_overload] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_final] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_typedef] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [aux_sym_integer_token1] = ACTIONS(2204), - [aux_sym_integer_token2] = ACTIONS(2206), - [aux_sym_float_token1] = ACTIONS(2204), - [aux_sym_float_token2] = ACTIONS(2206), - [anon_sym_true] = ACTIONS(2204), - [anon_sym_false] = ACTIONS(2204), - [aux_sym_string_token1] = ACTIONS(2206), - [aux_sym_string_token3] = ACTIONS(2206), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3063), + [anon_sym_package] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_case] = ACTIONS(3061), + [anon_sym_default] = ACTIONS(3061), + [anon_sym_cast] = ACTIONS(3061), + [anon_sym_DOLLARtype] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_untyped] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_AT_COLON] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_catch] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3063), + [anon_sym_PERCENT] = ACTIONS(3063), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3063), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP_AMP] = ACTIONS(3063), + [anon_sym_PIPE_PIPE] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3063), + [anon_sym_EQ_GT] = ACTIONS(3063), + [anon_sym_QMARK_QMARK] = ACTIONS(3063), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), + [anon_sym_null] = ACTIONS(3061), + [anon_sym_macro] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_static] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_extern] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_overload] = ACTIONS(3061), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), + [anon_sym_typedef] = ACTIONS(3061), + [anon_sym_function] = ACTIONS(3061), + [anon_sym_var] = ACTIONS(3061), + [aux_sym_integer_token1] = ACTIONS(3061), + [aux_sym_integer_token2] = ACTIONS(3063), + [aux_sym_float_token1] = ACTIONS(3061), + [aux_sym_float_token2] = ACTIONS(3063), + [anon_sym_true] = ACTIONS(3061), + [anon_sym_false] = ACTIONS(3061), + [aux_sym_string_token1] = ACTIONS(3063), + [aux_sym_string_token3] = ACTIONS(3063), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3063), [sym__closing_brace_unmarker] = ACTIONS(3), }, [515] = { - [ts_builtin_sym_end] = ACTIONS(1878), - [sym_identifier] = ACTIONS(1876), - [anon_sym_POUND] = ACTIONS(1878), - [anon_sym_package] = ACTIONS(1876), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_using] = ACTIONS(1876), - [anon_sym_throw] = ACTIONS(1876), - [anon_sym_LPAREN] = ACTIONS(1878), - [anon_sym_switch] = ACTIONS(1876), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_cast] = ACTIONS(1876), - [anon_sym_DOLLARtype] = ACTIONS(1878), - [anon_sym_return] = ACTIONS(1876), - [anon_sym_untyped] = ACTIONS(1876), - [anon_sym_break] = ACTIONS(1876), - [anon_sym_continue] = ACTIONS(1876), - [anon_sym_LBRACK] = ACTIONS(1878), - [anon_sym_this] = ACTIONS(1876), - [anon_sym_AT] = ACTIONS(1876), - [anon_sym_AT_COLON] = ACTIONS(1878), - [anon_sym_if] = ACTIONS(1876), - [anon_sym_new] = ACTIONS(1876), - [anon_sym_TILDE] = ACTIONS(1878), - [anon_sym_BANG] = ACTIONS(1876), - [anon_sym_DASH] = ACTIONS(1876), - [anon_sym_PLUS_PLUS] = ACTIONS(1878), - [anon_sym_DASH_DASH] = ACTIONS(1878), - [anon_sym_PERCENT] = ACTIONS(1878), - [anon_sym_STAR] = ACTIONS(1878), - [anon_sym_SLASH] = ACTIONS(1876), - [anon_sym_PLUS] = ACTIONS(1876), - [anon_sym_LT_LT] = ACTIONS(1878), - [anon_sym_GT_GT] = ACTIONS(1876), - [anon_sym_GT_GT_GT] = ACTIONS(1878), - [anon_sym_AMP] = ACTIONS(1876), - [anon_sym_PIPE] = ACTIONS(1876), - [anon_sym_CARET] = ACTIONS(1878), - [anon_sym_AMP_AMP] = ACTIONS(1878), - [anon_sym_PIPE_PIPE] = ACTIONS(1878), - [anon_sym_EQ_EQ] = ACTIONS(1878), - [anon_sym_BANG_EQ] = ACTIONS(1878), - [anon_sym_LT] = ACTIONS(1876), - [anon_sym_LT_EQ] = ACTIONS(1878), - [anon_sym_GT] = ACTIONS(1876), - [anon_sym_GT_EQ] = ACTIONS(1878), - [anon_sym_EQ_GT] = ACTIONS(1878), - [anon_sym_QMARK_QMARK] = ACTIONS(1878), - [anon_sym_EQ] = ACTIONS(1876), - [sym__rangeOperator] = ACTIONS(1878), - [anon_sym_null] = ACTIONS(1876), - [anon_sym_macro] = ACTIONS(1876), - [anon_sym_abstract] = ACTIONS(1876), - [anon_sym_static] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1876), - [anon_sym_private] = ACTIONS(1876), - [anon_sym_extern] = ACTIONS(1876), - [anon_sym_inline] = ACTIONS(1876), - [anon_sym_overload] = ACTIONS(1876), - [anon_sym_override] = ACTIONS(1876), - [anon_sym_final] = ACTIONS(1876), - [anon_sym_class] = ACTIONS(1876), - [anon_sym_interface] = ACTIONS(1876), - [anon_sym_typedef] = ACTIONS(1876), - [anon_sym_function] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(1876), - [aux_sym_integer_token1] = ACTIONS(1876), - [aux_sym_integer_token2] = ACTIONS(1878), - [aux_sym_float_token1] = ACTIONS(1876), - [aux_sym_float_token2] = ACTIONS(1878), - [anon_sym_true] = ACTIONS(1876), - [anon_sym_false] = ACTIONS(1876), - [aux_sym_string_token1] = ACTIONS(1878), - [aux_sym_string_token3] = ACTIONS(1878), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3067), + [anon_sym_package] = ACTIONS(3065), + [anon_sym_import] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_using] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_switch] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_case] = ACTIONS(3065), + [anon_sym_default] = ACTIONS(3065), + [anon_sym_cast] = ACTIONS(3065), + [anon_sym_DOLLARtype] = ACTIONS(3067), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_untyped] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3065), + [anon_sym_AT_COLON] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_catch] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_do] = ACTIONS(3065), + [anon_sym_new] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_PERCENT] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_EQ_GT] = ACTIONS(3067), + [anon_sym_QMARK_QMARK] = ACTIONS(3067), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_macro] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_extern] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_overload] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_class] = ACTIONS(3065), + [anon_sym_interface] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(3065), + [anon_sym_typedef] = ACTIONS(3065), + [anon_sym_function] = ACTIONS(3065), + [anon_sym_var] = ACTIONS(3065), + [aux_sym_integer_token1] = ACTIONS(3065), + [aux_sym_integer_token2] = ACTIONS(3067), + [aux_sym_float_token1] = ACTIONS(3065), + [aux_sym_float_token2] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [aux_sym_string_token1] = ACTIONS(3067), + [aux_sym_string_token3] = ACTIONS(3067), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3067), [sym__closing_brace_unmarker] = ACTIONS(3), }, [516] = { - [ts_builtin_sym_end] = ACTIONS(1822), - [sym_identifier] = ACTIONS(1820), - [anon_sym_POUND] = ACTIONS(1822), - [anon_sym_package] = ACTIONS(1820), - [anon_sym_import] = ACTIONS(1820), - [anon_sym_using] = ACTIONS(1820), - [anon_sym_throw] = ACTIONS(1820), - [anon_sym_LPAREN] = ACTIONS(1822), - [anon_sym_switch] = ACTIONS(1820), - [anon_sym_LBRACE] = ACTIONS(1822), - [anon_sym_cast] = ACTIONS(1820), - [anon_sym_DOLLARtype] = ACTIONS(1822), - [anon_sym_return] = ACTIONS(1820), - [anon_sym_untyped] = ACTIONS(1820), - [anon_sym_break] = ACTIONS(1820), - [anon_sym_continue] = ACTIONS(1820), - [anon_sym_LBRACK] = ACTIONS(1822), - [anon_sym_this] = ACTIONS(1820), - [anon_sym_AT] = ACTIONS(1820), - [anon_sym_AT_COLON] = ACTIONS(1822), - [anon_sym_if] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_TILDE] = ACTIONS(1822), - [anon_sym_BANG] = ACTIONS(1820), - [anon_sym_DASH] = ACTIONS(1820), - [anon_sym_PLUS_PLUS] = ACTIONS(1822), - [anon_sym_DASH_DASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1822), - [anon_sym_STAR] = ACTIONS(1822), - [anon_sym_SLASH] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1820), - [anon_sym_LT_LT] = ACTIONS(1822), - [anon_sym_GT_GT] = ACTIONS(1820), - [anon_sym_GT_GT_GT] = ACTIONS(1822), - [anon_sym_AMP] = ACTIONS(1820), - [anon_sym_PIPE] = ACTIONS(1820), - [anon_sym_CARET] = ACTIONS(1822), - [anon_sym_AMP_AMP] = ACTIONS(1822), - [anon_sym_PIPE_PIPE] = ACTIONS(1822), - [anon_sym_EQ_EQ] = ACTIONS(1822), - [anon_sym_BANG_EQ] = ACTIONS(1822), - [anon_sym_LT] = ACTIONS(1820), - [anon_sym_LT_EQ] = ACTIONS(1822), - [anon_sym_GT] = ACTIONS(1820), - [anon_sym_GT_EQ] = ACTIONS(1822), - [anon_sym_EQ_GT] = ACTIONS(1822), - [anon_sym_QMARK_QMARK] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1820), - [sym__rangeOperator] = ACTIONS(1822), - [anon_sym_null] = ACTIONS(1820), - [anon_sym_macro] = ACTIONS(1820), - [anon_sym_abstract] = ACTIONS(1820), - [anon_sym_static] = ACTIONS(1820), - [anon_sym_public] = ACTIONS(1820), - [anon_sym_private] = ACTIONS(1820), - [anon_sym_extern] = ACTIONS(1820), - [anon_sym_inline] = ACTIONS(1820), - [anon_sym_overload] = ACTIONS(1820), - [anon_sym_override] = ACTIONS(1820), - [anon_sym_final] = ACTIONS(1820), - [anon_sym_class] = ACTIONS(1820), - [anon_sym_interface] = ACTIONS(1820), - [anon_sym_typedef] = ACTIONS(1820), - [anon_sym_function] = ACTIONS(1820), - [anon_sym_var] = ACTIONS(1820), - [aux_sym_integer_token1] = ACTIONS(1820), - [aux_sym_integer_token2] = ACTIONS(1822), - [aux_sym_float_token1] = ACTIONS(1820), - [aux_sym_float_token2] = ACTIONS(1822), - [anon_sym_true] = ACTIONS(1820), - [anon_sym_false] = ACTIONS(1820), - [aux_sym_string_token1] = ACTIONS(1822), - [aux_sym_string_token3] = ACTIONS(1822), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3071), + [anon_sym_package] = ACTIONS(3069), + [anon_sym_import] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_using] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3071), + [anon_sym_switch] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3071), + [anon_sym_case] = ACTIONS(3069), + [anon_sym_default] = ACTIONS(3069), + [anon_sym_cast] = ACTIONS(3069), + [anon_sym_DOLLARtype] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_untyped] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_AT] = ACTIONS(3069), + [anon_sym_AT_COLON] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_catch] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_DASH_DASH] = ACTIONS(3071), + [anon_sym_PERCENT] = ACTIONS(3071), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP_AMP] = ACTIONS(3071), + [anon_sym_PIPE_PIPE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3071), + [anon_sym_EQ_GT] = ACTIONS(3071), + [anon_sym_QMARK_QMARK] = ACTIONS(3071), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_macro] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_extern] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_overload] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_class] = ACTIONS(3069), + [anon_sym_interface] = ACTIONS(3069), + [anon_sym_enum] = ACTIONS(3069), + [anon_sym_typedef] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_var] = ACTIONS(3069), + [aux_sym_integer_token1] = ACTIONS(3069), + [aux_sym_integer_token2] = ACTIONS(3071), + [aux_sym_float_token1] = ACTIONS(3069), + [aux_sym_float_token2] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [aux_sym_string_token1] = ACTIONS(3071), + [aux_sym_string_token3] = ACTIONS(3071), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3071), [sym__closing_brace_unmarker] = ACTIONS(3), }, [517] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1964), - [anon_sym_POUND] = ACTIONS(1966), - [anon_sym_package] = ACTIONS(1964), - [anon_sym_import] = ACTIONS(1964), - [anon_sym_using] = ACTIONS(1964), - [anon_sym_throw] = ACTIONS(1964), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_switch] = ACTIONS(1964), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_cast] = ACTIONS(1964), - [anon_sym_DOLLARtype] = ACTIONS(1966), - [anon_sym_return] = ACTIONS(1964), - [anon_sym_untyped] = ACTIONS(1964), - [anon_sym_break] = ACTIONS(1964), - [anon_sym_continue] = ACTIONS(1964), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_this] = ACTIONS(1964), - [anon_sym_AT] = ACTIONS(1964), - [anon_sym_AT_COLON] = ACTIONS(1966), - [anon_sym_if] = ACTIONS(1964), - [anon_sym_new] = ACTIONS(1964), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_BANG] = ACTIONS(1964), - [anon_sym_DASH] = ACTIONS(1964), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_STAR] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1964), - [anon_sym_PLUS] = ACTIONS(1964), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1964), - [anon_sym_GT_GT_GT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym_AMP_AMP] = ACTIONS(1966), - [anon_sym_PIPE_PIPE] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1966), - [anon_sym_BANG_EQ] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_GT] = ACTIONS(1964), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_EQ_GT] = ACTIONS(1966), - [anon_sym_QMARK_QMARK] = ACTIONS(1966), - [anon_sym_EQ] = ACTIONS(1964), - [sym__rangeOperator] = ACTIONS(1966), - [anon_sym_null] = ACTIONS(1964), - [anon_sym_macro] = ACTIONS(1964), - [anon_sym_abstract] = ACTIONS(1964), - [anon_sym_static] = ACTIONS(1964), - [anon_sym_public] = ACTIONS(1964), - [anon_sym_private] = ACTIONS(1964), - [anon_sym_extern] = ACTIONS(1964), - [anon_sym_inline] = ACTIONS(1964), - [anon_sym_overload] = ACTIONS(1964), - [anon_sym_override] = ACTIONS(1964), - [anon_sym_final] = ACTIONS(1964), - [anon_sym_class] = ACTIONS(1964), - [anon_sym_interface] = ACTIONS(1964), - [anon_sym_typedef] = ACTIONS(1964), - [anon_sym_function] = ACTIONS(1964), - [anon_sym_var] = ACTIONS(1964), - [aux_sym_integer_token1] = ACTIONS(1964), - [aux_sym_integer_token2] = ACTIONS(1966), - [aux_sym_float_token1] = ACTIONS(1964), - [aux_sym_float_token2] = ACTIONS(1966), - [anon_sym_true] = ACTIONS(1964), - [anon_sym_false] = ACTIONS(1964), - [aux_sym_string_token1] = ACTIONS(1966), - [aux_sym_string_token3] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3075), + [anon_sym_package] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_case] = ACTIONS(3073), + [anon_sym_default] = ACTIONS(3073), + [anon_sym_cast] = ACTIONS(3073), + [anon_sym_DOLLARtype] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_untyped] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_AT] = ACTIONS(3073), + [anon_sym_AT_COLON] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_catch] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PERCENT] = ACTIONS(3075), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3075), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_PIPE_PIPE] = ACTIONS(3075), + [anon_sym_EQ_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3075), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3075), + [anon_sym_EQ_GT] = ACTIONS(3075), + [anon_sym_QMARK_QMARK] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_macro] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_overload] = ACTIONS(3073), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_interface] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_var] = ACTIONS(3073), + [aux_sym_integer_token1] = ACTIONS(3073), + [aux_sym_integer_token2] = ACTIONS(3075), + [aux_sym_float_token1] = ACTIONS(3073), + [aux_sym_float_token2] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [aux_sym_string_token1] = ACTIONS(3075), + [aux_sym_string_token3] = ACTIONS(3075), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3075), [sym__closing_brace_unmarker] = ACTIONS(3), }, [518] = { - [ts_builtin_sym_end] = ACTIONS(1592), - [sym_identifier] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_package] = ACTIONS(1590), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_using] = ACTIONS(1590), - [anon_sym_throw] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_cast] = ACTIONS(1590), - [anon_sym_DOLLARtype] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_this] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_AT_COLON] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1592), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym_PLUS] = ACTIONS(1590), - [anon_sym_LT_LT] = ACTIONS(1592), - [anon_sym_GT_GT] = ACTIONS(1590), - [anon_sym_GT_GT_GT] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1592), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_LT_EQ] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_GT_EQ] = ACTIONS(1592), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_QMARK_QMARK] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1590), - [sym__rangeOperator] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_macro] = ACTIONS(1590), - [anon_sym_abstract] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_private] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_overload] = ACTIONS(1590), - [anon_sym_override] = ACTIONS(1590), - [anon_sym_final] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_interface] = ACTIONS(1590), - [anon_sym_typedef] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(1590), - [anon_sym_var] = ACTIONS(1590), - [aux_sym_integer_token1] = ACTIONS(1590), - [aux_sym_integer_token2] = ACTIONS(1592), - [aux_sym_float_token1] = ACTIONS(1590), - [aux_sym_float_token2] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [aux_sym_string_token1] = ACTIONS(1592), - [aux_sym_string_token3] = ACTIONS(1592), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3077), + [anon_sym_POUND] = ACTIONS(3079), + [anon_sym_package] = ACTIONS(3077), + [anon_sym_import] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(3079), + [anon_sym_case] = ACTIONS(3077), + [anon_sym_default] = ACTIONS(3077), + [anon_sym_cast] = ACTIONS(3077), + [anon_sym_DOLLARtype] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_untyped] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(3077), + [anon_sym_AT_COLON] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_catch] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [anon_sym_PERCENT] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_LT_LT] = ACTIONS(3079), + [anon_sym_GT_GT] = ACTIONS(3077), + [anon_sym_GT_GT_GT] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_PIPE] = ACTIONS(3077), + [anon_sym_CARET] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3077), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_EQ_GT] = ACTIONS(3079), + [anon_sym_QMARK_QMARK] = ACTIONS(3079), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_macro] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_static] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_extern] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_overload] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_class] = ACTIONS(3077), + [anon_sym_interface] = ACTIONS(3077), + [anon_sym_enum] = ACTIONS(3077), + [anon_sym_typedef] = ACTIONS(3077), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_var] = ACTIONS(3077), + [aux_sym_integer_token1] = ACTIONS(3077), + [aux_sym_integer_token2] = ACTIONS(3079), + [aux_sym_float_token1] = ACTIONS(3077), + [aux_sym_float_token2] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [aux_sym_string_token1] = ACTIONS(3079), + [aux_sym_string_token3] = ACTIONS(3079), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3079), [sym__closing_brace_unmarker] = ACTIONS(3), }, [519] = { - [ts_builtin_sym_end] = ACTIONS(1786), - [sym_identifier] = ACTIONS(1784), - [anon_sym_POUND] = ACTIONS(1786), - [anon_sym_package] = ACTIONS(1784), - [anon_sym_import] = ACTIONS(1784), - [anon_sym_using] = ACTIONS(1784), - [anon_sym_throw] = ACTIONS(1784), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_switch] = ACTIONS(1784), - [anon_sym_LBRACE] = ACTIONS(1786), - [anon_sym_cast] = ACTIONS(1784), - [anon_sym_DOLLARtype] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1784), - [anon_sym_untyped] = ACTIONS(1784), - [anon_sym_break] = ACTIONS(1784), - [anon_sym_continue] = ACTIONS(1784), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_this] = ACTIONS(1784), - [anon_sym_AT] = ACTIONS(1784), - [anon_sym_AT_COLON] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1784), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_TILDE] = ACTIONS(1786), - [anon_sym_BANG] = ACTIONS(1784), - [anon_sym_DASH] = ACTIONS(1784), - [anon_sym_PLUS_PLUS] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1786), - [anon_sym_PERCENT] = ACTIONS(1786), - [anon_sym_STAR] = ACTIONS(1786), - [anon_sym_SLASH] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1784), - [anon_sym_LT_LT] = ACTIONS(1786), - [anon_sym_GT_GT] = ACTIONS(1784), - [anon_sym_GT_GT_GT] = ACTIONS(1786), - [anon_sym_AMP] = ACTIONS(1784), - [anon_sym_PIPE] = ACTIONS(1784), - [anon_sym_CARET] = ACTIONS(1786), - [anon_sym_AMP_AMP] = ACTIONS(1786), - [anon_sym_PIPE_PIPE] = ACTIONS(1786), - [anon_sym_EQ_EQ] = ACTIONS(1786), - [anon_sym_BANG_EQ] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1784), - [anon_sym_LT_EQ] = ACTIONS(1786), - [anon_sym_GT] = ACTIONS(1784), - [anon_sym_GT_EQ] = ACTIONS(1786), - [anon_sym_EQ_GT] = ACTIONS(1786), - [anon_sym_QMARK_QMARK] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(1784), - [sym__rangeOperator] = ACTIONS(1786), - [anon_sym_null] = ACTIONS(1784), - [anon_sym_macro] = ACTIONS(1784), - [anon_sym_abstract] = ACTIONS(1784), - [anon_sym_static] = ACTIONS(1784), - [anon_sym_public] = ACTIONS(1784), - [anon_sym_private] = ACTIONS(1784), - [anon_sym_extern] = ACTIONS(1784), - [anon_sym_inline] = ACTIONS(1784), - [anon_sym_overload] = ACTIONS(1784), - [anon_sym_override] = ACTIONS(1784), - [anon_sym_final] = ACTIONS(1784), - [anon_sym_class] = ACTIONS(1784), - [anon_sym_interface] = ACTIONS(1784), - [anon_sym_typedef] = ACTIONS(1784), - [anon_sym_function] = ACTIONS(1784), - [anon_sym_var] = ACTIONS(1784), - [aux_sym_integer_token1] = ACTIONS(1784), - [aux_sym_integer_token2] = ACTIONS(1786), - [aux_sym_float_token1] = ACTIONS(1784), - [aux_sym_float_token2] = ACTIONS(1786), - [anon_sym_true] = ACTIONS(1784), - [anon_sym_false] = ACTIONS(1784), - [aux_sym_string_token1] = ACTIONS(1786), - [aux_sym_string_token3] = ACTIONS(1786), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3081), + [anon_sym_POUND] = ACTIONS(3083), + [anon_sym_package] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_case] = ACTIONS(3081), + [anon_sym_default] = ACTIONS(3081), + [anon_sym_cast] = ACTIONS(3081), + [anon_sym_DOLLARtype] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_untyped] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_this] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_AT_COLON] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_catch] = ACTIONS(3081), + [anon_sym_else] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3083), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_LT_LT] = ACTIONS(3083), + [anon_sym_GT_GT] = ACTIONS(3081), + [anon_sym_GT_GT_GT] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_CARET] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_LT_EQ] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_EQ] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(3083), + [anon_sym_QMARK_QMARK] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_macro] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_extern] = ACTIONS(3081), + [anon_sym_inline] = ACTIONS(3081), + [anon_sym_overload] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_final] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [aux_sym_integer_token1] = ACTIONS(3081), + [aux_sym_integer_token2] = ACTIONS(3083), + [aux_sym_float_token1] = ACTIONS(3081), + [aux_sym_float_token2] = ACTIONS(3083), + [anon_sym_true] = ACTIONS(3081), + [anon_sym_false] = ACTIONS(3081), + [aux_sym_string_token1] = ACTIONS(3083), + [aux_sym_string_token3] = ACTIONS(3083), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3083), [sym__closing_brace_unmarker] = ACTIONS(3), }, [520] = { - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2336), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_package] = ACTIONS(2336), - [anon_sym_import] = ACTIONS(2336), - [anon_sym_using] = ACTIONS(2336), - [anon_sym_throw] = ACTIONS(2336), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_switch] = ACTIONS(2336), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_cast] = ACTIONS(2336), - [anon_sym_DOLLARtype] = ACTIONS(2338), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_untyped] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_this] = ACTIONS(2336), - [anon_sym_AT] = ACTIONS(2336), - [anon_sym_AT_COLON] = ACTIONS(2338), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_new] = ACTIONS(2336), - [anon_sym_TILDE] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2336), - [anon_sym_PLUS_PLUS] = ACTIONS(2338), - [anon_sym_DASH_DASH] = ACTIONS(2338), - [anon_sym_PERCENT] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_SLASH] = ACTIONS(2336), - [anon_sym_PLUS] = ACTIONS(2336), - [anon_sym_LT_LT] = ACTIONS(2338), - [anon_sym_GT_GT] = ACTIONS(2336), - [anon_sym_GT_GT_GT] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2336), - [anon_sym_PIPE] = ACTIONS(2336), - [anon_sym_CARET] = ACTIONS(2338), - [anon_sym_AMP_AMP] = ACTIONS(2338), - [anon_sym_PIPE_PIPE] = ACTIONS(2338), - [anon_sym_EQ_EQ] = ACTIONS(2338), - [anon_sym_BANG_EQ] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2336), - [anon_sym_LT_EQ] = ACTIONS(2338), - [anon_sym_GT] = ACTIONS(2336), - [anon_sym_GT_EQ] = ACTIONS(2338), - [anon_sym_EQ_GT] = ACTIONS(2338), - [anon_sym_QMARK_QMARK] = ACTIONS(2338), - [anon_sym_EQ] = ACTIONS(2336), - [sym__rangeOperator] = ACTIONS(2338), - [anon_sym_null] = ACTIONS(2336), - [anon_sym_macro] = ACTIONS(2336), - [anon_sym_abstract] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_public] = ACTIONS(2336), - [anon_sym_private] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_inline] = ACTIONS(2336), - [anon_sym_overload] = ACTIONS(2336), - [anon_sym_override] = ACTIONS(2336), - [anon_sym_final] = ACTIONS(2336), - [anon_sym_class] = ACTIONS(2336), - [anon_sym_interface] = ACTIONS(2336), - [anon_sym_typedef] = ACTIONS(2336), - [anon_sym_function] = ACTIONS(2336), - [anon_sym_var] = ACTIONS(2336), - [aux_sym_integer_token1] = ACTIONS(2336), - [aux_sym_integer_token2] = ACTIONS(2338), - [aux_sym_float_token1] = ACTIONS(2336), - [aux_sym_float_token2] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [aux_sym_string_token1] = ACTIONS(2338), - [aux_sym_string_token3] = ACTIONS(2338), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3085), + [anon_sym_POUND] = ACTIONS(3087), + [anon_sym_package] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_case] = ACTIONS(3085), + [anon_sym_default] = ACTIONS(3085), + [anon_sym_cast] = ACTIONS(3085), + [anon_sym_DOLLARtype] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_untyped] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_this] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_AT_COLON] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_catch] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_LT_LT] = ACTIONS(3087), + [anon_sym_GT_GT] = ACTIONS(3085), + [anon_sym_GT_GT_GT] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_CARET] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3087), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_LT_EQ] = ACTIONS(3087), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_EQ] = ACTIONS(3087), + [anon_sym_EQ_GT] = ACTIONS(3087), + [anon_sym_QMARK_QMARK] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_macro] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_public] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_overload] = ACTIONS(3085), + [anon_sym_override] = ACTIONS(3085), + [anon_sym_final] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_interface] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_var] = ACTIONS(3085), + [aux_sym_integer_token1] = ACTIONS(3085), + [aux_sym_integer_token2] = ACTIONS(3087), + [aux_sym_float_token1] = ACTIONS(3085), + [aux_sym_float_token2] = ACTIONS(3087), + [anon_sym_true] = ACTIONS(3085), + [anon_sym_false] = ACTIONS(3085), + [aux_sym_string_token1] = ACTIONS(3087), + [aux_sym_string_token3] = ACTIONS(3087), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3087), [sym__closing_brace_unmarker] = ACTIONS(3), }, [521] = { - [ts_builtin_sym_end] = ACTIONS(2026), - [sym_identifier] = ACTIONS(2024), - [anon_sym_POUND] = ACTIONS(2026), - [anon_sym_package] = ACTIONS(2024), - [anon_sym_import] = ACTIONS(2024), - [anon_sym_using] = ACTIONS(2024), - [anon_sym_throw] = ACTIONS(2024), - [anon_sym_LPAREN] = ACTIONS(2026), - [anon_sym_switch] = ACTIONS(2024), - [anon_sym_LBRACE] = ACTIONS(2026), - [anon_sym_cast] = ACTIONS(2024), - [anon_sym_DOLLARtype] = ACTIONS(2026), - [anon_sym_return] = ACTIONS(2024), - [anon_sym_untyped] = ACTIONS(2024), - [anon_sym_break] = ACTIONS(2024), - [anon_sym_continue] = ACTIONS(2024), - [anon_sym_LBRACK] = ACTIONS(2026), - [anon_sym_this] = ACTIONS(2024), - [anon_sym_AT] = ACTIONS(2024), - [anon_sym_AT_COLON] = ACTIONS(2026), - [anon_sym_if] = ACTIONS(2024), - [anon_sym_new] = ACTIONS(2024), - [anon_sym_TILDE] = ACTIONS(2026), - [anon_sym_BANG] = ACTIONS(2024), - [anon_sym_DASH] = ACTIONS(2024), - [anon_sym_PLUS_PLUS] = ACTIONS(2026), - [anon_sym_DASH_DASH] = ACTIONS(2026), - [anon_sym_PERCENT] = ACTIONS(2026), - [anon_sym_STAR] = ACTIONS(2026), - [anon_sym_SLASH] = ACTIONS(2024), - [anon_sym_PLUS] = ACTIONS(2024), - [anon_sym_LT_LT] = ACTIONS(2026), - [anon_sym_GT_GT] = ACTIONS(2024), - [anon_sym_GT_GT_GT] = ACTIONS(2026), - [anon_sym_AMP] = ACTIONS(2024), - [anon_sym_PIPE] = ACTIONS(2024), - [anon_sym_CARET] = ACTIONS(2026), - [anon_sym_AMP_AMP] = ACTIONS(2026), - [anon_sym_PIPE_PIPE] = ACTIONS(2026), - [anon_sym_EQ_EQ] = ACTIONS(2026), - [anon_sym_BANG_EQ] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2024), - [anon_sym_LT_EQ] = ACTIONS(2026), - [anon_sym_GT] = ACTIONS(2024), - [anon_sym_GT_EQ] = ACTIONS(2026), - [anon_sym_EQ_GT] = ACTIONS(2026), - [anon_sym_QMARK_QMARK] = ACTIONS(2026), - [anon_sym_EQ] = ACTIONS(2024), - [sym__rangeOperator] = ACTIONS(2026), - [anon_sym_null] = ACTIONS(2024), - [anon_sym_macro] = ACTIONS(2024), - [anon_sym_abstract] = ACTIONS(2024), - [anon_sym_static] = ACTIONS(2024), - [anon_sym_public] = ACTIONS(2024), - [anon_sym_private] = ACTIONS(2024), - [anon_sym_extern] = ACTIONS(2024), - [anon_sym_inline] = ACTIONS(2024), - [anon_sym_overload] = ACTIONS(2024), - [anon_sym_override] = ACTIONS(2024), - [anon_sym_final] = ACTIONS(2024), - [anon_sym_class] = ACTIONS(2024), - [anon_sym_interface] = ACTIONS(2024), - [anon_sym_typedef] = ACTIONS(2024), - [anon_sym_function] = ACTIONS(2024), - [anon_sym_var] = ACTIONS(2024), - [aux_sym_integer_token1] = ACTIONS(2024), - [aux_sym_integer_token2] = ACTIONS(2026), - [aux_sym_float_token1] = ACTIONS(2024), - [aux_sym_float_token2] = ACTIONS(2026), - [anon_sym_true] = ACTIONS(2024), - [anon_sym_false] = ACTIONS(2024), - [aux_sym_string_token1] = ACTIONS(2026), - [aux_sym_string_token3] = ACTIONS(2026), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3089), + [anon_sym_POUND] = ACTIONS(3091), + [anon_sym_package] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_case] = ACTIONS(3089), + [anon_sym_default] = ACTIONS(3089), + [anon_sym_cast] = ACTIONS(3089), + [anon_sym_DOLLARtype] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_untyped] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_this] = ACTIONS(3089), + [anon_sym_AT] = ACTIONS(3089), + [anon_sym_AT_COLON] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_catch] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_SLASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_GT_GT_GT] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_CARET] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_EQ_GT] = ACTIONS(3091), + [anon_sym_QMARK_QMARK] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), + [anon_sym_null] = ACTIONS(3089), + [anon_sym_macro] = ACTIONS(3089), + [anon_sym_abstract] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_public] = ACTIONS(3089), + [anon_sym_private] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_overload] = ACTIONS(3089), + [anon_sym_override] = ACTIONS(3089), + [anon_sym_final] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_interface] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_function] = ACTIONS(3089), + [anon_sym_var] = ACTIONS(3089), + [aux_sym_integer_token1] = ACTIONS(3089), + [aux_sym_integer_token2] = ACTIONS(3091), + [aux_sym_float_token1] = ACTIONS(3089), + [aux_sym_float_token2] = ACTIONS(3091), + [anon_sym_true] = ACTIONS(3089), + [anon_sym_false] = ACTIONS(3089), + [aux_sym_string_token1] = ACTIONS(3091), + [aux_sym_string_token3] = ACTIONS(3091), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3091), [sym__closing_brace_unmarker] = ACTIONS(3), }, [522] = { - [ts_builtin_sym_end] = ACTIONS(1882), - [sym_identifier] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_package] = ACTIONS(1880), - [anon_sym_import] = ACTIONS(1880), - [anon_sym_using] = ACTIONS(1880), - [anon_sym_throw] = ACTIONS(1880), - [anon_sym_LPAREN] = ACTIONS(1882), - [anon_sym_switch] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1882), - [anon_sym_cast] = ACTIONS(1880), - [anon_sym_DOLLARtype] = ACTIONS(1882), - [anon_sym_return] = ACTIONS(1880), - [anon_sym_untyped] = ACTIONS(1880), - [anon_sym_break] = ACTIONS(1880), - [anon_sym_continue] = ACTIONS(1880), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_this] = ACTIONS(1880), - [anon_sym_AT] = ACTIONS(1880), - [anon_sym_AT_COLON] = ACTIONS(1882), - [anon_sym_if] = ACTIONS(1880), - [anon_sym_new] = ACTIONS(1880), - [anon_sym_TILDE] = ACTIONS(1882), - [anon_sym_BANG] = ACTIONS(1880), - [anon_sym_DASH] = ACTIONS(1880), - [anon_sym_PLUS_PLUS] = ACTIONS(1882), - [anon_sym_DASH_DASH] = ACTIONS(1882), - [anon_sym_PERCENT] = ACTIONS(1882), - [anon_sym_STAR] = ACTIONS(1882), - [anon_sym_SLASH] = ACTIONS(1880), - [anon_sym_PLUS] = ACTIONS(1880), - [anon_sym_LT_LT] = ACTIONS(1882), - [anon_sym_GT_GT] = ACTIONS(1880), - [anon_sym_GT_GT_GT] = ACTIONS(1882), - [anon_sym_AMP] = ACTIONS(1880), - [anon_sym_PIPE] = ACTIONS(1880), - [anon_sym_CARET] = ACTIONS(1882), - [anon_sym_AMP_AMP] = ACTIONS(1882), - [anon_sym_PIPE_PIPE] = ACTIONS(1882), - [anon_sym_EQ_EQ] = ACTIONS(1882), - [anon_sym_BANG_EQ] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1880), - [anon_sym_LT_EQ] = ACTIONS(1882), - [anon_sym_GT] = ACTIONS(1880), - [anon_sym_GT_EQ] = ACTIONS(1882), - [anon_sym_EQ_GT] = ACTIONS(1882), - [anon_sym_QMARK_QMARK] = ACTIONS(1882), - [anon_sym_EQ] = ACTIONS(1880), - [sym__rangeOperator] = ACTIONS(1882), - [anon_sym_null] = ACTIONS(1880), - [anon_sym_macro] = ACTIONS(1880), - [anon_sym_abstract] = ACTIONS(1880), - [anon_sym_static] = ACTIONS(1880), - [anon_sym_public] = ACTIONS(1880), - [anon_sym_private] = ACTIONS(1880), - [anon_sym_extern] = ACTIONS(1880), - [anon_sym_inline] = ACTIONS(1880), - [anon_sym_overload] = ACTIONS(1880), - [anon_sym_override] = ACTIONS(1880), - [anon_sym_final] = ACTIONS(1880), - [anon_sym_class] = ACTIONS(1880), - [anon_sym_interface] = ACTIONS(1880), - [anon_sym_typedef] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(1880), - [anon_sym_var] = ACTIONS(1880), - [aux_sym_integer_token1] = ACTIONS(1880), - [aux_sym_integer_token2] = ACTIONS(1882), - [aux_sym_float_token1] = ACTIONS(1880), - [aux_sym_float_token2] = ACTIONS(1882), - [anon_sym_true] = ACTIONS(1880), - [anon_sym_false] = ACTIONS(1880), - [aux_sym_string_token1] = ACTIONS(1882), - [aux_sym_string_token3] = ACTIONS(1882), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3093), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_package] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_case] = ACTIONS(3093), + [anon_sym_default] = ACTIONS(3093), + [anon_sym_cast] = ACTIONS(3093), + [anon_sym_DOLLARtype] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_untyped] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_this] = ACTIONS(3093), + [anon_sym_AT] = ACTIONS(3093), + [anon_sym_AT_COLON] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_catch] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_GT_GT_GT] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_LT_EQ] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_EQ_GT] = ACTIONS(3095), + [anon_sym_QMARK_QMARK] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_null] = ACTIONS(3093), + [anon_sym_macro] = ACTIONS(3093), + [anon_sym_abstract] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_public] = ACTIONS(3093), + [anon_sym_private] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_overload] = ACTIONS(3093), + [anon_sym_override] = ACTIONS(3093), + [anon_sym_final] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_interface] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3093), + [anon_sym_var] = ACTIONS(3093), + [aux_sym_integer_token1] = ACTIONS(3093), + [aux_sym_integer_token2] = ACTIONS(3095), + [aux_sym_float_token1] = ACTIONS(3093), + [aux_sym_float_token2] = ACTIONS(3095), + [anon_sym_true] = ACTIONS(3093), + [anon_sym_false] = ACTIONS(3093), + [aux_sym_string_token1] = ACTIONS(3095), + [aux_sym_string_token3] = ACTIONS(3095), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3095), [sym__closing_brace_unmarker] = ACTIONS(3), }, [523] = { - [ts_builtin_sym_end] = ACTIONS(1874), - [sym_identifier] = ACTIONS(1872), - [anon_sym_POUND] = ACTIONS(1874), - [anon_sym_package] = ACTIONS(1872), - [anon_sym_import] = ACTIONS(1872), - [anon_sym_using] = ACTIONS(1872), - [anon_sym_throw] = ACTIONS(1872), - [anon_sym_LPAREN] = ACTIONS(1874), - [anon_sym_switch] = ACTIONS(1872), - [anon_sym_LBRACE] = ACTIONS(1874), - [anon_sym_cast] = ACTIONS(1872), - [anon_sym_DOLLARtype] = ACTIONS(1874), - [anon_sym_return] = ACTIONS(1872), - [anon_sym_untyped] = ACTIONS(1872), - [anon_sym_break] = ACTIONS(1872), - [anon_sym_continue] = ACTIONS(1872), - [anon_sym_LBRACK] = ACTIONS(1874), - [anon_sym_this] = ACTIONS(1872), - [anon_sym_AT] = ACTIONS(1872), - [anon_sym_AT_COLON] = ACTIONS(1874), - [anon_sym_if] = ACTIONS(1872), - [anon_sym_new] = ACTIONS(1872), - [anon_sym_TILDE] = ACTIONS(1874), - [anon_sym_BANG] = ACTIONS(1872), - [anon_sym_DASH] = ACTIONS(1872), - [anon_sym_PLUS_PLUS] = ACTIONS(1874), - [anon_sym_DASH_DASH] = ACTIONS(1874), - [anon_sym_PERCENT] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1874), - [anon_sym_SLASH] = ACTIONS(1872), - [anon_sym_PLUS] = ACTIONS(1872), - [anon_sym_LT_LT] = ACTIONS(1874), - [anon_sym_GT_GT] = ACTIONS(1872), - [anon_sym_GT_GT_GT] = ACTIONS(1874), - [anon_sym_AMP] = ACTIONS(1872), - [anon_sym_PIPE] = ACTIONS(1872), - [anon_sym_CARET] = ACTIONS(1874), - [anon_sym_AMP_AMP] = ACTIONS(1874), - [anon_sym_PIPE_PIPE] = ACTIONS(1874), - [anon_sym_EQ_EQ] = ACTIONS(1874), - [anon_sym_BANG_EQ] = ACTIONS(1874), - [anon_sym_LT] = ACTIONS(1872), - [anon_sym_LT_EQ] = ACTIONS(1874), - [anon_sym_GT] = ACTIONS(1872), - [anon_sym_GT_EQ] = ACTIONS(1874), - [anon_sym_EQ_GT] = ACTIONS(1874), - [anon_sym_QMARK_QMARK] = ACTIONS(1874), - [anon_sym_EQ] = ACTIONS(1872), - [sym__rangeOperator] = ACTIONS(1874), - [anon_sym_null] = ACTIONS(1872), - [anon_sym_macro] = ACTIONS(1872), - [anon_sym_abstract] = ACTIONS(1872), - [anon_sym_static] = ACTIONS(1872), - [anon_sym_public] = ACTIONS(1872), - [anon_sym_private] = ACTIONS(1872), - [anon_sym_extern] = ACTIONS(1872), - [anon_sym_inline] = ACTIONS(1872), - [anon_sym_overload] = ACTIONS(1872), - [anon_sym_override] = ACTIONS(1872), - [anon_sym_final] = ACTIONS(1872), - [anon_sym_class] = ACTIONS(1872), - [anon_sym_interface] = ACTIONS(1872), - [anon_sym_typedef] = ACTIONS(1872), - [anon_sym_function] = ACTIONS(1872), - [anon_sym_var] = ACTIONS(1872), - [aux_sym_integer_token1] = ACTIONS(1872), - [aux_sym_integer_token2] = ACTIONS(1874), - [aux_sym_float_token1] = ACTIONS(1872), - [aux_sym_float_token2] = ACTIONS(1874), - [anon_sym_true] = ACTIONS(1872), - [anon_sym_false] = ACTIONS(1872), - [aux_sym_string_token1] = ACTIONS(1874), - [aux_sym_string_token3] = ACTIONS(1874), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3097), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_package] = ACTIONS(3097), + [anon_sym_import] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_case] = ACTIONS(3097), + [anon_sym_default] = ACTIONS(3097), + [anon_sym_cast] = ACTIONS(3097), + [anon_sym_DOLLARtype] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_untyped] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_this] = ACTIONS(3097), + [anon_sym_AT] = ACTIONS(3097), + [anon_sym_AT_COLON] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_catch] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_GT_GT_GT] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_PIPE_PIPE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_BANG_EQ] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_LT_EQ] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3099), + [anon_sym_EQ_GT] = ACTIONS(3099), + [anon_sym_QMARK_QMARK] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), + [anon_sym_null] = ACTIONS(3097), + [anon_sym_macro] = ACTIONS(3097), + [anon_sym_abstract] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_public] = ACTIONS(3097), + [anon_sym_private] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_overload] = ACTIONS(3097), + [anon_sym_override] = ACTIONS(3097), + [anon_sym_final] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_interface] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3097), + [anon_sym_var] = ACTIONS(3097), + [aux_sym_integer_token1] = ACTIONS(3097), + [aux_sym_integer_token2] = ACTIONS(3099), + [aux_sym_float_token1] = ACTIONS(3097), + [aux_sym_float_token2] = ACTIONS(3099), + [anon_sym_true] = ACTIONS(3097), + [anon_sym_false] = ACTIONS(3097), + [aux_sym_string_token1] = ACTIONS(3099), + [aux_sym_string_token3] = ACTIONS(3099), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3099), [sym__closing_brace_unmarker] = ACTIONS(3), }, [524] = { - [ts_builtin_sym_end] = ACTIONS(1894), - [sym_identifier] = ACTIONS(1892), - [anon_sym_POUND] = ACTIONS(1894), - [anon_sym_package] = ACTIONS(1892), - [anon_sym_import] = ACTIONS(1892), - [anon_sym_using] = ACTIONS(1892), - [anon_sym_throw] = ACTIONS(1892), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_switch] = ACTIONS(1892), - [anon_sym_LBRACE] = ACTIONS(1894), - [anon_sym_cast] = ACTIONS(1892), - [anon_sym_DOLLARtype] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1892), - [anon_sym_untyped] = ACTIONS(1892), - [anon_sym_break] = ACTIONS(1892), - [anon_sym_continue] = ACTIONS(1892), - [anon_sym_LBRACK] = ACTIONS(1894), - [anon_sym_this] = ACTIONS(1892), - [anon_sym_AT] = ACTIONS(1892), - [anon_sym_AT_COLON] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1892), - [anon_sym_new] = ACTIONS(1892), - [anon_sym_TILDE] = ACTIONS(1894), - [anon_sym_BANG] = ACTIONS(1892), - [anon_sym_DASH] = ACTIONS(1892), - [anon_sym_PLUS_PLUS] = ACTIONS(1894), - [anon_sym_DASH_DASH] = ACTIONS(1894), - [anon_sym_PERCENT] = ACTIONS(1894), - [anon_sym_STAR] = ACTIONS(1894), - [anon_sym_SLASH] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1892), - [anon_sym_LT_LT] = ACTIONS(1894), - [anon_sym_GT_GT] = ACTIONS(1892), - [anon_sym_GT_GT_GT] = ACTIONS(1894), - [anon_sym_AMP] = ACTIONS(1892), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_CARET] = ACTIONS(1894), - [anon_sym_AMP_AMP] = ACTIONS(1894), - [anon_sym_PIPE_PIPE] = ACTIONS(1894), - [anon_sym_EQ_EQ] = ACTIONS(1894), - [anon_sym_BANG_EQ] = ACTIONS(1894), - [anon_sym_LT] = ACTIONS(1892), - [anon_sym_LT_EQ] = ACTIONS(1894), - [anon_sym_GT] = ACTIONS(1892), - [anon_sym_GT_EQ] = ACTIONS(1894), - [anon_sym_EQ_GT] = ACTIONS(1894), - [anon_sym_QMARK_QMARK] = ACTIONS(1894), - [anon_sym_EQ] = ACTIONS(1892), - [sym__rangeOperator] = ACTIONS(1894), - [anon_sym_null] = ACTIONS(1892), - [anon_sym_macro] = ACTIONS(1892), - [anon_sym_abstract] = ACTIONS(1892), - [anon_sym_static] = ACTIONS(1892), - [anon_sym_public] = ACTIONS(1892), - [anon_sym_private] = ACTIONS(1892), - [anon_sym_extern] = ACTIONS(1892), - [anon_sym_inline] = ACTIONS(1892), - [anon_sym_overload] = ACTIONS(1892), - [anon_sym_override] = ACTIONS(1892), - [anon_sym_final] = ACTIONS(1892), - [anon_sym_class] = ACTIONS(1892), - [anon_sym_interface] = ACTIONS(1892), - [anon_sym_typedef] = ACTIONS(1892), - [anon_sym_function] = ACTIONS(1892), - [anon_sym_var] = ACTIONS(1892), - [aux_sym_integer_token1] = ACTIONS(1892), - [aux_sym_integer_token2] = ACTIONS(1894), - [aux_sym_float_token1] = ACTIONS(1892), - [aux_sym_float_token2] = ACTIONS(1894), - [anon_sym_true] = ACTIONS(1892), - [anon_sym_false] = ACTIONS(1892), - [aux_sym_string_token1] = ACTIONS(1894), - [aux_sym_string_token3] = ACTIONS(1894), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3101), + [anon_sym_POUND] = ACTIONS(3103), + [anon_sym_package] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_case] = ACTIONS(3101), + [anon_sym_default] = ACTIONS(3101), + [anon_sym_cast] = ACTIONS(3101), + [anon_sym_DOLLARtype] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_untyped] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_AT_COLON] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_catch] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_LT_LT] = ACTIONS(3103), + [anon_sym_GT_GT] = ACTIONS(3101), + [anon_sym_GT_GT_GT] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_EQ_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_LT_EQ] = ACTIONS(3103), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_EQ] = ACTIONS(3103), + [anon_sym_EQ_GT] = ACTIONS(3103), + [anon_sym_QMARK_QMARK] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_macro] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_overload] = ACTIONS(3101), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_var] = ACTIONS(3101), + [aux_sym_integer_token1] = ACTIONS(3101), + [aux_sym_integer_token2] = ACTIONS(3103), + [aux_sym_float_token1] = ACTIONS(3101), + [aux_sym_float_token2] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [aux_sym_string_token1] = ACTIONS(3103), + [aux_sym_string_token3] = ACTIONS(3103), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3103), [sym__closing_brace_unmarker] = ACTIONS(3), }, [525] = { - [ts_builtin_sym_end] = ACTIONS(1978), - [sym_identifier] = ACTIONS(1976), - [anon_sym_POUND] = ACTIONS(1978), - [anon_sym_package] = ACTIONS(1976), - [anon_sym_import] = ACTIONS(1976), - [anon_sym_using] = ACTIONS(1976), - [anon_sym_throw] = ACTIONS(1976), - [anon_sym_LPAREN] = ACTIONS(1978), - [anon_sym_switch] = ACTIONS(1976), - [anon_sym_LBRACE] = ACTIONS(1978), - [anon_sym_cast] = ACTIONS(1976), - [anon_sym_DOLLARtype] = ACTIONS(1978), - [anon_sym_return] = ACTIONS(1976), - [anon_sym_untyped] = ACTIONS(1976), - [anon_sym_break] = ACTIONS(1976), - [anon_sym_continue] = ACTIONS(1976), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_this] = ACTIONS(1976), - [anon_sym_AT] = ACTIONS(1976), - [anon_sym_AT_COLON] = ACTIONS(1978), - [anon_sym_if] = ACTIONS(1976), - [anon_sym_new] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1978), - [anon_sym_BANG] = ACTIONS(1976), - [anon_sym_DASH] = ACTIONS(1976), - [anon_sym_PLUS_PLUS] = ACTIONS(1978), - [anon_sym_DASH_DASH] = ACTIONS(1978), - [anon_sym_PERCENT] = ACTIONS(1978), - [anon_sym_STAR] = ACTIONS(1978), - [anon_sym_SLASH] = ACTIONS(1976), - [anon_sym_PLUS] = ACTIONS(1976), - [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), - [anon_sym_GT_GT_GT] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_CARET] = ACTIONS(1978), - [anon_sym_AMP_AMP] = ACTIONS(1978), - [anon_sym_PIPE_PIPE] = ACTIONS(1978), - [anon_sym_EQ_EQ] = ACTIONS(1978), - [anon_sym_BANG_EQ] = ACTIONS(1978), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_LT_EQ] = ACTIONS(1978), - [anon_sym_GT] = ACTIONS(1976), - [anon_sym_GT_EQ] = ACTIONS(1978), - [anon_sym_EQ_GT] = ACTIONS(1978), - [anon_sym_QMARK_QMARK] = ACTIONS(1978), - [anon_sym_EQ] = ACTIONS(1976), - [sym__rangeOperator] = ACTIONS(1978), - [anon_sym_null] = ACTIONS(1976), - [anon_sym_macro] = ACTIONS(1976), - [anon_sym_abstract] = ACTIONS(1976), - [anon_sym_static] = ACTIONS(1976), - [anon_sym_public] = ACTIONS(1976), - [anon_sym_private] = ACTIONS(1976), - [anon_sym_extern] = ACTIONS(1976), - [anon_sym_inline] = ACTIONS(1976), - [anon_sym_overload] = ACTIONS(1976), - [anon_sym_override] = ACTIONS(1976), - [anon_sym_final] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1976), - [anon_sym_interface] = ACTIONS(1976), - [anon_sym_typedef] = ACTIONS(1976), - [anon_sym_function] = ACTIONS(1976), - [anon_sym_var] = ACTIONS(1976), - [aux_sym_integer_token1] = ACTIONS(1976), - [aux_sym_integer_token2] = ACTIONS(1978), - [aux_sym_float_token1] = ACTIONS(1976), - [aux_sym_float_token2] = ACTIONS(1978), - [anon_sym_true] = ACTIONS(1976), - [anon_sym_false] = ACTIONS(1976), - [aux_sym_string_token1] = ACTIONS(1978), - [aux_sym_string_token3] = ACTIONS(1978), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3105), + [anon_sym_POUND] = ACTIONS(3107), + [anon_sym_package] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_case] = ACTIONS(3105), + [anon_sym_default] = ACTIONS(3105), + [anon_sym_cast] = ACTIONS(3105), + [anon_sym_DOLLARtype] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_untyped] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_AT_COLON] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_catch] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PERCENT] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3107), + [anon_sym_GT_GT] = ACTIONS(3105), + [anon_sym_GT_GT_GT] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_PIPE_PIPE] = ACTIONS(3107), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_EQ] = ACTIONS(3107), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_EQ] = ACTIONS(3107), + [anon_sym_EQ_GT] = ACTIONS(3107), + [anon_sym_QMARK_QMARK] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(3105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_macro] = ACTIONS(3105), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_overload] = ACTIONS(3105), + [anon_sym_override] = ACTIONS(3105), + [anon_sym_final] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_interface] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3105), + [aux_sym_integer_token1] = ACTIONS(3105), + [aux_sym_integer_token2] = ACTIONS(3107), + [aux_sym_float_token1] = ACTIONS(3105), + [aux_sym_float_token2] = ACTIONS(3107), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), + [aux_sym_string_token1] = ACTIONS(3107), + [aux_sym_string_token3] = ACTIONS(3107), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3107), [sym__closing_brace_unmarker] = ACTIONS(3), }, [526] = { - [ts_builtin_sym_end] = ACTIONS(2074), - [sym_identifier] = ACTIONS(2072), - [anon_sym_POUND] = ACTIONS(2074), - [anon_sym_package] = ACTIONS(2072), - [anon_sym_import] = ACTIONS(2072), - [anon_sym_using] = ACTIONS(2072), - [anon_sym_throw] = ACTIONS(2072), - [anon_sym_LPAREN] = ACTIONS(2074), - [anon_sym_switch] = ACTIONS(2072), - [anon_sym_LBRACE] = ACTIONS(2074), - [anon_sym_cast] = ACTIONS(2072), - [anon_sym_DOLLARtype] = ACTIONS(2074), - [anon_sym_return] = ACTIONS(2072), - [anon_sym_untyped] = ACTIONS(2072), - [anon_sym_break] = ACTIONS(2072), - [anon_sym_continue] = ACTIONS(2072), - [anon_sym_LBRACK] = ACTIONS(2074), - [anon_sym_this] = ACTIONS(2072), - [anon_sym_AT] = ACTIONS(2072), - [anon_sym_AT_COLON] = ACTIONS(2074), - [anon_sym_if] = ACTIONS(2072), - [anon_sym_new] = ACTIONS(2072), - [anon_sym_TILDE] = ACTIONS(2074), - [anon_sym_BANG] = ACTIONS(2072), - [anon_sym_DASH] = ACTIONS(2072), - [anon_sym_PLUS_PLUS] = ACTIONS(2074), - [anon_sym_DASH_DASH] = ACTIONS(2074), - [anon_sym_PERCENT] = ACTIONS(2074), - [anon_sym_STAR] = ACTIONS(2074), - [anon_sym_SLASH] = ACTIONS(2072), - [anon_sym_PLUS] = ACTIONS(2072), - [anon_sym_LT_LT] = ACTIONS(2074), - [anon_sym_GT_GT] = ACTIONS(2072), - [anon_sym_GT_GT_GT] = ACTIONS(2074), - [anon_sym_AMP] = ACTIONS(2072), - [anon_sym_PIPE] = ACTIONS(2072), - [anon_sym_CARET] = ACTIONS(2074), - [anon_sym_AMP_AMP] = ACTIONS(2074), - [anon_sym_PIPE_PIPE] = ACTIONS(2074), - [anon_sym_EQ_EQ] = ACTIONS(2074), - [anon_sym_BANG_EQ] = ACTIONS(2074), - [anon_sym_LT] = ACTIONS(2072), - [anon_sym_LT_EQ] = ACTIONS(2074), - [anon_sym_GT] = ACTIONS(2072), - [anon_sym_GT_EQ] = ACTIONS(2074), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_QMARK_QMARK] = ACTIONS(2074), - [anon_sym_EQ] = ACTIONS(2072), - [sym__rangeOperator] = ACTIONS(2074), - [anon_sym_null] = ACTIONS(2072), - [anon_sym_macro] = ACTIONS(2072), - [anon_sym_abstract] = ACTIONS(2072), - [anon_sym_static] = ACTIONS(2072), - [anon_sym_public] = ACTIONS(2072), - [anon_sym_private] = ACTIONS(2072), - [anon_sym_extern] = ACTIONS(2072), - [anon_sym_inline] = ACTIONS(2072), - [anon_sym_overload] = ACTIONS(2072), - [anon_sym_override] = ACTIONS(2072), - [anon_sym_final] = ACTIONS(2072), - [anon_sym_class] = ACTIONS(2072), - [anon_sym_interface] = ACTIONS(2072), - [anon_sym_typedef] = ACTIONS(2072), - [anon_sym_function] = ACTIONS(2072), - [anon_sym_var] = ACTIONS(2072), - [aux_sym_integer_token1] = ACTIONS(2072), - [aux_sym_integer_token2] = ACTIONS(2074), - [aux_sym_float_token1] = ACTIONS(2072), - [aux_sym_float_token2] = ACTIONS(2074), - [anon_sym_true] = ACTIONS(2072), - [anon_sym_false] = ACTIONS(2072), - [aux_sym_string_token1] = ACTIONS(2074), - [aux_sym_string_token3] = ACTIONS(2074), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3109), + [anon_sym_POUND] = ACTIONS(3111), + [anon_sym_package] = ACTIONS(3109), + [anon_sym_import] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_case] = ACTIONS(3109), + [anon_sym_default] = ACTIONS(3109), + [anon_sym_cast] = ACTIONS(3109), + [anon_sym_DOLLARtype] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_untyped] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_this] = ACTIONS(3109), + [anon_sym_AT] = ACTIONS(3109), + [anon_sym_AT_COLON] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_catch] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PERCENT] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(3109), + [anon_sym_GT_GT_GT] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_CARET] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_PIPE_PIPE] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3111), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3111), + [anon_sym_EQ_GT] = ACTIONS(3111), + [anon_sym_QMARK_QMARK] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_macro] = ACTIONS(3109), + [anon_sym_abstract] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_private] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_overload] = ACTIONS(3109), + [anon_sym_override] = ACTIONS(3109), + [anon_sym_final] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_interface] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_var] = ACTIONS(3109), + [aux_sym_integer_token1] = ACTIONS(3109), + [aux_sym_integer_token2] = ACTIONS(3111), + [aux_sym_float_token1] = ACTIONS(3109), + [aux_sym_float_token2] = ACTIONS(3111), + [anon_sym_true] = ACTIONS(3109), + [anon_sym_false] = ACTIONS(3109), + [aux_sym_string_token1] = ACTIONS(3111), + [aux_sym_string_token3] = ACTIONS(3111), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3111), [sym__closing_brace_unmarker] = ACTIONS(3), }, [527] = { - [ts_builtin_sym_end] = ACTIONS(1754), - [sym_identifier] = ACTIONS(1752), - [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_package] = ACTIONS(1752), - [anon_sym_import] = ACTIONS(1752), - [anon_sym_using] = ACTIONS(1752), - [anon_sym_throw] = ACTIONS(1752), - [anon_sym_LPAREN] = ACTIONS(1754), - [anon_sym_switch] = ACTIONS(1752), - [anon_sym_LBRACE] = ACTIONS(1754), - [anon_sym_cast] = ACTIONS(1752), - [anon_sym_DOLLARtype] = ACTIONS(1754), - [anon_sym_return] = ACTIONS(1752), - [anon_sym_untyped] = ACTIONS(1752), - [anon_sym_break] = ACTIONS(1752), - [anon_sym_continue] = ACTIONS(1752), - [anon_sym_LBRACK] = ACTIONS(1754), - [anon_sym_this] = ACTIONS(1752), - [anon_sym_AT] = ACTIONS(1752), - [anon_sym_AT_COLON] = ACTIONS(1754), - [anon_sym_if] = ACTIONS(1752), - [anon_sym_new] = ACTIONS(1752), - [anon_sym_TILDE] = ACTIONS(1754), - [anon_sym_BANG] = ACTIONS(1752), - [anon_sym_DASH] = ACTIONS(1752), - [anon_sym_PLUS_PLUS] = ACTIONS(1754), - [anon_sym_DASH_DASH] = ACTIONS(1754), - [anon_sym_PERCENT] = ACTIONS(1754), - [anon_sym_STAR] = ACTIONS(1754), - [anon_sym_SLASH] = ACTIONS(1752), - [anon_sym_PLUS] = ACTIONS(1752), - [anon_sym_LT_LT] = ACTIONS(1754), - [anon_sym_GT_GT] = ACTIONS(1752), - [anon_sym_GT_GT_GT] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(1752), - [anon_sym_PIPE] = ACTIONS(1752), - [anon_sym_CARET] = ACTIONS(1754), - [anon_sym_AMP_AMP] = ACTIONS(1754), - [anon_sym_PIPE_PIPE] = ACTIONS(1754), - [anon_sym_EQ_EQ] = ACTIONS(1754), - [anon_sym_BANG_EQ] = ACTIONS(1754), - [anon_sym_LT] = ACTIONS(1752), - [anon_sym_LT_EQ] = ACTIONS(1754), - [anon_sym_GT] = ACTIONS(1752), - [anon_sym_GT_EQ] = ACTIONS(1754), - [anon_sym_EQ_GT] = ACTIONS(1754), - [anon_sym_QMARK_QMARK] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1752), - [sym__rangeOperator] = ACTIONS(1754), - [anon_sym_null] = ACTIONS(1752), - [anon_sym_macro] = ACTIONS(1752), - [anon_sym_abstract] = ACTIONS(1752), - [anon_sym_static] = ACTIONS(1752), - [anon_sym_public] = ACTIONS(1752), - [anon_sym_private] = ACTIONS(1752), - [anon_sym_extern] = ACTIONS(1752), - [anon_sym_inline] = ACTIONS(1752), - [anon_sym_overload] = ACTIONS(1752), - [anon_sym_override] = ACTIONS(1752), - [anon_sym_final] = ACTIONS(1752), - [anon_sym_class] = ACTIONS(1752), - [anon_sym_interface] = ACTIONS(1752), - [anon_sym_typedef] = ACTIONS(1752), - [anon_sym_function] = ACTIONS(1752), - [anon_sym_var] = ACTIONS(1752), - [aux_sym_integer_token1] = ACTIONS(1752), - [aux_sym_integer_token2] = ACTIONS(1754), - [aux_sym_float_token1] = ACTIONS(1752), - [aux_sym_float_token2] = ACTIONS(1754), - [anon_sym_true] = ACTIONS(1752), - [anon_sym_false] = ACTIONS(1752), - [aux_sym_string_token1] = ACTIONS(1754), - [aux_sym_string_token3] = ACTIONS(1754), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3113), + [anon_sym_POUND] = ACTIONS(3115), + [anon_sym_package] = ACTIONS(3113), + [anon_sym_import] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_case] = ACTIONS(3113), + [anon_sym_default] = ACTIONS(3113), + [anon_sym_cast] = ACTIONS(3113), + [anon_sym_DOLLARtype] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_untyped] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3113), + [anon_sym_AT_COLON] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_catch] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3115), + [anon_sym_GT_GT] = ACTIONS(3113), + [anon_sym_GT_GT_GT] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_EQ_GT] = ACTIONS(3115), + [anon_sym_QMARK_QMARK] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_macro] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_overload] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_interface] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_var] = ACTIONS(3113), + [aux_sym_integer_token1] = ACTIONS(3113), + [aux_sym_integer_token2] = ACTIONS(3115), + [aux_sym_float_token1] = ACTIONS(3113), + [aux_sym_float_token2] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [aux_sym_string_token1] = ACTIONS(3115), + [aux_sym_string_token3] = ACTIONS(3115), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3115), [sym__closing_brace_unmarker] = ACTIONS(3), }, [528] = { - [ts_builtin_sym_end] = ACTIONS(1682), - [sym_identifier] = ACTIONS(1680), - [anon_sym_POUND] = ACTIONS(1682), - [anon_sym_package] = ACTIONS(1680), - [anon_sym_import] = ACTIONS(1680), - [anon_sym_using] = ACTIONS(1680), - [anon_sym_throw] = ACTIONS(1680), - [anon_sym_LPAREN] = ACTIONS(1682), - [anon_sym_switch] = ACTIONS(1680), - [anon_sym_LBRACE] = ACTIONS(1682), - [anon_sym_cast] = ACTIONS(1680), - [anon_sym_DOLLARtype] = ACTIONS(1682), - [anon_sym_return] = ACTIONS(1680), - [anon_sym_untyped] = ACTIONS(1680), - [anon_sym_break] = ACTIONS(1680), - [anon_sym_continue] = ACTIONS(1680), - [anon_sym_LBRACK] = ACTIONS(1682), - [anon_sym_this] = ACTIONS(1680), - [anon_sym_AT] = ACTIONS(1680), - [anon_sym_AT_COLON] = ACTIONS(1682), - [anon_sym_if] = ACTIONS(1680), - [anon_sym_new] = ACTIONS(1680), - [anon_sym_TILDE] = ACTIONS(1682), - [anon_sym_BANG] = ACTIONS(1680), - [anon_sym_DASH] = ACTIONS(1680), - [anon_sym_PLUS_PLUS] = ACTIONS(1682), - [anon_sym_DASH_DASH] = ACTIONS(1682), - [anon_sym_PERCENT] = ACTIONS(1682), - [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_SLASH] = ACTIONS(1680), - [anon_sym_PLUS] = ACTIONS(1680), - [anon_sym_LT_LT] = ACTIONS(1682), - [anon_sym_GT_GT] = ACTIONS(1680), - [anon_sym_GT_GT_GT] = ACTIONS(1682), - [anon_sym_AMP] = ACTIONS(1680), - [anon_sym_PIPE] = ACTIONS(1680), - [anon_sym_CARET] = ACTIONS(1682), - [anon_sym_AMP_AMP] = ACTIONS(1682), - [anon_sym_PIPE_PIPE] = ACTIONS(1682), - [anon_sym_EQ_EQ] = ACTIONS(1682), - [anon_sym_BANG_EQ] = ACTIONS(1682), - [anon_sym_LT] = ACTIONS(1680), - [anon_sym_LT_EQ] = ACTIONS(1682), - [anon_sym_GT] = ACTIONS(1680), - [anon_sym_GT_EQ] = ACTIONS(1682), - [anon_sym_EQ_GT] = ACTIONS(1682), - [anon_sym_QMARK_QMARK] = ACTIONS(1682), - [anon_sym_EQ] = ACTIONS(1680), - [sym__rangeOperator] = ACTIONS(1682), - [anon_sym_null] = ACTIONS(1680), - [anon_sym_macro] = ACTIONS(1680), - [anon_sym_abstract] = ACTIONS(1680), - [anon_sym_static] = ACTIONS(1680), - [anon_sym_public] = ACTIONS(1680), - [anon_sym_private] = ACTIONS(1680), - [anon_sym_extern] = ACTIONS(1680), - [anon_sym_inline] = ACTIONS(1680), - [anon_sym_overload] = ACTIONS(1680), - [anon_sym_override] = ACTIONS(1680), - [anon_sym_final] = ACTIONS(1680), - [anon_sym_class] = ACTIONS(1680), - [anon_sym_interface] = ACTIONS(1680), - [anon_sym_typedef] = ACTIONS(1680), - [anon_sym_function] = ACTIONS(1680), - [anon_sym_var] = ACTIONS(1680), - [aux_sym_integer_token1] = ACTIONS(1680), - [aux_sym_integer_token2] = ACTIONS(1682), - [aux_sym_float_token1] = ACTIONS(1680), - [aux_sym_float_token2] = ACTIONS(1682), - [anon_sym_true] = ACTIONS(1680), - [anon_sym_false] = ACTIONS(1680), - [aux_sym_string_token1] = ACTIONS(1682), - [aux_sym_string_token3] = ACTIONS(1682), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3117), + [anon_sym_POUND] = ACTIONS(3119), + [anon_sym_package] = ACTIONS(3117), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_case] = ACTIONS(3117), + [anon_sym_default] = ACTIONS(3117), + [anon_sym_cast] = ACTIONS(3117), + [anon_sym_DOLLARtype] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_untyped] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_AT] = ACTIONS(3117), + [anon_sym_AT_COLON] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_catch] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3119), + [anon_sym_GT_GT] = ACTIONS(3117), + [anon_sym_GT_GT_GT] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_EQ_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3119), + [anon_sym_EQ_GT] = ACTIONS(3119), + [anon_sym_QMARK_QMARK] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_macro] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_overload] = ACTIONS(3117), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_interface] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3117), + [anon_sym_var] = ACTIONS(3117), + [aux_sym_integer_token1] = ACTIONS(3117), + [aux_sym_integer_token2] = ACTIONS(3119), + [aux_sym_float_token1] = ACTIONS(3117), + [aux_sym_float_token2] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [aux_sym_string_token1] = ACTIONS(3119), + [aux_sym_string_token3] = ACTIONS(3119), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3119), [sym__closing_brace_unmarker] = ACTIONS(3), }, [529] = { - [ts_builtin_sym_end] = ACTIONS(2238), - [sym_identifier] = ACTIONS(2236), - [anon_sym_POUND] = ACTIONS(2238), - [anon_sym_package] = ACTIONS(2236), - [anon_sym_import] = ACTIONS(2236), - [anon_sym_using] = ACTIONS(2236), - [anon_sym_throw] = ACTIONS(2236), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2236), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_cast] = ACTIONS(2236), - [anon_sym_DOLLARtype] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2236), - [anon_sym_untyped] = ACTIONS(2236), - [anon_sym_break] = ACTIONS(2236), - [anon_sym_continue] = ACTIONS(2236), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_this] = ACTIONS(2236), - [anon_sym_AT] = ACTIONS(2236), - [anon_sym_AT_COLON] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2236), - [anon_sym_new] = ACTIONS(2236), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2236), - [anon_sym_DASH] = ACTIONS(2236), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2236), - [anon_sym_PLUS] = ACTIONS(2236), - [anon_sym_LT_LT] = ACTIONS(2238), - [anon_sym_GT_GT] = ACTIONS(2236), - [anon_sym_GT_GT_GT] = ACTIONS(2238), - [anon_sym_AMP] = ACTIONS(2236), - [anon_sym_PIPE] = ACTIONS(2236), - [anon_sym_CARET] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2238), - [anon_sym_PIPE_PIPE] = ACTIONS(2238), - [anon_sym_EQ_EQ] = ACTIONS(2238), - [anon_sym_BANG_EQ] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2236), - [anon_sym_LT_EQ] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2236), - [anon_sym_GT_EQ] = ACTIONS(2238), - [anon_sym_EQ_GT] = ACTIONS(2238), - [anon_sym_QMARK_QMARK] = ACTIONS(2238), - [anon_sym_EQ] = ACTIONS(2236), - [sym__rangeOperator] = ACTIONS(2238), - [anon_sym_null] = ACTIONS(2236), - [anon_sym_macro] = ACTIONS(2236), - [anon_sym_abstract] = ACTIONS(2236), - [anon_sym_static] = ACTIONS(2236), - [anon_sym_public] = ACTIONS(2236), - [anon_sym_private] = ACTIONS(2236), - [anon_sym_extern] = ACTIONS(2236), - [anon_sym_inline] = ACTIONS(2236), - [anon_sym_overload] = ACTIONS(2236), - [anon_sym_override] = ACTIONS(2236), - [anon_sym_final] = ACTIONS(2236), - [anon_sym_class] = ACTIONS(2236), - [anon_sym_interface] = ACTIONS(2236), - [anon_sym_typedef] = ACTIONS(2236), - [anon_sym_function] = ACTIONS(2236), - [anon_sym_var] = ACTIONS(2236), - [aux_sym_integer_token1] = ACTIONS(2236), - [aux_sym_integer_token2] = ACTIONS(2238), - [aux_sym_float_token1] = ACTIONS(2236), - [aux_sym_float_token2] = ACTIONS(2238), - [anon_sym_true] = ACTIONS(2236), - [anon_sym_false] = ACTIONS(2236), - [aux_sym_string_token1] = ACTIONS(2238), - [aux_sym_string_token3] = ACTIONS(2238), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3121), + [anon_sym_POUND] = ACTIONS(3123), + [anon_sym_package] = ACTIONS(3121), + [anon_sym_import] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_case] = ACTIONS(3121), + [anon_sym_default] = ACTIONS(3121), + [anon_sym_cast] = ACTIONS(3121), + [anon_sym_DOLLARtype] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_untyped] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_AT] = ACTIONS(3121), + [anon_sym_AT_COLON] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_catch] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_GT_GT_GT] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_PIPE] = ACTIONS(3121), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_EQ_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_LT_EQ] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3121), + [anon_sym_GT_EQ] = ACTIONS(3123), + [anon_sym_EQ_GT] = ACTIONS(3123), + [anon_sym_QMARK_QMARK] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_macro] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_overload] = ACTIONS(3121), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_interface] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3121), + [anon_sym_var] = ACTIONS(3121), + [aux_sym_integer_token1] = ACTIONS(3121), + [aux_sym_integer_token2] = ACTIONS(3123), + [aux_sym_float_token1] = ACTIONS(3121), + [aux_sym_float_token2] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [aux_sym_string_token1] = ACTIONS(3123), + [aux_sym_string_token3] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3123), [sym__closing_brace_unmarker] = ACTIONS(3), }, [530] = { - [ts_builtin_sym_end] = ACTIONS(2234), - [sym_identifier] = ACTIONS(2232), - [anon_sym_POUND] = ACTIONS(2234), - [anon_sym_package] = ACTIONS(2232), - [anon_sym_import] = ACTIONS(2232), - [anon_sym_using] = ACTIONS(2232), - [anon_sym_throw] = ACTIONS(2232), - [anon_sym_LPAREN] = ACTIONS(2234), - [anon_sym_switch] = ACTIONS(2232), - [anon_sym_LBRACE] = ACTIONS(2234), - [anon_sym_cast] = ACTIONS(2232), - [anon_sym_DOLLARtype] = ACTIONS(2234), - [anon_sym_return] = ACTIONS(2232), - [anon_sym_untyped] = ACTIONS(2232), - [anon_sym_break] = ACTIONS(2232), - [anon_sym_continue] = ACTIONS(2232), - [anon_sym_LBRACK] = ACTIONS(2234), - [anon_sym_this] = ACTIONS(2232), - [anon_sym_AT] = ACTIONS(2232), - [anon_sym_AT_COLON] = ACTIONS(2234), - [anon_sym_if] = ACTIONS(2232), - [anon_sym_new] = ACTIONS(2232), - [anon_sym_TILDE] = ACTIONS(2234), - [anon_sym_BANG] = ACTIONS(2232), - [anon_sym_DASH] = ACTIONS(2232), - [anon_sym_PLUS_PLUS] = ACTIONS(2234), - [anon_sym_DASH_DASH] = ACTIONS(2234), - [anon_sym_PERCENT] = ACTIONS(2234), - [anon_sym_STAR] = ACTIONS(2234), - [anon_sym_SLASH] = ACTIONS(2232), - [anon_sym_PLUS] = ACTIONS(2232), - [anon_sym_LT_LT] = ACTIONS(2234), - [anon_sym_GT_GT] = ACTIONS(2232), - [anon_sym_GT_GT_GT] = ACTIONS(2234), - [anon_sym_AMP] = ACTIONS(2232), - [anon_sym_PIPE] = ACTIONS(2232), - [anon_sym_CARET] = ACTIONS(2234), - [anon_sym_AMP_AMP] = ACTIONS(2234), - [anon_sym_PIPE_PIPE] = ACTIONS(2234), - [anon_sym_EQ_EQ] = ACTIONS(2234), - [anon_sym_BANG_EQ] = ACTIONS(2234), - [anon_sym_LT] = ACTIONS(2232), - [anon_sym_LT_EQ] = ACTIONS(2234), - [anon_sym_GT] = ACTIONS(2232), - [anon_sym_GT_EQ] = ACTIONS(2234), - [anon_sym_EQ_GT] = ACTIONS(2234), - [anon_sym_QMARK_QMARK] = ACTIONS(2234), - [anon_sym_EQ] = ACTIONS(2232), - [sym__rangeOperator] = ACTIONS(2234), - [anon_sym_null] = ACTIONS(2232), - [anon_sym_macro] = ACTIONS(2232), - [anon_sym_abstract] = ACTIONS(2232), - [anon_sym_static] = ACTIONS(2232), - [anon_sym_public] = ACTIONS(2232), - [anon_sym_private] = ACTIONS(2232), - [anon_sym_extern] = ACTIONS(2232), - [anon_sym_inline] = ACTIONS(2232), - [anon_sym_overload] = ACTIONS(2232), - [anon_sym_override] = ACTIONS(2232), - [anon_sym_final] = ACTIONS(2232), - [anon_sym_class] = ACTIONS(2232), - [anon_sym_interface] = ACTIONS(2232), - [anon_sym_typedef] = ACTIONS(2232), - [anon_sym_function] = ACTIONS(2232), - [anon_sym_var] = ACTIONS(2232), - [aux_sym_integer_token1] = ACTIONS(2232), - [aux_sym_integer_token2] = ACTIONS(2234), - [aux_sym_float_token1] = ACTIONS(2232), - [aux_sym_float_token2] = ACTIONS(2234), - [anon_sym_true] = ACTIONS(2232), - [anon_sym_false] = ACTIONS(2232), - [aux_sym_string_token1] = ACTIONS(2234), - [aux_sym_string_token3] = ACTIONS(2234), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3125), + [anon_sym_POUND] = ACTIONS(3127), + [anon_sym_package] = ACTIONS(3125), + [anon_sym_import] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_case] = ACTIONS(3125), + [anon_sym_default] = ACTIONS(3125), + [anon_sym_cast] = ACTIONS(3125), + [anon_sym_DOLLARtype] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_untyped] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_AT_COLON] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_catch] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3127), + [anon_sym_GT_GT] = ACTIONS(3125), + [anon_sym_GT_GT_GT] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_EQ_GT] = ACTIONS(3127), + [anon_sym_QMARK_QMARK] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_macro] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_overload] = ACTIONS(3125), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_interface] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3125), + [anon_sym_var] = ACTIONS(3125), + [aux_sym_integer_token1] = ACTIONS(3125), + [aux_sym_integer_token2] = ACTIONS(3127), + [aux_sym_float_token1] = ACTIONS(3125), + [aux_sym_float_token2] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [aux_sym_string_token1] = ACTIONS(3127), + [aux_sym_string_token3] = ACTIONS(3127), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3127), [sym__closing_brace_unmarker] = ACTIONS(3), }, [531] = { - [ts_builtin_sym_end] = ACTIONS(1914), - [sym_identifier] = ACTIONS(1912), - [anon_sym_POUND] = ACTIONS(1914), - [anon_sym_package] = ACTIONS(1912), - [anon_sym_import] = ACTIONS(1912), - [anon_sym_using] = ACTIONS(1912), - [anon_sym_throw] = ACTIONS(1912), - [anon_sym_LPAREN] = ACTIONS(1914), - [anon_sym_switch] = ACTIONS(1912), - [anon_sym_LBRACE] = ACTIONS(1914), - [anon_sym_cast] = ACTIONS(1912), - [anon_sym_DOLLARtype] = ACTIONS(1914), - [anon_sym_return] = ACTIONS(1912), - [anon_sym_untyped] = ACTIONS(1912), - [anon_sym_break] = ACTIONS(1912), - [anon_sym_continue] = ACTIONS(1912), - [anon_sym_LBRACK] = ACTIONS(1914), - [anon_sym_this] = ACTIONS(1912), - [anon_sym_AT] = ACTIONS(1912), - [anon_sym_AT_COLON] = ACTIONS(1914), - [anon_sym_if] = ACTIONS(1912), - [anon_sym_new] = ACTIONS(1912), - [anon_sym_TILDE] = ACTIONS(1914), - [anon_sym_BANG] = ACTIONS(1912), - [anon_sym_DASH] = ACTIONS(1912), - [anon_sym_PLUS_PLUS] = ACTIONS(1914), - [anon_sym_DASH_DASH] = ACTIONS(1914), - [anon_sym_PERCENT] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1914), - [anon_sym_SLASH] = ACTIONS(1912), - [anon_sym_PLUS] = ACTIONS(1912), - [anon_sym_LT_LT] = ACTIONS(1914), - [anon_sym_GT_GT] = ACTIONS(1912), - [anon_sym_GT_GT_GT] = ACTIONS(1914), - [anon_sym_AMP] = ACTIONS(1912), - [anon_sym_PIPE] = ACTIONS(1912), - [anon_sym_CARET] = ACTIONS(1914), - [anon_sym_AMP_AMP] = ACTIONS(1914), - [anon_sym_PIPE_PIPE] = ACTIONS(1914), - [anon_sym_EQ_EQ] = ACTIONS(1914), - [anon_sym_BANG_EQ] = ACTIONS(1914), - [anon_sym_LT] = ACTIONS(1912), - [anon_sym_LT_EQ] = ACTIONS(1914), - [anon_sym_GT] = ACTIONS(1912), - [anon_sym_GT_EQ] = ACTIONS(1914), - [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_QMARK] = ACTIONS(1914), - [anon_sym_EQ] = ACTIONS(1912), - [sym__rangeOperator] = ACTIONS(1914), - [anon_sym_null] = ACTIONS(1912), - [anon_sym_macro] = ACTIONS(1912), - [anon_sym_abstract] = ACTIONS(1912), - [anon_sym_static] = ACTIONS(1912), - [anon_sym_public] = ACTIONS(1912), - [anon_sym_private] = ACTIONS(1912), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_inline] = ACTIONS(1912), - [anon_sym_overload] = ACTIONS(1912), - [anon_sym_override] = ACTIONS(1912), - [anon_sym_final] = ACTIONS(1912), - [anon_sym_class] = ACTIONS(1912), - [anon_sym_interface] = ACTIONS(1912), - [anon_sym_typedef] = ACTIONS(1912), - [anon_sym_function] = ACTIONS(1912), - [anon_sym_var] = ACTIONS(1912), - [aux_sym_integer_token1] = ACTIONS(1912), - [aux_sym_integer_token2] = ACTIONS(1914), - [aux_sym_float_token1] = ACTIONS(1912), - [aux_sym_float_token2] = ACTIONS(1914), - [anon_sym_true] = ACTIONS(1912), - [anon_sym_false] = ACTIONS(1912), - [aux_sym_string_token1] = ACTIONS(1914), - [aux_sym_string_token3] = ACTIONS(1914), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(3131), + [anon_sym_package] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3129), + [anon_sym_default] = ACTIONS(3129), + [anon_sym_cast] = ACTIONS(3129), + [anon_sym_DOLLARtype] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_untyped] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_this] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_AT_COLON] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_catch] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_LT_LT] = ACTIONS(3131), + [anon_sym_GT_GT] = ACTIONS(3129), + [anon_sym_GT_GT_GT] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_CARET] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_EQ_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_LT_EQ] = ACTIONS(3131), + [anon_sym_GT] = ACTIONS(3129), + [anon_sym_GT_EQ] = ACTIONS(3131), + [anon_sym_EQ_GT] = ACTIONS(3131), + [anon_sym_QMARK_QMARK] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_null] = ACTIONS(3129), + [anon_sym_macro] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_extern] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_overload] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), + [anon_sym_typedef] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [aux_sym_integer_token1] = ACTIONS(3129), + [aux_sym_integer_token2] = ACTIONS(3131), + [aux_sym_float_token1] = ACTIONS(3129), + [aux_sym_float_token2] = ACTIONS(3131), + [anon_sym_true] = ACTIONS(3129), + [anon_sym_false] = ACTIONS(3129), + [aux_sym_string_token1] = ACTIONS(3131), + [aux_sym_string_token3] = ACTIONS(3131), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3131), [sym__closing_brace_unmarker] = ACTIONS(3), }, [532] = { - [ts_builtin_sym_end] = ACTIONS(2326), - [sym_identifier] = ACTIONS(2324), - [anon_sym_POUND] = ACTIONS(2326), - [anon_sym_package] = ACTIONS(2324), - [anon_sym_import] = ACTIONS(2324), - [anon_sym_using] = ACTIONS(2324), - [anon_sym_throw] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2326), - [anon_sym_switch] = ACTIONS(2324), - [anon_sym_LBRACE] = ACTIONS(2326), - [anon_sym_cast] = ACTIONS(2324), - [anon_sym_DOLLARtype] = ACTIONS(2326), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_untyped] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_LBRACK] = ACTIONS(2326), - [anon_sym_this] = ACTIONS(2324), - [anon_sym_AT] = ACTIONS(2324), - [anon_sym_AT_COLON] = ACTIONS(2326), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_new] = ACTIONS(2324), - [anon_sym_TILDE] = ACTIONS(2326), - [anon_sym_BANG] = ACTIONS(2324), - [anon_sym_DASH] = ACTIONS(2324), - [anon_sym_PLUS_PLUS] = ACTIONS(2326), - [anon_sym_DASH_DASH] = ACTIONS(2326), - [anon_sym_PERCENT] = ACTIONS(2326), - [anon_sym_STAR] = ACTIONS(2326), - [anon_sym_SLASH] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(2324), - [anon_sym_LT_LT] = ACTIONS(2326), - [anon_sym_GT_GT] = ACTIONS(2324), - [anon_sym_GT_GT_GT] = ACTIONS(2326), - [anon_sym_AMP] = ACTIONS(2324), - [anon_sym_PIPE] = ACTIONS(2324), - [anon_sym_CARET] = ACTIONS(2326), - [anon_sym_AMP_AMP] = ACTIONS(2326), - [anon_sym_PIPE_PIPE] = ACTIONS(2326), - [anon_sym_EQ_EQ] = ACTIONS(2326), - [anon_sym_BANG_EQ] = ACTIONS(2326), - [anon_sym_LT] = ACTIONS(2324), - [anon_sym_LT_EQ] = ACTIONS(2326), - [anon_sym_GT] = ACTIONS(2324), - [anon_sym_GT_EQ] = ACTIONS(2326), - [anon_sym_EQ_GT] = ACTIONS(2326), - [anon_sym_QMARK_QMARK] = ACTIONS(2326), - [anon_sym_EQ] = ACTIONS(2324), - [sym__rangeOperator] = ACTIONS(2326), - [anon_sym_null] = ACTIONS(2324), - [anon_sym_macro] = ACTIONS(2324), - [anon_sym_abstract] = ACTIONS(2324), - [anon_sym_static] = ACTIONS(2324), - [anon_sym_public] = ACTIONS(2324), - [anon_sym_private] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_inline] = ACTIONS(2324), - [anon_sym_overload] = ACTIONS(2324), - [anon_sym_override] = ACTIONS(2324), - [anon_sym_final] = ACTIONS(2324), - [anon_sym_class] = ACTIONS(2324), - [anon_sym_interface] = ACTIONS(2324), - [anon_sym_typedef] = ACTIONS(2324), - [anon_sym_function] = ACTIONS(2324), - [anon_sym_var] = ACTIONS(2324), - [aux_sym_integer_token1] = ACTIONS(2324), - [aux_sym_integer_token2] = ACTIONS(2326), - [aux_sym_float_token1] = ACTIONS(2324), - [aux_sym_float_token2] = ACTIONS(2326), - [anon_sym_true] = ACTIONS(2324), - [anon_sym_false] = ACTIONS(2324), - [aux_sym_string_token1] = ACTIONS(2326), - [aux_sym_string_token3] = ACTIONS(2326), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3135), + [anon_sym_package] = ACTIONS(3133), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_case] = ACTIONS(3133), + [anon_sym_default] = ACTIONS(3133), + [anon_sym_cast] = ACTIONS(3133), + [anon_sym_DOLLARtype] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_untyped] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_AT_COLON] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_catch] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3135), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_EQ_GT] = ACTIONS(3135), + [anon_sym_QMARK_QMARK] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_macro] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_overload] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_typedef] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [aux_sym_integer_token1] = ACTIONS(3133), + [aux_sym_integer_token2] = ACTIONS(3135), + [aux_sym_float_token1] = ACTIONS(3133), + [aux_sym_float_token2] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [aux_sym_string_token1] = ACTIONS(3135), + [aux_sym_string_token3] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3135), [sym__closing_brace_unmarker] = ACTIONS(3), }, [533] = { - [ts_builtin_sym_end] = ACTIONS(2286), - [sym_identifier] = ACTIONS(2284), - [anon_sym_POUND] = ACTIONS(2286), - [anon_sym_package] = ACTIONS(2284), - [anon_sym_import] = ACTIONS(2284), - [anon_sym_using] = ACTIONS(2284), - [anon_sym_throw] = ACTIONS(2284), - [anon_sym_LPAREN] = ACTIONS(2286), - [anon_sym_switch] = ACTIONS(2284), - [anon_sym_LBRACE] = ACTIONS(2286), - [anon_sym_cast] = ACTIONS(2284), - [anon_sym_DOLLARtype] = ACTIONS(2286), - [anon_sym_return] = ACTIONS(2284), - [anon_sym_untyped] = ACTIONS(2284), - [anon_sym_break] = ACTIONS(2284), - [anon_sym_continue] = ACTIONS(2284), - [anon_sym_LBRACK] = ACTIONS(2286), - [anon_sym_this] = ACTIONS(2284), - [anon_sym_AT] = ACTIONS(2284), - [anon_sym_AT_COLON] = ACTIONS(2286), - [anon_sym_if] = ACTIONS(2284), - [anon_sym_new] = ACTIONS(2284), - [anon_sym_TILDE] = ACTIONS(2286), - [anon_sym_BANG] = ACTIONS(2284), - [anon_sym_DASH] = ACTIONS(2284), - [anon_sym_PLUS_PLUS] = ACTIONS(2286), - [anon_sym_DASH_DASH] = ACTIONS(2286), - [anon_sym_PERCENT] = ACTIONS(2286), - [anon_sym_STAR] = ACTIONS(2286), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_PLUS] = ACTIONS(2284), - [anon_sym_LT_LT] = ACTIONS(2286), - [anon_sym_GT_GT] = ACTIONS(2284), - [anon_sym_GT_GT_GT] = ACTIONS(2286), - [anon_sym_AMP] = ACTIONS(2284), - [anon_sym_PIPE] = ACTIONS(2284), - [anon_sym_CARET] = ACTIONS(2286), - [anon_sym_AMP_AMP] = ACTIONS(2286), - [anon_sym_PIPE_PIPE] = ACTIONS(2286), - [anon_sym_EQ_EQ] = ACTIONS(2286), - [anon_sym_BANG_EQ] = ACTIONS(2286), - [anon_sym_LT] = ACTIONS(2284), - [anon_sym_LT_EQ] = ACTIONS(2286), - [anon_sym_GT] = ACTIONS(2284), - [anon_sym_GT_EQ] = ACTIONS(2286), - [anon_sym_EQ_GT] = ACTIONS(2286), - [anon_sym_QMARK_QMARK] = ACTIONS(2286), - [anon_sym_EQ] = ACTIONS(2284), - [sym__rangeOperator] = ACTIONS(2286), - [anon_sym_null] = ACTIONS(2284), - [anon_sym_macro] = ACTIONS(2284), - [anon_sym_abstract] = ACTIONS(2284), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_extern] = ACTIONS(2284), - [anon_sym_inline] = ACTIONS(2284), - [anon_sym_overload] = ACTIONS(2284), - [anon_sym_override] = ACTIONS(2284), - [anon_sym_final] = ACTIONS(2284), - [anon_sym_class] = ACTIONS(2284), - [anon_sym_interface] = ACTIONS(2284), - [anon_sym_typedef] = ACTIONS(2284), - [anon_sym_function] = ACTIONS(2284), - [anon_sym_var] = ACTIONS(2284), - [aux_sym_integer_token1] = ACTIONS(2284), - [aux_sym_integer_token2] = ACTIONS(2286), - [aux_sym_float_token1] = ACTIONS(2284), - [aux_sym_float_token2] = ACTIONS(2286), - [anon_sym_true] = ACTIONS(2284), - [anon_sym_false] = ACTIONS(2284), - [aux_sym_string_token1] = ACTIONS(2286), - [aux_sym_string_token3] = ACTIONS(2286), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3137), + [anon_sym_POUND] = ACTIONS(3139), + [anon_sym_package] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_case] = ACTIONS(3137), + [anon_sym_default] = ACTIONS(3137), + [anon_sym_cast] = ACTIONS(3137), + [anon_sym_DOLLARtype] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_untyped] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_AT_COLON] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_EQ_GT] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_macro] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_overload] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [aux_sym_integer_token1] = ACTIONS(3137), + [aux_sym_integer_token2] = ACTIONS(3139), + [aux_sym_float_token1] = ACTIONS(3137), + [aux_sym_float_token2] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [aux_sym_string_token1] = ACTIONS(3139), + [aux_sym_string_token3] = ACTIONS(3139), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3139), [sym__closing_brace_unmarker] = ACTIONS(3), }, [534] = { - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2136), - [anon_sym_POUND] = ACTIONS(2138), - [anon_sym_package] = ACTIONS(2136), - [anon_sym_import] = ACTIONS(2136), - [anon_sym_using] = ACTIONS(2136), - [anon_sym_throw] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2136), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_cast] = ACTIONS(2136), - [anon_sym_DOLLARtype] = ACTIONS(2138), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_untyped] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_this] = ACTIONS(2136), - [anon_sym_AT] = ACTIONS(2136), - [anon_sym_AT_COLON] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_new] = ACTIONS(2136), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_BANG] = ACTIONS(2136), - [anon_sym_DASH] = ACTIONS(2136), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2136), - [anon_sym_PLUS] = ACTIONS(2136), - [anon_sym_LT_LT] = ACTIONS(2138), - [anon_sym_GT_GT] = ACTIONS(2136), - [anon_sym_GT_GT_GT] = ACTIONS(2138), - [anon_sym_AMP] = ACTIONS(2136), - [anon_sym_PIPE] = ACTIONS(2136), - [anon_sym_CARET] = ACTIONS(2138), - [anon_sym_AMP_AMP] = ACTIONS(2138), - [anon_sym_PIPE_PIPE] = ACTIONS(2138), - [anon_sym_EQ_EQ] = ACTIONS(2138), - [anon_sym_BANG_EQ] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2136), - [anon_sym_LT_EQ] = ACTIONS(2138), - [anon_sym_GT] = ACTIONS(2136), - [anon_sym_GT_EQ] = ACTIONS(2138), - [anon_sym_EQ_GT] = ACTIONS(2138), - [anon_sym_QMARK_QMARK] = ACTIONS(2138), - [anon_sym_EQ] = ACTIONS(2136), - [sym__rangeOperator] = ACTIONS(2138), - [anon_sym_null] = ACTIONS(2136), - [anon_sym_macro] = ACTIONS(2136), - [anon_sym_abstract] = ACTIONS(2136), - [anon_sym_static] = ACTIONS(2136), - [anon_sym_public] = ACTIONS(2136), - [anon_sym_private] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_inline] = ACTIONS(2136), - [anon_sym_overload] = ACTIONS(2136), - [anon_sym_override] = ACTIONS(2136), - [anon_sym_final] = ACTIONS(2136), - [anon_sym_class] = ACTIONS(2136), - [anon_sym_interface] = ACTIONS(2136), - [anon_sym_typedef] = ACTIONS(2136), - [anon_sym_function] = ACTIONS(2136), - [anon_sym_var] = ACTIONS(2136), - [aux_sym_integer_token1] = ACTIONS(2136), - [aux_sym_integer_token2] = ACTIONS(2138), - [aux_sym_float_token1] = ACTIONS(2136), - [aux_sym_float_token2] = ACTIONS(2138), - [anon_sym_true] = ACTIONS(2136), - [anon_sym_false] = ACTIONS(2136), - [aux_sym_string_token1] = ACTIONS(2138), - [aux_sym_string_token3] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3143), + [anon_sym_package] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_case] = ACTIONS(3141), + [anon_sym_default] = ACTIONS(3141), + [anon_sym_cast] = ACTIONS(3141), + [anon_sym_DOLLARtype] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_untyped] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_AT_COLON] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_catch] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_EQ_GT] = ACTIONS(3143), + [anon_sym_QMARK_QMARK] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), + [anon_sym_null] = ACTIONS(3141), + [anon_sym_macro] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_extern] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_overload] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_typedef] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [aux_sym_integer_token1] = ACTIONS(3141), + [aux_sym_integer_token2] = ACTIONS(3143), + [aux_sym_float_token1] = ACTIONS(3141), + [aux_sym_float_token2] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [aux_sym_string_token1] = ACTIONS(3143), + [aux_sym_string_token3] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3143), [sym__closing_brace_unmarker] = ACTIONS(3), }, [535] = { - [ts_builtin_sym_end] = ACTIONS(1958), - [sym_identifier] = ACTIONS(1956), - [anon_sym_POUND] = ACTIONS(1958), - [anon_sym_package] = ACTIONS(1956), - [anon_sym_import] = ACTIONS(1956), - [anon_sym_using] = ACTIONS(1956), - [anon_sym_throw] = ACTIONS(1956), - [anon_sym_LPAREN] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1956), - [anon_sym_LBRACE] = ACTIONS(1958), - [anon_sym_cast] = ACTIONS(1956), - [anon_sym_DOLLARtype] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1956), - [anon_sym_untyped] = ACTIONS(1956), - [anon_sym_break] = ACTIONS(1956), - [anon_sym_continue] = ACTIONS(1956), - [anon_sym_LBRACK] = ACTIONS(1958), - [anon_sym_this] = ACTIONS(1956), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_AT_COLON] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1956), - [anon_sym_new] = ACTIONS(1956), - [anon_sym_TILDE] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_DASH] = ACTIONS(1956), - [anon_sym_PLUS_PLUS] = ACTIONS(1958), - [anon_sym_DASH_DASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1958), - [anon_sym_SLASH] = ACTIONS(1956), - [anon_sym_PLUS] = ACTIONS(1956), - [anon_sym_LT_LT] = ACTIONS(1958), - [anon_sym_GT_GT] = ACTIONS(1956), - [anon_sym_GT_GT_GT] = ACTIONS(1958), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_CARET] = ACTIONS(1958), - [anon_sym_AMP_AMP] = ACTIONS(1958), - [anon_sym_PIPE_PIPE] = ACTIONS(1958), - [anon_sym_EQ_EQ] = ACTIONS(1958), - [anon_sym_BANG_EQ] = ACTIONS(1958), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_LT_EQ] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1956), - [anon_sym_GT_EQ] = ACTIONS(1958), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_QMARK] = ACTIONS(1958), - [anon_sym_EQ] = ACTIONS(1956), - [sym__rangeOperator] = ACTIONS(1958), - [anon_sym_null] = ACTIONS(1956), - [anon_sym_macro] = ACTIONS(1956), - [anon_sym_abstract] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1956), - [anon_sym_public] = ACTIONS(1956), - [anon_sym_private] = ACTIONS(1956), - [anon_sym_extern] = ACTIONS(1956), - [anon_sym_inline] = ACTIONS(1956), - [anon_sym_overload] = ACTIONS(1956), - [anon_sym_override] = ACTIONS(1956), - [anon_sym_final] = ACTIONS(1956), - [anon_sym_class] = ACTIONS(1956), - [anon_sym_interface] = ACTIONS(1956), - [anon_sym_typedef] = ACTIONS(1956), - [anon_sym_function] = ACTIONS(1956), - [anon_sym_var] = ACTIONS(1956), - [aux_sym_integer_token1] = ACTIONS(1956), - [aux_sym_integer_token2] = ACTIONS(1958), - [aux_sym_float_token1] = ACTIONS(1956), - [aux_sym_float_token2] = ACTIONS(1958), - [anon_sym_true] = ACTIONS(1956), - [anon_sym_false] = ACTIONS(1956), - [aux_sym_string_token1] = ACTIONS(1958), - [aux_sym_string_token3] = ACTIONS(1958), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3147), + [anon_sym_package] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_case] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_cast] = ACTIONS(3145), + [anon_sym_DOLLARtype] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_untyped] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_this] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_AT_COLON] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_catch] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3145), + [anon_sym_GT_GT_GT] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_EQ_EQ] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_LT_EQ] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3145), + [anon_sym_GT_EQ] = ACTIONS(3147), + [anon_sym_EQ_GT] = ACTIONS(3147), + [anon_sym_QMARK_QMARK] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_null] = ACTIONS(3145), + [anon_sym_macro] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_extern] = ACTIONS(3145), + [anon_sym_inline] = ACTIONS(3145), + [anon_sym_overload] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_final] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_typedef] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [aux_sym_integer_token1] = ACTIONS(3145), + [aux_sym_integer_token2] = ACTIONS(3147), + [aux_sym_float_token1] = ACTIONS(3145), + [aux_sym_float_token2] = ACTIONS(3147), + [anon_sym_true] = ACTIONS(3145), + [anon_sym_false] = ACTIONS(3145), + [aux_sym_string_token1] = ACTIONS(3147), + [aux_sym_string_token3] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3147), [sym__closing_brace_unmarker] = ACTIONS(3), }, [536] = { - [ts_builtin_sym_end] = ACTIONS(1686), - [sym_identifier] = ACTIONS(1684), - [anon_sym_POUND] = ACTIONS(1686), - [anon_sym_package] = ACTIONS(1684), - [anon_sym_import] = ACTIONS(1684), - [anon_sym_using] = ACTIONS(1684), - [anon_sym_throw] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1686), - [anon_sym_switch] = ACTIONS(1684), - [anon_sym_LBRACE] = ACTIONS(1686), - [anon_sym_cast] = ACTIONS(1684), - [anon_sym_DOLLARtype] = ACTIONS(1686), - [anon_sym_return] = ACTIONS(1684), - [anon_sym_untyped] = ACTIONS(1684), - [anon_sym_break] = ACTIONS(1684), - [anon_sym_continue] = ACTIONS(1684), - [anon_sym_LBRACK] = ACTIONS(1686), - [anon_sym_this] = ACTIONS(1684), - [anon_sym_AT] = ACTIONS(1684), - [anon_sym_AT_COLON] = ACTIONS(1686), - [anon_sym_if] = ACTIONS(1684), - [anon_sym_new] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1686), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PLUS_PLUS] = ACTIONS(1686), - [anon_sym_DASH_DASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1686), - [anon_sym_STAR] = ACTIONS(1686), - [anon_sym_SLASH] = ACTIONS(1684), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_LT_LT] = ACTIONS(1686), - [anon_sym_GT_GT] = ACTIONS(1684), - [anon_sym_GT_GT_GT] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(1684), - [anon_sym_PIPE] = ACTIONS(1684), - [anon_sym_CARET] = ACTIONS(1686), - [anon_sym_AMP_AMP] = ACTIONS(1686), - [anon_sym_PIPE_PIPE] = ACTIONS(1686), - [anon_sym_EQ_EQ] = ACTIONS(1686), - [anon_sym_BANG_EQ] = ACTIONS(1686), - [anon_sym_LT] = ACTIONS(1684), - [anon_sym_LT_EQ] = ACTIONS(1686), - [anon_sym_GT] = ACTIONS(1684), - [anon_sym_GT_EQ] = ACTIONS(1686), - [anon_sym_EQ_GT] = ACTIONS(1686), - [anon_sym_QMARK_QMARK] = ACTIONS(1686), - [anon_sym_EQ] = ACTIONS(1684), - [sym__rangeOperator] = ACTIONS(1686), - [anon_sym_null] = ACTIONS(1684), - [anon_sym_macro] = ACTIONS(1684), - [anon_sym_abstract] = ACTIONS(1684), - [anon_sym_static] = ACTIONS(1684), - [anon_sym_public] = ACTIONS(1684), - [anon_sym_private] = ACTIONS(1684), - [anon_sym_extern] = ACTIONS(1684), - [anon_sym_inline] = ACTIONS(1684), - [anon_sym_overload] = ACTIONS(1684), - [anon_sym_override] = ACTIONS(1684), - [anon_sym_final] = ACTIONS(1684), - [anon_sym_class] = ACTIONS(1684), - [anon_sym_interface] = ACTIONS(1684), - [anon_sym_typedef] = ACTIONS(1684), - [anon_sym_function] = ACTIONS(1684), - [anon_sym_var] = ACTIONS(1684), - [aux_sym_integer_token1] = ACTIONS(1684), - [aux_sym_integer_token2] = ACTIONS(1686), - [aux_sym_float_token1] = ACTIONS(1684), - [aux_sym_float_token2] = ACTIONS(1686), - [anon_sym_true] = ACTIONS(1684), - [anon_sym_false] = ACTIONS(1684), - [aux_sym_string_token1] = ACTIONS(1686), - [aux_sym_string_token3] = ACTIONS(1686), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3151), + [anon_sym_package] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_case] = ACTIONS(3149), + [anon_sym_default] = ACTIONS(3149), + [anon_sym_cast] = ACTIONS(3149), + [anon_sym_DOLLARtype] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_untyped] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_this] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3149), + [anon_sym_AT_COLON] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3151), + [anon_sym_GT_GT] = ACTIONS(3149), + [anon_sym_GT_GT_GT] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3149), + [anon_sym_GT_EQ] = ACTIONS(3151), + [anon_sym_EQ_GT] = ACTIONS(3151), + [anon_sym_QMARK_QMARK] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), + [anon_sym_null] = ACTIONS(3149), + [anon_sym_macro] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym_overload] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_final] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [aux_sym_integer_token1] = ACTIONS(3149), + [aux_sym_integer_token2] = ACTIONS(3151), + [aux_sym_float_token1] = ACTIONS(3149), + [aux_sym_float_token2] = ACTIONS(3151), + [anon_sym_true] = ACTIONS(3149), + [anon_sym_false] = ACTIONS(3149), + [aux_sym_string_token1] = ACTIONS(3151), + [aux_sym_string_token3] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3151), [sym__closing_brace_unmarker] = ACTIONS(3), }, [537] = { - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2216), - [anon_sym_POUND] = ACTIONS(2218), - [anon_sym_package] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2218), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2218), - [anon_sym_cast] = ACTIONS(2216), - [anon_sym_DOLLARtype] = ACTIONS(2218), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_untyped] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2218), - [anon_sym_this] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_AT_COLON] = ACTIONS(2218), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2218), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2218), - [anon_sym_DASH_DASH] = ACTIONS(2218), - [anon_sym_PERCENT] = ACTIONS(2218), - [anon_sym_STAR] = ACTIONS(2218), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2218), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2218), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2218), - [anon_sym_AMP_AMP] = ACTIONS(2218), - [anon_sym_PIPE_PIPE] = ACTIONS(2218), - [anon_sym_EQ_EQ] = ACTIONS(2218), - [anon_sym_BANG_EQ] = ACTIONS(2218), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2218), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2218), - [anon_sym_EQ_GT] = ACTIONS(2218), - [anon_sym_QMARK_QMARK] = ACTIONS(2218), - [anon_sym_EQ] = ACTIONS(2216), - [sym__rangeOperator] = ACTIONS(2218), - [anon_sym_null] = ACTIONS(2216), - [anon_sym_macro] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_extern] = ACTIONS(2216), - [anon_sym_inline] = ACTIONS(2216), - [anon_sym_overload] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_final] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_typedef] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [aux_sym_integer_token1] = ACTIONS(2216), - [aux_sym_integer_token2] = ACTIONS(2218), - [aux_sym_float_token1] = ACTIONS(2216), - [aux_sym_float_token2] = ACTIONS(2218), - [anon_sym_true] = ACTIONS(2216), - [anon_sym_false] = ACTIONS(2216), - [aux_sym_string_token1] = ACTIONS(2218), - [aux_sym_string_token3] = ACTIONS(2218), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3155), + [anon_sym_package] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_case] = ACTIONS(3153), + [anon_sym_default] = ACTIONS(3153), + [anon_sym_cast] = ACTIONS(3153), + [anon_sym_DOLLARtype] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_untyped] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_this] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_AT_COLON] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_catch] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3153), + [anon_sym_GT_GT_GT] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_LT_EQ] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_GT_EQ] = ACTIONS(3155), + [anon_sym_EQ_GT] = ACTIONS(3155), + [anon_sym_QMARK_QMARK] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_null] = ACTIONS(3153), + [anon_sym_macro] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_inline] = ACTIONS(3153), + [anon_sym_overload] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_final] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_typedef] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [aux_sym_integer_token1] = ACTIONS(3153), + [aux_sym_integer_token2] = ACTIONS(3155), + [aux_sym_float_token1] = ACTIONS(3153), + [aux_sym_float_token2] = ACTIONS(3155), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [aux_sym_string_token1] = ACTIONS(3155), + [aux_sym_string_token3] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3155), [sym__closing_brace_unmarker] = ACTIONS(3), }, [538] = { - [ts_builtin_sym_end] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2344), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_package] = ACTIONS(2344), - [anon_sym_import] = ACTIONS(2344), - [anon_sym_using] = ACTIONS(2344), - [anon_sym_throw] = ACTIONS(2344), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_switch] = ACTIONS(2344), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_cast] = ACTIONS(2344), - [anon_sym_DOLLARtype] = ACTIONS(2346), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_untyped] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_this] = ACTIONS(2344), - [anon_sym_AT] = ACTIONS(2344), - [anon_sym_AT_COLON] = ACTIONS(2346), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_new] = ACTIONS(2344), - [anon_sym_TILDE] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2344), - [anon_sym_PLUS_PLUS] = ACTIONS(2346), - [anon_sym_DASH_DASH] = ACTIONS(2346), - [anon_sym_PERCENT] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_SLASH] = ACTIONS(2344), - [anon_sym_PLUS] = ACTIONS(2344), - [anon_sym_LT_LT] = ACTIONS(2346), - [anon_sym_GT_GT] = ACTIONS(2344), - [anon_sym_GT_GT_GT] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2344), - [anon_sym_PIPE] = ACTIONS(2344), - [anon_sym_CARET] = ACTIONS(2346), - [anon_sym_AMP_AMP] = ACTIONS(2346), - [anon_sym_PIPE_PIPE] = ACTIONS(2346), - [anon_sym_EQ_EQ] = ACTIONS(2346), - [anon_sym_BANG_EQ] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2344), - [anon_sym_LT_EQ] = ACTIONS(2346), - [anon_sym_GT] = ACTIONS(2344), - [anon_sym_GT_EQ] = ACTIONS(2346), - [anon_sym_EQ_GT] = ACTIONS(2346), - [anon_sym_QMARK_QMARK] = ACTIONS(2346), - [anon_sym_EQ] = ACTIONS(2344), - [sym__rangeOperator] = ACTIONS(2346), - [anon_sym_null] = ACTIONS(2344), - [anon_sym_macro] = ACTIONS(2344), - [anon_sym_abstract] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_public] = ACTIONS(2344), - [anon_sym_private] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_inline] = ACTIONS(2344), - [anon_sym_overload] = ACTIONS(2344), - [anon_sym_override] = ACTIONS(2344), - [anon_sym_final] = ACTIONS(2344), - [anon_sym_class] = ACTIONS(2344), - [anon_sym_interface] = ACTIONS(2344), - [anon_sym_typedef] = ACTIONS(2344), - [anon_sym_function] = ACTIONS(2344), - [anon_sym_var] = ACTIONS(2344), - [aux_sym_integer_token1] = ACTIONS(2344), - [aux_sym_integer_token2] = ACTIONS(2346), - [aux_sym_float_token1] = ACTIONS(2344), - [aux_sym_float_token2] = ACTIONS(2346), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [aux_sym_string_token1] = ACTIONS(2346), - [aux_sym_string_token3] = ACTIONS(2346), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3157), + [anon_sym_POUND] = ACTIONS(3159), + [anon_sym_package] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_case] = ACTIONS(3157), + [anon_sym_default] = ACTIONS(3157), + [anon_sym_cast] = ACTIONS(3157), + [anon_sym_DOLLARtype] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_untyped] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_this] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_AT_COLON] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3157), + [anon_sym_GT_GT_GT] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_EQ_EQ] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_LT_EQ] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3157), + [anon_sym_GT_EQ] = ACTIONS(3159), + [anon_sym_EQ_GT] = ACTIONS(3159), + [anon_sym_QMARK_QMARK] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), + [anon_sym_null] = ACTIONS(3157), + [anon_sym_macro] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym_overload] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_final] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [aux_sym_integer_token1] = ACTIONS(3157), + [aux_sym_integer_token2] = ACTIONS(3159), + [aux_sym_float_token1] = ACTIONS(3157), + [aux_sym_float_token2] = ACTIONS(3159), + [anon_sym_true] = ACTIONS(3157), + [anon_sym_false] = ACTIONS(3157), + [aux_sym_string_token1] = ACTIONS(3159), + [aux_sym_string_token3] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3159), [sym__closing_brace_unmarker] = ACTIONS(3), }, [539] = { - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_POUND] = ACTIONS(2298), - [anon_sym_package] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2298), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2298), - [anon_sym_cast] = ACTIONS(2296), - [anon_sym_DOLLARtype] = ACTIONS(2298), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_untyped] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2298), - [anon_sym_this] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_AT_COLON] = ACTIONS(2298), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2298), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2298), - [anon_sym_DASH_DASH] = ACTIONS(2298), - [anon_sym_PERCENT] = ACTIONS(2298), - [anon_sym_STAR] = ACTIONS(2298), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2298), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2298), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2298), - [anon_sym_AMP_AMP] = ACTIONS(2298), - [anon_sym_PIPE_PIPE] = ACTIONS(2298), - [anon_sym_EQ_EQ] = ACTIONS(2298), - [anon_sym_BANG_EQ] = ACTIONS(2298), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2298), - [anon_sym_GT] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2298), - [anon_sym_EQ_GT] = ACTIONS(2298), - [anon_sym_QMARK_QMARK] = ACTIONS(2298), - [anon_sym_EQ] = ACTIONS(2296), - [sym__rangeOperator] = ACTIONS(2298), - [anon_sym_null] = ACTIONS(2296), - [anon_sym_macro] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_extern] = ACTIONS(2296), - [anon_sym_inline] = ACTIONS(2296), - [anon_sym_overload] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_final] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_typedef] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [aux_sym_integer_token1] = ACTIONS(2296), - [aux_sym_integer_token2] = ACTIONS(2298), - [aux_sym_float_token1] = ACTIONS(2296), - [aux_sym_float_token2] = ACTIONS(2298), - [anon_sym_true] = ACTIONS(2296), - [anon_sym_false] = ACTIONS(2296), - [aux_sym_string_token1] = ACTIONS(2298), - [aux_sym_string_token3] = ACTIONS(2298), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3161), + [anon_sym_POUND] = ACTIONS(3163), + [anon_sym_package] = ACTIONS(3161), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_case] = ACTIONS(3161), + [anon_sym_default] = ACTIONS(3161), + [anon_sym_cast] = ACTIONS(3161), + [anon_sym_DOLLARtype] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_untyped] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_this] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_AT_COLON] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_catch] = ACTIONS(3161), + [anon_sym_else] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_LT_LT] = ACTIONS(3163), + [anon_sym_GT_GT] = ACTIONS(3161), + [anon_sym_GT_GT_GT] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3161), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3161), + [anon_sym_GT_EQ] = ACTIONS(3163), + [anon_sym_EQ_GT] = ACTIONS(3163), + [anon_sym_QMARK_QMARK] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), + [anon_sym_null] = ACTIONS(3161), + [anon_sym_macro] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_overload] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_final] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_typedef] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [aux_sym_integer_token1] = ACTIONS(3161), + [aux_sym_integer_token2] = ACTIONS(3163), + [aux_sym_float_token1] = ACTIONS(3161), + [aux_sym_float_token2] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3161), + [anon_sym_false] = ACTIONS(3161), + [aux_sym_string_token1] = ACTIONS(3163), + [aux_sym_string_token3] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3163), [sym__closing_brace_unmarker] = ACTIONS(3), }, [540] = { - [ts_builtin_sym_end] = ACTIONS(2210), - [sym_identifier] = ACTIONS(2208), - [anon_sym_POUND] = ACTIONS(2210), - [anon_sym_package] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2210), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2210), - [anon_sym_cast] = ACTIONS(2208), - [anon_sym_DOLLARtype] = ACTIONS(2210), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_untyped] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2210), - [anon_sym_this] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_AT_COLON] = ACTIONS(2210), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2210), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2210), - [anon_sym_DASH_DASH] = ACTIONS(2210), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2208), - [anon_sym_GT_GT_GT] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2208), - [anon_sym_PIPE] = ACTIONS(2208), - [anon_sym_CARET] = ACTIONS(2210), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_GT] = ACTIONS(2208), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_EQ_GT] = ACTIONS(2210), - [anon_sym_QMARK_QMARK] = ACTIONS(2210), - [anon_sym_EQ] = ACTIONS(2208), - [sym__rangeOperator] = ACTIONS(2210), - [anon_sym_null] = ACTIONS(2208), - [anon_sym_macro] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_extern] = ACTIONS(2208), - [anon_sym_inline] = ACTIONS(2208), - [anon_sym_overload] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_final] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_typedef] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [aux_sym_integer_token1] = ACTIONS(2208), - [aux_sym_integer_token2] = ACTIONS(2210), - [aux_sym_float_token1] = ACTIONS(2208), - [aux_sym_float_token2] = ACTIONS(2210), - [anon_sym_true] = ACTIONS(2208), - [anon_sym_false] = ACTIONS(2208), - [aux_sym_string_token1] = ACTIONS(2210), - [aux_sym_string_token3] = ACTIONS(2210), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3165), + [anon_sym_POUND] = ACTIONS(3167), + [anon_sym_package] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3165), + [anon_sym_default] = ACTIONS(3165), + [anon_sym_cast] = ACTIONS(3165), + [anon_sym_DOLLARtype] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_untyped] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_AT_COLON] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_EQ_GT] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_macro] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym_overload] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_final] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [aux_sym_integer_token1] = ACTIONS(3165), + [aux_sym_integer_token2] = ACTIONS(3167), + [aux_sym_float_token1] = ACTIONS(3165), + [aux_sym_float_token2] = ACTIONS(3167), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym_string_token1] = ACTIONS(3167), + [aux_sym_string_token3] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3167), [sym__closing_brace_unmarker] = ACTIONS(3), }, [541] = { - [ts_builtin_sym_end] = ACTIONS(1842), - [sym_identifier] = ACTIONS(1840), - [anon_sym_POUND] = ACTIONS(1842), - [anon_sym_package] = ACTIONS(1840), - [anon_sym_import] = ACTIONS(1840), - [anon_sym_using] = ACTIONS(1840), - [anon_sym_throw] = ACTIONS(1840), - [anon_sym_LPAREN] = ACTIONS(1842), - [anon_sym_switch] = ACTIONS(1840), - [anon_sym_LBRACE] = ACTIONS(1842), - [anon_sym_cast] = ACTIONS(1840), - [anon_sym_DOLLARtype] = ACTIONS(1842), - [anon_sym_return] = ACTIONS(1840), - [anon_sym_untyped] = ACTIONS(1840), - [anon_sym_break] = ACTIONS(1840), - [anon_sym_continue] = ACTIONS(1840), - [anon_sym_LBRACK] = ACTIONS(1842), - [anon_sym_this] = ACTIONS(1840), - [anon_sym_AT] = ACTIONS(1840), - [anon_sym_AT_COLON] = ACTIONS(1842), - [anon_sym_if] = ACTIONS(1840), - [anon_sym_new] = ACTIONS(1840), - [anon_sym_TILDE] = ACTIONS(1842), - [anon_sym_BANG] = ACTIONS(1840), - [anon_sym_DASH] = ACTIONS(1840), - [anon_sym_PLUS_PLUS] = ACTIONS(1842), - [anon_sym_DASH_DASH] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1842), - [anon_sym_STAR] = ACTIONS(1842), - [anon_sym_SLASH] = ACTIONS(1840), - [anon_sym_PLUS] = ACTIONS(1840), - [anon_sym_LT_LT] = ACTIONS(1842), - [anon_sym_GT_GT] = ACTIONS(1840), - [anon_sym_GT_GT_GT] = ACTIONS(1842), - [anon_sym_AMP] = ACTIONS(1840), - [anon_sym_PIPE] = ACTIONS(1840), - [anon_sym_CARET] = ACTIONS(1842), - [anon_sym_AMP_AMP] = ACTIONS(1842), - [anon_sym_PIPE_PIPE] = ACTIONS(1842), - [anon_sym_EQ_EQ] = ACTIONS(1842), - [anon_sym_BANG_EQ] = ACTIONS(1842), - [anon_sym_LT] = ACTIONS(1840), - [anon_sym_LT_EQ] = ACTIONS(1842), - [anon_sym_GT] = ACTIONS(1840), - [anon_sym_GT_EQ] = ACTIONS(1842), - [anon_sym_EQ_GT] = ACTIONS(1842), - [anon_sym_QMARK_QMARK] = ACTIONS(1842), - [anon_sym_EQ] = ACTIONS(1840), - [sym__rangeOperator] = ACTIONS(1842), - [anon_sym_null] = ACTIONS(1840), - [anon_sym_macro] = ACTIONS(1840), - [anon_sym_abstract] = ACTIONS(1840), - [anon_sym_static] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1840), - [anon_sym_private] = ACTIONS(1840), - [anon_sym_extern] = ACTIONS(1840), - [anon_sym_inline] = ACTIONS(1840), - [anon_sym_overload] = ACTIONS(1840), - [anon_sym_override] = ACTIONS(1840), - [anon_sym_final] = ACTIONS(1840), - [anon_sym_class] = ACTIONS(1840), - [anon_sym_interface] = ACTIONS(1840), - [anon_sym_typedef] = ACTIONS(1840), - [anon_sym_function] = ACTIONS(1840), - [anon_sym_var] = ACTIONS(1840), - [aux_sym_integer_token1] = ACTIONS(1840), - [aux_sym_integer_token2] = ACTIONS(1842), - [aux_sym_float_token1] = ACTIONS(1840), - [aux_sym_float_token2] = ACTIONS(1842), - [anon_sym_true] = ACTIONS(1840), - [anon_sym_false] = ACTIONS(1840), - [aux_sym_string_token1] = ACTIONS(1842), - [aux_sym_string_token3] = ACTIONS(1842), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3169), + [anon_sym_POUND] = ACTIONS(3171), + [anon_sym_package] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_case] = ACTIONS(3169), + [anon_sym_default] = ACTIONS(3169), + [anon_sym_cast] = ACTIONS(3169), + [anon_sym_DOLLARtype] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_untyped] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_this] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_AT_COLON] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_LT_LT] = ACTIONS(3171), + [anon_sym_GT_GT] = ACTIONS(3169), + [anon_sym_GT_GT_GT] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_PIPE] = ACTIONS(3169), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3171), + [anon_sym_EQ_GT] = ACTIONS(3171), + [anon_sym_QMARK_QMARK] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3171), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_macro] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym_overload] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_final] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [aux_sym_integer_token1] = ACTIONS(3169), + [aux_sym_integer_token2] = ACTIONS(3171), + [aux_sym_float_token1] = ACTIONS(3169), + [aux_sym_float_token2] = ACTIONS(3171), + [anon_sym_true] = ACTIONS(3169), + [anon_sym_false] = ACTIONS(3169), + [aux_sym_string_token1] = ACTIONS(3171), + [aux_sym_string_token3] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3171), [sym__closing_brace_unmarker] = ACTIONS(3), }, [542] = { - [ts_builtin_sym_end] = ACTIONS(2294), - [sym_identifier] = ACTIONS(2292), - [anon_sym_POUND] = ACTIONS(2294), - [anon_sym_package] = ACTIONS(2292), - [anon_sym_import] = ACTIONS(2292), - [anon_sym_using] = ACTIONS(2292), - [anon_sym_throw] = ACTIONS(2292), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_switch] = ACTIONS(2292), - [anon_sym_LBRACE] = ACTIONS(2294), - [anon_sym_cast] = ACTIONS(2292), - [anon_sym_DOLLARtype] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2292), - [anon_sym_untyped] = ACTIONS(2292), - [anon_sym_break] = ACTIONS(2292), - [anon_sym_continue] = ACTIONS(2292), - [anon_sym_LBRACK] = ACTIONS(2294), - [anon_sym_this] = ACTIONS(2292), - [anon_sym_AT] = ACTIONS(2292), - [anon_sym_AT_COLON] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2292), - [anon_sym_new] = ACTIONS(2292), - [anon_sym_TILDE] = ACTIONS(2294), - [anon_sym_BANG] = ACTIONS(2292), - [anon_sym_DASH] = ACTIONS(2292), - [anon_sym_PLUS_PLUS] = ACTIONS(2294), - [anon_sym_DASH_DASH] = ACTIONS(2294), - [anon_sym_PERCENT] = ACTIONS(2294), - [anon_sym_STAR] = ACTIONS(2294), - [anon_sym_SLASH] = ACTIONS(2292), - [anon_sym_PLUS] = ACTIONS(2292), - [anon_sym_LT_LT] = ACTIONS(2294), - [anon_sym_GT_GT] = ACTIONS(2292), - [anon_sym_GT_GT_GT] = ACTIONS(2294), - [anon_sym_AMP] = ACTIONS(2292), - [anon_sym_PIPE] = ACTIONS(2292), - [anon_sym_CARET] = ACTIONS(2294), - [anon_sym_AMP_AMP] = ACTIONS(2294), - [anon_sym_PIPE_PIPE] = ACTIONS(2294), - [anon_sym_EQ_EQ] = ACTIONS(2294), - [anon_sym_BANG_EQ] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(2292), - [anon_sym_LT_EQ] = ACTIONS(2294), - [anon_sym_GT] = ACTIONS(2292), - [anon_sym_GT_EQ] = ACTIONS(2294), - [anon_sym_EQ_GT] = ACTIONS(2294), - [anon_sym_QMARK_QMARK] = ACTIONS(2294), - [anon_sym_EQ] = ACTIONS(2292), - [sym__rangeOperator] = ACTIONS(2294), - [anon_sym_null] = ACTIONS(2292), - [anon_sym_macro] = ACTIONS(2292), - [anon_sym_abstract] = ACTIONS(2292), - [anon_sym_static] = ACTIONS(2292), - [anon_sym_public] = ACTIONS(2292), - [anon_sym_private] = ACTIONS(2292), - [anon_sym_extern] = ACTIONS(2292), - [anon_sym_inline] = ACTIONS(2292), - [anon_sym_overload] = ACTIONS(2292), - [anon_sym_override] = ACTIONS(2292), - [anon_sym_final] = ACTIONS(2292), - [anon_sym_class] = ACTIONS(2292), - [anon_sym_interface] = ACTIONS(2292), - [anon_sym_typedef] = ACTIONS(2292), - [anon_sym_function] = ACTIONS(2292), - [anon_sym_var] = ACTIONS(2292), - [aux_sym_integer_token1] = ACTIONS(2292), - [aux_sym_integer_token2] = ACTIONS(2294), - [aux_sym_float_token1] = ACTIONS(2292), - [aux_sym_float_token2] = ACTIONS(2294), - [anon_sym_true] = ACTIONS(2292), - [anon_sym_false] = ACTIONS(2292), - [aux_sym_string_token1] = ACTIONS(2294), - [aux_sym_string_token3] = ACTIONS(2294), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(3175), + [anon_sym_package] = ACTIONS(3173), + [anon_sym_import] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_case] = ACTIONS(3173), + [anon_sym_default] = ACTIONS(3173), + [anon_sym_cast] = ACTIONS(3173), + [anon_sym_DOLLARtype] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_untyped] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3173), + [anon_sym_AT_COLON] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_catch] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_LT_LT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3173), + [anon_sym_GT_GT_GT] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3173), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_EQ_GT] = ACTIONS(3175), + [anon_sym_QMARK_QMARK] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3175), + [anon_sym_null] = ACTIONS(3173), + [anon_sym_macro] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_extern] = ACTIONS(3173), + [anon_sym_inline] = ACTIONS(3173), + [anon_sym_overload] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_final] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_typedef] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [aux_sym_integer_token1] = ACTIONS(3173), + [aux_sym_integer_token2] = ACTIONS(3175), + [aux_sym_float_token1] = ACTIONS(3173), + [aux_sym_float_token2] = ACTIONS(3175), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [aux_sym_string_token1] = ACTIONS(3175), + [aux_sym_string_token3] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3175), [sym__closing_brace_unmarker] = ACTIONS(3), }, [543] = { - [ts_builtin_sym_end] = ACTIONS(1710), - [sym_identifier] = ACTIONS(1708), - [anon_sym_POUND] = ACTIONS(1710), - [anon_sym_package] = ACTIONS(1708), - [anon_sym_import] = ACTIONS(1708), - [anon_sym_using] = ACTIONS(1708), - [anon_sym_throw] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1710), - [anon_sym_switch] = ACTIONS(1708), - [anon_sym_LBRACE] = ACTIONS(1710), - [anon_sym_cast] = ACTIONS(1708), - [anon_sym_DOLLARtype] = ACTIONS(1710), - [anon_sym_return] = ACTIONS(1708), - [anon_sym_untyped] = ACTIONS(1708), - [anon_sym_break] = ACTIONS(1708), - [anon_sym_continue] = ACTIONS(1708), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_this] = ACTIONS(1708), - [anon_sym_AT] = ACTIONS(1708), - [anon_sym_AT_COLON] = ACTIONS(1710), - [anon_sym_if] = ACTIONS(1708), - [anon_sym_new] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1710), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PLUS_PLUS] = ACTIONS(1710), - [anon_sym_DASH_DASH] = ACTIONS(1710), - [anon_sym_PERCENT] = ACTIONS(1710), - [anon_sym_STAR] = ACTIONS(1710), - [anon_sym_SLASH] = ACTIONS(1708), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_LT_LT] = ACTIONS(1710), - [anon_sym_GT_GT] = ACTIONS(1708), - [anon_sym_GT_GT_GT] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(1708), - [anon_sym_PIPE] = ACTIONS(1708), - [anon_sym_CARET] = ACTIONS(1710), - [anon_sym_AMP_AMP] = ACTIONS(1710), - [anon_sym_PIPE_PIPE] = ACTIONS(1710), - [anon_sym_EQ_EQ] = ACTIONS(1710), - [anon_sym_BANG_EQ] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1708), - [anon_sym_LT_EQ] = ACTIONS(1710), - [anon_sym_GT] = ACTIONS(1708), - [anon_sym_GT_EQ] = ACTIONS(1710), - [anon_sym_EQ_GT] = ACTIONS(1710), - [anon_sym_QMARK_QMARK] = ACTIONS(1710), - [anon_sym_EQ] = ACTIONS(1708), - [sym__rangeOperator] = ACTIONS(1710), - [anon_sym_null] = ACTIONS(1708), - [anon_sym_macro] = ACTIONS(1708), - [anon_sym_abstract] = ACTIONS(1708), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_public] = ACTIONS(1708), - [anon_sym_private] = ACTIONS(1708), - [anon_sym_extern] = ACTIONS(1708), - [anon_sym_inline] = ACTIONS(1708), - [anon_sym_overload] = ACTIONS(1708), - [anon_sym_override] = ACTIONS(1708), - [anon_sym_final] = ACTIONS(1708), - [anon_sym_class] = ACTIONS(1708), - [anon_sym_interface] = ACTIONS(1708), - [anon_sym_typedef] = ACTIONS(1708), - [anon_sym_function] = ACTIONS(1708), - [anon_sym_var] = ACTIONS(1708), - [aux_sym_integer_token1] = ACTIONS(1708), - [aux_sym_integer_token2] = ACTIONS(1710), - [aux_sym_float_token1] = ACTIONS(1708), - [aux_sym_float_token2] = ACTIONS(1710), - [anon_sym_true] = ACTIONS(1708), - [anon_sym_false] = ACTIONS(1708), - [aux_sym_string_token1] = ACTIONS(1710), - [aux_sym_string_token3] = ACTIONS(1710), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(3179), + [anon_sym_package] = ACTIONS(3177), + [anon_sym_import] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3177), + [anon_sym_throw] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_case] = ACTIONS(3177), + [anon_sym_default] = ACTIONS(3177), + [anon_sym_cast] = ACTIONS(3177), + [anon_sym_DOLLARtype] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_untyped] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_this] = ACTIONS(3177), + [anon_sym_AT] = ACTIONS(3177), + [anon_sym_AT_COLON] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_catch] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(3179), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_GT_GT_GT] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP_AMP] = ACTIONS(3179), + [anon_sym_PIPE_PIPE] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_EQ_GT] = ACTIONS(3179), + [anon_sym_QMARK_QMARK] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), + [anon_sym_null] = ACTIONS(3177), + [anon_sym_macro] = ACTIONS(3177), + [anon_sym_abstract] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_private] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_inline] = ACTIONS(3177), + [anon_sym_overload] = ACTIONS(3177), + [anon_sym_override] = ACTIONS(3177), + [anon_sym_final] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_typedef] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3177), + [anon_sym_var] = ACTIONS(3177), + [aux_sym_integer_token1] = ACTIONS(3177), + [aux_sym_integer_token2] = ACTIONS(3179), + [aux_sym_float_token1] = ACTIONS(3177), + [aux_sym_float_token2] = ACTIONS(3179), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [aux_sym_string_token1] = ACTIONS(3179), + [aux_sym_string_token3] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3179), [sym__closing_brace_unmarker] = ACTIONS(3), }, [544] = { - [ts_builtin_sym_end] = ACTIONS(2174), - [sym_identifier] = ACTIONS(2172), - [anon_sym_POUND] = ACTIONS(2174), - [anon_sym_package] = ACTIONS(2172), - [anon_sym_import] = ACTIONS(2172), - [anon_sym_using] = ACTIONS(2172), - [anon_sym_throw] = ACTIONS(2172), - [anon_sym_LPAREN] = ACTIONS(2174), - [anon_sym_switch] = ACTIONS(2172), - [anon_sym_LBRACE] = ACTIONS(2174), - [anon_sym_cast] = ACTIONS(2172), - [anon_sym_DOLLARtype] = ACTIONS(2174), - [anon_sym_return] = ACTIONS(2172), - [anon_sym_untyped] = ACTIONS(2172), - [anon_sym_break] = ACTIONS(2172), - [anon_sym_continue] = ACTIONS(2172), - [anon_sym_LBRACK] = ACTIONS(2174), - [anon_sym_this] = ACTIONS(2172), - [anon_sym_AT] = ACTIONS(2172), - [anon_sym_AT_COLON] = ACTIONS(2174), - [anon_sym_if] = ACTIONS(2172), - [anon_sym_new] = ACTIONS(2172), - [anon_sym_TILDE] = ACTIONS(2174), - [anon_sym_BANG] = ACTIONS(2172), - [anon_sym_DASH] = ACTIONS(2172), - [anon_sym_PLUS_PLUS] = ACTIONS(2174), - [anon_sym_DASH_DASH] = ACTIONS(2174), - [anon_sym_PERCENT] = ACTIONS(2174), - [anon_sym_STAR] = ACTIONS(2174), - [anon_sym_SLASH] = ACTIONS(2172), - [anon_sym_PLUS] = ACTIONS(2172), - [anon_sym_LT_LT] = ACTIONS(2174), - [anon_sym_GT_GT] = ACTIONS(2172), - [anon_sym_GT_GT_GT] = ACTIONS(2174), - [anon_sym_AMP] = ACTIONS(2172), - [anon_sym_PIPE] = ACTIONS(2172), - [anon_sym_CARET] = ACTIONS(2174), - [anon_sym_AMP_AMP] = ACTIONS(2174), - [anon_sym_PIPE_PIPE] = ACTIONS(2174), - [anon_sym_EQ_EQ] = ACTIONS(2174), - [anon_sym_BANG_EQ] = ACTIONS(2174), - [anon_sym_LT] = ACTIONS(2172), - [anon_sym_LT_EQ] = ACTIONS(2174), - [anon_sym_GT] = ACTIONS(2172), - [anon_sym_GT_EQ] = ACTIONS(2174), - [anon_sym_EQ_GT] = ACTIONS(2174), - [anon_sym_QMARK_QMARK] = ACTIONS(2174), - [anon_sym_EQ] = ACTIONS(2172), - [sym__rangeOperator] = ACTIONS(2174), - [anon_sym_null] = ACTIONS(2172), - [anon_sym_macro] = ACTIONS(2172), - [anon_sym_abstract] = ACTIONS(2172), - [anon_sym_static] = ACTIONS(2172), - [anon_sym_public] = ACTIONS(2172), - [anon_sym_private] = ACTIONS(2172), - [anon_sym_extern] = ACTIONS(2172), - [anon_sym_inline] = ACTIONS(2172), - [anon_sym_overload] = ACTIONS(2172), - [anon_sym_override] = ACTIONS(2172), - [anon_sym_final] = ACTIONS(2172), - [anon_sym_class] = ACTIONS(2172), - [anon_sym_interface] = ACTIONS(2172), - [anon_sym_typedef] = ACTIONS(2172), - [anon_sym_function] = ACTIONS(2172), - [anon_sym_var] = ACTIONS(2172), - [aux_sym_integer_token1] = ACTIONS(2172), - [aux_sym_integer_token2] = ACTIONS(2174), - [aux_sym_float_token1] = ACTIONS(2172), - [aux_sym_float_token2] = ACTIONS(2174), - [anon_sym_true] = ACTIONS(2172), - [anon_sym_false] = ACTIONS(2172), - [aux_sym_string_token1] = ACTIONS(2174), - [aux_sym_string_token3] = ACTIONS(2174), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(3183), + [anon_sym_package] = ACTIONS(3181), + [anon_sym_import] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3181), + [anon_sym_default] = ACTIONS(3181), + [anon_sym_cast] = ACTIONS(3181), + [anon_sym_DOLLARtype] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_untyped] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_this] = ACTIONS(3181), + [anon_sym_AT] = ACTIONS(3181), + [anon_sym_AT_COLON] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_catch] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3181), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_EQ_GT] = ACTIONS(3183), + [anon_sym_QMARK_QMARK] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3181), + [anon_sym_macro] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_private] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym_overload] = ACTIONS(3181), + [anon_sym_override] = ACTIONS(3181), + [anon_sym_final] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_function] = ACTIONS(3181), + [anon_sym_var] = ACTIONS(3181), + [aux_sym_integer_token1] = ACTIONS(3181), + [aux_sym_integer_token2] = ACTIONS(3183), + [aux_sym_float_token1] = ACTIONS(3181), + [aux_sym_float_token2] = ACTIONS(3183), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [aux_sym_string_token1] = ACTIONS(3183), + [aux_sym_string_token3] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3183), [sym__closing_brace_unmarker] = ACTIONS(3), }, [545] = { - [ts_builtin_sym_end] = ACTIONS(2202), - [sym_identifier] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(2202), - [anon_sym_package] = ACTIONS(2200), - [anon_sym_import] = ACTIONS(2200), - [anon_sym_using] = ACTIONS(2200), - [anon_sym_throw] = ACTIONS(2200), - [anon_sym_LPAREN] = ACTIONS(2202), - [anon_sym_switch] = ACTIONS(2200), - [anon_sym_LBRACE] = ACTIONS(2202), - [anon_sym_cast] = ACTIONS(2200), - [anon_sym_DOLLARtype] = ACTIONS(2202), - [anon_sym_return] = ACTIONS(2200), - [anon_sym_untyped] = ACTIONS(2200), - [anon_sym_break] = ACTIONS(2200), - [anon_sym_continue] = ACTIONS(2200), - [anon_sym_LBRACK] = ACTIONS(2202), - [anon_sym_this] = ACTIONS(2200), - [anon_sym_AT] = ACTIONS(2200), - [anon_sym_AT_COLON] = ACTIONS(2202), - [anon_sym_if] = ACTIONS(2200), - [anon_sym_new] = ACTIONS(2200), - [anon_sym_TILDE] = ACTIONS(2202), - [anon_sym_BANG] = ACTIONS(2200), - [anon_sym_DASH] = ACTIONS(2200), - [anon_sym_PLUS_PLUS] = ACTIONS(2202), - [anon_sym_DASH_DASH] = ACTIONS(2202), - [anon_sym_PERCENT] = ACTIONS(2202), - [anon_sym_STAR] = ACTIONS(2202), - [anon_sym_SLASH] = ACTIONS(2200), - [anon_sym_PLUS] = ACTIONS(2200), - [anon_sym_LT_LT] = ACTIONS(2202), - [anon_sym_GT_GT] = ACTIONS(2200), - [anon_sym_GT_GT_GT] = ACTIONS(2202), - [anon_sym_AMP] = ACTIONS(2200), - [anon_sym_PIPE] = ACTIONS(2200), - [anon_sym_CARET] = ACTIONS(2202), - [anon_sym_AMP_AMP] = ACTIONS(2202), - [anon_sym_PIPE_PIPE] = ACTIONS(2202), - [anon_sym_EQ_EQ] = ACTIONS(2202), - [anon_sym_BANG_EQ] = ACTIONS(2202), - [anon_sym_LT] = ACTIONS(2200), - [anon_sym_LT_EQ] = ACTIONS(2202), - [anon_sym_GT] = ACTIONS(2200), - [anon_sym_GT_EQ] = ACTIONS(2202), - [anon_sym_EQ_GT] = ACTIONS(2202), - [anon_sym_QMARK_QMARK] = ACTIONS(2202), - [anon_sym_EQ] = ACTIONS(2200), - [sym__rangeOperator] = ACTIONS(2202), - [anon_sym_null] = ACTIONS(2200), - [anon_sym_macro] = ACTIONS(2200), - [anon_sym_abstract] = ACTIONS(2200), - [anon_sym_static] = ACTIONS(2200), - [anon_sym_public] = ACTIONS(2200), - [anon_sym_private] = ACTIONS(2200), - [anon_sym_extern] = ACTIONS(2200), - [anon_sym_inline] = ACTIONS(2200), - [anon_sym_overload] = ACTIONS(2200), - [anon_sym_override] = ACTIONS(2200), - [anon_sym_final] = ACTIONS(2200), - [anon_sym_class] = ACTIONS(2200), - [anon_sym_interface] = ACTIONS(2200), - [anon_sym_typedef] = ACTIONS(2200), - [anon_sym_function] = ACTIONS(2200), - [anon_sym_var] = ACTIONS(2200), - [aux_sym_integer_token1] = ACTIONS(2200), - [aux_sym_integer_token2] = ACTIONS(2202), - [aux_sym_float_token1] = ACTIONS(2200), - [aux_sym_float_token2] = ACTIONS(2202), - [anon_sym_true] = ACTIONS(2200), - [anon_sym_false] = ACTIONS(2200), - [aux_sym_string_token1] = ACTIONS(2202), - [aux_sym_string_token3] = ACTIONS(2202), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3185), + [anon_sym_POUND] = ACTIONS(3187), + [anon_sym_package] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3185), + [anon_sym_default] = ACTIONS(3185), + [anon_sym_cast] = ACTIONS(3185), + [anon_sym_DOLLARtype] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_untyped] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_AT_COLON] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_catch] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_LT_LT] = ACTIONS(3187), + [anon_sym_GT_GT] = ACTIONS(3185), + [anon_sym_GT_GT_GT] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_PIPE_PIPE] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3187), + [anon_sym_QMARK_QMARK] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3185), + [anon_sym_macro] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym_overload] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_final] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_function] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [aux_sym_integer_token1] = ACTIONS(3185), + [aux_sym_integer_token2] = ACTIONS(3187), + [aux_sym_float_token1] = ACTIONS(3185), + [aux_sym_float_token2] = ACTIONS(3187), + [anon_sym_true] = ACTIONS(3185), + [anon_sym_false] = ACTIONS(3185), + [aux_sym_string_token1] = ACTIONS(3187), + [aux_sym_string_token3] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3187), [sym__closing_brace_unmarker] = ACTIONS(3), }, [546] = { - [ts_builtin_sym_end] = ACTIONS(2198), - [sym_identifier] = ACTIONS(2196), - [anon_sym_POUND] = ACTIONS(2198), - [anon_sym_package] = ACTIONS(2196), - [anon_sym_import] = ACTIONS(2196), - [anon_sym_using] = ACTIONS(2196), - [anon_sym_throw] = ACTIONS(2196), - [anon_sym_LPAREN] = ACTIONS(2198), - [anon_sym_switch] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_cast] = ACTIONS(2196), - [anon_sym_DOLLARtype] = ACTIONS(2198), - [anon_sym_return] = ACTIONS(2196), - [anon_sym_untyped] = ACTIONS(2196), - [anon_sym_break] = ACTIONS(2196), - [anon_sym_continue] = ACTIONS(2196), - [anon_sym_LBRACK] = ACTIONS(2198), - [anon_sym_this] = ACTIONS(2196), - [anon_sym_AT] = ACTIONS(2196), - [anon_sym_AT_COLON] = ACTIONS(2198), - [anon_sym_if] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2198), - [anon_sym_BANG] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_PLUS_PLUS] = ACTIONS(2198), - [anon_sym_DASH_DASH] = ACTIONS(2198), - [anon_sym_PERCENT] = ACTIONS(2198), - [anon_sym_STAR] = ACTIONS(2198), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2198), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2198), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2198), - [anon_sym_AMP_AMP] = ACTIONS(2198), - [anon_sym_PIPE_PIPE] = ACTIONS(2198), - [anon_sym_EQ_EQ] = ACTIONS(2198), - [anon_sym_BANG_EQ] = ACTIONS(2198), - [anon_sym_LT] = ACTIONS(2196), - [anon_sym_LT_EQ] = ACTIONS(2198), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2198), - [anon_sym_EQ_GT] = ACTIONS(2198), - [anon_sym_QMARK_QMARK] = ACTIONS(2198), - [anon_sym_EQ] = ACTIONS(2196), - [sym__rangeOperator] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2196), - [anon_sym_macro] = ACTIONS(2196), - [anon_sym_abstract] = ACTIONS(2196), - [anon_sym_static] = ACTIONS(2196), - [anon_sym_public] = ACTIONS(2196), - [anon_sym_private] = ACTIONS(2196), - [anon_sym_extern] = ACTIONS(2196), - [anon_sym_inline] = ACTIONS(2196), - [anon_sym_overload] = ACTIONS(2196), - [anon_sym_override] = ACTIONS(2196), - [anon_sym_final] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_typedef] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_var] = ACTIONS(2196), - [aux_sym_integer_token1] = ACTIONS(2196), - [aux_sym_integer_token2] = ACTIONS(2198), - [aux_sym_float_token1] = ACTIONS(2196), - [aux_sym_float_token2] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2196), - [anon_sym_false] = ACTIONS(2196), - [aux_sym_string_token1] = ACTIONS(2198), - [aux_sym_string_token3] = ACTIONS(2198), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3189), [sym__closing_brace_unmarker] = ACTIONS(3), }, [547] = { - [ts_builtin_sym_end] = ACTIONS(2014), - [sym_identifier] = ACTIONS(2012), - [anon_sym_POUND] = ACTIONS(2014), - [anon_sym_package] = ACTIONS(2012), - [anon_sym_import] = ACTIONS(2012), - [anon_sym_using] = ACTIONS(2012), - [anon_sym_throw] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2014), - [anon_sym_switch] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2014), - [anon_sym_cast] = ACTIONS(2012), - [anon_sym_DOLLARtype] = ACTIONS(2014), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_untyped] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_this] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2012), - [anon_sym_AT_COLON] = ACTIONS(2014), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2012), - [anon_sym_TILDE] = ACTIONS(2014), - [anon_sym_BANG] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2014), - [anon_sym_DASH_DASH] = ACTIONS(2014), - [anon_sym_PERCENT] = ACTIONS(2014), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_LT_LT] = ACTIONS(2014), - [anon_sym_GT_GT] = ACTIONS(2012), - [anon_sym_GT_GT_GT] = ACTIONS(2014), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_PIPE] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(2014), - [anon_sym_PIPE_PIPE] = ACTIONS(2014), - [anon_sym_EQ_EQ] = ACTIONS(2014), - [anon_sym_BANG_EQ] = ACTIONS(2014), - [anon_sym_LT] = ACTIONS(2012), - [anon_sym_LT_EQ] = ACTIONS(2014), - [anon_sym_GT] = ACTIONS(2012), - [anon_sym_GT_EQ] = ACTIONS(2014), - [anon_sym_EQ_GT] = ACTIONS(2014), - [anon_sym_QMARK_QMARK] = ACTIONS(2014), - [anon_sym_EQ] = ACTIONS(2012), - [sym__rangeOperator] = ACTIONS(2014), - [anon_sym_null] = ACTIONS(2012), - [anon_sym_macro] = ACTIONS(2012), - [anon_sym_abstract] = ACTIONS(2012), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_extern] = ACTIONS(2012), - [anon_sym_inline] = ACTIONS(2012), - [anon_sym_overload] = ACTIONS(2012), - [anon_sym_override] = ACTIONS(2012), - [anon_sym_final] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2012), - [anon_sym_interface] = ACTIONS(2012), - [anon_sym_typedef] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_var] = ACTIONS(2012), - [aux_sym_integer_token1] = ACTIONS(2012), - [aux_sym_integer_token2] = ACTIONS(2014), - [aux_sym_float_token1] = ACTIONS(2012), - [aux_sym_float_token2] = ACTIONS(2014), - [anon_sym_true] = ACTIONS(2012), - [anon_sym_false] = ACTIONS(2012), - [aux_sym_string_token1] = ACTIONS(2014), - [aux_sym_string_token3] = ACTIONS(2014), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3193), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [548] = { - [ts_builtin_sym_end] = ACTIONS(1738), - [sym_identifier] = ACTIONS(1736), - [anon_sym_POUND] = ACTIONS(1738), - [anon_sym_package] = ACTIONS(1736), - [anon_sym_import] = ACTIONS(1736), - [anon_sym_using] = ACTIONS(1736), - [anon_sym_throw] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_switch] = ACTIONS(1736), - [anon_sym_LBRACE] = ACTIONS(1738), - [anon_sym_cast] = ACTIONS(1736), - [anon_sym_DOLLARtype] = ACTIONS(1738), - [anon_sym_return] = ACTIONS(1736), - [anon_sym_untyped] = ACTIONS(1736), - [anon_sym_break] = ACTIONS(1736), - [anon_sym_continue] = ACTIONS(1736), - [anon_sym_LBRACK] = ACTIONS(1738), - [anon_sym_this] = ACTIONS(1736), - [anon_sym_AT] = ACTIONS(1736), - [anon_sym_AT_COLON] = ACTIONS(1738), - [anon_sym_if] = ACTIONS(1736), - [anon_sym_new] = ACTIONS(1736), - [anon_sym_TILDE] = ACTIONS(1738), - [anon_sym_BANG] = ACTIONS(1736), - [anon_sym_DASH] = ACTIONS(1736), - [anon_sym_PLUS_PLUS] = ACTIONS(1738), - [anon_sym_DASH_DASH] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1738), - [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_SLASH] = ACTIONS(1736), - [anon_sym_PLUS] = ACTIONS(1736), - [anon_sym_LT_LT] = ACTIONS(1738), - [anon_sym_GT_GT] = ACTIONS(1736), - [anon_sym_GT_GT_GT] = ACTIONS(1738), - [anon_sym_AMP] = ACTIONS(1736), - [anon_sym_PIPE] = ACTIONS(1736), - [anon_sym_CARET] = ACTIONS(1738), - [anon_sym_AMP_AMP] = ACTIONS(1738), - [anon_sym_PIPE_PIPE] = ACTIONS(1738), - [anon_sym_EQ_EQ] = ACTIONS(1738), - [anon_sym_BANG_EQ] = ACTIONS(1738), - [anon_sym_LT] = ACTIONS(1736), - [anon_sym_LT_EQ] = ACTIONS(1738), - [anon_sym_GT] = ACTIONS(1736), - [anon_sym_GT_EQ] = ACTIONS(1738), - [anon_sym_EQ_GT] = ACTIONS(1738), - [anon_sym_QMARK_QMARK] = ACTIONS(1738), - [anon_sym_EQ] = ACTIONS(1736), - [sym__rangeOperator] = ACTIONS(1738), - [anon_sym_null] = ACTIONS(1736), - [anon_sym_macro] = ACTIONS(1736), - [anon_sym_abstract] = ACTIONS(1736), - [anon_sym_static] = ACTIONS(1736), - [anon_sym_public] = ACTIONS(1736), - [anon_sym_private] = ACTIONS(1736), - [anon_sym_extern] = ACTIONS(1736), - [anon_sym_inline] = ACTIONS(1736), - [anon_sym_overload] = ACTIONS(1736), - [anon_sym_override] = ACTIONS(1736), - [anon_sym_final] = ACTIONS(1736), - [anon_sym_class] = ACTIONS(1736), - [anon_sym_interface] = ACTIONS(1736), - [anon_sym_typedef] = ACTIONS(1736), - [anon_sym_function] = ACTIONS(1736), - [anon_sym_var] = ACTIONS(1736), - [aux_sym_integer_token1] = ACTIONS(1736), - [aux_sym_integer_token2] = ACTIONS(1738), - [aux_sym_float_token1] = ACTIONS(1736), - [aux_sym_float_token2] = ACTIONS(1738), - [anon_sym_true] = ACTIONS(1736), - [anon_sym_false] = ACTIONS(1736), - [aux_sym_string_token1] = ACTIONS(1738), - [aux_sym_string_token3] = ACTIONS(1738), + [ts_builtin_sym_end] = ACTIONS(1753), + [sym_identifier] = ACTIONS(1755), + [anon_sym_POUND] = ACTIONS(1753), + [anon_sym_package] = ACTIONS(1755), + [anon_sym_DOT] = ACTIONS(1755), + [anon_sym_import] = ACTIONS(1755), + [anon_sym_STAR] = ACTIONS(1753), + [anon_sym_using] = ACTIONS(1755), + [anon_sym_throw] = ACTIONS(1755), + [anon_sym_LPAREN] = ACTIONS(1753), + [anon_sym_switch] = ACTIONS(1755), + [anon_sym_LBRACE] = ACTIONS(1753), + [anon_sym_cast] = ACTIONS(1755), + [anon_sym_DOLLARtype] = ACTIONS(1753), + [anon_sym_for] = ACTIONS(1755), + [anon_sym_return] = ACTIONS(1755), + [anon_sym_untyped] = ACTIONS(1755), + [anon_sym_break] = ACTIONS(1755), + [anon_sym_continue] = ACTIONS(1755), + [anon_sym_LBRACK] = ACTIONS(1753), + [anon_sym_this] = ACTIONS(1755), + [anon_sym_QMARK] = ACTIONS(1755), + [anon_sym_AT] = ACTIONS(1755), + [anon_sym_AT_COLON] = ACTIONS(1753), + [anon_sym_try] = ACTIONS(1755), + [anon_sym_catch] = ACTIONS(1755), + [anon_sym_else] = ACTIONS(1755), + [anon_sym_if] = ACTIONS(1755), + [anon_sym_while] = ACTIONS(1755), + [anon_sym_do] = ACTIONS(1755), + [anon_sym_new] = ACTIONS(1755), + [anon_sym_TILDE] = ACTIONS(1753), + [anon_sym_BANG] = ACTIONS(1755), + [anon_sym_DASH] = ACTIONS(1755), + [anon_sym_PLUS_PLUS] = ACTIONS(1753), + [anon_sym_DASH_DASH] = ACTIONS(1753), + [anon_sym_PERCENT] = ACTIONS(1753), + [anon_sym_SLASH] = ACTIONS(1755), + [anon_sym_PLUS] = ACTIONS(1755), + [anon_sym_LT_LT] = ACTIONS(1753), + [anon_sym_GT_GT] = ACTIONS(1755), + [anon_sym_GT_GT_GT] = ACTIONS(1753), + [anon_sym_AMP] = ACTIONS(1755), + [anon_sym_PIPE] = ACTIONS(1755), + [anon_sym_CARET] = ACTIONS(1753), + [anon_sym_AMP_AMP] = ACTIONS(1753), + [anon_sym_PIPE_PIPE] = ACTIONS(1753), + [anon_sym_EQ_EQ] = ACTIONS(1753), + [anon_sym_BANG_EQ] = ACTIONS(1753), + [anon_sym_LT] = ACTIONS(1755), + [anon_sym_LT_EQ] = ACTIONS(1753), + [anon_sym_GT] = ACTIONS(1755), + [anon_sym_GT_EQ] = ACTIONS(1753), + [anon_sym_EQ_GT] = ACTIONS(1753), + [anon_sym_QMARK_QMARK] = ACTIONS(1753), + [anon_sym_EQ] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1753), + [anon_sym_null] = ACTIONS(1755), + [anon_sym_macro] = ACTIONS(1755), + [anon_sym_abstract] = ACTIONS(1755), + [anon_sym_static] = ACTIONS(1755), + [anon_sym_public] = ACTIONS(1755), + [anon_sym_private] = ACTIONS(1755), + [anon_sym_extern] = ACTIONS(1755), + [anon_sym_inline] = ACTIONS(1755), + [anon_sym_overload] = ACTIONS(1755), + [anon_sym_override] = ACTIONS(1755), + [anon_sym_final] = ACTIONS(1755), + [anon_sym_class] = ACTIONS(1755), + [anon_sym_interface] = ACTIONS(1755), + [anon_sym_enum] = ACTIONS(1755), + [anon_sym_typedef] = ACTIONS(1755), + [anon_sym_function] = ACTIONS(1755), + [anon_sym_var] = ACTIONS(1755), + [aux_sym_integer_token1] = ACTIONS(1755), + [aux_sym_integer_token2] = ACTIONS(1753), + [aux_sym_float_token1] = ACTIONS(1755), + [aux_sym_float_token2] = ACTIONS(1753), + [anon_sym_true] = ACTIONS(1755), + [anon_sym_false] = ACTIONS(1755), + [aux_sym_string_token1] = ACTIONS(1753), + [aux_sym_string_token3] = ACTIONS(1753), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [549] = { - [ts_builtin_sym_end] = ACTIONS(2278), - [sym_identifier] = ACTIONS(2276), - [anon_sym_POUND] = ACTIONS(2278), - [anon_sym_package] = ACTIONS(2276), - [anon_sym_import] = ACTIONS(2276), - [anon_sym_using] = ACTIONS(2276), - [anon_sym_throw] = ACTIONS(2276), - [anon_sym_LPAREN] = ACTIONS(2278), - [anon_sym_switch] = ACTIONS(2276), - [anon_sym_LBRACE] = ACTIONS(2278), - [anon_sym_cast] = ACTIONS(2276), - [anon_sym_DOLLARtype] = ACTIONS(2278), - [anon_sym_return] = ACTIONS(2276), - [anon_sym_untyped] = ACTIONS(2276), - [anon_sym_break] = ACTIONS(2276), - [anon_sym_continue] = ACTIONS(2276), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_this] = ACTIONS(2276), - [anon_sym_AT] = ACTIONS(2276), - [anon_sym_AT_COLON] = ACTIONS(2278), - [anon_sym_if] = ACTIONS(2276), - [anon_sym_new] = ACTIONS(2276), - [anon_sym_TILDE] = ACTIONS(2278), - [anon_sym_BANG] = ACTIONS(2276), - [anon_sym_DASH] = ACTIONS(2276), - [anon_sym_PLUS_PLUS] = ACTIONS(2278), - [anon_sym_DASH_DASH] = ACTIONS(2278), - [anon_sym_PERCENT] = ACTIONS(2278), - [anon_sym_STAR] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(2276), - [anon_sym_PLUS] = ACTIONS(2276), - [anon_sym_LT_LT] = ACTIONS(2278), - [anon_sym_GT_GT] = ACTIONS(2276), - [anon_sym_GT_GT_GT] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2276), - [anon_sym_PIPE] = ACTIONS(2276), - [anon_sym_CARET] = ACTIONS(2278), - [anon_sym_AMP_AMP] = ACTIONS(2278), - [anon_sym_PIPE_PIPE] = ACTIONS(2278), - [anon_sym_EQ_EQ] = ACTIONS(2278), - [anon_sym_BANG_EQ] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(2276), - [anon_sym_LT_EQ] = ACTIONS(2278), - [anon_sym_GT] = ACTIONS(2276), - [anon_sym_GT_EQ] = ACTIONS(2278), - [anon_sym_EQ_GT] = ACTIONS(2278), - [anon_sym_QMARK_QMARK] = ACTIONS(2278), - [anon_sym_EQ] = ACTIONS(2276), - [sym__rangeOperator] = ACTIONS(2278), - [anon_sym_null] = ACTIONS(2276), - [anon_sym_macro] = ACTIONS(2276), - [anon_sym_abstract] = ACTIONS(2276), - [anon_sym_static] = ACTIONS(2276), - [anon_sym_public] = ACTIONS(2276), - [anon_sym_private] = ACTIONS(2276), - [anon_sym_extern] = ACTIONS(2276), - [anon_sym_inline] = ACTIONS(2276), - [anon_sym_overload] = ACTIONS(2276), - [anon_sym_override] = ACTIONS(2276), - [anon_sym_final] = ACTIONS(2276), - [anon_sym_class] = ACTIONS(2276), - [anon_sym_interface] = ACTIONS(2276), - [anon_sym_typedef] = ACTIONS(2276), - [anon_sym_function] = ACTIONS(2276), - [anon_sym_var] = ACTIONS(2276), - [aux_sym_integer_token1] = ACTIONS(2276), - [aux_sym_integer_token2] = ACTIONS(2278), - [aux_sym_float_token1] = ACTIONS(2276), - [aux_sym_float_token2] = ACTIONS(2278), - [anon_sym_true] = ACTIONS(2276), - [anon_sym_false] = ACTIONS(2276), - [aux_sym_string_token1] = ACTIONS(2278), - [aux_sym_string_token3] = ACTIONS(2278), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3195), + [anon_sym_POUND] = ACTIONS(3197), + [anon_sym_package] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_case] = ACTIONS(3195), + [anon_sym_default] = ACTIONS(3195), + [anon_sym_cast] = ACTIONS(3195), + [anon_sym_DOLLARtype] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_untyped] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_this] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_AT_COLON] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_catch] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PERCENT] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_LT_LT] = ACTIONS(3197), + [anon_sym_GT_GT] = ACTIONS(3195), + [anon_sym_GT_GT_GT] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_PIPE] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_EQ_GT] = ACTIONS(3197), + [anon_sym_QMARK_QMARK] = ACTIONS(3197), + [anon_sym_EQ] = ACTIONS(3195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3195), + [anon_sym_macro] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym_overload] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_final] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [aux_sym_integer_token1] = ACTIONS(3195), + [aux_sym_integer_token2] = ACTIONS(3197), + [aux_sym_float_token1] = ACTIONS(3195), + [aux_sym_float_token2] = ACTIONS(3197), + [anon_sym_true] = ACTIONS(3195), + [anon_sym_false] = ACTIONS(3195), + [aux_sym_string_token1] = ACTIONS(3197), + [aux_sym_string_token3] = ACTIONS(3197), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3197), [sym__closing_brace_unmarker] = ACTIONS(3), }, [550] = { - [ts_builtin_sym_end] = ACTIONS(2258), - [sym_identifier] = ACTIONS(2256), - [anon_sym_POUND] = ACTIONS(2258), - [anon_sym_package] = ACTIONS(2256), - [anon_sym_import] = ACTIONS(2256), - [anon_sym_using] = ACTIONS(2256), - [anon_sym_throw] = ACTIONS(2256), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2256), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_cast] = ACTIONS(2256), - [anon_sym_DOLLARtype] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2256), - [anon_sym_untyped] = ACTIONS(2256), - [anon_sym_break] = ACTIONS(2256), - [anon_sym_continue] = ACTIONS(2256), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_this] = ACTIONS(2256), - [anon_sym_AT] = ACTIONS(2256), - [anon_sym_AT_COLON] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2256), - [anon_sym_new] = ACTIONS(2256), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2256), - [anon_sym_DASH] = ACTIONS(2256), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2256), - [anon_sym_PLUS] = ACTIONS(2256), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2256), - [anon_sym_GT_GT_GT] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2256), - [anon_sym_PIPE] = ACTIONS(2256), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2256), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2256), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_EQ_GT] = ACTIONS(2258), - [anon_sym_QMARK_QMARK] = ACTIONS(2258), - [anon_sym_EQ] = ACTIONS(2256), - [sym__rangeOperator] = ACTIONS(2258), - [anon_sym_null] = ACTIONS(2256), - [anon_sym_macro] = ACTIONS(2256), - [anon_sym_abstract] = ACTIONS(2256), - [anon_sym_static] = ACTIONS(2256), - [anon_sym_public] = ACTIONS(2256), - [anon_sym_private] = ACTIONS(2256), - [anon_sym_extern] = ACTIONS(2256), - [anon_sym_inline] = ACTIONS(2256), - [anon_sym_overload] = ACTIONS(2256), - [anon_sym_override] = ACTIONS(2256), - [anon_sym_final] = ACTIONS(2256), - [anon_sym_class] = ACTIONS(2256), - [anon_sym_interface] = ACTIONS(2256), - [anon_sym_typedef] = ACTIONS(2256), - [anon_sym_function] = ACTIONS(2256), - [anon_sym_var] = ACTIONS(2256), - [aux_sym_integer_token1] = ACTIONS(2256), - [aux_sym_integer_token2] = ACTIONS(2258), - [aux_sym_float_token1] = ACTIONS(2256), - [aux_sym_float_token2] = ACTIONS(2258), - [anon_sym_true] = ACTIONS(2256), - [anon_sym_false] = ACTIONS(2256), - [aux_sym_string_token1] = ACTIONS(2258), - [aux_sym_string_token3] = ACTIONS(2258), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(3201), + [anon_sym_package] = ACTIONS(3199), + [anon_sym_import] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_case] = ACTIONS(3199), + [anon_sym_default] = ACTIONS(3199), + [anon_sym_cast] = ACTIONS(3199), + [anon_sym_DOLLARtype] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_untyped] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_this] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_AT_COLON] = ACTIONS(3201), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_catch] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3199), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_EQ_GT] = ACTIONS(3201), + [anon_sym_QMARK_QMARK] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3199), + [anon_sym_macro] = ACTIONS(3199), + [anon_sym_abstract] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym_overload] = ACTIONS(3199), + [anon_sym_override] = ACTIONS(3199), + [anon_sym_final] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_interface] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_function] = ACTIONS(3199), + [anon_sym_var] = ACTIONS(3199), + [aux_sym_integer_token1] = ACTIONS(3199), + [aux_sym_integer_token2] = ACTIONS(3201), + [aux_sym_float_token1] = ACTIONS(3199), + [aux_sym_float_token2] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [aux_sym_string_token1] = ACTIONS(3201), + [aux_sym_string_token3] = ACTIONS(3201), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3201), [sym__closing_brace_unmarker] = ACTIONS(3), }, [551] = { - [ts_builtin_sym_end] = ACTIONS(1970), - [sym_identifier] = ACTIONS(1968), - [anon_sym_POUND] = ACTIONS(1970), - [anon_sym_package] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_using] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1970), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1970), - [anon_sym_cast] = ACTIONS(1968), - [anon_sym_DOLLARtype] = ACTIONS(1970), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_untyped] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1970), - [anon_sym_this] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1968), - [anon_sym_AT_COLON] = ACTIONS(1970), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1970), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1970), - [anon_sym_DASH_DASH] = ACTIONS(1970), - [anon_sym_PERCENT] = ACTIONS(1970), - [anon_sym_STAR] = ACTIONS(1970), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_LT_LT] = ACTIONS(1970), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_GT_GT_GT] = ACTIONS(1970), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1970), - [anon_sym_AMP_AMP] = ACTIONS(1970), - [anon_sym_PIPE_PIPE] = ACTIONS(1970), - [anon_sym_EQ_EQ] = ACTIONS(1970), - [anon_sym_BANG_EQ] = ACTIONS(1970), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_LT_EQ] = ACTIONS(1970), - [anon_sym_GT] = ACTIONS(1968), - [anon_sym_GT_EQ] = ACTIONS(1970), - [anon_sym_EQ_GT] = ACTIONS(1970), - [anon_sym_QMARK_QMARK] = ACTIONS(1970), - [anon_sym_EQ] = ACTIONS(1968), - [sym__rangeOperator] = ACTIONS(1970), - [anon_sym_null] = ACTIONS(1968), - [anon_sym_macro] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_extern] = ACTIONS(1968), - [anon_sym_inline] = ACTIONS(1968), - [anon_sym_overload] = ACTIONS(1968), - [anon_sym_override] = ACTIONS(1968), - [anon_sym_final] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_typedef] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [aux_sym_integer_token1] = ACTIONS(1968), - [aux_sym_integer_token2] = ACTIONS(1970), - [aux_sym_float_token1] = ACTIONS(1968), - [aux_sym_float_token2] = ACTIONS(1970), - [anon_sym_true] = ACTIONS(1968), - [anon_sym_false] = ACTIONS(1968), - [aux_sym_string_token1] = ACTIONS(1970), - [aux_sym_string_token3] = ACTIONS(1970), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3203), + [anon_sym_POUND] = ACTIONS(3205), + [anon_sym_package] = ACTIONS(3203), + [anon_sym_import] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_case] = ACTIONS(3203), + [anon_sym_default] = ACTIONS(3203), + [anon_sym_cast] = ACTIONS(3203), + [anon_sym_DOLLARtype] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_untyped] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_this] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_AT_COLON] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_catch] = ACTIONS(3203), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_LT_LT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_GT_GT_GT] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_EQ_GT] = ACTIONS(3205), + [anon_sym_QMARK_QMARK] = ACTIONS(3205), + [anon_sym_EQ] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_macro] = ACTIONS(3203), + [anon_sym_abstract] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_private] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym_overload] = ACTIONS(3203), + [anon_sym_override] = ACTIONS(3203), + [anon_sym_final] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_interface] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_typedef] = ACTIONS(3203), + [anon_sym_function] = ACTIONS(3203), + [anon_sym_var] = ACTIONS(3203), + [aux_sym_integer_token1] = ACTIONS(3203), + [aux_sym_integer_token2] = ACTIONS(3205), + [aux_sym_float_token1] = ACTIONS(3203), + [aux_sym_float_token2] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(3203), + [anon_sym_false] = ACTIONS(3203), + [aux_sym_string_token1] = ACTIONS(3205), + [aux_sym_string_token3] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3205), [sym__closing_brace_unmarker] = ACTIONS(3), }, [552] = { - [ts_builtin_sym_end] = ACTIONS(2186), - [sym_identifier] = ACTIONS(2184), - [anon_sym_POUND] = ACTIONS(2186), - [anon_sym_package] = ACTIONS(2184), - [anon_sym_import] = ACTIONS(2184), - [anon_sym_using] = ACTIONS(2184), - [anon_sym_throw] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2186), - [anon_sym_switch] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_cast] = ACTIONS(2184), - [anon_sym_DOLLARtype] = ACTIONS(2186), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_untyped] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_this] = ACTIONS(2184), - [anon_sym_AT] = ACTIONS(2184), - [anon_sym_AT_COLON] = ACTIONS(2186), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2186), - [anon_sym_BANG] = ACTIONS(2184), - [anon_sym_DASH] = ACTIONS(2184), - [anon_sym_PLUS_PLUS] = ACTIONS(2186), - [anon_sym_DASH_DASH] = ACTIONS(2186), - [anon_sym_PERCENT] = ACTIONS(2186), - [anon_sym_STAR] = ACTIONS(2186), - [anon_sym_SLASH] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_EQ_EQ] = ACTIONS(2186), - [anon_sym_BANG_EQ] = ACTIONS(2186), - [anon_sym_LT] = ACTIONS(2184), - [anon_sym_LT_EQ] = ACTIONS(2186), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2186), - [anon_sym_EQ_GT] = ACTIONS(2186), - [anon_sym_QMARK_QMARK] = ACTIONS(2186), - [anon_sym_EQ] = ACTIONS(2184), - [sym__rangeOperator] = ACTIONS(2186), - [anon_sym_null] = ACTIONS(2184), - [anon_sym_macro] = ACTIONS(2184), - [anon_sym_abstract] = ACTIONS(2184), - [anon_sym_static] = ACTIONS(2184), - [anon_sym_public] = ACTIONS(2184), - [anon_sym_private] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_inline] = ACTIONS(2184), - [anon_sym_overload] = ACTIONS(2184), - [anon_sym_override] = ACTIONS(2184), - [anon_sym_final] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2184), - [anon_sym_typedef] = ACTIONS(2184), - [anon_sym_function] = ACTIONS(2184), - [anon_sym_var] = ACTIONS(2184), - [aux_sym_integer_token1] = ACTIONS(2184), - [aux_sym_integer_token2] = ACTIONS(2186), - [aux_sym_float_token1] = ACTIONS(2184), - [aux_sym_float_token2] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2184), - [anon_sym_false] = ACTIONS(2184), - [aux_sym_string_token1] = ACTIONS(2186), - [aux_sym_string_token3] = ACTIONS(2186), + [sym_identifier] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_case] = ACTIONS(1510), + [anon_sym_default] = ACTIONS(1510), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1506), [sym__closing_brace_unmarker] = ACTIONS(3), }, [553] = { - [ts_builtin_sym_end] = ACTIONS(271), - [sym_identifier] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(271), - [anon_sym_package] = ACTIONS(2368), - [anon_sym_import] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_cast] = ACTIONS(2368), - [anon_sym_DOLLARtype] = ACTIONS(271), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_untyped] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_this] = ACTIONS(2368), - [anon_sym_AT] = ACTIONS(2368), - [anon_sym_AT_COLON] = ACTIONS(271), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_GT_GT_GT] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(2368), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_GT] = ACTIONS(271), - [anon_sym_QMARK_QMARK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(2368), - [sym__rangeOperator] = ACTIONS(271), - [anon_sym_null] = ACTIONS(2368), - [anon_sym_macro] = ACTIONS(2368), - [anon_sym_abstract] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_public] = ACTIONS(2368), - [anon_sym_private] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_overload] = ACTIONS(2368), - [anon_sym_override] = ACTIONS(2368), - [anon_sym_final] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_interface] = ACTIONS(2368), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_function] = ACTIONS(2368), - [anon_sym_var] = ACTIONS(2368), - [aux_sym_integer_token1] = ACTIONS(2368), - [aux_sym_integer_token2] = ACTIONS(271), - [aux_sym_float_token1] = ACTIONS(2368), - [aux_sym_float_token2] = ACTIONS(271), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [aux_sym_string_token1] = ACTIONS(271), - [aux_sym_string_token3] = ACTIONS(271), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3207), + [anon_sym_POUND] = ACTIONS(3209), + [anon_sym_package] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_cast] = ACTIONS(3207), + [anon_sym_DOLLARtype] = ACTIONS(3209), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_untyped] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_this] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_AT_COLON] = ACTIONS(3209), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_catch] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PERCENT] = ACTIONS(3209), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_LT_LT] = ACTIONS(3209), + [anon_sym_GT_GT] = ACTIONS(3207), + [anon_sym_GT_GT_GT] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_PIPE_PIPE] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3207), + [anon_sym_GT_EQ] = ACTIONS(3209), + [anon_sym_EQ_GT] = ACTIONS(3209), + [anon_sym_QMARK_QMARK] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_null] = ACTIONS(3207), + [anon_sym_macro] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym_overload] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_final] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [aux_sym_integer_token1] = ACTIONS(3207), + [aux_sym_integer_token2] = ACTIONS(3209), + [aux_sym_float_token1] = ACTIONS(3207), + [aux_sym_float_token2] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(3207), + [anon_sym_false] = ACTIONS(3207), + [aux_sym_string_token1] = ACTIONS(3209), + [aux_sym_string_token3] = ACTIONS(3209), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3209), [sym__closing_brace_unmarker] = ACTIONS(3), }, [554] = { - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2160), - [anon_sym_POUND] = ACTIONS(2162), - [anon_sym_package] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2162), - [anon_sym_cast] = ACTIONS(2160), - [anon_sym_DOLLARtype] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_untyped] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2162), - [anon_sym_this] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_AT_COLON] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2162), - [anon_sym_DASH_DASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2162), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2162), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2162), - [anon_sym_PIPE_PIPE] = ACTIONS(2162), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2162), - [anon_sym_EQ_GT] = ACTIONS(2162), - [anon_sym_QMARK_QMARK] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2160), - [sym__rangeOperator] = ACTIONS(2162), - [anon_sym_null] = ACTIONS(2160), - [anon_sym_macro] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_inline] = ACTIONS(2160), - [anon_sym_overload] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_final] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_typedef] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [aux_sym_integer_token1] = ACTIONS(2160), - [aux_sym_integer_token2] = ACTIONS(2162), - [aux_sym_float_token1] = ACTIONS(2160), - [aux_sym_float_token2] = ACTIONS(2162), - [anon_sym_true] = ACTIONS(2160), - [anon_sym_false] = ACTIONS(2160), - [aux_sym_string_token1] = ACTIONS(2162), - [aux_sym_string_token3] = ACTIONS(2162), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3211), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_package] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_cast] = ACTIONS(3211), + [anon_sym_DOLLARtype] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_untyped] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_this] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_AT_COLON] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_catch] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3211), + [anon_sym_GT_GT_GT] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_PIPE] = ACTIONS(3211), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_PIPE_PIPE] = ACTIONS(3213), + [anon_sym_EQ_EQ] = ACTIONS(3213), + [anon_sym_BANG_EQ] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3213), + [anon_sym_EQ_GT] = ACTIONS(3213), + [anon_sym_QMARK_QMARK] = ACTIONS(3213), + [anon_sym_EQ] = ACTIONS(3211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3211), + [anon_sym_macro] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym_overload] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_final] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [aux_sym_integer_token1] = ACTIONS(3211), + [aux_sym_integer_token2] = ACTIONS(3213), + [aux_sym_float_token1] = ACTIONS(3211), + [aux_sym_float_token2] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(3211), + [anon_sym_false] = ACTIONS(3211), + [aux_sym_string_token1] = ACTIONS(3213), + [aux_sym_string_token3] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3213), [sym__closing_brace_unmarker] = ACTIONS(3), }, [555] = { - [ts_builtin_sym_end] = ACTIONS(1734), - [sym_identifier] = ACTIONS(1732), - [anon_sym_POUND] = ACTIONS(1734), - [anon_sym_package] = ACTIONS(1732), - [anon_sym_import] = ACTIONS(1732), - [anon_sym_using] = ACTIONS(1732), - [anon_sym_throw] = ACTIONS(1732), - [anon_sym_LPAREN] = ACTIONS(1734), - [anon_sym_switch] = ACTIONS(1732), - [anon_sym_LBRACE] = ACTIONS(1734), - [anon_sym_cast] = ACTIONS(1732), - [anon_sym_DOLLARtype] = ACTIONS(1734), - [anon_sym_return] = ACTIONS(1732), - [anon_sym_untyped] = ACTIONS(1732), - [anon_sym_break] = ACTIONS(1732), - [anon_sym_continue] = ACTIONS(1732), - [anon_sym_LBRACK] = ACTIONS(1734), - [anon_sym_this] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(1732), - [anon_sym_AT_COLON] = ACTIONS(1734), - [anon_sym_if] = ACTIONS(1732), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_TILDE] = ACTIONS(1734), - [anon_sym_BANG] = ACTIONS(1732), - [anon_sym_DASH] = ACTIONS(1732), - [anon_sym_PLUS_PLUS] = ACTIONS(1734), - [anon_sym_DASH_DASH] = ACTIONS(1734), - [anon_sym_PERCENT] = ACTIONS(1734), - [anon_sym_STAR] = ACTIONS(1734), - [anon_sym_SLASH] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1732), - [anon_sym_LT_LT] = ACTIONS(1734), - [anon_sym_GT_GT] = ACTIONS(1732), - [anon_sym_GT_GT_GT] = ACTIONS(1734), - [anon_sym_AMP] = ACTIONS(1732), - [anon_sym_PIPE] = ACTIONS(1732), - [anon_sym_CARET] = ACTIONS(1734), - [anon_sym_AMP_AMP] = ACTIONS(1734), - [anon_sym_PIPE_PIPE] = ACTIONS(1734), - [anon_sym_EQ_EQ] = ACTIONS(1734), - [anon_sym_BANG_EQ] = ACTIONS(1734), - [anon_sym_LT] = ACTIONS(1732), - [anon_sym_LT_EQ] = ACTIONS(1734), - [anon_sym_GT] = ACTIONS(1732), - [anon_sym_GT_EQ] = ACTIONS(1734), - [anon_sym_EQ_GT] = ACTIONS(1734), - [anon_sym_QMARK_QMARK] = ACTIONS(1734), - [anon_sym_EQ] = ACTIONS(1732), - [sym__rangeOperator] = ACTIONS(1734), - [anon_sym_null] = ACTIONS(1732), - [anon_sym_macro] = ACTIONS(1732), - [anon_sym_abstract] = ACTIONS(1732), - [anon_sym_static] = ACTIONS(1732), - [anon_sym_public] = ACTIONS(1732), - [anon_sym_private] = ACTIONS(1732), - [anon_sym_extern] = ACTIONS(1732), - [anon_sym_inline] = ACTIONS(1732), - [anon_sym_overload] = ACTIONS(1732), - [anon_sym_override] = ACTIONS(1732), - [anon_sym_final] = ACTIONS(1732), - [anon_sym_class] = ACTIONS(1732), - [anon_sym_interface] = ACTIONS(1732), - [anon_sym_typedef] = ACTIONS(1732), - [anon_sym_function] = ACTIONS(1732), - [anon_sym_var] = ACTIONS(1732), - [aux_sym_integer_token1] = ACTIONS(1732), - [aux_sym_integer_token2] = ACTIONS(1734), - [aux_sym_float_token1] = ACTIONS(1732), - [aux_sym_float_token2] = ACTIONS(1734), - [anon_sym_true] = ACTIONS(1732), - [anon_sym_false] = ACTIONS(1732), - [aux_sym_string_token1] = ACTIONS(1734), - [aux_sym_string_token3] = ACTIONS(1734), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_package] = ACTIONS(3215), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3215), + [anon_sym_default] = ACTIONS(3215), + [anon_sym_cast] = ACTIONS(3215), + [anon_sym_DOLLARtype] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_untyped] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_this] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_AT_COLON] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_catch] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PERCENT] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_LT_LT] = ACTIONS(3217), + [anon_sym_GT_GT] = ACTIONS(3215), + [anon_sym_GT_GT_GT] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_PIPE] = ACTIONS(3215), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_PIPE_PIPE] = ACTIONS(3217), + [anon_sym_EQ_EQ] = ACTIONS(3217), + [anon_sym_BANG_EQ] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_LT_EQ] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3215), + [anon_sym_GT_EQ] = ACTIONS(3217), + [anon_sym_EQ_GT] = ACTIONS(3217), + [anon_sym_QMARK_QMARK] = ACTIONS(3217), + [anon_sym_EQ] = ACTIONS(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_macro] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym_overload] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_final] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [aux_sym_integer_token1] = ACTIONS(3215), + [aux_sym_integer_token2] = ACTIONS(3217), + [aux_sym_float_token1] = ACTIONS(3215), + [aux_sym_float_token2] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3215), + [anon_sym_false] = ACTIONS(3215), + [aux_sym_string_token1] = ACTIONS(3217), + [aux_sym_string_token3] = ACTIONS(3217), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3217), [sym__closing_brace_unmarker] = ACTIONS(3), }, [556] = { - [sym_identifier] = ACTIONS(2370), - [anon_sym_POUND] = ACTIONS(2372), - [anon_sym_package] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_cast] = ACTIONS(2370), - [anon_sym_DOLLARtype] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_untyped] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_this] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_AT_COLON] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2372), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_GT_GT_GT] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_AMP_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2372), - [anon_sym_BANG_EQ] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_LT_EQ] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2372), - [anon_sym_EQ_GT] = ACTIONS(2372), - [anon_sym_QMARK_QMARK] = ACTIONS(2372), - [anon_sym_EQ] = ACTIONS(2370), - [sym__rangeOperator] = ACTIONS(2372), - [anon_sym_null] = ACTIONS(2370), - [anon_sym_macro] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2370), - [anon_sym_inline] = ACTIONS(2370), - [anon_sym_overload] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_final] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [aux_sym_integer_token1] = ACTIONS(2370), - [aux_sym_integer_token2] = ACTIONS(2372), - [aux_sym_float_token1] = ACTIONS(2370), - [aux_sym_float_token2] = ACTIONS(2372), - [anon_sym_true] = ACTIONS(2370), - [anon_sym_false] = ACTIONS(2370), - [aux_sym_string_token1] = ACTIONS(2372), - [aux_sym_string_token3] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(2372), + [sym_identifier] = ACTIONS(3219), + [anon_sym_POUND] = ACTIONS(3221), + [anon_sym_package] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_cast] = ACTIONS(3219), + [anon_sym_DOLLARtype] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_untyped] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_this] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_AT_COLON] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_catch] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_LT_LT] = ACTIONS(3221), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_EQ_EQ] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3221), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3221), + [anon_sym_QMARK_QMARK] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3219), + [anon_sym_macro] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym_overload] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_final] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [aux_sym_integer_token1] = ACTIONS(3219), + [aux_sym_integer_token2] = ACTIONS(3221), + [aux_sym_float_token1] = ACTIONS(3219), + [aux_sym_float_token2] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(3219), + [anon_sym_false] = ACTIONS(3219), + [aux_sym_string_token1] = ACTIONS(3221), + [aux_sym_string_token3] = ACTIONS(3221), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3221), [sym__closing_brace_unmarker] = ACTIONS(3), }, [557] = { - [ts_builtin_sym_end] = ACTIONS(2142), - [sym_identifier] = ACTIONS(2140), - [anon_sym_POUND] = ACTIONS(2142), - [anon_sym_package] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2142), - [anon_sym_cast] = ACTIONS(2140), - [anon_sym_DOLLARtype] = ACTIONS(2142), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_untyped] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2142), - [anon_sym_this] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_AT_COLON] = ACTIONS(2142), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2142), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2142), - [anon_sym_DASH_DASH] = ACTIONS(2142), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_EQ_GT] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_EQ] = ACTIONS(2140), - [sym__rangeOperator] = ACTIONS(2142), - [anon_sym_null] = ACTIONS(2140), - [anon_sym_macro] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_inline] = ACTIONS(2140), - [anon_sym_overload] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_final] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_typedef] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [aux_sym_integer_token1] = ACTIONS(2140), - [aux_sym_integer_token2] = ACTIONS(2142), - [aux_sym_float_token1] = ACTIONS(2140), - [aux_sym_float_token2] = ACTIONS(2142), - [anon_sym_true] = ACTIONS(2140), - [anon_sym_false] = ACTIONS(2140), - [aux_sym_string_token1] = ACTIONS(2142), - [aux_sym_string_token3] = ACTIONS(2142), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [558] = { - [ts_builtin_sym_end] = ACTIONS(1730), - [sym_identifier] = ACTIONS(1728), - [anon_sym_POUND] = ACTIONS(1730), - [anon_sym_package] = ACTIONS(1728), - [anon_sym_import] = ACTIONS(1728), - [anon_sym_using] = ACTIONS(1728), - [anon_sym_throw] = ACTIONS(1728), - [anon_sym_LPAREN] = ACTIONS(1730), - [anon_sym_switch] = ACTIONS(1728), - [anon_sym_LBRACE] = ACTIONS(1730), - [anon_sym_cast] = ACTIONS(1728), - [anon_sym_DOLLARtype] = ACTIONS(1730), - [anon_sym_return] = ACTIONS(1728), - [anon_sym_untyped] = ACTIONS(1728), - [anon_sym_break] = ACTIONS(1728), - [anon_sym_continue] = ACTIONS(1728), - [anon_sym_LBRACK] = ACTIONS(1730), - [anon_sym_this] = ACTIONS(1728), - [anon_sym_AT] = ACTIONS(1728), - [anon_sym_AT_COLON] = ACTIONS(1730), - [anon_sym_if] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1730), - [anon_sym_BANG] = ACTIONS(1728), - [anon_sym_DASH] = ACTIONS(1728), - [anon_sym_PLUS_PLUS] = ACTIONS(1730), - [anon_sym_DASH_DASH] = ACTIONS(1730), - [anon_sym_PERCENT] = ACTIONS(1730), - [anon_sym_STAR] = ACTIONS(1730), - [anon_sym_SLASH] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1728), - [anon_sym_LT_LT] = ACTIONS(1730), - [anon_sym_GT_GT] = ACTIONS(1728), - [anon_sym_GT_GT_GT] = ACTIONS(1730), - [anon_sym_AMP] = ACTIONS(1728), - [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_CARET] = ACTIONS(1730), - [anon_sym_AMP_AMP] = ACTIONS(1730), - [anon_sym_PIPE_PIPE] = ACTIONS(1730), - [anon_sym_EQ_EQ] = ACTIONS(1730), - [anon_sym_BANG_EQ] = ACTIONS(1730), - [anon_sym_LT] = ACTIONS(1728), - [anon_sym_LT_EQ] = ACTIONS(1730), - [anon_sym_GT] = ACTIONS(1728), - [anon_sym_GT_EQ] = ACTIONS(1730), - [anon_sym_EQ_GT] = ACTIONS(1730), - [anon_sym_QMARK_QMARK] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1728), - [sym__rangeOperator] = ACTIONS(1730), - [anon_sym_null] = ACTIONS(1728), - [anon_sym_macro] = ACTIONS(1728), - [anon_sym_abstract] = ACTIONS(1728), - [anon_sym_static] = ACTIONS(1728), - [anon_sym_public] = ACTIONS(1728), - [anon_sym_private] = ACTIONS(1728), - [anon_sym_extern] = ACTIONS(1728), - [anon_sym_inline] = ACTIONS(1728), - [anon_sym_overload] = ACTIONS(1728), - [anon_sym_override] = ACTIONS(1728), - [anon_sym_final] = ACTIONS(1728), - [anon_sym_class] = ACTIONS(1728), - [anon_sym_interface] = ACTIONS(1728), - [anon_sym_typedef] = ACTIONS(1728), - [anon_sym_function] = ACTIONS(1728), - [anon_sym_var] = ACTIONS(1728), - [aux_sym_integer_token1] = ACTIONS(1728), - [aux_sym_integer_token2] = ACTIONS(1730), - [aux_sym_float_token1] = ACTIONS(1728), - [aux_sym_float_token2] = ACTIONS(1730), - [anon_sym_true] = ACTIONS(1728), - [anon_sym_false] = ACTIONS(1728), - [aux_sym_string_token1] = ACTIONS(1730), - [aux_sym_string_token3] = ACTIONS(1730), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3227), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_package] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_cast] = ACTIONS(3227), + [anon_sym_DOLLARtype] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_untyped] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_this] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_AT_COLON] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_catch] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3227), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3227), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_QMARK_QMARK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), + [anon_sym_null] = ACTIONS(3227), + [anon_sym_macro] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym_overload] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_final] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_typedef] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [aux_sym_integer_token1] = ACTIONS(3227), + [aux_sym_integer_token2] = ACTIONS(3229), + [aux_sym_float_token1] = ACTIONS(3227), + [aux_sym_float_token2] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym_string_token1] = ACTIONS(3229), + [aux_sym_string_token3] = ACTIONS(3229), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3229), [sym__closing_brace_unmarker] = ACTIONS(3), }, [559] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(562), - [anon_sym_this] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_GT_GT_GT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_QMARK_QMARK] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [sym__rangeOperator] = ACTIONS(562), - [anon_sym_null] = ACTIONS(564), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(564), - [aux_sym_integer_token2] = ACTIONS(562), - [aux_sym_float_token1] = ACTIONS(564), - [aux_sym_float_token2] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [aux_sym_string_token1] = ACTIONS(562), - [aux_sym_string_token3] = ACTIONS(562), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_package] = ACTIONS(2661), + [anon_sym_import] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_case] = ACTIONS(2661), + [anon_sym_default] = ACTIONS(2661), + [anon_sym_cast] = ACTIONS(2661), + [anon_sym_DOLLARtype] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_untyped] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_this] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_AT_COLON] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_catch] = ACTIONS(2661), + [anon_sym_else] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PERCENT] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2663), + [anon_sym_GT_GT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_PIPE_PIPE] = ACTIONS(2663), + [anon_sym_EQ_EQ] = ACTIONS(2663), + [anon_sym_BANG_EQ] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2663), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2663), + [anon_sym_EQ_GT] = ACTIONS(2663), + [anon_sym_QMARK_QMARK] = ACTIONS(2663), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2661), + [anon_sym_macro] = ACTIONS(2661), + [anon_sym_abstract] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_public] = ACTIONS(2661), + [anon_sym_private] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_overload] = ACTIONS(2661), + [anon_sym_override] = ACTIONS(2661), + [anon_sym_final] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_interface] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_function] = ACTIONS(2661), + [anon_sym_var] = ACTIONS(2661), + [aux_sym_integer_token1] = ACTIONS(2661), + [aux_sym_integer_token2] = ACTIONS(2663), + [aux_sym_float_token1] = ACTIONS(2661), + [aux_sym_float_token2] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [aux_sym_string_token1] = ACTIONS(2663), + [aux_sym_string_token3] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2663), [sym__closing_brace_unmarker] = ACTIONS(3), }, [560] = { - [ts_builtin_sym_end] = ACTIONS(562), - [sym_identifier] = ACTIONS(564), - [anon_sym_POUND] = ACTIONS(562), - [anon_sym_package] = ACTIONS(564), - [anon_sym_import] = ACTIONS(564), - [anon_sym_using] = ACTIONS(564), - [anon_sym_throw] = ACTIONS(564), - [anon_sym_LPAREN] = ACTIONS(562), - [anon_sym_switch] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(562), - [anon_sym_cast] = ACTIONS(564), - [anon_sym_DOLLARtype] = ACTIONS(562), - [anon_sym_return] = ACTIONS(564), - [anon_sym_untyped] = ACTIONS(564), - [anon_sym_break] = ACTIONS(564), - [anon_sym_continue] = ACTIONS(564), - [anon_sym_LBRACK] = ACTIONS(1468), - [anon_sym_this] = ACTIONS(564), - [anon_sym_AT] = ACTIONS(564), - [anon_sym_AT_COLON] = ACTIONS(562), - [anon_sym_if] = ACTIONS(564), - [anon_sym_new] = ACTIONS(564), - [anon_sym_TILDE] = ACTIONS(562), - [anon_sym_BANG] = ACTIONS(564), - [anon_sym_DASH] = ACTIONS(564), - [anon_sym_PLUS_PLUS] = ACTIONS(562), - [anon_sym_DASH_DASH] = ACTIONS(562), - [anon_sym_PERCENT] = ACTIONS(562), - [anon_sym_STAR] = ACTIONS(562), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_PLUS] = ACTIONS(564), - [anon_sym_LT_LT] = ACTIONS(562), - [anon_sym_GT_GT] = ACTIONS(564), - [anon_sym_GT_GT_GT] = ACTIONS(562), - [anon_sym_AMP] = ACTIONS(564), - [anon_sym_PIPE] = ACTIONS(564), - [anon_sym_CARET] = ACTIONS(562), - [anon_sym_AMP_AMP] = ACTIONS(562), - [anon_sym_PIPE_PIPE] = ACTIONS(562), - [anon_sym_EQ_EQ] = ACTIONS(562), - [anon_sym_BANG_EQ] = ACTIONS(562), - [anon_sym_LT] = ACTIONS(564), - [anon_sym_LT_EQ] = ACTIONS(562), - [anon_sym_GT] = ACTIONS(564), - [anon_sym_GT_EQ] = ACTIONS(562), - [anon_sym_EQ_GT] = ACTIONS(562), - [anon_sym_QMARK_QMARK] = ACTIONS(562), - [anon_sym_EQ] = ACTIONS(564), - [sym__rangeOperator] = ACTIONS(562), - [anon_sym_null] = ACTIONS(564), - [anon_sym_macro] = ACTIONS(564), - [anon_sym_abstract] = ACTIONS(564), - [anon_sym_static] = ACTIONS(564), - [anon_sym_public] = ACTIONS(564), - [anon_sym_private] = ACTIONS(564), - [anon_sym_extern] = ACTIONS(564), - [anon_sym_inline] = ACTIONS(564), - [anon_sym_overload] = ACTIONS(564), - [anon_sym_override] = ACTIONS(564), - [anon_sym_final] = ACTIONS(564), - [anon_sym_class] = ACTIONS(564), - [anon_sym_interface] = ACTIONS(564), - [anon_sym_typedef] = ACTIONS(564), - [anon_sym_function] = ACTIONS(564), - [anon_sym_var] = ACTIONS(564), - [aux_sym_integer_token1] = ACTIONS(564), - [aux_sym_integer_token2] = ACTIONS(562), - [aux_sym_float_token1] = ACTIONS(564), - [aux_sym_float_token2] = ACTIONS(562), - [anon_sym_true] = ACTIONS(564), - [anon_sym_false] = ACTIONS(564), - [aux_sym_string_token1] = ACTIONS(562), - [aux_sym_string_token3] = ACTIONS(562), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3231), + [anon_sym_POUND] = ACTIONS(3233), + [anon_sym_package] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_cast] = ACTIONS(3231), + [anon_sym_DOLLARtype] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_untyped] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_this] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_AT_COLON] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_catch] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_PERCENT] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_LT_LT] = ACTIONS(3233), + [anon_sym_GT_GT] = ACTIONS(3231), + [anon_sym_GT_GT_GT] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP_AMP] = ACTIONS(3233), + [anon_sym_PIPE_PIPE] = ACTIONS(3233), + [anon_sym_EQ_EQ] = ACTIONS(3233), + [anon_sym_BANG_EQ] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_LT_EQ] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3233), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_QMARK_QMARK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3231), + [anon_sym_macro] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym_overload] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_final] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_typedef] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [aux_sym_integer_token1] = ACTIONS(3231), + [aux_sym_integer_token2] = ACTIONS(3233), + [aux_sym_float_token1] = ACTIONS(3231), + [aux_sym_float_token2] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [aux_sym_string_token1] = ACTIONS(3233), + [aux_sym_string_token3] = ACTIONS(3233), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3233), [sym__closing_brace_unmarker] = ACTIONS(3), }, [561] = { - [ts_builtin_sym_end] = ACTIONS(1726), - [sym_identifier] = ACTIONS(1724), - [anon_sym_POUND] = ACTIONS(1726), - [anon_sym_package] = ACTIONS(1724), - [anon_sym_import] = ACTIONS(1724), - [anon_sym_using] = ACTIONS(1724), - [anon_sym_throw] = ACTIONS(1724), - [anon_sym_LPAREN] = ACTIONS(1726), - [anon_sym_switch] = ACTIONS(1724), - [anon_sym_LBRACE] = ACTIONS(1726), - [anon_sym_cast] = ACTIONS(1724), - [anon_sym_DOLLARtype] = ACTIONS(1726), - [anon_sym_return] = ACTIONS(1724), - [anon_sym_untyped] = ACTIONS(1724), - [anon_sym_break] = ACTIONS(1724), - [anon_sym_continue] = ACTIONS(1724), - [anon_sym_LBRACK] = ACTIONS(1726), - [anon_sym_this] = ACTIONS(1724), - [anon_sym_AT] = ACTIONS(1724), - [anon_sym_AT_COLON] = ACTIONS(1726), - [anon_sym_if] = ACTIONS(1724), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_TILDE] = ACTIONS(1726), - [anon_sym_BANG] = ACTIONS(1724), - [anon_sym_DASH] = ACTIONS(1724), - [anon_sym_PLUS_PLUS] = ACTIONS(1726), - [anon_sym_DASH_DASH] = ACTIONS(1726), - [anon_sym_PERCENT] = ACTIONS(1726), - [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_SLASH] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1724), - [anon_sym_LT_LT] = ACTIONS(1726), - [anon_sym_GT_GT] = ACTIONS(1724), - [anon_sym_GT_GT_GT] = ACTIONS(1726), - [anon_sym_AMP] = ACTIONS(1724), - [anon_sym_PIPE] = ACTIONS(1724), - [anon_sym_CARET] = ACTIONS(1726), - [anon_sym_AMP_AMP] = ACTIONS(1726), - [anon_sym_PIPE_PIPE] = ACTIONS(1726), - [anon_sym_EQ_EQ] = ACTIONS(1726), - [anon_sym_BANG_EQ] = ACTIONS(1726), - [anon_sym_LT] = ACTIONS(1724), - [anon_sym_LT_EQ] = ACTIONS(1726), - [anon_sym_GT] = ACTIONS(1724), - [anon_sym_GT_EQ] = ACTIONS(1726), - [anon_sym_EQ_GT] = ACTIONS(1726), - [anon_sym_QMARK_QMARK] = ACTIONS(1726), - [anon_sym_EQ] = ACTIONS(1724), - [sym__rangeOperator] = ACTIONS(1726), - [anon_sym_null] = ACTIONS(1724), - [anon_sym_macro] = ACTIONS(1724), - [anon_sym_abstract] = ACTIONS(1724), - [anon_sym_static] = ACTIONS(1724), - [anon_sym_public] = ACTIONS(1724), - [anon_sym_private] = ACTIONS(1724), - [anon_sym_extern] = ACTIONS(1724), - [anon_sym_inline] = ACTIONS(1724), - [anon_sym_overload] = ACTIONS(1724), - [anon_sym_override] = ACTIONS(1724), - [anon_sym_final] = ACTIONS(1724), - [anon_sym_class] = ACTIONS(1724), - [anon_sym_interface] = ACTIONS(1724), - [anon_sym_typedef] = ACTIONS(1724), - [anon_sym_function] = ACTIONS(1724), - [anon_sym_var] = ACTIONS(1724), - [aux_sym_integer_token1] = ACTIONS(1724), - [aux_sym_integer_token2] = ACTIONS(1726), - [aux_sym_float_token1] = ACTIONS(1724), - [aux_sym_float_token2] = ACTIONS(1726), - [anon_sym_true] = ACTIONS(1724), - [anon_sym_false] = ACTIONS(1724), - [aux_sym_string_token1] = ACTIONS(1726), - [aux_sym_string_token3] = ACTIONS(1726), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3235), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_package] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_case] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_cast] = ACTIONS(3235), + [anon_sym_DOLLARtype] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_untyped] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_this] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_AT_COLON] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_catch] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3235), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_EQ_GT] = ACTIONS(3237), + [anon_sym_QMARK_QMARK] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_macro] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_extern] = ACTIONS(3235), + [anon_sym_inline] = ACTIONS(3235), + [anon_sym_overload] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_final] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), + [anon_sym_typedef] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [aux_sym_integer_token1] = ACTIONS(3235), + [aux_sym_integer_token2] = ACTIONS(3237), + [aux_sym_float_token1] = ACTIONS(3235), + [aux_sym_float_token2] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [aux_sym_string_token1] = ACTIONS(3237), + [aux_sym_string_token3] = ACTIONS(3237), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3237), [sym__closing_brace_unmarker] = ACTIONS(3), }, [562] = { - [ts_builtin_sym_end] = ACTIONS(1950), - [sym_identifier] = ACTIONS(1948), - [anon_sym_POUND] = ACTIONS(1950), - [anon_sym_package] = ACTIONS(1948), - [anon_sym_import] = ACTIONS(1948), - [anon_sym_using] = ACTIONS(1948), - [anon_sym_throw] = ACTIONS(1948), - [anon_sym_LPAREN] = ACTIONS(1950), - [anon_sym_switch] = ACTIONS(1948), - [anon_sym_LBRACE] = ACTIONS(1950), - [anon_sym_cast] = ACTIONS(1948), - [anon_sym_DOLLARtype] = ACTIONS(1950), - [anon_sym_return] = ACTIONS(1948), - [anon_sym_untyped] = ACTIONS(1948), - [anon_sym_break] = ACTIONS(1948), - [anon_sym_continue] = ACTIONS(1948), - [anon_sym_LBRACK] = ACTIONS(1950), - [anon_sym_this] = ACTIONS(1948), - [anon_sym_AT] = ACTIONS(1948), - [anon_sym_AT_COLON] = ACTIONS(1950), - [anon_sym_if] = ACTIONS(1948), - [anon_sym_new] = ACTIONS(1948), - [anon_sym_TILDE] = ACTIONS(1950), - [anon_sym_BANG] = ACTIONS(1948), - [anon_sym_DASH] = ACTIONS(1948), - [anon_sym_PLUS_PLUS] = ACTIONS(1950), - [anon_sym_DASH_DASH] = ACTIONS(1950), - [anon_sym_PERCENT] = ACTIONS(1950), - [anon_sym_STAR] = ACTIONS(1950), - [anon_sym_SLASH] = ACTIONS(1948), - [anon_sym_PLUS] = ACTIONS(1948), - [anon_sym_LT_LT] = ACTIONS(1950), - [anon_sym_GT_GT] = ACTIONS(1948), - [anon_sym_GT_GT_GT] = ACTIONS(1950), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_CARET] = ACTIONS(1950), - [anon_sym_AMP_AMP] = ACTIONS(1950), - [anon_sym_PIPE_PIPE] = ACTIONS(1950), - [anon_sym_EQ_EQ] = ACTIONS(1950), - [anon_sym_BANG_EQ] = ACTIONS(1950), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_LT_EQ] = ACTIONS(1950), - [anon_sym_GT] = ACTIONS(1948), - [anon_sym_GT_EQ] = ACTIONS(1950), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_QMARK] = ACTIONS(1950), - [anon_sym_EQ] = ACTIONS(1948), - [sym__rangeOperator] = ACTIONS(1950), - [anon_sym_null] = ACTIONS(1948), - [anon_sym_macro] = ACTIONS(1948), - [anon_sym_abstract] = ACTIONS(1948), - [anon_sym_static] = ACTIONS(1948), - [anon_sym_public] = ACTIONS(1948), - [anon_sym_private] = ACTIONS(1948), - [anon_sym_extern] = ACTIONS(1948), - [anon_sym_inline] = ACTIONS(1948), - [anon_sym_overload] = ACTIONS(1948), - [anon_sym_override] = ACTIONS(1948), - [anon_sym_final] = ACTIONS(1948), - [anon_sym_class] = ACTIONS(1948), - [anon_sym_interface] = ACTIONS(1948), - [anon_sym_typedef] = ACTIONS(1948), - [anon_sym_function] = ACTIONS(1948), - [anon_sym_var] = ACTIONS(1948), - [aux_sym_integer_token1] = ACTIONS(1948), - [aux_sym_integer_token2] = ACTIONS(1950), - [aux_sym_float_token1] = ACTIONS(1948), - [aux_sym_float_token2] = ACTIONS(1950), - [anon_sym_true] = ACTIONS(1948), - [anon_sym_false] = ACTIONS(1948), - [aux_sym_string_token1] = ACTIONS(1950), - [aux_sym_string_token3] = ACTIONS(1950), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_package] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_cast] = ACTIONS(3239), + [anon_sym_DOLLARtype] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_untyped] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_this] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_AT_COLON] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_catch] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3239), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3239), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_EQ_GT] = ACTIONS(3241), + [anon_sym_QMARK_QMARK] = ACTIONS(3241), + [anon_sym_EQ] = ACTIONS(3239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_null] = ACTIONS(3239), + [anon_sym_macro] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_inline] = ACTIONS(3239), + [anon_sym_overload] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_final] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_typedef] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [aux_sym_integer_token1] = ACTIONS(3239), + [aux_sym_integer_token2] = ACTIONS(3241), + [aux_sym_float_token1] = ACTIONS(3239), + [aux_sym_float_token2] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(3239), + [anon_sym_false] = ACTIONS(3239), + [aux_sym_string_token1] = ACTIONS(3241), + [aux_sym_string_token3] = ACTIONS(3241), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3241), [sym__closing_brace_unmarker] = ACTIONS(3), }, [563] = { - [ts_builtin_sym_end] = ACTIONS(2230), - [sym_identifier] = ACTIONS(2228), - [anon_sym_POUND] = ACTIONS(2230), - [anon_sym_package] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2230), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2230), - [anon_sym_cast] = ACTIONS(2228), - [anon_sym_DOLLARtype] = ACTIONS(2230), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_untyped] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2230), - [anon_sym_this] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_AT_COLON] = ACTIONS(2230), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2230), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2230), - [anon_sym_DASH_DASH] = ACTIONS(2230), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2228), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2228), - [anon_sym_PIPE] = ACTIONS(2228), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_GT] = ACTIONS(2228), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_EQ_GT] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_EQ] = ACTIONS(2228), - [sym__rangeOperator] = ACTIONS(2230), - [anon_sym_null] = ACTIONS(2228), - [anon_sym_macro] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_extern] = ACTIONS(2228), - [anon_sym_inline] = ACTIONS(2228), - [anon_sym_overload] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_final] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_typedef] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [aux_sym_integer_token1] = ACTIONS(2228), - [aux_sym_integer_token2] = ACTIONS(2230), - [aux_sym_float_token1] = ACTIONS(2228), - [aux_sym_float_token2] = ACTIONS(2230), - [anon_sym_true] = ACTIONS(2228), - [anon_sym_false] = ACTIONS(2228), - [aux_sym_string_token1] = ACTIONS(2230), - [aux_sym_string_token3] = ACTIONS(2230), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_package] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_case] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_cast] = ACTIONS(3243), + [anon_sym_DOLLARtype] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_untyped] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_this] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_AT_COLON] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_catch] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3243), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3243), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_EQ_GT] = ACTIONS(3245), + [anon_sym_QMARK_QMARK] = ACTIONS(3245), + [anon_sym_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3245), + [anon_sym_null] = ACTIONS(3243), + [anon_sym_macro] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(3243), + [anon_sym_inline] = ACTIONS(3243), + [anon_sym_overload] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_final] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [aux_sym_integer_token1] = ACTIONS(3243), + [aux_sym_integer_token2] = ACTIONS(3245), + [aux_sym_float_token1] = ACTIONS(3243), + [aux_sym_float_token2] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [aux_sym_string_token1] = ACTIONS(3245), + [aux_sym_string_token3] = ACTIONS(3245), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3245), [sym__closing_brace_unmarker] = ACTIONS(3), }, [564] = { - [ts_builtin_sym_end] = ACTIONS(1962), - [sym_identifier] = ACTIONS(1960), - [anon_sym_POUND] = ACTIONS(1962), - [anon_sym_package] = ACTIONS(1960), - [anon_sym_import] = ACTIONS(1960), - [anon_sym_using] = ACTIONS(1960), - [anon_sym_throw] = ACTIONS(1960), - [anon_sym_LPAREN] = ACTIONS(1962), - [anon_sym_switch] = ACTIONS(1960), - [anon_sym_LBRACE] = ACTIONS(1962), - [anon_sym_cast] = ACTIONS(1960), - [anon_sym_DOLLARtype] = ACTIONS(1962), - [anon_sym_return] = ACTIONS(1960), - [anon_sym_untyped] = ACTIONS(1960), - [anon_sym_break] = ACTIONS(1960), - [anon_sym_continue] = ACTIONS(1960), - [anon_sym_LBRACK] = ACTIONS(1962), - [anon_sym_this] = ACTIONS(1960), - [anon_sym_AT] = ACTIONS(1960), - [anon_sym_AT_COLON] = ACTIONS(1962), - [anon_sym_if] = ACTIONS(1960), - [anon_sym_new] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1962), - [anon_sym_BANG] = ACTIONS(1960), - [anon_sym_DASH] = ACTIONS(1960), - [anon_sym_PLUS_PLUS] = ACTIONS(1962), - [anon_sym_DASH_DASH] = ACTIONS(1962), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_STAR] = ACTIONS(1962), - [anon_sym_SLASH] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1960), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_GT_GT_GT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_AMP_AMP] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ] = ACTIONS(1962), - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_LT_EQ] = ACTIONS(1962), - [anon_sym_GT] = ACTIONS(1960), - [anon_sym_GT_EQ] = ACTIONS(1962), - [anon_sym_EQ_GT] = ACTIONS(1962), - [anon_sym_QMARK_QMARK] = ACTIONS(1962), - [anon_sym_EQ] = ACTIONS(1960), - [sym__rangeOperator] = ACTIONS(1962), - [anon_sym_null] = ACTIONS(1960), - [anon_sym_macro] = ACTIONS(1960), - [anon_sym_abstract] = ACTIONS(1960), - [anon_sym_static] = ACTIONS(1960), - [anon_sym_public] = ACTIONS(1960), - [anon_sym_private] = ACTIONS(1960), - [anon_sym_extern] = ACTIONS(1960), - [anon_sym_inline] = ACTIONS(1960), - [anon_sym_overload] = ACTIONS(1960), - [anon_sym_override] = ACTIONS(1960), - [anon_sym_final] = ACTIONS(1960), - [anon_sym_class] = ACTIONS(1960), - [anon_sym_interface] = ACTIONS(1960), - [anon_sym_typedef] = ACTIONS(1960), - [anon_sym_function] = ACTIONS(1960), - [anon_sym_var] = ACTIONS(1960), - [aux_sym_integer_token1] = ACTIONS(1960), - [aux_sym_integer_token2] = ACTIONS(1962), - [aux_sym_float_token1] = ACTIONS(1960), - [aux_sym_float_token2] = ACTIONS(1962), - [anon_sym_true] = ACTIONS(1960), - [anon_sym_false] = ACTIONS(1960), - [aux_sym_string_token1] = ACTIONS(1962), - [aux_sym_string_token3] = ACTIONS(1962), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2657), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1785), [sym__closing_brace_unmarker] = ACTIONS(3), }, [565] = { - [ts_builtin_sym_end] = ACTIONS(1722), - [sym_identifier] = ACTIONS(1720), - [anon_sym_POUND] = ACTIONS(1722), - [anon_sym_package] = ACTIONS(1720), - [anon_sym_import] = ACTIONS(1720), - [anon_sym_using] = ACTIONS(1720), - [anon_sym_throw] = ACTIONS(1720), - [anon_sym_LPAREN] = ACTIONS(1722), - [anon_sym_switch] = ACTIONS(1720), - [anon_sym_LBRACE] = ACTIONS(1722), - [anon_sym_cast] = ACTIONS(1720), - [anon_sym_DOLLARtype] = ACTIONS(1722), - [anon_sym_return] = ACTIONS(1720), - [anon_sym_untyped] = ACTIONS(1720), - [anon_sym_break] = ACTIONS(1720), - [anon_sym_continue] = ACTIONS(1720), - [anon_sym_LBRACK] = ACTIONS(1722), - [anon_sym_this] = ACTIONS(1720), - [anon_sym_AT] = ACTIONS(1720), - [anon_sym_AT_COLON] = ACTIONS(1722), - [anon_sym_if] = ACTIONS(1720), - [anon_sym_new] = ACTIONS(1720), - [anon_sym_TILDE] = ACTIONS(1722), - [anon_sym_BANG] = ACTIONS(1720), - [anon_sym_DASH] = ACTIONS(1720), - [anon_sym_PLUS_PLUS] = ACTIONS(1722), - [anon_sym_DASH_DASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1722), - [anon_sym_SLASH] = ACTIONS(1720), - [anon_sym_PLUS] = ACTIONS(1720), - [anon_sym_LT_LT] = ACTIONS(1722), - [anon_sym_GT_GT] = ACTIONS(1720), - [anon_sym_GT_GT_GT] = ACTIONS(1722), - [anon_sym_AMP] = ACTIONS(1720), - [anon_sym_PIPE] = ACTIONS(1720), - [anon_sym_CARET] = ACTIONS(1722), - [anon_sym_AMP_AMP] = ACTIONS(1722), - [anon_sym_PIPE_PIPE] = ACTIONS(1722), - [anon_sym_EQ_EQ] = ACTIONS(1722), - [anon_sym_BANG_EQ] = ACTIONS(1722), - [anon_sym_LT] = ACTIONS(1720), - [anon_sym_LT_EQ] = ACTIONS(1722), - [anon_sym_GT] = ACTIONS(1720), - [anon_sym_GT_EQ] = ACTIONS(1722), - [anon_sym_EQ_GT] = ACTIONS(1722), - [anon_sym_QMARK_QMARK] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1720), - [sym__rangeOperator] = ACTIONS(1722), - [anon_sym_null] = ACTIONS(1720), - [anon_sym_macro] = ACTIONS(1720), - [anon_sym_abstract] = ACTIONS(1720), - [anon_sym_static] = ACTIONS(1720), - [anon_sym_public] = ACTIONS(1720), - [anon_sym_private] = ACTIONS(1720), - [anon_sym_extern] = ACTIONS(1720), - [anon_sym_inline] = ACTIONS(1720), - [anon_sym_overload] = ACTIONS(1720), - [anon_sym_override] = ACTIONS(1720), - [anon_sym_final] = ACTIONS(1720), - [anon_sym_class] = ACTIONS(1720), - [anon_sym_interface] = ACTIONS(1720), - [anon_sym_typedef] = ACTIONS(1720), - [anon_sym_function] = ACTIONS(1720), - [anon_sym_var] = ACTIONS(1720), - [aux_sym_integer_token1] = ACTIONS(1720), - [aux_sym_integer_token2] = ACTIONS(1722), - [aux_sym_float_token1] = ACTIONS(1720), - [aux_sym_float_token2] = ACTIONS(1722), - [anon_sym_true] = ACTIONS(1720), - [anon_sym_false] = ACTIONS(1720), - [aux_sym_string_token1] = ACTIONS(1722), - [aux_sym_string_token3] = ACTIONS(1722), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_package] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_using] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_case] = ACTIONS(1564), + [anon_sym_default] = ACTIONS(1564), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_untyped] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_this] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_AT_COLON] = ACTIONS(1566), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_catch] = ACTIONS(1564), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_LT_LT] = ACTIONS(1566), + [anon_sym_GT_GT] = ACTIONS(1564), + [anon_sym_GT_GT_GT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_EQ_GT] = ACTIONS(1566), + [anon_sym_QMARK_QMARK] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1566), + [anon_sym_null] = ACTIONS(1564), + [anon_sym_macro] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym_overload] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_final] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [aux_sym_integer_token1] = ACTIONS(1564), + [aux_sym_integer_token2] = ACTIONS(1566), + [aux_sym_float_token1] = ACTIONS(1564), + [aux_sym_float_token2] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [aux_sym_string_token1] = ACTIONS(1566), + [aux_sym_string_token3] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1566), [sym__closing_brace_unmarker] = ACTIONS(3), }, [566] = { - [ts_builtin_sym_end] = ACTIONS(2242), - [sym_identifier] = ACTIONS(2240), - [anon_sym_POUND] = ACTIONS(2242), - [anon_sym_package] = ACTIONS(2240), - [anon_sym_import] = ACTIONS(2240), - [anon_sym_using] = ACTIONS(2240), - [anon_sym_throw] = ACTIONS(2240), - [anon_sym_LPAREN] = ACTIONS(2242), - [anon_sym_switch] = ACTIONS(2240), - [anon_sym_LBRACE] = ACTIONS(2242), - [anon_sym_cast] = ACTIONS(2240), - [anon_sym_DOLLARtype] = ACTIONS(2242), - [anon_sym_return] = ACTIONS(2240), - [anon_sym_untyped] = ACTIONS(2240), - [anon_sym_break] = ACTIONS(2240), - [anon_sym_continue] = ACTIONS(2240), - [anon_sym_LBRACK] = ACTIONS(2242), - [anon_sym_this] = ACTIONS(2240), - [anon_sym_AT] = ACTIONS(2240), - [anon_sym_AT_COLON] = ACTIONS(2242), - [anon_sym_if] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2242), - [anon_sym_BANG] = ACTIONS(2240), - [anon_sym_DASH] = ACTIONS(2240), - [anon_sym_PLUS_PLUS] = ACTIONS(2242), - [anon_sym_DASH_DASH] = ACTIONS(2242), - [anon_sym_PERCENT] = ACTIONS(2242), - [anon_sym_STAR] = ACTIONS(2242), - [anon_sym_SLASH] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2242), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2242), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2242), - [anon_sym_AMP_AMP] = ACTIONS(2242), - [anon_sym_PIPE_PIPE] = ACTIONS(2242), - [anon_sym_EQ_EQ] = ACTIONS(2242), - [anon_sym_BANG_EQ] = ACTIONS(2242), - [anon_sym_LT] = ACTIONS(2240), - [anon_sym_LT_EQ] = ACTIONS(2242), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2242), - [anon_sym_EQ_GT] = ACTIONS(2242), - [anon_sym_QMARK_QMARK] = ACTIONS(2242), - [anon_sym_EQ] = ACTIONS(2240), - [sym__rangeOperator] = ACTIONS(2242), - [anon_sym_null] = ACTIONS(2240), - [anon_sym_macro] = ACTIONS(2240), - [anon_sym_abstract] = ACTIONS(2240), - [anon_sym_static] = ACTIONS(2240), - [anon_sym_public] = ACTIONS(2240), - [anon_sym_private] = ACTIONS(2240), - [anon_sym_extern] = ACTIONS(2240), - [anon_sym_inline] = ACTIONS(2240), - [anon_sym_overload] = ACTIONS(2240), - [anon_sym_override] = ACTIONS(2240), - [anon_sym_final] = ACTIONS(2240), - [anon_sym_class] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2240), - [anon_sym_typedef] = ACTIONS(2240), - [anon_sym_function] = ACTIONS(2240), - [anon_sym_var] = ACTIONS(2240), - [aux_sym_integer_token1] = ACTIONS(2240), - [aux_sym_integer_token2] = ACTIONS(2242), - [aux_sym_float_token1] = ACTIONS(2240), - [aux_sym_float_token2] = ACTIONS(2242), - [anon_sym_true] = ACTIONS(2240), - [anon_sym_false] = ACTIONS(2240), - [aux_sym_string_token1] = ACTIONS(2242), - [aux_sym_string_token3] = ACTIONS(2242), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_case] = ACTIONS(3251), + [anon_sym_default] = ACTIONS(3251), + [anon_sym_cast] = ACTIONS(3251), + [anon_sym_DOLLARtype] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_untyped] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_this] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_AT_COLON] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_catch] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3251), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3251), + [anon_sym_PIPE] = ACTIONS(3251), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3251), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_EQ_GT] = ACTIONS(3253), + [anon_sym_QMARK_QMARK] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3253), + [anon_sym_null] = ACTIONS(3251), + [anon_sym_macro] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_inline] = ACTIONS(3251), + [anon_sym_overload] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [anon_sym_typedef] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [aux_sym_integer_token1] = ACTIONS(3251), + [aux_sym_integer_token2] = ACTIONS(3253), + [aux_sym_float_token1] = ACTIONS(3251), + [aux_sym_float_token2] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [aux_sym_string_token1] = ACTIONS(3253), + [aux_sym_string_token3] = ACTIONS(3253), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3253), [sym__closing_brace_unmarker] = ACTIONS(3), }, [567] = { - [ts_builtin_sym_end] = ACTIONS(1714), - [sym_identifier] = ACTIONS(1712), - [anon_sym_POUND] = ACTIONS(1714), - [anon_sym_package] = ACTIONS(1712), - [anon_sym_import] = ACTIONS(1712), - [anon_sym_using] = ACTIONS(1712), - [anon_sym_throw] = ACTIONS(1712), - [anon_sym_LPAREN] = ACTIONS(1714), - [anon_sym_switch] = ACTIONS(1712), - [anon_sym_LBRACE] = ACTIONS(1714), - [anon_sym_cast] = ACTIONS(1712), - [anon_sym_DOLLARtype] = ACTIONS(1714), - [anon_sym_return] = ACTIONS(1712), - [anon_sym_untyped] = ACTIONS(1712), - [anon_sym_break] = ACTIONS(1712), - [anon_sym_continue] = ACTIONS(1712), - [anon_sym_LBRACK] = ACTIONS(1714), - [anon_sym_this] = ACTIONS(1712), - [anon_sym_AT] = ACTIONS(1712), - [anon_sym_AT_COLON] = ACTIONS(1714), - [anon_sym_if] = ACTIONS(1712), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_TILDE] = ACTIONS(1714), - [anon_sym_BANG] = ACTIONS(1712), - [anon_sym_DASH] = ACTIONS(1712), - [anon_sym_PLUS_PLUS] = ACTIONS(1714), - [anon_sym_DASH_DASH] = ACTIONS(1714), - [anon_sym_PERCENT] = ACTIONS(1714), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_SLASH] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1712), - [anon_sym_LT_LT] = ACTIONS(1714), - [anon_sym_GT_GT] = ACTIONS(1712), - [anon_sym_GT_GT_GT] = ACTIONS(1714), - [anon_sym_AMP] = ACTIONS(1712), - [anon_sym_PIPE] = ACTIONS(1712), - [anon_sym_CARET] = ACTIONS(1714), - [anon_sym_AMP_AMP] = ACTIONS(1714), - [anon_sym_PIPE_PIPE] = ACTIONS(1714), - [anon_sym_EQ_EQ] = ACTIONS(1714), - [anon_sym_BANG_EQ] = ACTIONS(1714), - [anon_sym_LT] = ACTIONS(1712), - [anon_sym_LT_EQ] = ACTIONS(1714), - [anon_sym_GT] = ACTIONS(1712), - [anon_sym_GT_EQ] = ACTIONS(1714), - [anon_sym_EQ_GT] = ACTIONS(1714), - [anon_sym_QMARK_QMARK] = ACTIONS(1714), - [anon_sym_EQ] = ACTIONS(1712), - [sym__rangeOperator] = ACTIONS(1714), - [anon_sym_null] = ACTIONS(1712), - [anon_sym_macro] = ACTIONS(1712), - [anon_sym_abstract] = ACTIONS(1712), - [anon_sym_static] = ACTIONS(1712), - [anon_sym_public] = ACTIONS(1712), - [anon_sym_private] = ACTIONS(1712), - [anon_sym_extern] = ACTIONS(1712), - [anon_sym_inline] = ACTIONS(1712), - [anon_sym_overload] = ACTIONS(1712), - [anon_sym_override] = ACTIONS(1712), - [anon_sym_final] = ACTIONS(1712), - [anon_sym_class] = ACTIONS(1712), - [anon_sym_interface] = ACTIONS(1712), - [anon_sym_typedef] = ACTIONS(1712), - [anon_sym_function] = ACTIONS(1712), - [anon_sym_var] = ACTIONS(1712), - [aux_sym_integer_token1] = ACTIONS(1712), - [aux_sym_integer_token2] = ACTIONS(1714), - [aux_sym_float_token1] = ACTIONS(1712), - [aux_sym_float_token2] = ACTIONS(1714), - [anon_sym_true] = ACTIONS(1712), - [anon_sym_false] = ACTIONS(1712), - [aux_sym_string_token1] = ACTIONS(1714), - [aux_sym_string_token3] = ACTIONS(1714), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3255), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_package] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_cast] = ACTIONS(3255), + [anon_sym_DOLLARtype] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_untyped] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_this] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_AT_COLON] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_catch] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3255), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(3255), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3255), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_EQ_GT] = ACTIONS(3257), + [anon_sym_QMARK_QMARK] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3255), + [anon_sym_macro] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym_overload] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_final] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_typedef] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [aux_sym_integer_token1] = ACTIONS(3255), + [aux_sym_integer_token2] = ACTIONS(3257), + [aux_sym_float_token1] = ACTIONS(3255), + [aux_sym_float_token2] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [aux_sym_string_token1] = ACTIONS(3257), + [aux_sym_string_token3] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3257), [sym__closing_brace_unmarker] = ACTIONS(3), }, [568] = { - [ts_builtin_sym_end] = ACTIONS(1698), - [sym_identifier] = ACTIONS(1696), - [anon_sym_POUND] = ACTIONS(1698), - [anon_sym_package] = ACTIONS(1696), - [anon_sym_import] = ACTIONS(1696), - [anon_sym_using] = ACTIONS(1696), - [anon_sym_throw] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(1698), - [anon_sym_switch] = ACTIONS(1696), - [anon_sym_LBRACE] = ACTIONS(1698), - [anon_sym_cast] = ACTIONS(1696), - [anon_sym_DOLLARtype] = ACTIONS(1698), - [anon_sym_return] = ACTIONS(1696), - [anon_sym_untyped] = ACTIONS(1696), - [anon_sym_break] = ACTIONS(1696), - [anon_sym_continue] = ACTIONS(1696), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_this] = ACTIONS(1696), - [anon_sym_AT] = ACTIONS(1696), - [anon_sym_AT_COLON] = ACTIONS(1698), - [anon_sym_if] = ACTIONS(1696), - [anon_sym_new] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1698), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PLUS_PLUS] = ACTIONS(1698), - [anon_sym_DASH_DASH] = ACTIONS(1698), - [anon_sym_PERCENT] = ACTIONS(1698), - [anon_sym_STAR] = ACTIONS(1698), - [anon_sym_SLASH] = ACTIONS(1696), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_LT_LT] = ACTIONS(1698), - [anon_sym_GT_GT] = ACTIONS(1696), - [anon_sym_GT_GT_GT] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(1696), - [anon_sym_PIPE] = ACTIONS(1696), - [anon_sym_CARET] = ACTIONS(1698), - [anon_sym_AMP_AMP] = ACTIONS(1698), - [anon_sym_PIPE_PIPE] = ACTIONS(1698), - [anon_sym_EQ_EQ] = ACTIONS(1698), - [anon_sym_BANG_EQ] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1696), - [anon_sym_LT_EQ] = ACTIONS(1698), - [anon_sym_GT] = ACTIONS(1696), - [anon_sym_GT_EQ] = ACTIONS(1698), - [anon_sym_EQ_GT] = ACTIONS(1698), - [anon_sym_QMARK_QMARK] = ACTIONS(1698), - [anon_sym_EQ] = ACTIONS(1696), - [sym__rangeOperator] = ACTIONS(1698), - [anon_sym_null] = ACTIONS(1696), - [anon_sym_macro] = ACTIONS(1696), - [anon_sym_abstract] = ACTIONS(1696), - [anon_sym_static] = ACTIONS(1696), - [anon_sym_public] = ACTIONS(1696), - [anon_sym_private] = ACTIONS(1696), - [anon_sym_extern] = ACTIONS(1696), - [anon_sym_inline] = ACTIONS(1696), - [anon_sym_overload] = ACTIONS(1696), - [anon_sym_override] = ACTIONS(1696), - [anon_sym_final] = ACTIONS(1696), - [anon_sym_class] = ACTIONS(1696), - [anon_sym_interface] = ACTIONS(1696), - [anon_sym_typedef] = ACTIONS(1696), - [anon_sym_function] = ACTIONS(1696), - [anon_sym_var] = ACTIONS(1696), - [aux_sym_integer_token1] = ACTIONS(1696), - [aux_sym_integer_token2] = ACTIONS(1698), - [aux_sym_float_token1] = ACTIONS(1696), - [aux_sym_float_token2] = ACTIONS(1698), - [anon_sym_true] = ACTIONS(1696), - [anon_sym_false] = ACTIONS(1696), - [aux_sym_string_token1] = ACTIONS(1698), - [aux_sym_string_token3] = ACTIONS(1698), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3259), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_package] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_case] = ACTIONS(3259), + [anon_sym_default] = ACTIONS(3259), + [anon_sym_cast] = ACTIONS(3259), + [anon_sym_DOLLARtype] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_untyped] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_this] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [anon_sym_AT_COLON] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_catch] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3259), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3259), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3259), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_EQ_GT] = ACTIONS(3261), + [anon_sym_QMARK_QMARK] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_null] = ACTIONS(3259), + [anon_sym_macro] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_extern] = ACTIONS(3259), + [anon_sym_inline] = ACTIONS(3259), + [anon_sym_overload] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_final] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [aux_sym_integer_token1] = ACTIONS(3259), + [aux_sym_integer_token2] = ACTIONS(3261), + [aux_sym_float_token1] = ACTIONS(3259), + [aux_sym_float_token2] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [aux_sym_string_token1] = ACTIONS(3261), + [aux_sym_string_token3] = ACTIONS(3261), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3261), [sym__closing_brace_unmarker] = ACTIONS(3), }, [569] = { - [ts_builtin_sym_end] = ACTIONS(1990), - [sym_identifier] = ACTIONS(1988), - [anon_sym_POUND] = ACTIONS(1990), - [anon_sym_package] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_using] = ACTIONS(1988), - [anon_sym_throw] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1990), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1990), - [anon_sym_cast] = ACTIONS(1988), - [anon_sym_DOLLARtype] = ACTIONS(1990), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_untyped] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1990), - [anon_sym_this] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1988), - [anon_sym_AT_COLON] = ACTIONS(1990), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1990), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1990), - [anon_sym_DASH_DASH] = ACTIONS(1990), - [anon_sym_PERCENT] = ACTIONS(1990), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_LT_LT] = ACTIONS(1990), - [anon_sym_GT_GT] = ACTIONS(1988), - [anon_sym_GT_GT_GT] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_CARET] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1990), - [anon_sym_PIPE_PIPE] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1990), - [anon_sym_BANG_EQ] = ACTIONS(1990), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_LT_EQ] = ACTIONS(1990), - [anon_sym_GT] = ACTIONS(1988), - [anon_sym_GT_EQ] = ACTIONS(1990), - [anon_sym_EQ_GT] = ACTIONS(1990), - [anon_sym_QMARK_QMARK] = ACTIONS(1990), - [anon_sym_EQ] = ACTIONS(1988), - [sym__rangeOperator] = ACTIONS(1990), - [anon_sym_null] = ACTIONS(1988), - [anon_sym_macro] = ACTIONS(1988), - [anon_sym_abstract] = ACTIONS(1988), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_extern] = ACTIONS(1988), - [anon_sym_inline] = ACTIONS(1988), - [anon_sym_overload] = ACTIONS(1988), - [anon_sym_override] = ACTIONS(1988), - [anon_sym_final] = ACTIONS(1988), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_interface] = ACTIONS(1988), - [anon_sym_typedef] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_var] = ACTIONS(1988), - [aux_sym_integer_token1] = ACTIONS(1988), - [aux_sym_integer_token2] = ACTIONS(1990), - [aux_sym_float_token1] = ACTIONS(1988), - [aux_sym_float_token2] = ACTIONS(1990), - [anon_sym_true] = ACTIONS(1988), - [anon_sym_false] = ACTIONS(1988), - [aux_sym_string_token1] = ACTIONS(1990), - [aux_sym_string_token3] = ACTIONS(1990), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3263), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_package] = ACTIONS(3263), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_case] = ACTIONS(3263), + [anon_sym_default] = ACTIONS(3263), + [anon_sym_cast] = ACTIONS(3263), + [anon_sym_DOLLARtype] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_untyped] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_this] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3263), + [anon_sym_AT_COLON] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_catch] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3263), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(3263), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3263), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_EQ_GT] = ACTIONS(3265), + [anon_sym_QMARK_QMARK] = ACTIONS(3265), + [anon_sym_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_null] = ACTIONS(3263), + [anon_sym_macro] = ACTIONS(3263), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_inline] = ACTIONS(3263), + [anon_sym_overload] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_final] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), + [anon_sym_typedef] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [aux_sym_integer_token1] = ACTIONS(3263), + [aux_sym_integer_token2] = ACTIONS(3265), + [aux_sym_float_token1] = ACTIONS(3263), + [aux_sym_float_token2] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [aux_sym_string_token1] = ACTIONS(3265), + [aux_sym_string_token3] = ACTIONS(3265), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3265), [sym__closing_brace_unmarker] = ACTIONS(3), }, [570] = { - [ts_builtin_sym_end] = ACTIONS(2042), - [sym_identifier] = ACTIONS(2040), - [anon_sym_POUND] = ACTIONS(2042), - [anon_sym_package] = ACTIONS(2040), - [anon_sym_import] = ACTIONS(2040), - [anon_sym_using] = ACTIONS(2040), - [anon_sym_throw] = ACTIONS(2040), - [anon_sym_LPAREN] = ACTIONS(2042), - [anon_sym_switch] = ACTIONS(2040), - [anon_sym_LBRACE] = ACTIONS(2042), - [anon_sym_cast] = ACTIONS(2040), - [anon_sym_DOLLARtype] = ACTIONS(2042), - [anon_sym_return] = ACTIONS(2040), - [anon_sym_untyped] = ACTIONS(2040), - [anon_sym_break] = ACTIONS(2040), - [anon_sym_continue] = ACTIONS(2040), - [anon_sym_LBRACK] = ACTIONS(2042), - [anon_sym_this] = ACTIONS(2040), - [anon_sym_AT] = ACTIONS(2040), - [anon_sym_AT_COLON] = ACTIONS(2042), - [anon_sym_if] = ACTIONS(2040), - [anon_sym_new] = ACTIONS(2040), - [anon_sym_TILDE] = ACTIONS(2042), - [anon_sym_BANG] = ACTIONS(2040), - [anon_sym_DASH] = ACTIONS(2040), - [anon_sym_PLUS_PLUS] = ACTIONS(2042), - [anon_sym_DASH_DASH] = ACTIONS(2042), - [anon_sym_PERCENT] = ACTIONS(2042), - [anon_sym_STAR] = ACTIONS(2042), - [anon_sym_SLASH] = ACTIONS(2040), - [anon_sym_PLUS] = ACTIONS(2040), - [anon_sym_LT_LT] = ACTIONS(2042), - [anon_sym_GT_GT] = ACTIONS(2040), - [anon_sym_GT_GT_GT] = ACTIONS(2042), - [anon_sym_AMP] = ACTIONS(2040), - [anon_sym_PIPE] = ACTIONS(2040), - [anon_sym_CARET] = ACTIONS(2042), - [anon_sym_AMP_AMP] = ACTIONS(2042), - [anon_sym_PIPE_PIPE] = ACTIONS(2042), - [anon_sym_EQ_EQ] = ACTIONS(2042), - [anon_sym_BANG_EQ] = ACTIONS(2042), - [anon_sym_LT] = ACTIONS(2040), - [anon_sym_LT_EQ] = ACTIONS(2042), - [anon_sym_GT] = ACTIONS(2040), - [anon_sym_GT_EQ] = ACTIONS(2042), - [anon_sym_EQ_GT] = ACTIONS(2042), - [anon_sym_QMARK_QMARK] = ACTIONS(2042), - [anon_sym_EQ] = ACTIONS(2040), - [sym__rangeOperator] = ACTIONS(2042), - [anon_sym_null] = ACTIONS(2040), - [anon_sym_macro] = ACTIONS(2040), - [anon_sym_abstract] = ACTIONS(2040), - [anon_sym_static] = ACTIONS(2040), - [anon_sym_public] = ACTIONS(2040), - [anon_sym_private] = ACTIONS(2040), - [anon_sym_extern] = ACTIONS(2040), - [anon_sym_inline] = ACTIONS(2040), - [anon_sym_overload] = ACTIONS(2040), - [anon_sym_override] = ACTIONS(2040), - [anon_sym_final] = ACTIONS(2040), - [anon_sym_class] = ACTIONS(2040), - [anon_sym_interface] = ACTIONS(2040), - [anon_sym_typedef] = ACTIONS(2040), - [anon_sym_function] = ACTIONS(2040), - [anon_sym_var] = ACTIONS(2040), - [aux_sym_integer_token1] = ACTIONS(2040), - [aux_sym_integer_token2] = ACTIONS(2042), - [aux_sym_float_token1] = ACTIONS(2040), - [aux_sym_float_token2] = ACTIONS(2042), - [anon_sym_true] = ACTIONS(2040), - [anon_sym_false] = ACTIONS(2040), - [aux_sym_string_token1] = ACTIONS(2042), - [aux_sym_string_token3] = ACTIONS(2042), + [ts_builtin_sym_end] = ACTIONS(1785), + [sym_identifier] = ACTIONS(1787), + [anon_sym_POUND] = ACTIONS(1785), + [anon_sym_package] = ACTIONS(1787), + [anon_sym_DOT] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(1787), + [anon_sym_STAR] = ACTIONS(1785), + [anon_sym_using] = ACTIONS(1787), + [anon_sym_throw] = ACTIONS(1787), + [anon_sym_LPAREN] = ACTIONS(1785), + [anon_sym_switch] = ACTIONS(1787), + [anon_sym_LBRACE] = ACTIONS(1785), + [anon_sym_cast] = ACTIONS(1787), + [anon_sym_DOLLARtype] = ACTIONS(1785), + [anon_sym_for] = ACTIONS(1787), + [anon_sym_return] = ACTIONS(1787), + [anon_sym_untyped] = ACTIONS(1787), + [anon_sym_break] = ACTIONS(1787), + [anon_sym_continue] = ACTIONS(1787), + [anon_sym_LBRACK] = ACTIONS(1785), + [anon_sym_this] = ACTIONS(1787), + [anon_sym_QMARK] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(1787), + [anon_sym_AT_COLON] = ACTIONS(1785), + [anon_sym_try] = ACTIONS(1787), + [anon_sym_catch] = ACTIONS(1787), + [anon_sym_else] = ACTIONS(1787), + [anon_sym_if] = ACTIONS(1787), + [anon_sym_while] = ACTIONS(1787), + [anon_sym_do] = ACTIONS(1787), + [anon_sym_new] = ACTIONS(1787), + [anon_sym_TILDE] = ACTIONS(1785), + [anon_sym_BANG] = ACTIONS(1787), + [anon_sym_DASH] = ACTIONS(1787), + [anon_sym_PLUS_PLUS] = ACTIONS(1785), + [anon_sym_DASH_DASH] = ACTIONS(1785), + [anon_sym_PERCENT] = ACTIONS(1785), + [anon_sym_SLASH] = ACTIONS(1787), + [anon_sym_PLUS] = ACTIONS(1787), + [anon_sym_LT_LT] = ACTIONS(1785), + [anon_sym_GT_GT] = ACTIONS(1787), + [anon_sym_GT_GT_GT] = ACTIONS(1785), + [anon_sym_AMP] = ACTIONS(1787), + [anon_sym_PIPE] = ACTIONS(1787), + [anon_sym_CARET] = ACTIONS(1785), + [anon_sym_AMP_AMP] = ACTIONS(1785), + [anon_sym_PIPE_PIPE] = ACTIONS(1785), + [anon_sym_EQ_EQ] = ACTIONS(1785), + [anon_sym_BANG_EQ] = ACTIONS(1785), + [anon_sym_LT] = ACTIONS(1787), + [anon_sym_LT_EQ] = ACTIONS(1785), + [anon_sym_GT] = ACTIONS(1787), + [anon_sym_GT_EQ] = ACTIONS(1785), + [anon_sym_EQ_GT] = ACTIONS(2647), + [anon_sym_QMARK_QMARK] = ACTIONS(1785), + [anon_sym_EQ] = ACTIONS(1787), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1785), + [anon_sym_null] = ACTIONS(1787), + [anon_sym_macro] = ACTIONS(1787), + [anon_sym_abstract] = ACTIONS(1787), + [anon_sym_static] = ACTIONS(1787), + [anon_sym_public] = ACTIONS(1787), + [anon_sym_private] = ACTIONS(1787), + [anon_sym_extern] = ACTIONS(1787), + [anon_sym_inline] = ACTIONS(1787), + [anon_sym_overload] = ACTIONS(1787), + [anon_sym_override] = ACTIONS(1787), + [anon_sym_final] = ACTIONS(1787), + [anon_sym_class] = ACTIONS(1787), + [anon_sym_interface] = ACTIONS(1787), + [anon_sym_enum] = ACTIONS(1787), + [anon_sym_typedef] = ACTIONS(1787), + [anon_sym_function] = ACTIONS(1787), + [anon_sym_var] = ACTIONS(1787), + [aux_sym_integer_token1] = ACTIONS(1787), + [aux_sym_integer_token2] = ACTIONS(1785), + [aux_sym_float_token1] = ACTIONS(1787), + [aux_sym_float_token2] = ACTIONS(1785), + [anon_sym_true] = ACTIONS(1787), + [anon_sym_false] = ACTIONS(1787), + [aux_sym_string_token1] = ACTIONS(1785), + [aux_sym_string_token3] = ACTIONS(1785), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [571] = { - [ts_builtin_sym_end] = ACTIONS(1690), - [sym_identifier] = ACTIONS(1688), - [anon_sym_POUND] = ACTIONS(1690), - [anon_sym_package] = ACTIONS(1688), - [anon_sym_import] = ACTIONS(1688), - [anon_sym_using] = ACTIONS(1688), - [anon_sym_throw] = ACTIONS(1688), - [anon_sym_LPAREN] = ACTIONS(1690), - [anon_sym_switch] = ACTIONS(1688), - [anon_sym_LBRACE] = ACTIONS(1690), - [anon_sym_cast] = ACTIONS(1688), - [anon_sym_DOLLARtype] = ACTIONS(1690), - [anon_sym_return] = ACTIONS(1688), - [anon_sym_untyped] = ACTIONS(1688), - [anon_sym_break] = ACTIONS(1688), - [anon_sym_continue] = ACTIONS(1688), - [anon_sym_LBRACK] = ACTIONS(1690), - [anon_sym_this] = ACTIONS(1688), - [anon_sym_AT] = ACTIONS(1688), - [anon_sym_AT_COLON] = ACTIONS(1690), - [anon_sym_if] = ACTIONS(1688), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_TILDE] = ACTIONS(1690), - [anon_sym_BANG] = ACTIONS(1688), - [anon_sym_DASH] = ACTIONS(1688), - [anon_sym_PLUS_PLUS] = ACTIONS(1690), - [anon_sym_DASH_DASH] = ACTIONS(1690), - [anon_sym_PERCENT] = ACTIONS(1690), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_SLASH] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1688), - [anon_sym_LT_LT] = ACTIONS(1690), - [anon_sym_GT_GT] = ACTIONS(1688), - [anon_sym_GT_GT_GT] = ACTIONS(1690), - [anon_sym_AMP] = ACTIONS(1688), - [anon_sym_PIPE] = ACTIONS(1688), - [anon_sym_CARET] = ACTIONS(1690), - [anon_sym_AMP_AMP] = ACTIONS(1690), - [anon_sym_PIPE_PIPE] = ACTIONS(1690), - [anon_sym_EQ_EQ] = ACTIONS(1690), - [anon_sym_BANG_EQ] = ACTIONS(1690), - [anon_sym_LT] = ACTIONS(1688), - [anon_sym_LT_EQ] = ACTIONS(1690), - [anon_sym_GT] = ACTIONS(1688), - [anon_sym_GT_EQ] = ACTIONS(1690), - [anon_sym_EQ_GT] = ACTIONS(1690), - [anon_sym_QMARK_QMARK] = ACTIONS(1690), - [anon_sym_EQ] = ACTIONS(1688), - [sym__rangeOperator] = ACTIONS(1690), - [anon_sym_null] = ACTIONS(1688), - [anon_sym_macro] = ACTIONS(1688), - [anon_sym_abstract] = ACTIONS(1688), - [anon_sym_static] = ACTIONS(1688), - [anon_sym_public] = ACTIONS(1688), - [anon_sym_private] = ACTIONS(1688), - [anon_sym_extern] = ACTIONS(1688), - [anon_sym_inline] = ACTIONS(1688), - [anon_sym_overload] = ACTIONS(1688), - [anon_sym_override] = ACTIONS(1688), - [anon_sym_final] = ACTIONS(1688), - [anon_sym_class] = ACTIONS(1688), - [anon_sym_interface] = ACTIONS(1688), - [anon_sym_typedef] = ACTIONS(1688), - [anon_sym_function] = ACTIONS(1688), - [anon_sym_var] = ACTIONS(1688), - [aux_sym_integer_token1] = ACTIONS(1688), - [aux_sym_integer_token2] = ACTIONS(1690), - [aux_sym_float_token1] = ACTIONS(1688), - [aux_sym_float_token2] = ACTIONS(1690), - [anon_sym_true] = ACTIONS(1688), - [anon_sym_false] = ACTIONS(1688), - [aux_sym_string_token1] = ACTIONS(1690), - [aux_sym_string_token3] = ACTIONS(1690), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3273), [sym__closing_brace_unmarker] = ACTIONS(3), }, [572] = { - [ts_builtin_sym_end] = ACTIONS(2134), - [sym_identifier] = ACTIONS(2132), - [anon_sym_POUND] = ACTIONS(2134), - [anon_sym_package] = ACTIONS(2132), - [anon_sym_import] = ACTIONS(2132), - [anon_sym_using] = ACTIONS(2132), - [anon_sym_throw] = ACTIONS(2132), - [anon_sym_LPAREN] = ACTIONS(2134), - [anon_sym_switch] = ACTIONS(2132), - [anon_sym_LBRACE] = ACTIONS(2134), - [anon_sym_cast] = ACTIONS(2132), - [anon_sym_DOLLARtype] = ACTIONS(2134), - [anon_sym_return] = ACTIONS(2132), - [anon_sym_untyped] = ACTIONS(2132), - [anon_sym_break] = ACTIONS(2132), - [anon_sym_continue] = ACTIONS(2132), - [anon_sym_LBRACK] = ACTIONS(2134), - [anon_sym_this] = ACTIONS(2132), - [anon_sym_AT] = ACTIONS(2132), - [anon_sym_AT_COLON] = ACTIONS(2134), - [anon_sym_if] = ACTIONS(2132), - [anon_sym_new] = ACTIONS(2132), - [anon_sym_TILDE] = ACTIONS(2134), - [anon_sym_BANG] = ACTIONS(2132), - [anon_sym_DASH] = ACTIONS(2132), - [anon_sym_PLUS_PLUS] = ACTIONS(2134), - [anon_sym_DASH_DASH] = ACTIONS(2134), - [anon_sym_PERCENT] = ACTIONS(2134), - [anon_sym_STAR] = ACTIONS(2134), - [anon_sym_SLASH] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(2132), - [anon_sym_LT_LT] = ACTIONS(2134), - [anon_sym_GT_GT] = ACTIONS(2132), - [anon_sym_GT_GT_GT] = ACTIONS(2134), - [anon_sym_AMP] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_CARET] = ACTIONS(2134), - [anon_sym_AMP_AMP] = ACTIONS(2134), - [anon_sym_PIPE_PIPE] = ACTIONS(2134), - [anon_sym_EQ_EQ] = ACTIONS(2134), - [anon_sym_BANG_EQ] = ACTIONS(2134), - [anon_sym_LT] = ACTIONS(2132), - [anon_sym_LT_EQ] = ACTIONS(2134), - [anon_sym_GT] = ACTIONS(2132), - [anon_sym_GT_EQ] = ACTIONS(2134), - [anon_sym_EQ_GT] = ACTIONS(2134), - [anon_sym_QMARK_QMARK] = ACTIONS(2134), - [anon_sym_EQ] = ACTIONS(2132), - [sym__rangeOperator] = ACTIONS(2134), - [anon_sym_null] = ACTIONS(2132), - [anon_sym_macro] = ACTIONS(2132), - [anon_sym_abstract] = ACTIONS(2132), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_public] = ACTIONS(2132), - [anon_sym_private] = ACTIONS(2132), - [anon_sym_extern] = ACTIONS(2132), - [anon_sym_inline] = ACTIONS(2132), - [anon_sym_overload] = ACTIONS(2132), - [anon_sym_override] = ACTIONS(2132), - [anon_sym_final] = ACTIONS(2132), - [anon_sym_class] = ACTIONS(2132), - [anon_sym_interface] = ACTIONS(2132), - [anon_sym_typedef] = ACTIONS(2132), - [anon_sym_function] = ACTIONS(2132), - [anon_sym_var] = ACTIONS(2132), - [aux_sym_integer_token1] = ACTIONS(2132), - [aux_sym_integer_token2] = ACTIONS(2134), - [aux_sym_float_token1] = ACTIONS(2132), - [aux_sym_float_token2] = ACTIONS(2134), - [anon_sym_true] = ACTIONS(2132), - [anon_sym_false] = ACTIONS(2132), - [aux_sym_string_token1] = ACTIONS(2134), - [aux_sym_string_token3] = ACTIONS(2134), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3275), + [anon_sym_POUND] = ACTIONS(3277), + [anon_sym_package] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_cast] = ACTIONS(3275), + [anon_sym_DOLLARtype] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_untyped] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_this] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_AT_COLON] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_catch] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_PERCENT] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(3275), + [anon_sym_GT_GT_GT] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3277), + [anon_sym_QMARK_QMARK] = ACTIONS(3277), + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3277), + [anon_sym_null] = ACTIONS(3275), + [anon_sym_macro] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_extern] = ACTIONS(3275), + [anon_sym_inline] = ACTIONS(3275), + [anon_sym_overload] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_final] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_typedef] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [aux_sym_integer_token1] = ACTIONS(3275), + [aux_sym_integer_token2] = ACTIONS(3277), + [aux_sym_float_token1] = ACTIONS(3275), + [aux_sym_float_token2] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [aux_sym_string_token1] = ACTIONS(3277), + [aux_sym_string_token3] = ACTIONS(3277), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3277), [sym__closing_brace_unmarker] = ACTIONS(3), }, [573] = { - [ts_builtin_sym_end] = ACTIONS(1642), - [sym_identifier] = ACTIONS(1640), - [anon_sym_POUND] = ACTIONS(1642), - [anon_sym_package] = ACTIONS(1640), - [anon_sym_import] = ACTIONS(1640), - [anon_sym_using] = ACTIONS(1640), - [anon_sym_throw] = ACTIONS(1640), - [anon_sym_LPAREN] = ACTIONS(1642), - [anon_sym_switch] = ACTIONS(1640), - [anon_sym_LBRACE] = ACTIONS(1642), - [anon_sym_cast] = ACTIONS(1640), - [anon_sym_DOLLARtype] = ACTIONS(1642), - [anon_sym_return] = ACTIONS(1640), - [anon_sym_untyped] = ACTIONS(1640), - [anon_sym_break] = ACTIONS(1640), - [anon_sym_continue] = ACTIONS(1640), - [anon_sym_LBRACK] = ACTIONS(1642), - [anon_sym_this] = ACTIONS(1640), - [anon_sym_AT] = ACTIONS(1640), - [anon_sym_AT_COLON] = ACTIONS(1642), - [anon_sym_if] = ACTIONS(1640), - [anon_sym_new] = ACTIONS(1640), - [anon_sym_TILDE] = ACTIONS(1642), - [anon_sym_BANG] = ACTIONS(1640), - [anon_sym_DASH] = ACTIONS(1640), - [anon_sym_PLUS_PLUS] = ACTIONS(1642), - [anon_sym_DASH_DASH] = ACTIONS(1642), - [anon_sym_PERCENT] = ACTIONS(1642), - [anon_sym_STAR] = ACTIONS(1642), - [anon_sym_SLASH] = ACTIONS(1640), - [anon_sym_PLUS] = ACTIONS(1640), - [anon_sym_LT_LT] = ACTIONS(1642), - [anon_sym_GT_GT] = ACTIONS(1640), - [anon_sym_GT_GT_GT] = ACTIONS(1642), - [anon_sym_AMP] = ACTIONS(1640), - [anon_sym_PIPE] = ACTIONS(1640), - [anon_sym_CARET] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1642), - [anon_sym_PIPE_PIPE] = ACTIONS(1642), - [anon_sym_EQ_EQ] = ACTIONS(1642), - [anon_sym_BANG_EQ] = ACTIONS(1642), - [anon_sym_LT] = ACTIONS(1640), - [anon_sym_LT_EQ] = ACTIONS(1642), - [anon_sym_GT] = ACTIONS(1640), - [anon_sym_GT_EQ] = ACTIONS(1642), - [anon_sym_EQ_GT] = ACTIONS(1642), - [anon_sym_QMARK_QMARK] = ACTIONS(1642), - [anon_sym_EQ] = ACTIONS(1640), - [sym__rangeOperator] = ACTIONS(1642), - [anon_sym_null] = ACTIONS(1640), - [anon_sym_macro] = ACTIONS(1640), - [anon_sym_abstract] = ACTIONS(1640), - [anon_sym_static] = ACTIONS(1640), - [anon_sym_public] = ACTIONS(1640), - [anon_sym_private] = ACTIONS(1640), - [anon_sym_extern] = ACTIONS(1640), - [anon_sym_inline] = ACTIONS(1640), - [anon_sym_overload] = ACTIONS(1640), - [anon_sym_override] = ACTIONS(1640), - [anon_sym_final] = ACTIONS(1640), - [anon_sym_class] = ACTIONS(1640), - [anon_sym_interface] = ACTIONS(1640), - [anon_sym_typedef] = ACTIONS(1640), - [anon_sym_function] = ACTIONS(1640), - [anon_sym_var] = ACTIONS(1640), - [aux_sym_integer_token1] = ACTIONS(1640), - [aux_sym_integer_token2] = ACTIONS(1642), - [aux_sym_float_token1] = ACTIONS(1640), - [aux_sym_float_token2] = ACTIONS(1642), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [aux_sym_string_token1] = ACTIONS(1642), - [aux_sym_string_token3] = ACTIONS(1642), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3279), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_package] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_cast] = ACTIONS(3279), + [anon_sym_DOLLARtype] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_untyped] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_this] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_AT_COLON] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_catch] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_GT_GT_GT] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_QMARK_QMARK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_null] = ACTIONS(3279), + [anon_sym_macro] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym_inline] = ACTIONS(3279), + [anon_sym_overload] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_final] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [anon_sym_typedef] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [aux_sym_integer_token1] = ACTIONS(3279), + [aux_sym_integer_token2] = ACTIONS(3281), + [aux_sym_float_token1] = ACTIONS(3279), + [aux_sym_float_token2] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [aux_sym_string_token1] = ACTIONS(3281), + [aux_sym_string_token3] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3281), [sym__closing_brace_unmarker] = ACTIONS(3), }, [574] = { - [ts_builtin_sym_end] = ACTIONS(1974), - [sym_identifier] = ACTIONS(1972), - [anon_sym_POUND] = ACTIONS(1974), - [anon_sym_package] = ACTIONS(1972), - [anon_sym_import] = ACTIONS(1972), - [anon_sym_using] = ACTIONS(1972), - [anon_sym_throw] = ACTIONS(1972), - [anon_sym_LPAREN] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1972), - [anon_sym_LBRACE] = ACTIONS(1974), - [anon_sym_cast] = ACTIONS(1972), - [anon_sym_DOLLARtype] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1972), - [anon_sym_untyped] = ACTIONS(1972), - [anon_sym_break] = ACTIONS(1972), - [anon_sym_continue] = ACTIONS(1972), - [anon_sym_LBRACK] = ACTIONS(1974), - [anon_sym_this] = ACTIONS(1972), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_AT_COLON] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1972), - [anon_sym_new] = ACTIONS(1972), - [anon_sym_TILDE] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_DASH] = ACTIONS(1972), - [anon_sym_PLUS_PLUS] = ACTIONS(1974), - [anon_sym_DASH_DASH] = ACTIONS(1974), - [anon_sym_PERCENT] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1974), - [anon_sym_SLASH] = ACTIONS(1972), - [anon_sym_PLUS] = ACTIONS(1972), - [anon_sym_LT_LT] = ACTIONS(1974), - [anon_sym_GT_GT] = ACTIONS(1972), - [anon_sym_GT_GT_GT] = ACTIONS(1974), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_CARET] = ACTIONS(1974), - [anon_sym_AMP_AMP] = ACTIONS(1974), - [anon_sym_PIPE_PIPE] = ACTIONS(1974), - [anon_sym_EQ_EQ] = ACTIONS(1974), - [anon_sym_BANG_EQ] = ACTIONS(1974), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_LT_EQ] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1972), - [anon_sym_GT_EQ] = ACTIONS(1974), - [anon_sym_EQ_GT] = ACTIONS(1974), - [anon_sym_QMARK_QMARK] = ACTIONS(1974), - [anon_sym_EQ] = ACTIONS(1972), - [sym__rangeOperator] = ACTIONS(1974), - [anon_sym_null] = ACTIONS(1972), - [anon_sym_macro] = ACTIONS(1972), - [anon_sym_abstract] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1972), - [anon_sym_public] = ACTIONS(1972), - [anon_sym_private] = ACTIONS(1972), - [anon_sym_extern] = ACTIONS(1972), - [anon_sym_inline] = ACTIONS(1972), - [anon_sym_overload] = ACTIONS(1972), - [anon_sym_override] = ACTIONS(1972), - [anon_sym_final] = ACTIONS(1972), - [anon_sym_class] = ACTIONS(1972), - [anon_sym_interface] = ACTIONS(1972), - [anon_sym_typedef] = ACTIONS(1972), - [anon_sym_function] = ACTIONS(1972), - [anon_sym_var] = ACTIONS(1972), - [aux_sym_integer_token1] = ACTIONS(1972), - [aux_sym_integer_token2] = ACTIONS(1974), - [aux_sym_float_token1] = ACTIONS(1972), - [aux_sym_float_token2] = ACTIONS(1974), - [anon_sym_true] = ACTIONS(1972), - [anon_sym_false] = ACTIONS(1972), - [aux_sym_string_token1] = ACTIONS(1974), - [aux_sym_string_token3] = ACTIONS(1974), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3283), + [anon_sym_POUND] = ACTIONS(3285), + [anon_sym_package] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_cast] = ACTIONS(3283), + [anon_sym_DOLLARtype] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_untyped] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_this] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_AT_COLON] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_catch] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_GT_GT_GT] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_LT_EQ] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3283), + [anon_sym_GT_EQ] = ACTIONS(3285), + [anon_sym_EQ_GT] = ACTIONS(3285), + [anon_sym_QMARK_QMARK] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3283), + [anon_sym_macro] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_extern] = ACTIONS(3283), + [anon_sym_inline] = ACTIONS(3283), + [anon_sym_overload] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_final] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [anon_sym_typedef] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [aux_sym_integer_token1] = ACTIONS(3283), + [aux_sym_integer_token2] = ACTIONS(3285), + [aux_sym_float_token1] = ACTIONS(3283), + [aux_sym_float_token2] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [aux_sym_string_token1] = ACTIONS(3285), + [aux_sym_string_token3] = ACTIONS(3285), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3285), [sym__closing_brace_unmarker] = ACTIONS(3), }, [575] = { - [sym_identifier] = ACTIONS(1590), - [anon_sym_POUND] = ACTIONS(1592), - [anon_sym_package] = ACTIONS(1590), - [anon_sym_import] = ACTIONS(1590), - [anon_sym_using] = ACTIONS(1590), - [anon_sym_throw] = ACTIONS(1590), - [anon_sym_LPAREN] = ACTIONS(1592), - [anon_sym_switch] = ACTIONS(1590), - [anon_sym_LBRACE] = ACTIONS(1592), - [anon_sym_cast] = ACTIONS(1590), - [anon_sym_DOLLARtype] = ACTIONS(1592), - [anon_sym_return] = ACTIONS(1590), - [anon_sym_untyped] = ACTIONS(1590), - [anon_sym_break] = ACTIONS(1590), - [anon_sym_continue] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1592), - [anon_sym_this] = ACTIONS(1590), - [anon_sym_AT] = ACTIONS(1590), - [anon_sym_AT_COLON] = ACTIONS(1592), - [anon_sym_if] = ACTIONS(1590), - [anon_sym_new] = ACTIONS(1590), - [anon_sym_TILDE] = ACTIONS(1592), - [anon_sym_BANG] = ACTIONS(1590), - [anon_sym_DASH] = ACTIONS(1590), - [anon_sym_PLUS_PLUS] = ACTIONS(1592), - [anon_sym_DASH_DASH] = ACTIONS(1592), - [anon_sym_PERCENT] = ACTIONS(1592), - [anon_sym_STAR] = ACTIONS(1592), - [anon_sym_SLASH] = ACTIONS(1590), - [anon_sym_PLUS] = ACTIONS(1590), - [anon_sym_LT_LT] = ACTIONS(1592), - [anon_sym_GT_GT] = ACTIONS(1590), - [anon_sym_GT_GT_GT] = ACTIONS(1592), - [anon_sym_AMP] = ACTIONS(1590), - [anon_sym_PIPE] = ACTIONS(1590), - [anon_sym_CARET] = ACTIONS(1592), - [anon_sym_AMP_AMP] = ACTIONS(1592), - [anon_sym_PIPE_PIPE] = ACTIONS(1592), - [anon_sym_EQ_EQ] = ACTIONS(1592), - [anon_sym_BANG_EQ] = ACTIONS(1592), - [anon_sym_LT] = ACTIONS(1590), - [anon_sym_LT_EQ] = ACTIONS(1592), - [anon_sym_GT] = ACTIONS(1590), - [anon_sym_GT_EQ] = ACTIONS(1592), - [anon_sym_EQ_GT] = ACTIONS(1592), - [anon_sym_QMARK_QMARK] = ACTIONS(1592), - [anon_sym_EQ] = ACTIONS(1590), - [sym__rangeOperator] = ACTIONS(1592), - [anon_sym_null] = ACTIONS(1590), - [anon_sym_macro] = ACTIONS(1590), - [anon_sym_abstract] = ACTIONS(1590), - [anon_sym_static] = ACTIONS(1590), - [anon_sym_public] = ACTIONS(1590), - [anon_sym_private] = ACTIONS(1590), - [anon_sym_extern] = ACTIONS(1590), - [anon_sym_inline] = ACTIONS(1590), - [anon_sym_overload] = ACTIONS(1590), - [anon_sym_override] = ACTIONS(1590), - [anon_sym_final] = ACTIONS(1590), - [anon_sym_class] = ACTIONS(1590), - [anon_sym_interface] = ACTIONS(1590), - [anon_sym_typedef] = ACTIONS(1590), - [anon_sym_function] = ACTIONS(1590), - [anon_sym_var] = ACTIONS(1590), - [aux_sym_integer_token1] = ACTIONS(1590), - [aux_sym_integer_token2] = ACTIONS(1592), - [aux_sym_float_token1] = ACTIONS(1590), - [aux_sym_float_token2] = ACTIONS(1592), - [anon_sym_true] = ACTIONS(1590), - [anon_sym_false] = ACTIONS(1590), - [aux_sym_string_token1] = ACTIONS(1592), - [aux_sym_string_token3] = ACTIONS(1592), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(1592), + [sym_identifier] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(2625), + [anon_sym_package] = ACTIONS(2623), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_case] = ACTIONS(2623), + [anon_sym_default] = ACTIONS(2623), + [anon_sym_cast] = ACTIONS(2623), + [anon_sym_DOLLARtype] = ACTIONS(2625), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_untyped] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_AT_COLON] = ACTIONS(2625), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_EQ_GT] = ACTIONS(2625), + [anon_sym_QMARK_QMARK] = ACTIONS(2625), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [anon_sym_null] = ACTIONS(2623), + [anon_sym_macro] = ACTIONS(2623), + [anon_sym_abstract] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_private] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_overload] = ACTIONS(2623), + [anon_sym_override] = ACTIONS(2623), + [anon_sym_final] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_interface] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(2623), + [anon_sym_var] = ACTIONS(2623), + [aux_sym_integer_token1] = ACTIONS(2623), + [aux_sym_integer_token2] = ACTIONS(2625), + [aux_sym_float_token1] = ACTIONS(2623), + [aux_sym_float_token2] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [aux_sym_string_token1] = ACTIONS(2625), + [aux_sym_string_token3] = ACTIONS(2625), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2625), [sym__closing_brace_unmarker] = ACTIONS(3), }, [576] = { - [ts_builtin_sym_end] = ACTIONS(1598), - [sym_identifier] = ACTIONS(1596), - [anon_sym_POUND] = ACTIONS(1598), - [anon_sym_package] = ACTIONS(1596), - [anon_sym_import] = ACTIONS(1596), - [anon_sym_using] = ACTIONS(1596), - [anon_sym_throw] = ACTIONS(1596), - [anon_sym_LPAREN] = ACTIONS(1598), - [anon_sym_switch] = ACTIONS(1596), - [anon_sym_LBRACE] = ACTIONS(1598), - [anon_sym_cast] = ACTIONS(1596), - [anon_sym_DOLLARtype] = ACTIONS(1598), - [anon_sym_return] = ACTIONS(1596), - [anon_sym_untyped] = ACTIONS(1596), - [anon_sym_break] = ACTIONS(1596), - [anon_sym_continue] = ACTIONS(1596), - [anon_sym_LBRACK] = ACTIONS(1598), - [anon_sym_this] = ACTIONS(1596), - [anon_sym_AT] = ACTIONS(1596), - [anon_sym_AT_COLON] = ACTIONS(1598), - [anon_sym_if] = ACTIONS(1596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_TILDE] = ACTIONS(1598), - [anon_sym_BANG] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_PLUS_PLUS] = ACTIONS(1598), - [anon_sym_DASH_DASH] = ACTIONS(1598), - [anon_sym_PERCENT] = ACTIONS(1598), - [anon_sym_STAR] = ACTIONS(1598), - [anon_sym_SLASH] = ACTIONS(1596), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_LT_LT] = ACTIONS(1598), - [anon_sym_GT_GT] = ACTIONS(1596), - [anon_sym_GT_GT_GT] = ACTIONS(1598), - [anon_sym_AMP] = ACTIONS(1596), - [anon_sym_PIPE] = ACTIONS(1596), - [anon_sym_CARET] = ACTIONS(1598), - [anon_sym_AMP_AMP] = ACTIONS(1598), - [anon_sym_PIPE_PIPE] = ACTIONS(1598), - [anon_sym_EQ_EQ] = ACTIONS(1598), - [anon_sym_BANG_EQ] = ACTIONS(1598), - [anon_sym_LT] = ACTIONS(1596), - [anon_sym_LT_EQ] = ACTIONS(1598), - [anon_sym_GT] = ACTIONS(1596), - [anon_sym_GT_EQ] = ACTIONS(1598), - [anon_sym_EQ_GT] = ACTIONS(1598), - [anon_sym_QMARK_QMARK] = ACTIONS(1598), - [anon_sym_EQ] = ACTIONS(1596), - [sym__rangeOperator] = ACTIONS(1598), - [anon_sym_null] = ACTIONS(1596), - [anon_sym_macro] = ACTIONS(1596), - [anon_sym_abstract] = ACTIONS(1596), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_extern] = ACTIONS(1596), - [anon_sym_inline] = ACTIONS(1596), - [anon_sym_overload] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_final] = ACTIONS(1596), - [anon_sym_class] = ACTIONS(1596), - [anon_sym_interface] = ACTIONS(1596), - [anon_sym_typedef] = ACTIONS(1596), - [anon_sym_function] = ACTIONS(1596), - [anon_sym_var] = ACTIONS(1596), - [aux_sym_integer_token1] = ACTIONS(1596), - [aux_sym_integer_token2] = ACTIONS(1598), - [aux_sym_float_token1] = ACTIONS(1596), - [aux_sym_float_token2] = ACTIONS(1598), - [anon_sym_true] = ACTIONS(1596), - [anon_sym_false] = ACTIONS(1596), - [aux_sym_string_token1] = ACTIONS(1598), - [aux_sym_string_token3] = ACTIONS(1598), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3287), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_package] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_case] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_cast] = ACTIONS(3287), + [anon_sym_DOLLARtype] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_untyped] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_this] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_AT_COLON] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_catch] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3287), + [anon_sym_GT_GT_GT] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_PIPE] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP_AMP] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3289), + [anon_sym_BANG_EQ] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3287), + [anon_sym_GT_EQ] = ACTIONS(3289), + [anon_sym_EQ_GT] = ACTIONS(3289), + [anon_sym_QMARK_QMARK] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_null] = ACTIONS(3287), + [anon_sym_macro] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_extern] = ACTIONS(3287), + [anon_sym_inline] = ACTIONS(3287), + [anon_sym_overload] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_final] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_typedef] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [aux_sym_integer_token1] = ACTIONS(3287), + [aux_sym_integer_token2] = ACTIONS(3289), + [aux_sym_float_token1] = ACTIONS(3287), + [aux_sym_float_token2] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(3287), + [anon_sym_false] = ACTIONS(3287), + [aux_sym_string_token1] = ACTIONS(3289), + [aux_sym_string_token3] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3289), [sym__closing_brace_unmarker] = ACTIONS(3), }, [577] = { - [ts_builtin_sym_end] = ACTIONS(1954), - [sym_identifier] = ACTIONS(1952), - [anon_sym_POUND] = ACTIONS(1954), - [anon_sym_package] = ACTIONS(1952), - [anon_sym_import] = ACTIONS(1952), - [anon_sym_using] = ACTIONS(1952), - [anon_sym_throw] = ACTIONS(1952), - [anon_sym_LPAREN] = ACTIONS(1954), - [anon_sym_switch] = ACTIONS(1952), - [anon_sym_LBRACE] = ACTIONS(1954), - [anon_sym_cast] = ACTIONS(1952), - [anon_sym_DOLLARtype] = ACTIONS(1954), - [anon_sym_return] = ACTIONS(1952), - [anon_sym_untyped] = ACTIONS(1952), - [anon_sym_break] = ACTIONS(1952), - [anon_sym_continue] = ACTIONS(1952), - [anon_sym_LBRACK] = ACTIONS(1954), - [anon_sym_this] = ACTIONS(1952), - [anon_sym_AT] = ACTIONS(1952), - [anon_sym_AT_COLON] = ACTIONS(1954), - [anon_sym_if] = ACTIONS(1952), - [anon_sym_new] = ACTIONS(1952), - [anon_sym_TILDE] = ACTIONS(1954), - [anon_sym_BANG] = ACTIONS(1952), - [anon_sym_DASH] = ACTIONS(1952), - [anon_sym_PLUS_PLUS] = ACTIONS(1954), - [anon_sym_DASH_DASH] = ACTIONS(1954), - [anon_sym_PERCENT] = ACTIONS(1954), - [anon_sym_STAR] = ACTIONS(1954), - [anon_sym_SLASH] = ACTIONS(1952), - [anon_sym_PLUS] = ACTIONS(1952), - [anon_sym_LT_LT] = ACTIONS(1954), - [anon_sym_GT_GT] = ACTIONS(1952), - [anon_sym_GT_GT_GT] = ACTIONS(1954), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_CARET] = ACTIONS(1954), - [anon_sym_AMP_AMP] = ACTIONS(1954), - [anon_sym_PIPE_PIPE] = ACTIONS(1954), - [anon_sym_EQ_EQ] = ACTIONS(1954), - [anon_sym_BANG_EQ] = ACTIONS(1954), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_LT_EQ] = ACTIONS(1954), - [anon_sym_GT] = ACTIONS(1952), - [anon_sym_GT_EQ] = ACTIONS(1954), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_QMARK] = ACTIONS(1954), - [anon_sym_EQ] = ACTIONS(1952), - [sym__rangeOperator] = ACTIONS(1954), - [anon_sym_null] = ACTIONS(1952), - [anon_sym_macro] = ACTIONS(1952), - [anon_sym_abstract] = ACTIONS(1952), - [anon_sym_static] = ACTIONS(1952), - [anon_sym_public] = ACTIONS(1952), - [anon_sym_private] = ACTIONS(1952), - [anon_sym_extern] = ACTIONS(1952), - [anon_sym_inline] = ACTIONS(1952), - [anon_sym_overload] = ACTIONS(1952), - [anon_sym_override] = ACTIONS(1952), - [anon_sym_final] = ACTIONS(1952), - [anon_sym_class] = ACTIONS(1952), - [anon_sym_interface] = ACTIONS(1952), - [anon_sym_typedef] = ACTIONS(1952), - [anon_sym_function] = ACTIONS(1952), - [anon_sym_var] = ACTIONS(1952), - [aux_sym_integer_token1] = ACTIONS(1952), - [aux_sym_integer_token2] = ACTIONS(1954), - [aux_sym_float_token1] = ACTIONS(1952), - [aux_sym_float_token2] = ACTIONS(1954), - [anon_sym_true] = ACTIONS(1952), - [anon_sym_false] = ACTIONS(1952), - [aux_sym_string_token1] = ACTIONS(1954), - [aux_sym_string_token3] = ACTIONS(1954), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3291), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_package] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_cast] = ACTIONS(3291), + [anon_sym_DOLLARtype] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_untyped] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_this] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_AT_COLON] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_catch] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_GT_GT_GT] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_EQ_EQ] = ACTIONS(3293), + [anon_sym_BANG_EQ] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3291), + [anon_sym_GT_EQ] = ACTIONS(3293), + [anon_sym_EQ_GT] = ACTIONS(3293), + [anon_sym_QMARK_QMARK] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3291), + [anon_sym_macro] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_extern] = ACTIONS(3291), + [anon_sym_inline] = ACTIONS(3291), + [anon_sym_overload] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_final] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_typedef] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [aux_sym_integer_token1] = ACTIONS(3291), + [aux_sym_integer_token2] = ACTIONS(3293), + [aux_sym_float_token1] = ACTIONS(3291), + [aux_sym_float_token2] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [aux_sym_string_token1] = ACTIONS(3293), + [aux_sym_string_token3] = ACTIONS(3293), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3293), [sym__closing_brace_unmarker] = ACTIONS(3), }, [578] = { - [ts_builtin_sym_end] = ACTIONS(1938), - [sym_identifier] = ACTIONS(1936), - [anon_sym_POUND] = ACTIONS(1938), - [anon_sym_package] = ACTIONS(1936), - [anon_sym_import] = ACTIONS(1936), - [anon_sym_using] = ACTIONS(1936), - [anon_sym_throw] = ACTIONS(1936), - [anon_sym_LPAREN] = ACTIONS(1938), - [anon_sym_switch] = ACTIONS(1936), - [anon_sym_LBRACE] = ACTIONS(1938), - [anon_sym_cast] = ACTIONS(1936), - [anon_sym_DOLLARtype] = ACTIONS(1938), - [anon_sym_return] = ACTIONS(1936), - [anon_sym_untyped] = ACTIONS(1936), - [anon_sym_break] = ACTIONS(1936), - [anon_sym_continue] = ACTIONS(1936), - [anon_sym_LBRACK] = ACTIONS(1938), - [anon_sym_this] = ACTIONS(1936), - [anon_sym_AT] = ACTIONS(1936), - [anon_sym_AT_COLON] = ACTIONS(1938), - [anon_sym_if] = ACTIONS(1936), - [anon_sym_new] = ACTIONS(1936), - [anon_sym_TILDE] = ACTIONS(1938), - [anon_sym_BANG] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_PLUS_PLUS] = ACTIONS(1938), - [anon_sym_DASH_DASH] = ACTIONS(1938), - [anon_sym_PERCENT] = ACTIONS(1938), - [anon_sym_STAR] = ACTIONS(1938), - [anon_sym_SLASH] = ACTIONS(1936), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_LT_LT] = ACTIONS(1938), - [anon_sym_GT_GT] = ACTIONS(1936), - [anon_sym_GT_GT_GT] = ACTIONS(1938), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_CARET] = ACTIONS(1938), - [anon_sym_AMP_AMP] = ACTIONS(1938), - [anon_sym_PIPE_PIPE] = ACTIONS(1938), - [anon_sym_EQ_EQ] = ACTIONS(1938), - [anon_sym_BANG_EQ] = ACTIONS(1938), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_LT_EQ] = ACTIONS(1938), - [anon_sym_GT] = ACTIONS(1936), - [anon_sym_GT_EQ] = ACTIONS(1938), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_QMARK] = ACTIONS(1938), - [anon_sym_EQ] = ACTIONS(1936), - [sym__rangeOperator] = ACTIONS(1938), - [anon_sym_null] = ACTIONS(1936), - [anon_sym_macro] = ACTIONS(1936), - [anon_sym_abstract] = ACTIONS(1936), - [anon_sym_static] = ACTIONS(1936), - [anon_sym_public] = ACTIONS(1936), - [anon_sym_private] = ACTIONS(1936), - [anon_sym_extern] = ACTIONS(1936), - [anon_sym_inline] = ACTIONS(1936), - [anon_sym_overload] = ACTIONS(1936), - [anon_sym_override] = ACTIONS(1936), - [anon_sym_final] = ACTIONS(1936), - [anon_sym_class] = ACTIONS(1936), - [anon_sym_interface] = ACTIONS(1936), - [anon_sym_typedef] = ACTIONS(1936), - [anon_sym_function] = ACTIONS(1936), - [anon_sym_var] = ACTIONS(1936), - [aux_sym_integer_token1] = ACTIONS(1936), - [aux_sym_integer_token2] = ACTIONS(1938), - [aux_sym_float_token1] = ACTIONS(1936), - [aux_sym_float_token2] = ACTIONS(1938), - [anon_sym_true] = ACTIONS(1936), - [anon_sym_false] = ACTIONS(1936), - [aux_sym_string_token1] = ACTIONS(1938), - [aux_sym_string_token3] = ACTIONS(1938), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_package] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_case] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_cast] = ACTIONS(3295), + [anon_sym_DOLLARtype] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_untyped] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_this] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_AT_COLON] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_catch] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_GT_GT_GT] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_EQ_EQ] = ACTIONS(3297), + [anon_sym_BANG_EQ] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3297), + [anon_sym_EQ_GT] = ACTIONS(3297), + [anon_sym_QMARK_QMARK] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_macro] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3295), + [anon_sym_inline] = ACTIONS(3295), + [anon_sym_overload] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_final] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_typedef] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [aux_sym_integer_token1] = ACTIONS(3295), + [aux_sym_integer_token2] = ACTIONS(3297), + [aux_sym_float_token1] = ACTIONS(3295), + [aux_sym_float_token2] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3295), + [anon_sym_false] = ACTIONS(3295), + [aux_sym_string_token1] = ACTIONS(3297), + [aux_sym_string_token3] = ACTIONS(3297), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3297), [sym__closing_brace_unmarker] = ACTIONS(3), }, [579] = { - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2370), - [anon_sym_POUND] = ACTIONS(2372), - [anon_sym_package] = ACTIONS(2370), - [anon_sym_import] = ACTIONS(2370), - [anon_sym_using] = ACTIONS(2370), - [anon_sym_throw] = ACTIONS(2370), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_switch] = ACTIONS(2370), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_cast] = ACTIONS(2370), - [anon_sym_DOLLARtype] = ACTIONS(2372), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_untyped] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_this] = ACTIONS(2370), - [anon_sym_AT] = ACTIONS(2370), - [anon_sym_AT_COLON] = ACTIONS(2372), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_new] = ACTIONS(2370), - [anon_sym_TILDE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2370), - [anon_sym_PLUS_PLUS] = ACTIONS(2372), - [anon_sym_DASH_DASH] = ACTIONS(2372), - [anon_sym_PERCENT] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_SLASH] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(2370), - [anon_sym_LT_LT] = ACTIONS(2372), - [anon_sym_GT_GT] = ACTIONS(2370), - [anon_sym_GT_GT_GT] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2370), - [anon_sym_PIPE] = ACTIONS(2370), - [anon_sym_CARET] = ACTIONS(2372), - [anon_sym_AMP_AMP] = ACTIONS(2372), - [anon_sym_PIPE_PIPE] = ACTIONS(2372), - [anon_sym_EQ_EQ] = ACTIONS(2372), - [anon_sym_BANG_EQ] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2370), - [anon_sym_LT_EQ] = ACTIONS(2372), - [anon_sym_GT] = ACTIONS(2370), - [anon_sym_GT_EQ] = ACTIONS(2372), - [anon_sym_EQ_GT] = ACTIONS(2372), - [anon_sym_QMARK_QMARK] = ACTIONS(2372), - [anon_sym_EQ] = ACTIONS(2370), - [sym__rangeOperator] = ACTIONS(2372), - [anon_sym_null] = ACTIONS(2370), - [anon_sym_macro] = ACTIONS(2370), - [anon_sym_abstract] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_public] = ACTIONS(2370), - [anon_sym_private] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2370), - [anon_sym_inline] = ACTIONS(2370), - [anon_sym_overload] = ACTIONS(2370), - [anon_sym_override] = ACTIONS(2370), - [anon_sym_final] = ACTIONS(2370), - [anon_sym_class] = ACTIONS(2370), - [anon_sym_interface] = ACTIONS(2370), - [anon_sym_typedef] = ACTIONS(2370), - [anon_sym_function] = ACTIONS(2370), - [anon_sym_var] = ACTIONS(2370), - [aux_sym_integer_token1] = ACTIONS(2370), - [aux_sym_integer_token2] = ACTIONS(2372), - [aux_sym_float_token1] = ACTIONS(2370), - [aux_sym_float_token2] = ACTIONS(2372), - [anon_sym_true] = ACTIONS(2370), - [anon_sym_false] = ACTIONS(2370), - [aux_sym_string_token1] = ACTIONS(2372), - [aux_sym_string_token3] = ACTIONS(2372), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3299), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_package] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_cast] = ACTIONS(3299), + [anon_sym_DOLLARtype] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_untyped] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_this] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_AT_COLON] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_catch] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3301), + [anon_sym_PIPE_PIPE] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_EQ_GT] = ACTIONS(3301), + [anon_sym_QMARK_QMARK] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_macro] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_extern] = ACTIONS(3299), + [anon_sym_inline] = ACTIONS(3299), + [anon_sym_overload] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_final] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [anon_sym_typedef] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [aux_sym_integer_token1] = ACTIONS(3299), + [aux_sym_integer_token2] = ACTIONS(3301), + [aux_sym_float_token1] = ACTIONS(3299), + [aux_sym_float_token2] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym_string_token1] = ACTIONS(3301), + [aux_sym_string_token3] = ACTIONS(3301), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3301), [sym__closing_brace_unmarker] = ACTIONS(3), }, [580] = { - [ts_builtin_sym_end] = ACTIONS(2214), - [sym_identifier] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(2214), - [anon_sym_package] = ACTIONS(2212), - [anon_sym_import] = ACTIONS(2212), - [anon_sym_using] = ACTIONS(2212), - [anon_sym_throw] = ACTIONS(2212), - [anon_sym_LPAREN] = ACTIONS(2214), - [anon_sym_switch] = ACTIONS(2212), - [anon_sym_LBRACE] = ACTIONS(2214), - [anon_sym_cast] = ACTIONS(2212), - [anon_sym_DOLLARtype] = ACTIONS(2214), - [anon_sym_return] = ACTIONS(2212), - [anon_sym_untyped] = ACTIONS(2212), - [anon_sym_break] = ACTIONS(2212), - [anon_sym_continue] = ACTIONS(2212), - [anon_sym_LBRACK] = ACTIONS(2214), - [anon_sym_this] = ACTIONS(2212), - [anon_sym_AT] = ACTIONS(2212), - [anon_sym_AT_COLON] = ACTIONS(2214), - [anon_sym_if] = ACTIONS(2212), - [anon_sym_new] = ACTIONS(2212), - [anon_sym_TILDE] = ACTIONS(2214), - [anon_sym_BANG] = ACTIONS(2212), - [anon_sym_DASH] = ACTIONS(2212), - [anon_sym_PLUS_PLUS] = ACTIONS(2214), - [anon_sym_DASH_DASH] = ACTIONS(2214), - [anon_sym_PERCENT] = ACTIONS(2214), - [anon_sym_STAR] = ACTIONS(2214), - [anon_sym_SLASH] = ACTIONS(2212), - [anon_sym_PLUS] = ACTIONS(2212), - [anon_sym_LT_LT] = ACTIONS(2214), - [anon_sym_GT_GT] = ACTIONS(2212), - [anon_sym_GT_GT_GT] = ACTIONS(2214), - [anon_sym_AMP] = ACTIONS(2212), - [anon_sym_PIPE] = ACTIONS(2212), - [anon_sym_CARET] = ACTIONS(2214), - [anon_sym_AMP_AMP] = ACTIONS(2214), - [anon_sym_PIPE_PIPE] = ACTIONS(2214), - [anon_sym_EQ_EQ] = ACTIONS(2214), - [anon_sym_BANG_EQ] = ACTIONS(2214), - [anon_sym_LT] = ACTIONS(2212), - [anon_sym_LT_EQ] = ACTIONS(2214), - [anon_sym_GT] = ACTIONS(2212), - [anon_sym_GT_EQ] = ACTIONS(2214), - [anon_sym_EQ_GT] = ACTIONS(2214), - [anon_sym_QMARK_QMARK] = ACTIONS(2214), - [anon_sym_EQ] = ACTIONS(2212), - [sym__rangeOperator] = ACTIONS(2214), - [anon_sym_null] = ACTIONS(2212), - [anon_sym_macro] = ACTIONS(2212), - [anon_sym_abstract] = ACTIONS(2212), - [anon_sym_static] = ACTIONS(2212), - [anon_sym_public] = ACTIONS(2212), - [anon_sym_private] = ACTIONS(2212), - [anon_sym_extern] = ACTIONS(2212), - [anon_sym_inline] = ACTIONS(2212), - [anon_sym_overload] = ACTIONS(2212), - [anon_sym_override] = ACTIONS(2212), - [anon_sym_final] = ACTIONS(2212), - [anon_sym_class] = ACTIONS(2212), - [anon_sym_interface] = ACTIONS(2212), - [anon_sym_typedef] = ACTIONS(2212), - [anon_sym_function] = ACTIONS(2212), - [anon_sym_var] = ACTIONS(2212), - [aux_sym_integer_token1] = ACTIONS(2212), - [aux_sym_integer_token2] = ACTIONS(2214), - [aux_sym_float_token1] = ACTIONS(2212), - [aux_sym_float_token2] = ACTIONS(2214), - [anon_sym_true] = ACTIONS(2212), - [anon_sym_false] = ACTIONS(2212), - [aux_sym_string_token1] = ACTIONS(2214), - [aux_sym_string_token3] = ACTIONS(2214), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3303), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_package] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_cast] = ACTIONS(3303), + [anon_sym_DOLLARtype] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_untyped] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_this] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_AT_COLON] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_catch] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3303), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_PIPE] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_PIPE_PIPE] = ACTIONS(3305), + [anon_sym_EQ_EQ] = ACTIONS(3305), + [anon_sym_BANG_EQ] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3303), + [anon_sym_GT_EQ] = ACTIONS(3305), + [anon_sym_EQ_GT] = ACTIONS(3305), + [anon_sym_QMARK_QMARK] = ACTIONS(3305), + [anon_sym_EQ] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_null] = ACTIONS(3303), + [anon_sym_macro] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_extern] = ACTIONS(3303), + [anon_sym_inline] = ACTIONS(3303), + [anon_sym_overload] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_final] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [anon_sym_typedef] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [aux_sym_integer_token1] = ACTIONS(3303), + [aux_sym_integer_token2] = ACTIONS(3305), + [aux_sym_float_token1] = ACTIONS(3303), + [aux_sym_float_token2] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(3303), + [anon_sym_false] = ACTIONS(3303), + [aux_sym_string_token1] = ACTIONS(3305), + [aux_sym_string_token3] = ACTIONS(3305), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3305), [sym__closing_brace_unmarker] = ACTIONS(3), }, [581] = { - [ts_builtin_sym_end] = ACTIONS(1718), - [sym_identifier] = ACTIONS(1716), - [anon_sym_POUND] = ACTIONS(1718), - [anon_sym_package] = ACTIONS(1716), - [anon_sym_import] = ACTIONS(1716), - [anon_sym_using] = ACTIONS(1716), - [anon_sym_throw] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1718), - [anon_sym_switch] = ACTIONS(1716), - [anon_sym_LBRACE] = ACTIONS(1718), - [anon_sym_cast] = ACTIONS(1716), - [anon_sym_DOLLARtype] = ACTIONS(1718), - [anon_sym_return] = ACTIONS(1716), - [anon_sym_untyped] = ACTIONS(1716), - [anon_sym_break] = ACTIONS(1716), - [anon_sym_continue] = ACTIONS(1716), - [anon_sym_LBRACK] = ACTIONS(1718), - [anon_sym_this] = ACTIONS(1716), - [anon_sym_AT] = ACTIONS(1716), - [anon_sym_AT_COLON] = ACTIONS(1718), - [anon_sym_if] = ACTIONS(1716), - [anon_sym_new] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1718), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_PLUS_PLUS] = ACTIONS(1718), - [anon_sym_DASH_DASH] = ACTIONS(1718), - [anon_sym_PERCENT] = ACTIONS(1718), - [anon_sym_STAR] = ACTIONS(1718), - [anon_sym_SLASH] = ACTIONS(1716), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_LT_LT] = ACTIONS(1718), - [anon_sym_GT_GT] = ACTIONS(1716), - [anon_sym_GT_GT_GT] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(1716), - [anon_sym_PIPE] = ACTIONS(1716), - [anon_sym_CARET] = ACTIONS(1718), - [anon_sym_AMP_AMP] = ACTIONS(1718), - [anon_sym_PIPE_PIPE] = ACTIONS(1718), - [anon_sym_EQ_EQ] = ACTIONS(1718), - [anon_sym_BANG_EQ] = ACTIONS(1718), - [anon_sym_LT] = ACTIONS(1716), - [anon_sym_LT_EQ] = ACTIONS(1718), - [anon_sym_GT] = ACTIONS(1716), - [anon_sym_GT_EQ] = ACTIONS(1718), - [anon_sym_EQ_GT] = ACTIONS(1718), - [anon_sym_QMARK_QMARK] = ACTIONS(1718), - [anon_sym_EQ] = ACTIONS(1716), - [sym__rangeOperator] = ACTIONS(1718), - [anon_sym_null] = ACTIONS(1716), - [anon_sym_macro] = ACTIONS(1716), - [anon_sym_abstract] = ACTIONS(1716), - [anon_sym_static] = ACTIONS(1716), - [anon_sym_public] = ACTIONS(1716), - [anon_sym_private] = ACTIONS(1716), - [anon_sym_extern] = ACTIONS(1716), - [anon_sym_inline] = ACTIONS(1716), - [anon_sym_overload] = ACTIONS(1716), - [anon_sym_override] = ACTIONS(1716), - [anon_sym_final] = ACTIONS(1716), - [anon_sym_class] = ACTIONS(1716), - [anon_sym_interface] = ACTIONS(1716), - [anon_sym_typedef] = ACTIONS(1716), - [anon_sym_function] = ACTIONS(1716), - [anon_sym_var] = ACTIONS(1716), - [aux_sym_integer_token1] = ACTIONS(1716), - [aux_sym_integer_token2] = ACTIONS(1718), - [aux_sym_float_token1] = ACTIONS(1716), - [aux_sym_float_token2] = ACTIONS(1718), - [anon_sym_true] = ACTIONS(1716), - [anon_sym_false] = ACTIONS(1716), - [aux_sym_string_token1] = ACTIONS(1718), - [aux_sym_string_token3] = ACTIONS(1718), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_package] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3307), + [anon_sym_default] = ACTIONS(3307), + [anon_sym_cast] = ACTIONS(3307), + [anon_sym_DOLLARtype] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_untyped] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_this] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_AT_COLON] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_catch] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3307), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_EQ_GT] = ACTIONS(3309), + [anon_sym_QMARK_QMARK] = ACTIONS(3309), + [anon_sym_EQ] = ACTIONS(3307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_null] = ACTIONS(3307), + [anon_sym_macro] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_overload] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_final] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [aux_sym_integer_token1] = ACTIONS(3307), + [aux_sym_integer_token2] = ACTIONS(3309), + [aux_sym_float_token1] = ACTIONS(3307), + [aux_sym_float_token2] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [aux_sym_string_token1] = ACTIONS(3309), + [aux_sym_string_token3] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3309), [sym__closing_brace_unmarker] = ACTIONS(3), }, [582] = { - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2192), - [anon_sym_POUND] = ACTIONS(2194), - [anon_sym_package] = ACTIONS(2192), - [anon_sym_import] = ACTIONS(2192), - [anon_sym_using] = ACTIONS(2192), - [anon_sym_throw] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_cast] = ACTIONS(2192), - [anon_sym_DOLLARtype] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2192), - [anon_sym_untyped] = ACTIONS(2192), - [anon_sym_break] = ACTIONS(2192), - [anon_sym_continue] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_this] = ACTIONS(2192), - [anon_sym_AT] = ACTIONS(2192), - [anon_sym_AT_COLON] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2192), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_EQ_GT] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_EQ] = ACTIONS(2192), - [sym__rangeOperator] = ACTIONS(2194), - [anon_sym_null] = ACTIONS(2192), - [anon_sym_macro] = ACTIONS(2192), - [anon_sym_abstract] = ACTIONS(2192), - [anon_sym_static] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_extern] = ACTIONS(2192), - [anon_sym_inline] = ACTIONS(2192), - [anon_sym_overload] = ACTIONS(2192), - [anon_sym_override] = ACTIONS(2192), - [anon_sym_final] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_typedef] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_var] = ACTIONS(2192), - [aux_sym_integer_token1] = ACTIONS(2192), - [aux_sym_integer_token2] = ACTIONS(2194), - [aux_sym_float_token1] = ACTIONS(2192), - [aux_sym_float_token2] = ACTIONS(2194), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [aux_sym_string_token1] = ACTIONS(2194), - [aux_sym_string_token3] = ACTIONS(2194), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3311), + [anon_sym_POUND] = ACTIONS(3313), + [anon_sym_package] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_case] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_cast] = ACTIONS(3311), + [anon_sym_DOLLARtype] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_untyped] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_this] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_AT_COLON] = ACTIONS(3313), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_catch] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3313), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP_AMP] = ACTIONS(3313), + [anon_sym_PIPE_PIPE] = ACTIONS(3313), + [anon_sym_EQ_EQ] = ACTIONS(3313), + [anon_sym_BANG_EQ] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3313), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3313), + [anon_sym_EQ_GT] = ACTIONS(3313), + [anon_sym_QMARK_QMARK] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + [anon_sym_null] = ACTIONS(3311), + [anon_sym_macro] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_extern] = ACTIONS(3311), + [anon_sym_inline] = ACTIONS(3311), + [anon_sym_overload] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_final] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_typedef] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [aux_sym_integer_token1] = ACTIONS(3311), + [aux_sym_integer_token2] = ACTIONS(3313), + [aux_sym_float_token1] = ACTIONS(3311), + [aux_sym_float_token2] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [aux_sym_string_token1] = ACTIONS(3313), + [aux_sym_string_token3] = ACTIONS(3313), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3313), [sym__closing_brace_unmarker] = ACTIONS(3), }, [583] = { - [ts_builtin_sym_end] = ACTIONS(1678), - [sym_identifier] = ACTIONS(1676), - [anon_sym_POUND] = ACTIONS(1678), - [anon_sym_package] = ACTIONS(1676), - [anon_sym_import] = ACTIONS(1676), - [anon_sym_using] = ACTIONS(1676), - [anon_sym_throw] = ACTIONS(1676), - [anon_sym_LPAREN] = ACTIONS(1678), - [anon_sym_switch] = ACTIONS(1676), - [anon_sym_LBRACE] = ACTIONS(1678), - [anon_sym_cast] = ACTIONS(1676), - [anon_sym_DOLLARtype] = ACTIONS(1678), - [anon_sym_return] = ACTIONS(1676), - [anon_sym_untyped] = ACTIONS(1676), - [anon_sym_break] = ACTIONS(1676), - [anon_sym_continue] = ACTIONS(1676), - [anon_sym_LBRACK] = ACTIONS(1678), - [anon_sym_this] = ACTIONS(1676), - [anon_sym_AT] = ACTIONS(1676), - [anon_sym_AT_COLON] = ACTIONS(1678), - [anon_sym_if] = ACTIONS(1676), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_TILDE] = ACTIONS(1678), - [anon_sym_BANG] = ACTIONS(1676), - [anon_sym_DASH] = ACTIONS(1676), - [anon_sym_PLUS_PLUS] = ACTIONS(1678), - [anon_sym_DASH_DASH] = ACTIONS(1678), - [anon_sym_PERCENT] = ACTIONS(1678), - [anon_sym_STAR] = ACTIONS(1678), - [anon_sym_SLASH] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1676), - [anon_sym_LT_LT] = ACTIONS(1678), - [anon_sym_GT_GT] = ACTIONS(1676), - [anon_sym_GT_GT_GT] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(1676), - [anon_sym_PIPE] = ACTIONS(1676), - [anon_sym_CARET] = ACTIONS(1678), - [anon_sym_AMP_AMP] = ACTIONS(1678), - [anon_sym_PIPE_PIPE] = ACTIONS(1678), - [anon_sym_EQ_EQ] = ACTIONS(1678), - [anon_sym_BANG_EQ] = ACTIONS(1678), - [anon_sym_LT] = ACTIONS(1676), - [anon_sym_LT_EQ] = ACTIONS(1678), - [anon_sym_GT] = ACTIONS(1676), - [anon_sym_GT_EQ] = ACTIONS(1678), - [anon_sym_EQ_GT] = ACTIONS(1678), - [anon_sym_QMARK_QMARK] = ACTIONS(1678), - [anon_sym_EQ] = ACTIONS(1676), - [sym__rangeOperator] = ACTIONS(1678), - [anon_sym_null] = ACTIONS(1676), - [anon_sym_macro] = ACTIONS(1676), - [anon_sym_abstract] = ACTIONS(1676), - [anon_sym_static] = ACTIONS(1676), - [anon_sym_public] = ACTIONS(1676), - [anon_sym_private] = ACTIONS(1676), - [anon_sym_extern] = ACTIONS(1676), - [anon_sym_inline] = ACTIONS(1676), - [anon_sym_overload] = ACTIONS(1676), - [anon_sym_override] = ACTIONS(1676), - [anon_sym_final] = ACTIONS(1676), - [anon_sym_class] = ACTIONS(1676), - [anon_sym_interface] = ACTIONS(1676), - [anon_sym_typedef] = ACTIONS(1676), - [anon_sym_function] = ACTIONS(1676), - [anon_sym_var] = ACTIONS(1676), - [aux_sym_integer_token1] = ACTIONS(1676), - [aux_sym_integer_token2] = ACTIONS(1678), - [aux_sym_float_token1] = ACTIONS(1676), - [aux_sym_float_token2] = ACTIONS(1678), - [anon_sym_true] = ACTIONS(1676), - [anon_sym_false] = ACTIONS(1676), - [aux_sym_string_token1] = ACTIONS(1678), - [aux_sym_string_token3] = ACTIONS(1678), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3315), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_package] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_cast] = ACTIONS(3315), + [anon_sym_DOLLARtype] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_untyped] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_this] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_AT_COLON] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_catch] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_LT_LT] = ACTIONS(3317), + [anon_sym_GT_GT] = ACTIONS(3315), + [anon_sym_GT_GT_GT] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3315), + [anon_sym_PIPE] = ACTIONS(3315), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3315), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_EQ_GT] = ACTIONS(3317), + [anon_sym_QMARK_QMARK] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_macro] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_overload] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_final] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_typedef] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [aux_sym_integer_token1] = ACTIONS(3315), + [aux_sym_integer_token2] = ACTIONS(3317), + [aux_sym_float_token1] = ACTIONS(3315), + [aux_sym_float_token2] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [aux_sym_string_token1] = ACTIONS(3317), + [aux_sym_string_token3] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3317), [sym__closing_brace_unmarker] = ACTIONS(3), }, [584] = { - [ts_builtin_sym_end] = ACTIONS(1650), - [sym_identifier] = ACTIONS(1648), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_package] = ACTIONS(1648), - [anon_sym_import] = ACTIONS(1648), - [anon_sym_using] = ACTIONS(1648), - [anon_sym_throw] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_switch] = ACTIONS(1648), - [anon_sym_LBRACE] = ACTIONS(1650), - [anon_sym_cast] = ACTIONS(1648), - [anon_sym_DOLLARtype] = ACTIONS(1650), - [anon_sym_return] = ACTIONS(1648), - [anon_sym_untyped] = ACTIONS(1648), - [anon_sym_break] = ACTIONS(1648), - [anon_sym_continue] = ACTIONS(1648), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_this] = ACTIONS(1648), - [anon_sym_AT] = ACTIONS(1648), - [anon_sym_AT_COLON] = ACTIONS(1650), - [anon_sym_if] = ACTIONS(1648), - [anon_sym_new] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1650), - [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PLUS_PLUS] = ACTIONS(1650), - [anon_sym_DASH_DASH] = ACTIONS(1650), - [anon_sym_PERCENT] = ACTIONS(1650), - [anon_sym_STAR] = ACTIONS(1650), - [anon_sym_SLASH] = ACTIONS(1648), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_LT_LT] = ACTIONS(1650), - [anon_sym_GT_GT] = ACTIONS(1648), - [anon_sym_GT_GT_GT] = ACTIONS(1650), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_CARET] = ACTIONS(1650), - [anon_sym_AMP_AMP] = ACTIONS(1650), - [anon_sym_PIPE_PIPE] = ACTIONS(1650), - [anon_sym_EQ_EQ] = ACTIONS(1650), - [anon_sym_BANG_EQ] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_LT_EQ] = ACTIONS(1650), - [anon_sym_GT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1650), - [anon_sym_EQ_GT] = ACTIONS(1650), - [anon_sym_QMARK_QMARK] = ACTIONS(1650), - [anon_sym_EQ] = ACTIONS(1648), - [sym__rangeOperator] = ACTIONS(1650), - [anon_sym_null] = ACTIONS(1648), - [anon_sym_macro] = ACTIONS(1648), - [anon_sym_abstract] = ACTIONS(1648), - [anon_sym_static] = ACTIONS(1648), - [anon_sym_public] = ACTIONS(1648), - [anon_sym_private] = ACTIONS(1648), - [anon_sym_extern] = ACTIONS(1648), - [anon_sym_inline] = ACTIONS(1648), - [anon_sym_overload] = ACTIONS(1648), - [anon_sym_override] = ACTIONS(1648), - [anon_sym_final] = ACTIONS(1648), - [anon_sym_class] = ACTIONS(1648), - [anon_sym_interface] = ACTIONS(1648), - [anon_sym_typedef] = ACTIONS(1648), - [anon_sym_function] = ACTIONS(1648), - [anon_sym_var] = ACTIONS(1648), - [aux_sym_integer_token1] = ACTIONS(1648), - [aux_sym_integer_token2] = ACTIONS(1650), - [aux_sym_float_token1] = ACTIONS(1648), - [aux_sym_float_token2] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), - [aux_sym_string_token1] = ACTIONS(1650), - [aux_sym_string_token3] = ACTIONS(1650), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3319), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_package] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_cast] = ACTIONS(3319), + [anon_sym_DOLLARtype] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_untyped] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_this] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_AT_COLON] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_catch] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_EQ_GT] = ACTIONS(3321), + [anon_sym_QMARK_QMARK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3319), + [anon_sym_macro] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_extern] = ACTIONS(3319), + [anon_sym_inline] = ACTIONS(3319), + [anon_sym_overload] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_final] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [anon_sym_typedef] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [aux_sym_integer_token1] = ACTIONS(3319), + [aux_sym_integer_token2] = ACTIONS(3321), + [aux_sym_float_token1] = ACTIONS(3319), + [aux_sym_float_token2] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [aux_sym_string_token1] = ACTIONS(3321), + [aux_sym_string_token3] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3321), [sym__closing_brace_unmarker] = ACTIONS(3), }, [585] = { - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2188), - [anon_sym_POUND] = ACTIONS(2190), - [anon_sym_package] = ACTIONS(2188), - [anon_sym_import] = ACTIONS(2188), - [anon_sym_using] = ACTIONS(2188), - [anon_sym_throw] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_cast] = ACTIONS(2188), - [anon_sym_DOLLARtype] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_untyped] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_this] = ACTIONS(2188), - [anon_sym_AT] = ACTIONS(2188), - [anon_sym_AT_COLON] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_new] = ACTIONS(2188), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2188), - [anon_sym_DASH] = ACTIONS(2188), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2188), - [anon_sym_PLUS] = ACTIONS(2188), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2188), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2188), - [anon_sym_PIPE] = ACTIONS(2188), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2188), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2188), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_EQ_GT] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_EQ] = ACTIONS(2188), - [sym__rangeOperator] = ACTIONS(2190), - [anon_sym_null] = ACTIONS(2188), - [anon_sym_macro] = ACTIONS(2188), - [anon_sym_abstract] = ACTIONS(2188), - [anon_sym_static] = ACTIONS(2188), - [anon_sym_public] = ACTIONS(2188), - [anon_sym_private] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_inline] = ACTIONS(2188), - [anon_sym_overload] = ACTIONS(2188), - [anon_sym_override] = ACTIONS(2188), - [anon_sym_final] = ACTIONS(2188), - [anon_sym_class] = ACTIONS(2188), - [anon_sym_interface] = ACTIONS(2188), - [anon_sym_typedef] = ACTIONS(2188), - [anon_sym_function] = ACTIONS(2188), - [anon_sym_var] = ACTIONS(2188), - [aux_sym_integer_token1] = ACTIONS(2188), - [aux_sym_integer_token2] = ACTIONS(2190), - [aux_sym_float_token1] = ACTIONS(2188), - [aux_sym_float_token2] = ACTIONS(2190), - [anon_sym_true] = ACTIONS(2188), - [anon_sym_false] = ACTIONS(2188), - [aux_sym_string_token1] = ACTIONS(2190), - [aux_sym_string_token3] = ACTIONS(2190), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3323), + [anon_sym_POUND] = ACTIONS(3325), + [anon_sym_package] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_case] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_cast] = ACTIONS(3323), + [anon_sym_DOLLARtype] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_untyped] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_this] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_AT_COLON] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_catch] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_LT_LT] = ACTIONS(3325), + [anon_sym_GT_GT] = ACTIONS(3323), + [anon_sym_GT_GT_GT] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3323), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_EQ_GT] = ACTIONS(3325), + [anon_sym_QMARK_QMARK] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3323), + [anon_sym_macro] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_inline] = ACTIONS(3323), + [anon_sym_overload] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_final] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_typedef] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [aux_sym_integer_token1] = ACTIONS(3323), + [aux_sym_integer_token2] = ACTIONS(3325), + [aux_sym_float_token1] = ACTIONS(3323), + [aux_sym_float_token2] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [aux_sym_string_token1] = ACTIONS(3325), + [aux_sym_string_token3] = ACTIONS(3325), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3325), [sym__closing_brace_unmarker] = ACTIONS(3), }, [586] = { - [ts_builtin_sym_end] = ACTIONS(2182), - [sym_identifier] = ACTIONS(2180), - [anon_sym_POUND] = ACTIONS(2182), - [anon_sym_package] = ACTIONS(2180), - [anon_sym_import] = ACTIONS(2180), - [anon_sym_using] = ACTIONS(2180), - [anon_sym_throw] = ACTIONS(2180), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2180), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_cast] = ACTIONS(2180), - [anon_sym_DOLLARtype] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2180), - [anon_sym_untyped] = ACTIONS(2180), - [anon_sym_break] = ACTIONS(2180), - [anon_sym_continue] = ACTIONS(2180), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_this] = ACTIONS(2180), - [anon_sym_AT] = ACTIONS(2180), - [anon_sym_AT_COLON] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2180), - [anon_sym_new] = ACTIONS(2180), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2180), - [anon_sym_DASH] = ACTIONS(2180), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2180), - [anon_sym_PLUS] = ACTIONS(2180), - [anon_sym_LT_LT] = ACTIONS(2182), - [anon_sym_GT_GT] = ACTIONS(2180), - [anon_sym_GT_GT_GT] = ACTIONS(2182), - [anon_sym_AMP] = ACTIONS(2180), - [anon_sym_PIPE] = ACTIONS(2180), - [anon_sym_CARET] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2182), - [anon_sym_PIPE_PIPE] = ACTIONS(2182), - [anon_sym_EQ_EQ] = ACTIONS(2182), - [anon_sym_BANG_EQ] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2180), - [anon_sym_LT_EQ] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2180), - [anon_sym_GT_EQ] = ACTIONS(2182), - [anon_sym_EQ_GT] = ACTIONS(2182), - [anon_sym_QMARK_QMARK] = ACTIONS(2182), - [anon_sym_EQ] = ACTIONS(2180), - [sym__rangeOperator] = ACTIONS(2182), - [anon_sym_null] = ACTIONS(2180), - [anon_sym_macro] = ACTIONS(2180), - [anon_sym_abstract] = ACTIONS(2180), - [anon_sym_static] = ACTIONS(2180), - [anon_sym_public] = ACTIONS(2180), - [anon_sym_private] = ACTIONS(2180), - [anon_sym_extern] = ACTIONS(2180), - [anon_sym_inline] = ACTIONS(2180), - [anon_sym_overload] = ACTIONS(2180), - [anon_sym_override] = ACTIONS(2180), - [anon_sym_final] = ACTIONS(2180), - [anon_sym_class] = ACTIONS(2180), - [anon_sym_interface] = ACTIONS(2180), - [anon_sym_typedef] = ACTIONS(2180), - [anon_sym_function] = ACTIONS(2180), - [anon_sym_var] = ACTIONS(2180), - [aux_sym_integer_token1] = ACTIONS(2180), - [aux_sym_integer_token2] = ACTIONS(2182), - [aux_sym_float_token1] = ACTIONS(2180), - [aux_sym_float_token2] = ACTIONS(2182), - [anon_sym_true] = ACTIONS(2180), - [anon_sym_false] = ACTIONS(2180), - [aux_sym_string_token1] = ACTIONS(2182), - [aux_sym_string_token3] = ACTIONS(2182), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3327), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_package] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_cast] = ACTIONS(3327), + [anon_sym_DOLLARtype] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_untyped] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_this] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_AT_COLON] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_catch] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_LT_LT] = ACTIONS(3329), + [anon_sym_GT_GT] = ACTIONS(3327), + [anon_sym_GT_GT_GT] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3327), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_EQ_GT] = ACTIONS(3329), + [anon_sym_QMARK_QMARK] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), + [anon_sym_null] = ACTIONS(3327), + [anon_sym_macro] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_overload] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_final] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_typedef] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [aux_sym_integer_token1] = ACTIONS(3327), + [aux_sym_integer_token2] = ACTIONS(3329), + [aux_sym_float_token1] = ACTIONS(3327), + [aux_sym_float_token2] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [aux_sym_string_token1] = ACTIONS(3329), + [aux_sym_string_token3] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3329), [sym__closing_brace_unmarker] = ACTIONS(3), }, [587] = { - [ts_builtin_sym_end] = ACTIONS(1746), - [sym_identifier] = ACTIONS(1744), - [anon_sym_POUND] = ACTIONS(1746), - [anon_sym_package] = ACTIONS(1744), - [anon_sym_import] = ACTIONS(1744), - [anon_sym_using] = ACTIONS(1744), - [anon_sym_throw] = ACTIONS(1744), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_switch] = ACTIONS(1744), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_cast] = ACTIONS(1744), - [anon_sym_DOLLARtype] = ACTIONS(1746), - [anon_sym_return] = ACTIONS(1744), - [anon_sym_untyped] = ACTIONS(1744), - [anon_sym_break] = ACTIONS(1744), - [anon_sym_continue] = ACTIONS(1744), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_this] = ACTIONS(1744), - [anon_sym_AT] = ACTIONS(1744), - [anon_sym_AT_COLON] = ACTIONS(1746), - [anon_sym_if] = ACTIONS(1744), - [anon_sym_new] = ACTIONS(1744), - [anon_sym_TILDE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1744), - [anon_sym_DASH] = ACTIONS(1744), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_PERCENT] = ACTIONS(1746), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_SLASH] = ACTIONS(1744), - [anon_sym_PLUS] = ACTIONS(1744), - [anon_sym_LT_LT] = ACTIONS(1746), - [anon_sym_GT_GT] = ACTIONS(1744), - [anon_sym_GT_GT_GT] = ACTIONS(1746), - [anon_sym_AMP] = ACTIONS(1744), - [anon_sym_PIPE] = ACTIONS(1744), - [anon_sym_CARET] = ACTIONS(1746), - [anon_sym_AMP_AMP] = ACTIONS(1746), - [anon_sym_PIPE_PIPE] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1744), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_GT] = ACTIONS(1744), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1746), - [anon_sym_EQ] = ACTIONS(1744), - [sym__rangeOperator] = ACTIONS(1746), - [anon_sym_null] = ACTIONS(1744), - [anon_sym_macro] = ACTIONS(1744), - [anon_sym_abstract] = ACTIONS(1744), - [anon_sym_static] = ACTIONS(1744), - [anon_sym_public] = ACTIONS(1744), - [anon_sym_private] = ACTIONS(1744), - [anon_sym_extern] = ACTIONS(1744), - [anon_sym_inline] = ACTIONS(1744), - [anon_sym_overload] = ACTIONS(1744), - [anon_sym_override] = ACTIONS(1744), - [anon_sym_final] = ACTIONS(1744), - [anon_sym_class] = ACTIONS(1744), - [anon_sym_interface] = ACTIONS(1744), - [anon_sym_typedef] = ACTIONS(1744), - [anon_sym_function] = ACTIONS(1744), - [anon_sym_var] = ACTIONS(1744), - [aux_sym_integer_token1] = ACTIONS(1744), - [aux_sym_integer_token2] = ACTIONS(1746), - [aux_sym_float_token1] = ACTIONS(1744), - [aux_sym_float_token2] = ACTIONS(1746), - [anon_sym_true] = ACTIONS(1744), - [anon_sym_false] = ACTIONS(1744), - [aux_sym_string_token1] = ACTIONS(1746), - [aux_sym_string_token3] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3331), + [anon_sym_POUND] = ACTIONS(3333), + [anon_sym_package] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_cast] = ACTIONS(3331), + [anon_sym_DOLLARtype] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_untyped] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_this] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_AT_COLON] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_catch] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_LT_LT] = ACTIONS(3333), + [anon_sym_GT_GT] = ACTIONS(3331), + [anon_sym_GT_GT_GT] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_EQ_GT] = ACTIONS(3333), + [anon_sym_QMARK_QMARK] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(3331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_macro] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_overload] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_final] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_typedef] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [aux_sym_integer_token1] = ACTIONS(3331), + [aux_sym_integer_token2] = ACTIONS(3333), + [aux_sym_float_token1] = ACTIONS(3331), + [aux_sym_float_token2] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [aux_sym_string_token1] = ACTIONS(3333), + [aux_sym_string_token3] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3333), [sym__closing_brace_unmarker] = ACTIONS(3), }, [588] = { - [ts_builtin_sym_end] = ACTIONS(1854), - [sym_identifier] = ACTIONS(1852), - [anon_sym_POUND] = ACTIONS(1854), - [anon_sym_package] = ACTIONS(1852), - [anon_sym_import] = ACTIONS(1852), - [anon_sym_using] = ACTIONS(1852), - [anon_sym_throw] = ACTIONS(1852), - [anon_sym_LPAREN] = ACTIONS(1854), - [anon_sym_switch] = ACTIONS(1852), - [anon_sym_LBRACE] = ACTIONS(1854), - [anon_sym_cast] = ACTIONS(1852), - [anon_sym_DOLLARtype] = ACTIONS(1854), - [anon_sym_return] = ACTIONS(1852), - [anon_sym_untyped] = ACTIONS(1852), - [anon_sym_break] = ACTIONS(1852), - [anon_sym_continue] = ACTIONS(1852), - [anon_sym_LBRACK] = ACTIONS(1854), - [anon_sym_this] = ACTIONS(1852), - [anon_sym_AT] = ACTIONS(1852), - [anon_sym_AT_COLON] = ACTIONS(1854), - [anon_sym_if] = ACTIONS(1852), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_TILDE] = ACTIONS(1854), - [anon_sym_BANG] = ACTIONS(1852), - [anon_sym_DASH] = ACTIONS(1852), - [anon_sym_PLUS_PLUS] = ACTIONS(1854), - [anon_sym_DASH_DASH] = ACTIONS(1854), - [anon_sym_PERCENT] = ACTIONS(1854), - [anon_sym_STAR] = ACTIONS(1854), - [anon_sym_SLASH] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1852), - [anon_sym_LT_LT] = ACTIONS(1854), - [anon_sym_GT_GT] = ACTIONS(1852), - [anon_sym_GT_GT_GT] = ACTIONS(1854), - [anon_sym_AMP] = ACTIONS(1852), - [anon_sym_PIPE] = ACTIONS(1852), - [anon_sym_CARET] = ACTIONS(1854), - [anon_sym_AMP_AMP] = ACTIONS(1854), - [anon_sym_PIPE_PIPE] = ACTIONS(1854), - [anon_sym_EQ_EQ] = ACTIONS(1854), - [anon_sym_BANG_EQ] = ACTIONS(1854), - [anon_sym_LT] = ACTIONS(1852), - [anon_sym_LT_EQ] = ACTIONS(1854), - [anon_sym_GT] = ACTIONS(1852), - [anon_sym_GT_EQ] = ACTIONS(1854), - [anon_sym_EQ_GT] = ACTIONS(1854), - [anon_sym_QMARK_QMARK] = ACTIONS(1854), - [anon_sym_EQ] = ACTIONS(1852), - [sym__rangeOperator] = ACTIONS(1854), - [anon_sym_null] = ACTIONS(1852), - [anon_sym_macro] = ACTIONS(1852), - [anon_sym_abstract] = ACTIONS(1852), - [anon_sym_static] = ACTIONS(1852), - [anon_sym_public] = ACTIONS(1852), - [anon_sym_private] = ACTIONS(1852), - [anon_sym_extern] = ACTIONS(1852), - [anon_sym_inline] = ACTIONS(1852), - [anon_sym_overload] = ACTIONS(1852), - [anon_sym_override] = ACTIONS(1852), - [anon_sym_final] = ACTIONS(1852), - [anon_sym_class] = ACTIONS(1852), - [anon_sym_interface] = ACTIONS(1852), - [anon_sym_typedef] = ACTIONS(1852), - [anon_sym_function] = ACTIONS(1852), - [anon_sym_var] = ACTIONS(1852), - [aux_sym_integer_token1] = ACTIONS(1852), - [aux_sym_integer_token2] = ACTIONS(1854), - [aux_sym_float_token1] = ACTIONS(1852), - [aux_sym_float_token2] = ACTIONS(1854), - [anon_sym_true] = ACTIONS(1852), - [anon_sym_false] = ACTIONS(1852), - [aux_sym_string_token1] = ACTIONS(1854), - [aux_sym_string_token3] = ACTIONS(1854), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_package] = ACTIONS(2671), + [anon_sym_import] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_case] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_cast] = ACTIONS(2671), + [anon_sym_DOLLARtype] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_untyped] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_this] = ACTIONS(2671), + [anon_sym_AT] = ACTIONS(2671), + [anon_sym_AT_COLON] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_catch] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PERCENT] = ACTIONS(2673), + [anon_sym_SLASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_LT_LT] = ACTIONS(2673), + [anon_sym_GT_GT] = ACTIONS(2671), + [anon_sym_GT_GT_GT] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_PIPE_PIPE] = ACTIONS(2673), + [anon_sym_EQ_EQ] = ACTIONS(2673), + [anon_sym_BANG_EQ] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_LT_EQ] = ACTIONS(2673), + [anon_sym_GT] = ACTIONS(2671), + [anon_sym_GT_EQ] = ACTIONS(2673), + [anon_sym_EQ_GT] = ACTIONS(2673), + [anon_sym_QMARK_QMARK] = ACTIONS(2673), + [anon_sym_EQ] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2673), + [anon_sym_null] = ACTIONS(2671), + [anon_sym_macro] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym_overload] = ACTIONS(2671), + [anon_sym_override] = ACTIONS(2671), + [anon_sym_final] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_interface] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_function] = ACTIONS(2671), + [anon_sym_var] = ACTIONS(2671), + [aux_sym_integer_token1] = ACTIONS(2671), + [aux_sym_integer_token2] = ACTIONS(2673), + [aux_sym_float_token1] = ACTIONS(2671), + [aux_sym_float_token2] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [aux_sym_string_token1] = ACTIONS(2673), + [aux_sym_string_token3] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2673), [sym__closing_brace_unmarker] = ACTIONS(3), }, [589] = { - [ts_builtin_sym_end] = ACTIONS(1706), - [sym_identifier] = ACTIONS(1704), - [anon_sym_POUND] = ACTIONS(1706), - [anon_sym_package] = ACTIONS(1704), - [anon_sym_import] = ACTIONS(1704), - [anon_sym_using] = ACTIONS(1704), - [anon_sym_throw] = ACTIONS(1704), - [anon_sym_LPAREN] = ACTIONS(1706), - [anon_sym_switch] = ACTIONS(1704), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_cast] = ACTIONS(1704), - [anon_sym_DOLLARtype] = ACTIONS(1706), - [anon_sym_return] = ACTIONS(1704), - [anon_sym_untyped] = ACTIONS(1704), - [anon_sym_break] = ACTIONS(1704), - [anon_sym_continue] = ACTIONS(1704), - [anon_sym_LBRACK] = ACTIONS(1706), - [anon_sym_this] = ACTIONS(1704), - [anon_sym_AT] = ACTIONS(1704), - [anon_sym_AT_COLON] = ACTIONS(1706), - [anon_sym_if] = ACTIONS(1704), - [anon_sym_new] = ACTIONS(1704), - [anon_sym_TILDE] = ACTIONS(1706), - [anon_sym_BANG] = ACTIONS(1704), - [anon_sym_DASH] = ACTIONS(1704), - [anon_sym_PLUS_PLUS] = ACTIONS(1706), - [anon_sym_DASH_DASH] = ACTIONS(1706), - [anon_sym_PERCENT] = ACTIONS(1706), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_SLASH] = ACTIONS(1704), - [anon_sym_PLUS] = ACTIONS(1704), - [anon_sym_LT_LT] = ACTIONS(1706), - [anon_sym_GT_GT] = ACTIONS(1704), - [anon_sym_GT_GT_GT] = ACTIONS(1706), - [anon_sym_AMP] = ACTIONS(1704), - [anon_sym_PIPE] = ACTIONS(1704), - [anon_sym_CARET] = ACTIONS(1706), - [anon_sym_AMP_AMP] = ACTIONS(1706), - [anon_sym_PIPE_PIPE] = ACTIONS(1706), - [anon_sym_EQ_EQ] = ACTIONS(1706), - [anon_sym_BANG_EQ] = ACTIONS(1706), - [anon_sym_LT] = ACTIONS(1704), - [anon_sym_LT_EQ] = ACTIONS(1706), - [anon_sym_GT] = ACTIONS(1704), - [anon_sym_GT_EQ] = ACTIONS(1706), - [anon_sym_EQ_GT] = ACTIONS(1706), - [anon_sym_QMARK_QMARK] = ACTIONS(1706), - [anon_sym_EQ] = ACTIONS(1704), - [sym__rangeOperator] = ACTIONS(1706), - [anon_sym_null] = ACTIONS(1704), - [anon_sym_macro] = ACTIONS(1704), - [anon_sym_abstract] = ACTIONS(1704), - [anon_sym_static] = ACTIONS(1704), - [anon_sym_public] = ACTIONS(1704), - [anon_sym_private] = ACTIONS(1704), - [anon_sym_extern] = ACTIONS(1704), - [anon_sym_inline] = ACTIONS(1704), - [anon_sym_overload] = ACTIONS(1704), - [anon_sym_override] = ACTIONS(1704), - [anon_sym_final] = ACTIONS(1704), - [anon_sym_class] = ACTIONS(1704), - [anon_sym_interface] = ACTIONS(1704), - [anon_sym_typedef] = ACTIONS(1704), - [anon_sym_function] = ACTIONS(1704), - [anon_sym_var] = ACTIONS(1704), - [aux_sym_integer_token1] = ACTIONS(1704), - [aux_sym_integer_token2] = ACTIONS(1706), - [aux_sym_float_token1] = ACTIONS(1704), - [aux_sym_float_token2] = ACTIONS(1706), - [anon_sym_true] = ACTIONS(1704), - [anon_sym_false] = ACTIONS(1704), - [aux_sym_string_token1] = ACTIONS(1706), - [aux_sym_string_token3] = ACTIONS(1706), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3335), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_package] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_case] = ACTIONS(3335), + [anon_sym_default] = ACTIONS(3335), + [anon_sym_cast] = ACTIONS(3335), + [anon_sym_DOLLARtype] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_untyped] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_this] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_AT_COLON] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_catch] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_LT_LT] = ACTIONS(3337), + [anon_sym_GT_GT] = ACTIONS(3335), + [anon_sym_GT_GT_GT] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_EQ_GT] = ACTIONS(3337), + [anon_sym_QMARK_QMARK] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), + [anon_sym_null] = ACTIONS(3335), + [anon_sym_macro] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_inline] = ACTIONS(3335), + [anon_sym_overload] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_final] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [anon_sym_typedef] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [aux_sym_integer_token1] = ACTIONS(3335), + [aux_sym_integer_token2] = ACTIONS(3337), + [aux_sym_float_token1] = ACTIONS(3335), + [aux_sym_float_token2] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [aux_sym_string_token1] = ACTIONS(3337), + [aux_sym_string_token3] = ACTIONS(3337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3337), [sym__closing_brace_unmarker] = ACTIONS(3), }, [590] = { - [ts_builtin_sym_end] = ACTIONS(2130), - [sym_identifier] = ACTIONS(2128), - [anon_sym_POUND] = ACTIONS(2130), - [anon_sym_package] = ACTIONS(2128), - [anon_sym_import] = ACTIONS(2128), - [anon_sym_using] = ACTIONS(2128), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_switch] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2130), - [anon_sym_cast] = ACTIONS(2128), - [anon_sym_DOLLARtype] = ACTIONS(2130), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_untyped] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2130), - [anon_sym_this] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2128), - [anon_sym_AT_COLON] = ACTIONS(2130), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2130), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2130), - [anon_sym_DASH_DASH] = ACTIONS(2130), - [anon_sym_PERCENT] = ACTIONS(2130), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_SLASH] = ACTIONS(2128), - [anon_sym_PLUS] = ACTIONS(2128), - [anon_sym_LT_LT] = ACTIONS(2130), - [anon_sym_GT_GT] = ACTIONS(2128), - [anon_sym_GT_GT_GT] = ACTIONS(2130), - [anon_sym_AMP] = ACTIONS(2128), - [anon_sym_PIPE] = ACTIONS(2128), - [anon_sym_CARET] = ACTIONS(2130), - [anon_sym_AMP_AMP] = ACTIONS(2130), - [anon_sym_PIPE_PIPE] = ACTIONS(2130), - [anon_sym_EQ_EQ] = ACTIONS(2130), - [anon_sym_BANG_EQ] = ACTIONS(2130), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_LT_EQ] = ACTIONS(2130), - [anon_sym_GT] = ACTIONS(2128), - [anon_sym_GT_EQ] = ACTIONS(2130), - [anon_sym_EQ_GT] = ACTIONS(2130), - [anon_sym_QMARK_QMARK] = ACTIONS(2130), - [anon_sym_EQ] = ACTIONS(2128), - [sym__rangeOperator] = ACTIONS(2130), - [anon_sym_null] = ACTIONS(2128), - [anon_sym_macro] = ACTIONS(2128), - [anon_sym_abstract] = ACTIONS(2128), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_extern] = ACTIONS(2128), - [anon_sym_inline] = ACTIONS(2128), - [anon_sym_overload] = ACTIONS(2128), - [anon_sym_override] = ACTIONS(2128), - [anon_sym_final] = ACTIONS(2128), - [anon_sym_class] = ACTIONS(2128), - [anon_sym_interface] = ACTIONS(2128), - [anon_sym_typedef] = ACTIONS(2128), - [anon_sym_function] = ACTIONS(2128), - [anon_sym_var] = ACTIONS(2128), - [aux_sym_integer_token1] = ACTIONS(2128), - [aux_sym_integer_token2] = ACTIONS(2130), - [aux_sym_float_token1] = ACTIONS(2128), - [aux_sym_float_token2] = ACTIONS(2130), - [anon_sym_true] = ACTIONS(2128), - [anon_sym_false] = ACTIONS(2128), - [aux_sym_string_token1] = ACTIONS(2130), - [aux_sym_string_token3] = ACTIONS(2130), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3339), + [anon_sym_POUND] = ACTIONS(3341), + [anon_sym_package] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_case] = ACTIONS(3339), + [anon_sym_default] = ACTIONS(3339), + [anon_sym_cast] = ACTIONS(3339), + [anon_sym_DOLLARtype] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_untyped] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_this] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_AT_COLON] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_catch] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_LT_LT] = ACTIONS(3341), + [anon_sym_GT_GT] = ACTIONS(3339), + [anon_sym_GT_GT_GT] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_EQ_GT] = ACTIONS(3341), + [anon_sym_QMARK_QMARK] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3339), + [anon_sym_macro] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_extern] = ACTIONS(3339), + [anon_sym_inline] = ACTIONS(3339), + [anon_sym_overload] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_final] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), + [anon_sym_typedef] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [aux_sym_integer_token1] = ACTIONS(3339), + [aux_sym_integer_token2] = ACTIONS(3341), + [aux_sym_float_token1] = ACTIONS(3339), + [aux_sym_float_token2] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [aux_sym_string_token1] = ACTIONS(3341), + [aux_sym_string_token3] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3341), [sym__closing_brace_unmarker] = ACTIONS(3), }, [591] = { - [ts_builtin_sym_end] = ACTIONS(2118), - [sym_identifier] = ACTIONS(2116), - [anon_sym_POUND] = ACTIONS(2118), - [anon_sym_package] = ACTIONS(2116), - [anon_sym_import] = ACTIONS(2116), - [anon_sym_using] = ACTIONS(2116), - [anon_sym_throw] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_switch] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_cast] = ACTIONS(2116), - [anon_sym_DOLLARtype] = ACTIONS(2118), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_untyped] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2118), - [anon_sym_this] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2116), - [anon_sym_AT_COLON] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_new] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2118), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2118), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_PERCENT] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_LT_LT] = ACTIONS(2118), - [anon_sym_GT_GT] = ACTIONS(2116), - [anon_sym_GT_GT_GT] = ACTIONS(2118), - [anon_sym_AMP] = ACTIONS(2116), - [anon_sym_PIPE] = ACTIONS(2116), - [anon_sym_CARET] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2118), - [anon_sym_PIPE_PIPE] = ACTIONS(2118), - [anon_sym_EQ_EQ] = ACTIONS(2118), - [anon_sym_BANG_EQ] = ACTIONS(2118), - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_LT_EQ] = ACTIONS(2118), - [anon_sym_GT] = ACTIONS(2116), - [anon_sym_GT_EQ] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2118), - [anon_sym_QMARK_QMARK] = ACTIONS(2118), - [anon_sym_EQ] = ACTIONS(2116), - [sym__rangeOperator] = ACTIONS(2118), - [anon_sym_null] = ACTIONS(2116), - [anon_sym_macro] = ACTIONS(2116), - [anon_sym_abstract] = ACTIONS(2116), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_public] = ACTIONS(2116), - [anon_sym_private] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_inline] = ACTIONS(2116), - [anon_sym_overload] = ACTIONS(2116), - [anon_sym_override] = ACTIONS(2116), - [anon_sym_final] = ACTIONS(2116), - [anon_sym_class] = ACTIONS(2116), - [anon_sym_interface] = ACTIONS(2116), - [anon_sym_typedef] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(2116), - [anon_sym_var] = ACTIONS(2116), - [aux_sym_integer_token1] = ACTIONS(2116), - [aux_sym_integer_token2] = ACTIONS(2118), - [aux_sym_float_token1] = ACTIONS(2116), - [aux_sym_float_token2] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2116), - [anon_sym_false] = ACTIONS(2116), - [aux_sym_string_token1] = ACTIONS(2118), - [aux_sym_string_token3] = ACTIONS(2118), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(572), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3345), + [sym__closing_brace_marker] = ACTIONS(2629), [sym__closing_brace_unmarker] = ACTIONS(3), }, [592] = { - [sym_identifier] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(271), - [anon_sym_package] = ACTIONS(2368), - [anon_sym_import] = ACTIONS(2368), - [anon_sym_using] = ACTIONS(2368), - [anon_sym_throw] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(271), - [anon_sym_switch] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(271), - [anon_sym_cast] = ACTIONS(2368), - [anon_sym_DOLLARtype] = ACTIONS(271), - [anon_sym_return] = ACTIONS(2368), - [anon_sym_untyped] = ACTIONS(2368), - [anon_sym_break] = ACTIONS(2368), - [anon_sym_continue] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(271), - [anon_sym_this] = ACTIONS(2368), - [anon_sym_AT] = ACTIONS(2368), - [anon_sym_AT_COLON] = ACTIONS(271), - [anon_sym_if] = ACTIONS(2368), - [anon_sym_new] = ACTIONS(2368), - [anon_sym_TILDE] = ACTIONS(271), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_PLUS_PLUS] = ACTIONS(271), - [anon_sym_DASH_DASH] = ACTIONS(271), - [anon_sym_PERCENT] = ACTIONS(271), - [anon_sym_STAR] = ACTIONS(271), - [anon_sym_SLASH] = ACTIONS(2368), - [anon_sym_PLUS] = ACTIONS(2368), - [anon_sym_LT_LT] = ACTIONS(271), - [anon_sym_GT_GT] = ACTIONS(2368), - [anon_sym_GT_GT_GT] = ACTIONS(271), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_CARET] = ACTIONS(271), - [anon_sym_AMP_AMP] = ACTIONS(271), - [anon_sym_PIPE_PIPE] = ACTIONS(271), - [anon_sym_EQ_EQ] = ACTIONS(271), - [anon_sym_BANG_EQ] = ACTIONS(271), - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_LT_EQ] = ACTIONS(271), - [anon_sym_GT] = ACTIONS(2368), - [anon_sym_GT_EQ] = ACTIONS(271), - [anon_sym_EQ_GT] = ACTIONS(271), - [anon_sym_QMARK_QMARK] = ACTIONS(271), - [anon_sym_EQ] = ACTIONS(2368), - [sym__rangeOperator] = ACTIONS(271), - [anon_sym_null] = ACTIONS(2368), - [anon_sym_macro] = ACTIONS(2368), - [anon_sym_abstract] = ACTIONS(2368), - [anon_sym_static] = ACTIONS(2368), - [anon_sym_public] = ACTIONS(2368), - [anon_sym_private] = ACTIONS(2368), - [anon_sym_extern] = ACTIONS(2368), - [anon_sym_inline] = ACTIONS(2368), - [anon_sym_overload] = ACTIONS(2368), - [anon_sym_override] = ACTIONS(2368), - [anon_sym_final] = ACTIONS(2368), - [anon_sym_class] = ACTIONS(2368), - [anon_sym_interface] = ACTIONS(2368), - [anon_sym_typedef] = ACTIONS(2368), - [anon_sym_function] = ACTIONS(2368), - [anon_sym_var] = ACTIONS(2368), - [aux_sym_integer_token1] = ACTIONS(2368), - [aux_sym_integer_token2] = ACTIONS(271), - [aux_sym_float_token1] = ACTIONS(2368), - [aux_sym_float_token2] = ACTIONS(271), - [anon_sym_true] = ACTIONS(2368), - [anon_sym_false] = ACTIONS(2368), - [aux_sym_string_token1] = ACTIONS(271), - [aux_sym_string_token3] = ACTIONS(271), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(271), + [sym_identifier] = ACTIONS(3347), + [anon_sym_POUND] = ACTIONS(3349), + [anon_sym_package] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_cast] = ACTIONS(3347), + [anon_sym_DOLLARtype] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_untyped] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_this] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_AT_COLON] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_catch] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_GT_GT_GT] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3347), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_BANG_EQ] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_LT_EQ] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3347), + [anon_sym_GT_EQ] = ACTIONS(3349), + [anon_sym_EQ_GT] = ACTIONS(3349), + [anon_sym_QMARK_QMARK] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3347), + [anon_sym_macro] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_inline] = ACTIONS(3347), + [anon_sym_overload] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_final] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_typedef] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [aux_sym_integer_token1] = ACTIONS(3347), + [aux_sym_integer_token2] = ACTIONS(3349), + [aux_sym_float_token1] = ACTIONS(3347), + [aux_sym_float_token2] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [aux_sym_string_token1] = ACTIONS(3349), + [aux_sym_string_token3] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3349), [sym__closing_brace_unmarker] = ACTIONS(3), }, [593] = { - [ts_builtin_sym_end] = ACTIONS(2082), - [sym_identifier] = ACTIONS(2080), - [anon_sym_POUND] = ACTIONS(2082), - [anon_sym_package] = ACTIONS(2080), - [anon_sym_import] = ACTIONS(2080), - [anon_sym_using] = ACTIONS(2080), - [anon_sym_throw] = ACTIONS(2080), - [anon_sym_LPAREN] = ACTIONS(2082), - [anon_sym_switch] = ACTIONS(2080), - [anon_sym_LBRACE] = ACTIONS(2082), - [anon_sym_cast] = ACTIONS(2080), - [anon_sym_DOLLARtype] = ACTIONS(2082), - [anon_sym_return] = ACTIONS(2080), - [anon_sym_untyped] = ACTIONS(2080), - [anon_sym_break] = ACTIONS(2080), - [anon_sym_continue] = ACTIONS(2080), - [anon_sym_LBRACK] = ACTIONS(2082), - [anon_sym_this] = ACTIONS(2080), - [anon_sym_AT] = ACTIONS(2080), - [anon_sym_AT_COLON] = ACTIONS(2082), - [anon_sym_if] = ACTIONS(2080), - [anon_sym_new] = ACTIONS(2080), - [anon_sym_TILDE] = ACTIONS(2082), - [anon_sym_BANG] = ACTIONS(2080), - [anon_sym_DASH] = ACTIONS(2080), - [anon_sym_PLUS_PLUS] = ACTIONS(2082), - [anon_sym_DASH_DASH] = ACTIONS(2082), - [anon_sym_PERCENT] = ACTIONS(2082), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_SLASH] = ACTIONS(2080), - [anon_sym_PLUS] = ACTIONS(2080), - [anon_sym_LT_LT] = ACTIONS(2082), - [anon_sym_GT_GT] = ACTIONS(2080), - [anon_sym_GT_GT_GT] = ACTIONS(2082), - [anon_sym_AMP] = ACTIONS(2080), - [anon_sym_PIPE] = ACTIONS(2080), - [anon_sym_CARET] = ACTIONS(2082), - [anon_sym_AMP_AMP] = ACTIONS(2082), - [anon_sym_PIPE_PIPE] = ACTIONS(2082), - [anon_sym_EQ_EQ] = ACTIONS(2082), - [anon_sym_BANG_EQ] = ACTIONS(2082), - [anon_sym_LT] = ACTIONS(2080), - [anon_sym_LT_EQ] = ACTIONS(2082), - [anon_sym_GT] = ACTIONS(2080), - [anon_sym_GT_EQ] = ACTIONS(2082), - [anon_sym_EQ_GT] = ACTIONS(2082), - [anon_sym_QMARK_QMARK] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(2080), - [sym__rangeOperator] = ACTIONS(2082), - [anon_sym_null] = ACTIONS(2080), - [anon_sym_macro] = ACTIONS(2080), - [anon_sym_abstract] = ACTIONS(2080), - [anon_sym_static] = ACTIONS(2080), - [anon_sym_public] = ACTIONS(2080), - [anon_sym_private] = ACTIONS(2080), - [anon_sym_extern] = ACTIONS(2080), - [anon_sym_inline] = ACTIONS(2080), - [anon_sym_overload] = ACTIONS(2080), - [anon_sym_override] = ACTIONS(2080), - [anon_sym_final] = ACTIONS(2080), - [anon_sym_class] = ACTIONS(2080), - [anon_sym_interface] = ACTIONS(2080), - [anon_sym_typedef] = ACTIONS(2080), - [anon_sym_function] = ACTIONS(2080), - [anon_sym_var] = ACTIONS(2080), - [aux_sym_integer_token1] = ACTIONS(2080), - [aux_sym_integer_token2] = ACTIONS(2082), - [aux_sym_float_token1] = ACTIONS(2080), - [aux_sym_float_token2] = ACTIONS(2082), - [anon_sym_true] = ACTIONS(2080), - [anon_sym_false] = ACTIONS(2080), - [aux_sym_string_token1] = ACTIONS(2082), - [aux_sym_string_token3] = ACTIONS(2082), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3351), + [anon_sym_POUND] = ACTIONS(3353), + [anon_sym_package] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_case] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_cast] = ACTIONS(3351), + [anon_sym_DOLLARtype] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_untyped] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_this] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_AT_COLON] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_catch] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_LT_LT] = ACTIONS(3353), + [anon_sym_GT_GT] = ACTIONS(3351), + [anon_sym_GT_GT_GT] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_PIPE] = ACTIONS(3351), + [anon_sym_CARET] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_EQ_EQ] = ACTIONS(3353), + [anon_sym_BANG_EQ] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3353), + [anon_sym_GT] = ACTIONS(3351), + [anon_sym_GT_EQ] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3353), + [anon_sym_QMARK_QMARK] = ACTIONS(3353), + [anon_sym_EQ] = ACTIONS(3351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_macro] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_extern] = ACTIONS(3351), + [anon_sym_inline] = ACTIONS(3351), + [anon_sym_overload] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_final] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_typedef] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [aux_sym_integer_token1] = ACTIONS(3351), + [aux_sym_integer_token2] = ACTIONS(3353), + [aux_sym_float_token1] = ACTIONS(3351), + [aux_sym_float_token2] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(3351), + [anon_sym_false] = ACTIONS(3351), + [aux_sym_string_token1] = ACTIONS(3353), + [aux_sym_string_token3] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3353), [sym__closing_brace_unmarker] = ACTIONS(3), }, [594] = { - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2112), - [anon_sym_POUND] = ACTIONS(2114), - [anon_sym_package] = ACTIONS(2112), - [anon_sym_import] = ACTIONS(2112), - [anon_sym_using] = ACTIONS(2112), - [anon_sym_throw] = ACTIONS(2112), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_switch] = ACTIONS(2112), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_cast] = ACTIONS(2112), - [anon_sym_DOLLARtype] = ACTIONS(2114), - [anon_sym_return] = ACTIONS(2112), - [anon_sym_untyped] = ACTIONS(2112), - [anon_sym_break] = ACTIONS(2112), - [anon_sym_continue] = ACTIONS(2112), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_this] = ACTIONS(2112), - [anon_sym_AT] = ACTIONS(2112), - [anon_sym_AT_COLON] = ACTIONS(2114), - [anon_sym_if] = ACTIONS(2112), - [anon_sym_new] = ACTIONS(2112), - [anon_sym_TILDE] = ACTIONS(2114), - [anon_sym_BANG] = ACTIONS(2112), - [anon_sym_DASH] = ACTIONS(2112), - [anon_sym_PLUS_PLUS] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2114), - [anon_sym_PERCENT] = ACTIONS(2114), - [anon_sym_STAR] = ACTIONS(2114), - [anon_sym_SLASH] = ACTIONS(2112), - [anon_sym_PLUS] = ACTIONS(2112), - [anon_sym_LT_LT] = ACTIONS(2114), - [anon_sym_GT_GT] = ACTIONS(2112), - [anon_sym_GT_GT_GT] = ACTIONS(2114), - [anon_sym_AMP] = ACTIONS(2112), - [anon_sym_PIPE] = ACTIONS(2112), - [anon_sym_CARET] = ACTIONS(2114), - [anon_sym_AMP_AMP] = ACTIONS(2114), - [anon_sym_PIPE_PIPE] = ACTIONS(2114), - [anon_sym_EQ_EQ] = ACTIONS(2114), - [anon_sym_BANG_EQ] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2112), - [anon_sym_LT_EQ] = ACTIONS(2114), - [anon_sym_GT] = ACTIONS(2112), - [anon_sym_GT_EQ] = ACTIONS(2114), - [anon_sym_EQ_GT] = ACTIONS(2114), - [anon_sym_QMARK_QMARK] = ACTIONS(2114), - [anon_sym_EQ] = ACTIONS(2112), - [sym__rangeOperator] = ACTIONS(2114), - [anon_sym_null] = ACTIONS(2112), - [anon_sym_macro] = ACTIONS(2112), - [anon_sym_abstract] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(2112), - [anon_sym_public] = ACTIONS(2112), - [anon_sym_private] = ACTIONS(2112), - [anon_sym_extern] = ACTIONS(2112), - [anon_sym_inline] = ACTIONS(2112), - [anon_sym_overload] = ACTIONS(2112), - [anon_sym_override] = ACTIONS(2112), - [anon_sym_final] = ACTIONS(2112), - [anon_sym_class] = ACTIONS(2112), - [anon_sym_interface] = ACTIONS(2112), - [anon_sym_typedef] = ACTIONS(2112), - [anon_sym_function] = ACTIONS(2112), - [anon_sym_var] = ACTIONS(2112), - [aux_sym_integer_token1] = ACTIONS(2112), - [aux_sym_integer_token2] = ACTIONS(2114), - [aux_sym_float_token1] = ACTIONS(2112), - [aux_sym_float_token2] = ACTIONS(2114), - [anon_sym_true] = ACTIONS(2112), - [anon_sym_false] = ACTIONS(2112), - [aux_sym_string_token1] = ACTIONS(2114), - [aux_sym_string_token3] = ACTIONS(2114), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [595] = { - [ts_builtin_sym_end] = ACTIONS(1926), - [sym_identifier] = ACTIONS(1924), - [anon_sym_POUND] = ACTIONS(1926), - [anon_sym_package] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(1924), - [anon_sym_using] = ACTIONS(1924), - [anon_sym_throw] = ACTIONS(1924), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_switch] = ACTIONS(1924), - [anon_sym_LBRACE] = ACTIONS(1926), - [anon_sym_cast] = ACTIONS(1924), - [anon_sym_DOLLARtype] = ACTIONS(1926), - [anon_sym_return] = ACTIONS(1924), - [anon_sym_untyped] = ACTIONS(1924), - [anon_sym_break] = ACTIONS(1924), - [anon_sym_continue] = ACTIONS(1924), - [anon_sym_LBRACK] = ACTIONS(1926), - [anon_sym_this] = ACTIONS(1924), - [anon_sym_AT] = ACTIONS(1924), - [anon_sym_AT_COLON] = ACTIONS(1926), - [anon_sym_if] = ACTIONS(1924), - [anon_sym_new] = ACTIONS(1924), - [anon_sym_TILDE] = ACTIONS(1926), - [anon_sym_BANG] = ACTIONS(1924), - [anon_sym_DASH] = ACTIONS(1924), - [anon_sym_PLUS_PLUS] = ACTIONS(1926), - [anon_sym_DASH_DASH] = ACTIONS(1926), - [anon_sym_PERCENT] = ACTIONS(1926), - [anon_sym_STAR] = ACTIONS(1926), - [anon_sym_SLASH] = ACTIONS(1924), - [anon_sym_PLUS] = ACTIONS(1924), - [anon_sym_LT_LT] = ACTIONS(1926), - [anon_sym_GT_GT] = ACTIONS(1924), - [anon_sym_GT_GT_GT] = ACTIONS(1926), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_CARET] = ACTIONS(1926), - [anon_sym_AMP_AMP] = ACTIONS(1926), - [anon_sym_PIPE_PIPE] = ACTIONS(1926), - [anon_sym_EQ_EQ] = ACTIONS(1926), - [anon_sym_BANG_EQ] = ACTIONS(1926), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_LT_EQ] = ACTIONS(1926), - [anon_sym_GT] = ACTIONS(1924), - [anon_sym_GT_EQ] = ACTIONS(1926), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_QMARK_QMARK] = ACTIONS(1926), - [anon_sym_EQ] = ACTIONS(1924), - [sym__rangeOperator] = ACTIONS(1926), - [anon_sym_null] = ACTIONS(1924), - [anon_sym_macro] = ACTIONS(1924), - [anon_sym_abstract] = ACTIONS(1924), - [anon_sym_static] = ACTIONS(1924), - [anon_sym_public] = ACTIONS(1924), - [anon_sym_private] = ACTIONS(1924), - [anon_sym_extern] = ACTIONS(1924), - [anon_sym_inline] = ACTIONS(1924), - [anon_sym_overload] = ACTIONS(1924), - [anon_sym_override] = ACTIONS(1924), - [anon_sym_final] = ACTIONS(1924), - [anon_sym_class] = ACTIONS(1924), - [anon_sym_interface] = ACTIONS(1924), - [anon_sym_typedef] = ACTIONS(1924), - [anon_sym_function] = ACTIONS(1924), - [anon_sym_var] = ACTIONS(1924), - [aux_sym_integer_token1] = ACTIONS(1924), - [aux_sym_integer_token2] = ACTIONS(1926), - [aux_sym_float_token1] = ACTIONS(1924), - [aux_sym_float_token2] = ACTIONS(1926), - [anon_sym_true] = ACTIONS(1924), - [anon_sym_false] = ACTIONS(1924), - [aux_sym_string_token1] = ACTIONS(1926), - [aux_sym_string_token3] = ACTIONS(1926), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [596] = { - [ts_builtin_sym_end] = ACTIONS(1910), - [sym_identifier] = ACTIONS(1908), - [anon_sym_POUND] = ACTIONS(1910), - [anon_sym_package] = ACTIONS(1908), - [anon_sym_import] = ACTIONS(1908), - [anon_sym_using] = ACTIONS(1908), - [anon_sym_throw] = ACTIONS(1908), - [anon_sym_LPAREN] = ACTIONS(1910), - [anon_sym_switch] = ACTIONS(1908), - [anon_sym_LBRACE] = ACTIONS(1910), - [anon_sym_cast] = ACTIONS(1908), - [anon_sym_DOLLARtype] = ACTIONS(1910), - [anon_sym_return] = ACTIONS(1908), - [anon_sym_untyped] = ACTIONS(1908), - [anon_sym_break] = ACTIONS(1908), - [anon_sym_continue] = ACTIONS(1908), - [anon_sym_LBRACK] = ACTIONS(1910), - [anon_sym_this] = ACTIONS(1908), - [anon_sym_AT] = ACTIONS(1908), - [anon_sym_AT_COLON] = ACTIONS(1910), - [anon_sym_if] = ACTIONS(1908), - [anon_sym_new] = ACTIONS(1908), - [anon_sym_TILDE] = ACTIONS(1910), - [anon_sym_BANG] = ACTIONS(1908), - [anon_sym_DASH] = ACTIONS(1908), - [anon_sym_PLUS_PLUS] = ACTIONS(1910), - [anon_sym_DASH_DASH] = ACTIONS(1910), - [anon_sym_PERCENT] = ACTIONS(1910), - [anon_sym_STAR] = ACTIONS(1910), - [anon_sym_SLASH] = ACTIONS(1908), - [anon_sym_PLUS] = ACTIONS(1908), - [anon_sym_LT_LT] = ACTIONS(1910), - [anon_sym_GT_GT] = ACTIONS(1908), - [anon_sym_GT_GT_GT] = ACTIONS(1910), - [anon_sym_AMP] = ACTIONS(1908), - [anon_sym_PIPE] = ACTIONS(1908), - [anon_sym_CARET] = ACTIONS(1910), - [anon_sym_AMP_AMP] = ACTIONS(1910), - [anon_sym_PIPE_PIPE] = ACTIONS(1910), - [anon_sym_EQ_EQ] = ACTIONS(1910), - [anon_sym_BANG_EQ] = ACTIONS(1910), - [anon_sym_LT] = ACTIONS(1908), - [anon_sym_LT_EQ] = ACTIONS(1910), - [anon_sym_GT] = ACTIONS(1908), - [anon_sym_GT_EQ] = ACTIONS(1910), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_QMARK] = ACTIONS(1910), - [anon_sym_EQ] = ACTIONS(1908), - [sym__rangeOperator] = ACTIONS(1910), - [anon_sym_null] = ACTIONS(1908), - [anon_sym_macro] = ACTIONS(1908), - [anon_sym_abstract] = ACTIONS(1908), - [anon_sym_static] = ACTIONS(1908), - [anon_sym_public] = ACTIONS(1908), - [anon_sym_private] = ACTIONS(1908), - [anon_sym_extern] = ACTIONS(1908), - [anon_sym_inline] = ACTIONS(1908), - [anon_sym_overload] = ACTIONS(1908), - [anon_sym_override] = ACTIONS(1908), - [anon_sym_final] = ACTIONS(1908), - [anon_sym_class] = ACTIONS(1908), - [anon_sym_interface] = ACTIONS(1908), - [anon_sym_typedef] = ACTIONS(1908), - [anon_sym_function] = ACTIONS(1908), - [anon_sym_var] = ACTIONS(1908), - [aux_sym_integer_token1] = ACTIONS(1908), - [aux_sym_integer_token2] = ACTIONS(1910), - [aux_sym_float_token1] = ACTIONS(1908), - [aux_sym_float_token2] = ACTIONS(1910), - [anon_sym_true] = ACTIONS(1908), - [anon_sym_false] = ACTIONS(1908), - [aux_sym_string_token1] = ACTIONS(1910), - [aux_sym_string_token3] = ACTIONS(1910), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(3361), + [anon_sym_package] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_cast] = ACTIONS(3363), + [anon_sym_DOLLARtype] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_untyped] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_AT_COLON] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_catch] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3363), + [anon_sym_GT_GT_GT] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(3363), + [anon_sym_CARET] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_EQ_EQ] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3363), + [anon_sym_GT_EQ] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3361), + [anon_sym_QMARK_QMARK] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3363), + [anon_sym_macro] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_inline] = ACTIONS(3363), + [anon_sym_overload] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_final] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_typedef] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [aux_sym_integer_token1] = ACTIONS(3363), + [aux_sym_integer_token2] = ACTIONS(3361), + [aux_sym_float_token1] = ACTIONS(3363), + [aux_sym_float_token2] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [aux_sym_string_token1] = ACTIONS(3361), + [aux_sym_string_token3] = ACTIONS(3361), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [597] = { - [ts_builtin_sym_end] = ACTIONS(2158), - [sym_identifier] = ACTIONS(2156), - [anon_sym_POUND] = ACTIONS(2158), - [anon_sym_package] = ACTIONS(2156), - [anon_sym_import] = ACTIONS(2156), - [anon_sym_using] = ACTIONS(2156), - [anon_sym_throw] = ACTIONS(2156), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2156), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_cast] = ACTIONS(2156), - [anon_sym_DOLLARtype] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2156), - [anon_sym_untyped] = ACTIONS(2156), - [anon_sym_break] = ACTIONS(2156), - [anon_sym_continue] = ACTIONS(2156), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_this] = ACTIONS(2156), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_AT_COLON] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2156), - [anon_sym_TILDE] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_DASH] = ACTIONS(2156), - [anon_sym_PLUS_PLUS] = ACTIONS(2158), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_SLASH] = ACTIONS(2156), - [anon_sym_PLUS] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(2158), - [anon_sym_GT_GT] = ACTIONS(2156), - [anon_sym_GT_GT_GT] = ACTIONS(2158), - [anon_sym_AMP] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2156), - [anon_sym_CARET] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2158), - [anon_sym_PIPE_PIPE] = ACTIONS(2158), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2158), - [anon_sym_EQ_GT] = ACTIONS(2158), - [anon_sym_QMARK_QMARK] = ACTIONS(2158), - [anon_sym_EQ] = ACTIONS(2156), - [sym__rangeOperator] = ACTIONS(2158), - [anon_sym_null] = ACTIONS(2156), - [anon_sym_macro] = ACTIONS(2156), - [anon_sym_abstract] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2156), - [anon_sym_public] = ACTIONS(2156), - [anon_sym_private] = ACTIONS(2156), - [anon_sym_extern] = ACTIONS(2156), - [anon_sym_inline] = ACTIONS(2156), - [anon_sym_overload] = ACTIONS(2156), - [anon_sym_override] = ACTIONS(2156), - [anon_sym_final] = ACTIONS(2156), - [anon_sym_class] = ACTIONS(2156), - [anon_sym_interface] = ACTIONS(2156), - [anon_sym_typedef] = ACTIONS(2156), - [anon_sym_function] = ACTIONS(2156), - [anon_sym_var] = ACTIONS(2156), - [aux_sym_integer_token1] = ACTIONS(2156), - [aux_sym_integer_token2] = ACTIONS(2158), - [aux_sym_float_token1] = ACTIONS(2156), - [aux_sym_float_token2] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2156), - [anon_sym_false] = ACTIONS(2156), - [aux_sym_string_token1] = ACTIONS(2158), - [aux_sym_string_token3] = ACTIONS(2158), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [598] = { - [ts_builtin_sym_end] = ACTIONS(1902), - [sym_identifier] = ACTIONS(1900), - [anon_sym_POUND] = ACTIONS(1902), - [anon_sym_package] = ACTIONS(1900), - [anon_sym_import] = ACTIONS(1900), - [anon_sym_using] = ACTIONS(1900), - [anon_sym_throw] = ACTIONS(1900), - [anon_sym_LPAREN] = ACTIONS(1902), - [anon_sym_switch] = ACTIONS(1900), - [anon_sym_LBRACE] = ACTIONS(1902), - [anon_sym_cast] = ACTIONS(1900), - [anon_sym_DOLLARtype] = ACTIONS(1902), - [anon_sym_return] = ACTIONS(1900), - [anon_sym_untyped] = ACTIONS(1900), - [anon_sym_break] = ACTIONS(1900), - [anon_sym_continue] = ACTIONS(1900), - [anon_sym_LBRACK] = ACTIONS(1902), - [anon_sym_this] = ACTIONS(1900), - [anon_sym_AT] = ACTIONS(1900), - [anon_sym_AT_COLON] = ACTIONS(1902), - [anon_sym_if] = ACTIONS(1900), - [anon_sym_new] = ACTIONS(1900), - [anon_sym_TILDE] = ACTIONS(1902), - [anon_sym_BANG] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_PLUS_PLUS] = ACTIONS(1902), - [anon_sym_DASH_DASH] = ACTIONS(1902), - [anon_sym_PERCENT] = ACTIONS(1902), - [anon_sym_STAR] = ACTIONS(1902), - [anon_sym_SLASH] = ACTIONS(1900), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_LT_LT] = ACTIONS(1902), - [anon_sym_GT_GT] = ACTIONS(1900), - [anon_sym_GT_GT_GT] = ACTIONS(1902), - [anon_sym_AMP] = ACTIONS(1900), - [anon_sym_PIPE] = ACTIONS(1900), - [anon_sym_CARET] = ACTIONS(1902), - [anon_sym_AMP_AMP] = ACTIONS(1902), - [anon_sym_PIPE_PIPE] = ACTIONS(1902), - [anon_sym_EQ_EQ] = ACTIONS(1902), - [anon_sym_BANG_EQ] = ACTIONS(1902), - [anon_sym_LT] = ACTIONS(1900), - [anon_sym_LT_EQ] = ACTIONS(1902), - [anon_sym_GT] = ACTIONS(1900), - [anon_sym_GT_EQ] = ACTIONS(1902), - [anon_sym_EQ_GT] = ACTIONS(1902), - [anon_sym_QMARK_QMARK] = ACTIONS(1902), - [anon_sym_EQ] = ACTIONS(1900), - [sym__rangeOperator] = ACTIONS(1902), - [anon_sym_null] = ACTIONS(1900), - [anon_sym_macro] = ACTIONS(1900), - [anon_sym_abstract] = ACTIONS(1900), - [anon_sym_static] = ACTIONS(1900), - [anon_sym_public] = ACTIONS(1900), - [anon_sym_private] = ACTIONS(1900), - [anon_sym_extern] = ACTIONS(1900), - [anon_sym_inline] = ACTIONS(1900), - [anon_sym_overload] = ACTIONS(1900), - [anon_sym_override] = ACTIONS(1900), - [anon_sym_final] = ACTIONS(1900), - [anon_sym_class] = ACTIONS(1900), - [anon_sym_interface] = ACTIONS(1900), - [anon_sym_typedef] = ACTIONS(1900), - [anon_sym_function] = ACTIONS(1900), - [anon_sym_var] = ACTIONS(1900), - [aux_sym_integer_token1] = ACTIONS(1900), - [aux_sym_integer_token2] = ACTIONS(1902), - [aux_sym_float_token1] = ACTIONS(1900), - [aux_sym_float_token2] = ACTIONS(1902), - [anon_sym_true] = ACTIONS(1900), - [anon_sym_false] = ACTIONS(1900), - [aux_sym_string_token1] = ACTIONS(1902), - [aux_sym_string_token3] = ACTIONS(1902), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(3372), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2681), [sym__closing_brace_unmarker] = ACTIONS(3), }, [599] = { - [ts_builtin_sym_end] = ACTIONS(1906), - [sym_identifier] = ACTIONS(1904), - [anon_sym_POUND] = ACTIONS(1906), - [anon_sym_package] = ACTIONS(1904), - [anon_sym_import] = ACTIONS(1904), - [anon_sym_using] = ACTIONS(1904), - [anon_sym_throw] = ACTIONS(1904), - [anon_sym_LPAREN] = ACTIONS(1906), - [anon_sym_switch] = ACTIONS(1904), - [anon_sym_LBRACE] = ACTIONS(1906), - [anon_sym_cast] = ACTIONS(1904), - [anon_sym_DOLLARtype] = ACTIONS(1906), - [anon_sym_return] = ACTIONS(1904), - [anon_sym_untyped] = ACTIONS(1904), - [anon_sym_break] = ACTIONS(1904), - [anon_sym_continue] = ACTIONS(1904), - [anon_sym_LBRACK] = ACTIONS(1906), - [anon_sym_this] = ACTIONS(1904), - [anon_sym_AT] = ACTIONS(1904), - [anon_sym_AT_COLON] = ACTIONS(1906), - [anon_sym_if] = ACTIONS(1904), - [anon_sym_new] = ACTIONS(1904), - [anon_sym_TILDE] = ACTIONS(1906), - [anon_sym_BANG] = ACTIONS(1904), - [anon_sym_DASH] = ACTIONS(1904), - [anon_sym_PLUS_PLUS] = ACTIONS(1906), - [anon_sym_DASH_DASH] = ACTIONS(1906), - [anon_sym_PERCENT] = ACTIONS(1906), - [anon_sym_STAR] = ACTIONS(1906), - [anon_sym_SLASH] = ACTIONS(1904), - [anon_sym_PLUS] = ACTIONS(1904), - [anon_sym_LT_LT] = ACTIONS(1906), - [anon_sym_GT_GT] = ACTIONS(1904), - [anon_sym_GT_GT_GT] = ACTIONS(1906), - [anon_sym_AMP] = ACTIONS(1904), - [anon_sym_PIPE] = ACTIONS(1904), - [anon_sym_CARET] = ACTIONS(1906), - [anon_sym_AMP_AMP] = ACTIONS(1906), - [anon_sym_PIPE_PIPE] = ACTIONS(1906), - [anon_sym_EQ_EQ] = ACTIONS(1906), - [anon_sym_BANG_EQ] = ACTIONS(1906), - [anon_sym_LT] = ACTIONS(1904), - [anon_sym_LT_EQ] = ACTIONS(1906), - [anon_sym_GT] = ACTIONS(1904), - [anon_sym_GT_EQ] = ACTIONS(1906), - [anon_sym_EQ_GT] = ACTIONS(1906), - [anon_sym_QMARK_QMARK] = ACTIONS(1906), - [anon_sym_EQ] = ACTIONS(1904), - [sym__rangeOperator] = ACTIONS(1906), - [anon_sym_null] = ACTIONS(1904), - [anon_sym_macro] = ACTIONS(1904), - [anon_sym_abstract] = ACTIONS(1904), - [anon_sym_static] = ACTIONS(1904), - [anon_sym_public] = ACTIONS(1904), - [anon_sym_private] = ACTIONS(1904), - [anon_sym_extern] = ACTIONS(1904), - [anon_sym_inline] = ACTIONS(1904), - [anon_sym_overload] = ACTIONS(1904), - [anon_sym_override] = ACTIONS(1904), - [anon_sym_final] = ACTIONS(1904), - [anon_sym_class] = ACTIONS(1904), - [anon_sym_interface] = ACTIONS(1904), - [anon_sym_typedef] = ACTIONS(1904), - [anon_sym_function] = ACTIONS(1904), - [anon_sym_var] = ACTIONS(1904), - [aux_sym_integer_token1] = ACTIONS(1904), - [aux_sym_integer_token2] = ACTIONS(1906), - [aux_sym_float_token1] = ACTIONS(1904), - [aux_sym_float_token2] = ACTIONS(1906), - [anon_sym_true] = ACTIONS(1904), - [anon_sym_false] = ACTIONS(1904), - [aux_sym_string_token1] = ACTIONS(1906), - [aux_sym_string_token3] = ACTIONS(1906), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3372), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3357), [sym__closing_brace_unmarker] = ACTIONS(3), }, [600] = { - [ts_builtin_sym_end] = ACTIONS(1930), - [sym_identifier] = ACTIONS(1928), - [anon_sym_POUND] = ACTIONS(1930), - [anon_sym_package] = ACTIONS(1928), - [anon_sym_import] = ACTIONS(1928), - [anon_sym_using] = ACTIONS(1928), - [anon_sym_throw] = ACTIONS(1928), - [anon_sym_LPAREN] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1928), - [anon_sym_LBRACE] = ACTIONS(1930), - [anon_sym_cast] = ACTIONS(1928), - [anon_sym_DOLLARtype] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1928), - [anon_sym_untyped] = ACTIONS(1928), - [anon_sym_break] = ACTIONS(1928), - [anon_sym_continue] = ACTIONS(1928), - [anon_sym_LBRACK] = ACTIONS(1930), - [anon_sym_this] = ACTIONS(1928), - [anon_sym_AT] = ACTIONS(1928), - [anon_sym_AT_COLON] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1928), - [anon_sym_new] = ACTIONS(1928), - [anon_sym_TILDE] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_DASH] = ACTIONS(1928), - [anon_sym_PLUS_PLUS] = ACTIONS(1930), - [anon_sym_DASH_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1928), - [anon_sym_PLUS] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1930), - [anon_sym_GT_GT] = ACTIONS(1928), - [anon_sym_GT_GT_GT] = ACTIONS(1930), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_CARET] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1930), - [anon_sym_PIPE_PIPE] = ACTIONS(1930), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1930), - [anon_sym_EQ_GT] = ACTIONS(1930), - [anon_sym_QMARK_QMARK] = ACTIONS(1930), - [anon_sym_EQ] = ACTIONS(1928), - [sym__rangeOperator] = ACTIONS(1930), - [anon_sym_null] = ACTIONS(1928), - [anon_sym_macro] = ACTIONS(1928), - [anon_sym_abstract] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1928), - [anon_sym_public] = ACTIONS(1928), - [anon_sym_private] = ACTIONS(1928), - [anon_sym_extern] = ACTIONS(1928), - [anon_sym_inline] = ACTIONS(1928), - [anon_sym_overload] = ACTIONS(1928), - [anon_sym_override] = ACTIONS(1928), - [anon_sym_final] = ACTIONS(1928), - [anon_sym_class] = ACTIONS(1928), - [anon_sym_interface] = ACTIONS(1928), - [anon_sym_typedef] = ACTIONS(1928), - [anon_sym_function] = ACTIONS(1928), - [anon_sym_var] = ACTIONS(1928), - [aux_sym_integer_token1] = ACTIONS(1928), - [aux_sym_integer_token2] = ACTIONS(1930), - [aux_sym_float_token1] = ACTIONS(1928), - [aux_sym_float_token2] = ACTIONS(1930), - [anon_sym_true] = ACTIONS(1928), - [anon_sym_false] = ACTIONS(1928), - [aux_sym_string_token1] = ACTIONS(1930), - [aux_sym_string_token3] = ACTIONS(1930), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(3361), + [anon_sym_package] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_cast] = ACTIONS(3363), + [anon_sym_DOLLARtype] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_untyped] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_AT_COLON] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_catch] = ACTIONS(3374), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3363), + [anon_sym_GT_GT_GT] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(3363), + [anon_sym_CARET] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_EQ_EQ] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3363), + [anon_sym_GT_EQ] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3361), + [anon_sym_QMARK_QMARK] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3363), + [anon_sym_macro] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_inline] = ACTIONS(3363), + [anon_sym_overload] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_final] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_typedef] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [aux_sym_integer_token1] = ACTIONS(3363), + [aux_sym_integer_token2] = ACTIONS(3361), + [aux_sym_float_token1] = ACTIONS(3363), + [aux_sym_float_token2] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [aux_sym_string_token1] = ACTIONS(3361), + [aux_sym_string_token3] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3361), [sym__closing_brace_unmarker] = ACTIONS(3), }, [601] = { - [ts_builtin_sym_end] = ACTIONS(1934), - [sym_identifier] = ACTIONS(1932), - [anon_sym_POUND] = ACTIONS(1934), - [anon_sym_package] = ACTIONS(1932), - [anon_sym_import] = ACTIONS(1932), - [anon_sym_using] = ACTIONS(1932), - [anon_sym_throw] = ACTIONS(1932), - [anon_sym_LPAREN] = ACTIONS(1934), - [anon_sym_switch] = ACTIONS(1932), - [anon_sym_LBRACE] = ACTIONS(1934), - [anon_sym_cast] = ACTIONS(1932), - [anon_sym_DOLLARtype] = ACTIONS(1934), - [anon_sym_return] = ACTIONS(1932), - [anon_sym_untyped] = ACTIONS(1932), - [anon_sym_break] = ACTIONS(1932), - [anon_sym_continue] = ACTIONS(1932), - [anon_sym_LBRACK] = ACTIONS(1934), - [anon_sym_this] = ACTIONS(1932), - [anon_sym_AT] = ACTIONS(1932), - [anon_sym_AT_COLON] = ACTIONS(1934), - [anon_sym_if] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1932), - [anon_sym_TILDE] = ACTIONS(1934), - [anon_sym_BANG] = ACTIONS(1932), - [anon_sym_DASH] = ACTIONS(1932), - [anon_sym_PLUS_PLUS] = ACTIONS(1934), - [anon_sym_DASH_DASH] = ACTIONS(1934), - [anon_sym_PERCENT] = ACTIONS(1934), - [anon_sym_STAR] = ACTIONS(1934), - [anon_sym_SLASH] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1932), - [anon_sym_LT_LT] = ACTIONS(1934), - [anon_sym_GT_GT] = ACTIONS(1932), - [anon_sym_GT_GT_GT] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_CARET] = ACTIONS(1934), - [anon_sym_AMP_AMP] = ACTIONS(1934), - [anon_sym_PIPE_PIPE] = ACTIONS(1934), - [anon_sym_EQ_EQ] = ACTIONS(1934), - [anon_sym_BANG_EQ] = ACTIONS(1934), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_LT_EQ] = ACTIONS(1934), - [anon_sym_GT] = ACTIONS(1932), - [anon_sym_GT_EQ] = ACTIONS(1934), - [anon_sym_EQ_GT] = ACTIONS(1934), - [anon_sym_QMARK_QMARK] = ACTIONS(1934), - [anon_sym_EQ] = ACTIONS(1932), - [sym__rangeOperator] = ACTIONS(1934), - [anon_sym_null] = ACTIONS(1932), - [anon_sym_macro] = ACTIONS(1932), - [anon_sym_abstract] = ACTIONS(1932), - [anon_sym_static] = ACTIONS(1932), - [anon_sym_public] = ACTIONS(1932), - [anon_sym_private] = ACTIONS(1932), - [anon_sym_extern] = ACTIONS(1932), - [anon_sym_inline] = ACTIONS(1932), - [anon_sym_overload] = ACTIONS(1932), - [anon_sym_override] = ACTIONS(1932), - [anon_sym_final] = ACTIONS(1932), - [anon_sym_class] = ACTIONS(1932), - [anon_sym_interface] = ACTIONS(1932), - [anon_sym_typedef] = ACTIONS(1932), - [anon_sym_function] = ACTIONS(1932), - [anon_sym_var] = ACTIONS(1932), - [aux_sym_integer_token1] = ACTIONS(1932), - [aux_sym_integer_token2] = ACTIONS(1934), - [aux_sym_float_token1] = ACTIONS(1932), - [aux_sym_float_token2] = ACTIONS(1934), - [anon_sym_true] = ACTIONS(1932), - [anon_sym_false] = ACTIONS(1932), - [aux_sym_string_token1] = ACTIONS(1934), - [aux_sym_string_token3] = ACTIONS(1934), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3372), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3368), [sym__closing_brace_unmarker] = ACTIONS(3), }, [602] = { - [ts_builtin_sym_end] = ACTIONS(2110), - [sym_identifier] = ACTIONS(2108), - [anon_sym_POUND] = ACTIONS(2110), - [anon_sym_package] = ACTIONS(2108), - [anon_sym_import] = ACTIONS(2108), - [anon_sym_using] = ACTIONS(2108), - [anon_sym_throw] = ACTIONS(2108), - [anon_sym_LPAREN] = ACTIONS(2110), - [anon_sym_switch] = ACTIONS(2108), - [anon_sym_LBRACE] = ACTIONS(2110), - [anon_sym_cast] = ACTIONS(2108), - [anon_sym_DOLLARtype] = ACTIONS(2110), - [anon_sym_return] = ACTIONS(2108), - [anon_sym_untyped] = ACTIONS(2108), - [anon_sym_break] = ACTIONS(2108), - [anon_sym_continue] = ACTIONS(2108), - [anon_sym_LBRACK] = ACTIONS(2110), - [anon_sym_this] = ACTIONS(2108), - [anon_sym_AT] = ACTIONS(2108), - [anon_sym_AT_COLON] = ACTIONS(2110), - [anon_sym_if] = ACTIONS(2108), - [anon_sym_new] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2110), - [anon_sym_BANG] = ACTIONS(2108), - [anon_sym_DASH] = ACTIONS(2108), - [anon_sym_PLUS_PLUS] = ACTIONS(2110), - [anon_sym_DASH_DASH] = ACTIONS(2110), - [anon_sym_PERCENT] = ACTIONS(2110), - [anon_sym_STAR] = ACTIONS(2110), - [anon_sym_SLASH] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2108), - [anon_sym_LT_LT] = ACTIONS(2110), - [anon_sym_GT_GT] = ACTIONS(2108), - [anon_sym_GT_GT_GT] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2110), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_EQ_EQ] = ACTIONS(2110), - [anon_sym_BANG_EQ] = ACTIONS(2110), - [anon_sym_LT] = ACTIONS(2108), - [anon_sym_LT_EQ] = ACTIONS(2110), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_GT_EQ] = ACTIONS(2110), - [anon_sym_EQ_GT] = ACTIONS(2110), - [anon_sym_QMARK_QMARK] = ACTIONS(2110), - [anon_sym_EQ] = ACTIONS(2108), - [sym__rangeOperator] = ACTIONS(2110), - [anon_sym_null] = ACTIONS(2108), - [anon_sym_macro] = ACTIONS(2108), - [anon_sym_abstract] = ACTIONS(2108), - [anon_sym_static] = ACTIONS(2108), - [anon_sym_public] = ACTIONS(2108), - [anon_sym_private] = ACTIONS(2108), - [anon_sym_extern] = ACTIONS(2108), - [anon_sym_inline] = ACTIONS(2108), - [anon_sym_overload] = ACTIONS(2108), - [anon_sym_override] = ACTIONS(2108), - [anon_sym_final] = ACTIONS(2108), - [anon_sym_class] = ACTIONS(2108), - [anon_sym_interface] = ACTIONS(2108), - [anon_sym_typedef] = ACTIONS(2108), - [anon_sym_function] = ACTIONS(2108), - [anon_sym_var] = ACTIONS(2108), - [aux_sym_integer_token1] = ACTIONS(2108), - [aux_sym_integer_token2] = ACTIONS(2110), - [aux_sym_float_token1] = ACTIONS(2108), - [aux_sym_float_token2] = ACTIONS(2110), - [anon_sym_true] = ACTIONS(2108), - [anon_sym_false] = ACTIONS(2108), - [aux_sym_string_token1] = ACTIONS(2110), - [aux_sym_string_token3] = ACTIONS(2110), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(2683), + [anon_sym_else] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2681), [sym__closing_brace_unmarker] = ACTIONS(3), }, [603] = { - [ts_builtin_sym_end] = ACTIONS(2170), - [sym_identifier] = ACTIONS(2168), - [anon_sym_POUND] = ACTIONS(2170), - [anon_sym_package] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2170), - [anon_sym_cast] = ACTIONS(2168), - [anon_sym_DOLLARtype] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_untyped] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2170), - [anon_sym_this] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_AT_COLON] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2170), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2170), - [anon_sym_PERCENT] = ACTIONS(2170), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2168), - [anon_sym_GT_GT_GT] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2168), - [anon_sym_PIPE] = ACTIONS(2168), - [anon_sym_CARET] = ACTIONS(2170), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_GT] = ACTIONS(2168), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_EQ_GT] = ACTIONS(2170), - [anon_sym_QMARK_QMARK] = ACTIONS(2170), - [anon_sym_EQ] = ACTIONS(2168), - [sym__rangeOperator] = ACTIONS(2170), - [anon_sym_null] = ACTIONS(2168), - [anon_sym_macro] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_extern] = ACTIONS(2168), - [anon_sym_inline] = ACTIONS(2168), - [anon_sym_overload] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_final] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_typedef] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [aux_sym_integer_token1] = ACTIONS(2168), - [aux_sym_integer_token2] = ACTIONS(2170), - [aux_sym_float_token1] = ACTIONS(2168), - [aux_sym_float_token2] = ACTIONS(2170), - [anon_sym_true] = ACTIONS(2168), - [anon_sym_false] = ACTIONS(2168), - [aux_sym_string_token1] = ACTIONS(2170), - [aux_sym_string_token3] = ACTIONS(2170), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3357), [sym__closing_brace_unmarker] = ACTIONS(3), }, [604] = { - [ts_builtin_sym_end] = ACTIONS(1898), - [sym_identifier] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_package] = ACTIONS(1896), - [anon_sym_import] = ACTIONS(1896), - [anon_sym_using] = ACTIONS(1896), - [anon_sym_throw] = ACTIONS(1896), - [anon_sym_LPAREN] = ACTIONS(1898), - [anon_sym_switch] = ACTIONS(1896), - [anon_sym_LBRACE] = ACTIONS(1898), - [anon_sym_cast] = ACTIONS(1896), - [anon_sym_DOLLARtype] = ACTIONS(1898), - [anon_sym_return] = ACTIONS(1896), - [anon_sym_untyped] = ACTIONS(1896), - [anon_sym_break] = ACTIONS(1896), - [anon_sym_continue] = ACTIONS(1896), - [anon_sym_LBRACK] = ACTIONS(1898), - [anon_sym_this] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_AT_COLON] = ACTIONS(1898), - [anon_sym_if] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1896), - [anon_sym_TILDE] = ACTIONS(1898), - [anon_sym_BANG] = ACTIONS(1896), - [anon_sym_DASH] = ACTIONS(1896), - [anon_sym_PLUS_PLUS] = ACTIONS(1898), - [anon_sym_DASH_DASH] = ACTIONS(1898), - [anon_sym_PERCENT] = ACTIONS(1898), - [anon_sym_STAR] = ACTIONS(1898), - [anon_sym_SLASH] = ACTIONS(1896), - [anon_sym_PLUS] = ACTIONS(1896), - [anon_sym_LT_LT] = ACTIONS(1898), - [anon_sym_GT_GT] = ACTIONS(1896), - [anon_sym_GT_GT_GT] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1896), - [anon_sym_PIPE] = ACTIONS(1896), - [anon_sym_CARET] = ACTIONS(1898), - [anon_sym_AMP_AMP] = ACTIONS(1898), - [anon_sym_PIPE_PIPE] = ACTIONS(1898), - [anon_sym_EQ_EQ] = ACTIONS(1898), - [anon_sym_BANG_EQ] = ACTIONS(1898), - [anon_sym_LT] = ACTIONS(1896), - [anon_sym_LT_EQ] = ACTIONS(1898), - [anon_sym_GT] = ACTIONS(1896), - [anon_sym_GT_EQ] = ACTIONS(1898), - [anon_sym_EQ_GT] = ACTIONS(1898), - [anon_sym_QMARK_QMARK] = ACTIONS(1898), - [anon_sym_EQ] = ACTIONS(1896), - [sym__rangeOperator] = ACTIONS(1898), - [anon_sym_null] = ACTIONS(1896), - [anon_sym_macro] = ACTIONS(1896), - [anon_sym_abstract] = ACTIONS(1896), - [anon_sym_static] = ACTIONS(1896), - [anon_sym_public] = ACTIONS(1896), - [anon_sym_private] = ACTIONS(1896), - [anon_sym_extern] = ACTIONS(1896), - [anon_sym_inline] = ACTIONS(1896), - [anon_sym_overload] = ACTIONS(1896), - [anon_sym_override] = ACTIONS(1896), - [anon_sym_final] = ACTIONS(1896), - [anon_sym_class] = ACTIONS(1896), - [anon_sym_interface] = ACTIONS(1896), - [anon_sym_typedef] = ACTIONS(1896), - [anon_sym_function] = ACTIONS(1896), - [anon_sym_var] = ACTIONS(1896), - [aux_sym_integer_token1] = ACTIONS(1896), - [aux_sym_integer_token2] = ACTIONS(1898), - [aux_sym_float_token1] = ACTIONS(1896), - [aux_sym_float_token2] = ACTIONS(1898), - [anon_sym_true] = ACTIONS(1896), - [anon_sym_false] = ACTIONS(1896), - [aux_sym_string_token1] = ACTIONS(1898), - [aux_sym_string_token3] = ACTIONS(1898), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(600), + [aux_sym_try_statement_repeat1] = STATE(600), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3368), [sym__closing_brace_unmarker] = ACTIONS(3), }, [605] = { - [ts_builtin_sym_end] = ACTIONS(1942), - [sym_identifier] = ACTIONS(1940), - [anon_sym_POUND] = ACTIONS(1942), - [anon_sym_package] = ACTIONS(1940), - [anon_sym_import] = ACTIONS(1940), - [anon_sym_using] = ACTIONS(1940), - [anon_sym_throw] = ACTIONS(1940), - [anon_sym_LPAREN] = ACTIONS(1942), - [anon_sym_switch] = ACTIONS(1940), - [anon_sym_LBRACE] = ACTIONS(1942), - [anon_sym_cast] = ACTIONS(1940), - [anon_sym_DOLLARtype] = ACTIONS(1942), - [anon_sym_return] = ACTIONS(1940), - [anon_sym_untyped] = ACTIONS(1940), - [anon_sym_break] = ACTIONS(1940), - [anon_sym_continue] = ACTIONS(1940), - [anon_sym_LBRACK] = ACTIONS(1942), - [anon_sym_this] = ACTIONS(1940), - [anon_sym_AT] = ACTIONS(1940), - [anon_sym_AT_COLON] = ACTIONS(1942), - [anon_sym_if] = ACTIONS(1940), - [anon_sym_new] = ACTIONS(1940), - [anon_sym_TILDE] = ACTIONS(1942), - [anon_sym_BANG] = ACTIONS(1940), - [anon_sym_DASH] = ACTIONS(1940), - [anon_sym_PLUS_PLUS] = ACTIONS(1942), - [anon_sym_DASH_DASH] = ACTIONS(1942), - [anon_sym_PERCENT] = ACTIONS(1942), - [anon_sym_STAR] = ACTIONS(1942), - [anon_sym_SLASH] = ACTIONS(1940), - [anon_sym_PLUS] = ACTIONS(1940), - [anon_sym_LT_LT] = ACTIONS(1942), - [anon_sym_GT_GT] = ACTIONS(1940), - [anon_sym_GT_GT_GT] = ACTIONS(1942), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_CARET] = ACTIONS(1942), - [anon_sym_AMP_AMP] = ACTIONS(1942), - [anon_sym_PIPE_PIPE] = ACTIONS(1942), - [anon_sym_EQ_EQ] = ACTIONS(1942), - [anon_sym_BANG_EQ] = ACTIONS(1942), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_LT_EQ] = ACTIONS(1942), - [anon_sym_GT] = ACTIONS(1940), - [anon_sym_GT_EQ] = ACTIONS(1942), - [anon_sym_EQ_GT] = ACTIONS(1942), - [anon_sym_QMARK_QMARK] = ACTIONS(1942), - [anon_sym_EQ] = ACTIONS(1940), - [sym__rangeOperator] = ACTIONS(1942), - [anon_sym_null] = ACTIONS(1940), - [anon_sym_macro] = ACTIONS(1940), - [anon_sym_abstract] = ACTIONS(1940), - [anon_sym_static] = ACTIONS(1940), - [anon_sym_public] = ACTIONS(1940), - [anon_sym_private] = ACTIONS(1940), - [anon_sym_extern] = ACTIONS(1940), - [anon_sym_inline] = ACTIONS(1940), - [anon_sym_overload] = ACTIONS(1940), - [anon_sym_override] = ACTIONS(1940), - [anon_sym_final] = ACTIONS(1940), - [anon_sym_class] = ACTIONS(1940), - [anon_sym_interface] = ACTIONS(1940), - [anon_sym_typedef] = ACTIONS(1940), - [anon_sym_function] = ACTIONS(1940), - [anon_sym_var] = ACTIONS(1940), - [aux_sym_integer_token1] = ACTIONS(1940), - [aux_sym_integer_token2] = ACTIONS(1942), - [aux_sym_float_token1] = ACTIONS(1940), - [aux_sym_float_token2] = ACTIONS(1942), - [anon_sym_true] = ACTIONS(1940), - [anon_sym_false] = ACTIONS(1940), - [aux_sym_string_token1] = ACTIONS(1942), - [aux_sym_string_token3] = ACTIONS(1942), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3377), + [anon_sym_POUND] = ACTIONS(3379), + [anon_sym_package] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_case] = ACTIONS(3377), + [anon_sym_default] = ACTIONS(3377), + [anon_sym_cast] = ACTIONS(3377), + [anon_sym_DOLLARtype] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_untyped] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_this] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_AT_COLON] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_catch] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3379), + [anon_sym_GT_GT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_PIPE_PIPE] = ACTIONS(3379), + [anon_sym_EQ_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_EQ_GT] = ACTIONS(3379), + [anon_sym_QMARK_QMARK] = ACTIONS(3379), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3377), + [anon_sym_macro] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_extern] = ACTIONS(3377), + [anon_sym_inline] = ACTIONS(3377), + [anon_sym_overload] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_final] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), + [anon_sym_typedef] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [aux_sym_integer_token1] = ACTIONS(3377), + [aux_sym_integer_token2] = ACTIONS(3379), + [aux_sym_float_token1] = ACTIONS(3377), + [aux_sym_float_token2] = ACTIONS(3379), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym_string_token1] = ACTIONS(3379), + [aux_sym_string_token3] = ACTIONS(3379), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3379), [sym__closing_brace_unmarker] = ACTIONS(3), }, [606] = { - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2252), - [anon_sym_POUND] = ACTIONS(2254), - [anon_sym_package] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2254), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2254), - [anon_sym_cast] = ACTIONS(2252), - [anon_sym_DOLLARtype] = ACTIONS(2254), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_untyped] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2254), - [anon_sym_this] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_AT_COLON] = ACTIONS(2254), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2254), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2254), - [anon_sym_DASH_DASH] = ACTIONS(2254), - [anon_sym_PERCENT] = ACTIONS(2254), - [anon_sym_STAR] = ACTIONS(2254), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2254), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_GT_GT_GT] = ACTIONS(2254), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2254), - [anon_sym_AMP_AMP] = ACTIONS(2254), - [anon_sym_PIPE_PIPE] = ACTIONS(2254), - [anon_sym_EQ_EQ] = ACTIONS(2254), - [anon_sym_BANG_EQ] = ACTIONS(2254), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2254), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2254), - [anon_sym_EQ_GT] = ACTIONS(2254), - [anon_sym_QMARK_QMARK] = ACTIONS(2254), - [anon_sym_EQ] = ACTIONS(2252), - [sym__rangeOperator] = ACTIONS(2254), - [anon_sym_null] = ACTIONS(2252), - [anon_sym_macro] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_extern] = ACTIONS(2252), - [anon_sym_inline] = ACTIONS(2252), - [anon_sym_overload] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_final] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_typedef] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [aux_sym_integer_token1] = ACTIONS(2252), - [aux_sym_integer_token2] = ACTIONS(2254), - [aux_sym_float_token1] = ACTIONS(2252), - [aux_sym_float_token2] = ACTIONS(2254), - [anon_sym_true] = ACTIONS(2252), - [anon_sym_false] = ACTIONS(2252), - [aux_sym_string_token1] = ACTIONS(2254), - [aux_sym_string_token3] = ACTIONS(2254), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3381), + [anon_sym_POUND] = ACTIONS(3383), + [anon_sym_package] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_case] = ACTIONS(3381), + [anon_sym_default] = ACTIONS(3381), + [anon_sym_cast] = ACTIONS(3381), + [anon_sym_DOLLARtype] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_untyped] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_this] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_AT_COLON] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_catch] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3383), + [anon_sym_GT_GT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3383), + [anon_sym_AMP_AMP] = ACTIONS(3383), + [anon_sym_PIPE_PIPE] = ACTIONS(3383), + [anon_sym_EQ_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_EQ_GT] = ACTIONS(3383), + [anon_sym_QMARK_QMARK] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3383), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_macro] = ACTIONS(3381), + [anon_sym_abstract] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_public] = ACTIONS(3381), + [anon_sym_private] = ACTIONS(3381), + [anon_sym_extern] = ACTIONS(3381), + [anon_sym_inline] = ACTIONS(3381), + [anon_sym_overload] = ACTIONS(3381), + [anon_sym_override] = ACTIONS(3381), + [anon_sym_final] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), + [anon_sym_typedef] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3381), + [anon_sym_var] = ACTIONS(3381), + [aux_sym_integer_token1] = ACTIONS(3381), + [aux_sym_integer_token2] = ACTIONS(3383), + [aux_sym_float_token1] = ACTIONS(3381), + [aux_sym_float_token2] = ACTIONS(3383), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [aux_sym_string_token1] = ACTIONS(3383), + [aux_sym_string_token3] = ACTIONS(3383), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3383), [sym__closing_brace_unmarker] = ACTIONS(3), }, [607] = { - [ts_builtin_sym_end] = ACTIONS(1670), - [sym_identifier] = ACTIONS(1668), - [anon_sym_POUND] = ACTIONS(1670), - [anon_sym_package] = ACTIONS(1668), - [anon_sym_import] = ACTIONS(1668), - [anon_sym_using] = ACTIONS(1668), - [anon_sym_throw] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_switch] = ACTIONS(1668), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_cast] = ACTIONS(1668), - [anon_sym_DOLLARtype] = ACTIONS(1670), - [anon_sym_return] = ACTIONS(1668), - [anon_sym_untyped] = ACTIONS(1668), - [anon_sym_break] = ACTIONS(1668), - [anon_sym_continue] = ACTIONS(1668), - [anon_sym_LBRACK] = ACTIONS(1670), - [anon_sym_this] = ACTIONS(1668), - [anon_sym_AT] = ACTIONS(1668), - [anon_sym_AT_COLON] = ACTIONS(1670), - [anon_sym_if] = ACTIONS(1668), - [anon_sym_new] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1670), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PLUS_PLUS] = ACTIONS(1670), - [anon_sym_DASH_DASH] = ACTIONS(1670), - [anon_sym_PERCENT] = ACTIONS(1670), - [anon_sym_STAR] = ACTIONS(1670), - [anon_sym_SLASH] = ACTIONS(1668), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_LT_LT] = ACTIONS(1670), - [anon_sym_GT_GT] = ACTIONS(1668), - [anon_sym_GT_GT_GT] = ACTIONS(1670), - [anon_sym_AMP] = ACTIONS(1668), - [anon_sym_PIPE] = ACTIONS(1668), - [anon_sym_CARET] = ACTIONS(1670), - [anon_sym_AMP_AMP] = ACTIONS(1670), - [anon_sym_PIPE_PIPE] = ACTIONS(1670), - [anon_sym_EQ_EQ] = ACTIONS(1670), - [anon_sym_BANG_EQ] = ACTIONS(1670), - [anon_sym_LT] = ACTIONS(1668), - [anon_sym_LT_EQ] = ACTIONS(1670), - [anon_sym_GT] = ACTIONS(1668), - [anon_sym_GT_EQ] = ACTIONS(1670), - [anon_sym_EQ_GT] = ACTIONS(1670), - [anon_sym_QMARK_QMARK] = ACTIONS(1670), - [anon_sym_EQ] = ACTIONS(1668), - [sym__rangeOperator] = ACTIONS(1670), - [anon_sym_null] = ACTIONS(1668), - [anon_sym_macro] = ACTIONS(1668), - [anon_sym_abstract] = ACTIONS(1668), - [anon_sym_static] = ACTIONS(1668), - [anon_sym_public] = ACTIONS(1668), - [anon_sym_private] = ACTIONS(1668), - [anon_sym_extern] = ACTIONS(1668), - [anon_sym_inline] = ACTIONS(1668), - [anon_sym_overload] = ACTIONS(1668), - [anon_sym_override] = ACTIONS(1668), - [anon_sym_final] = ACTIONS(1668), - [anon_sym_class] = ACTIONS(1668), - [anon_sym_interface] = ACTIONS(1668), - [anon_sym_typedef] = ACTIONS(1668), - [anon_sym_function] = ACTIONS(1668), - [anon_sym_var] = ACTIONS(1668), - [aux_sym_integer_token1] = ACTIONS(1668), - [aux_sym_integer_token2] = ACTIONS(1670), - [aux_sym_float_token1] = ACTIONS(1668), - [aux_sym_float_token2] = ACTIONS(1670), - [anon_sym_true] = ACTIONS(1668), - [anon_sym_false] = ACTIONS(1668), - [aux_sym_string_token1] = ACTIONS(1670), - [aux_sym_string_token3] = ACTIONS(1670), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3385), + [anon_sym_POUND] = ACTIONS(3387), + [anon_sym_package] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(3385), + [anon_sym_default] = ACTIONS(3385), + [anon_sym_cast] = ACTIONS(3385), + [anon_sym_DOLLARtype] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_untyped] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_this] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_AT_COLON] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_catch] = ACTIONS(3385), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_LT_LT] = ACTIONS(3387), + [anon_sym_GT_GT] = ACTIONS(3385), + [anon_sym_GT_GT_GT] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_CARET] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_EQ_EQ] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_LT_EQ] = ACTIONS(3387), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_GT_EQ] = ACTIONS(3387), + [anon_sym_EQ_GT] = ACTIONS(3387), + [anon_sym_QMARK_QMARK] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3387), + [anon_sym_null] = ACTIONS(3385), + [anon_sym_macro] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_extern] = ACTIONS(3385), + [anon_sym_inline] = ACTIONS(3385), + [anon_sym_overload] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_final] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), + [anon_sym_typedef] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [aux_sym_integer_token1] = ACTIONS(3385), + [aux_sym_integer_token2] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(3385), + [aux_sym_float_token2] = ACTIONS(3387), + [anon_sym_true] = ACTIONS(3385), + [anon_sym_false] = ACTIONS(3385), + [aux_sym_string_token1] = ACTIONS(3387), + [aux_sym_string_token3] = ACTIONS(3387), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3387), [sym__closing_brace_unmarker] = ACTIONS(3), }, [608] = { - [ts_builtin_sym_end] = ACTIONS(2274), - [sym_identifier] = ACTIONS(2272), - [anon_sym_POUND] = ACTIONS(2274), - [anon_sym_package] = ACTIONS(2272), - [anon_sym_import] = ACTIONS(2272), - [anon_sym_using] = ACTIONS(2272), - [anon_sym_throw] = ACTIONS(2272), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2272), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_cast] = ACTIONS(2272), - [anon_sym_DOLLARtype] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2272), - [anon_sym_untyped] = ACTIONS(2272), - [anon_sym_break] = ACTIONS(2272), - [anon_sym_continue] = ACTIONS(2272), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_this] = ACTIONS(2272), - [anon_sym_AT] = ACTIONS(2272), - [anon_sym_AT_COLON] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2272), - [anon_sym_new] = ACTIONS(2272), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2272), - [anon_sym_DASH] = ACTIONS(2272), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2272), - [anon_sym_PLUS] = ACTIONS(2272), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2272), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2272), - [anon_sym_PIPE] = ACTIONS(2272), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2272), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_GT] = ACTIONS(2272), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_EQ_GT] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_EQ] = ACTIONS(2272), - [sym__rangeOperator] = ACTIONS(2274), - [anon_sym_null] = ACTIONS(2272), - [anon_sym_macro] = ACTIONS(2272), - [anon_sym_abstract] = ACTIONS(2272), - [anon_sym_static] = ACTIONS(2272), - [anon_sym_public] = ACTIONS(2272), - [anon_sym_private] = ACTIONS(2272), - [anon_sym_extern] = ACTIONS(2272), - [anon_sym_inline] = ACTIONS(2272), - [anon_sym_overload] = ACTIONS(2272), - [anon_sym_override] = ACTIONS(2272), - [anon_sym_final] = ACTIONS(2272), - [anon_sym_class] = ACTIONS(2272), - [anon_sym_interface] = ACTIONS(2272), - [anon_sym_typedef] = ACTIONS(2272), - [anon_sym_function] = ACTIONS(2272), - [anon_sym_var] = ACTIONS(2272), - [aux_sym_integer_token1] = ACTIONS(2272), - [aux_sym_integer_token2] = ACTIONS(2274), - [aux_sym_float_token1] = ACTIONS(2272), - [aux_sym_float_token2] = ACTIONS(2274), - [anon_sym_true] = ACTIONS(2272), - [anon_sym_false] = ACTIONS(2272), - [aux_sym_string_token1] = ACTIONS(2274), - [aux_sym_string_token3] = ACTIONS(2274), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3389), + [anon_sym_POUND] = ACTIONS(3391), + [anon_sym_package] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3389), + [anon_sym_default] = ACTIONS(3389), + [anon_sym_cast] = ACTIONS(3389), + [anon_sym_DOLLARtype] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_untyped] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_this] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_AT_COLON] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_catch] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3389), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_PIPE_PIPE] = ACTIONS(3391), + [anon_sym_EQ_EQ] = ACTIONS(3391), + [anon_sym_BANG_EQ] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_LT_EQ] = ACTIONS(3391), + [anon_sym_GT] = ACTIONS(3389), + [anon_sym_GT_EQ] = ACTIONS(3391), + [anon_sym_EQ_GT] = ACTIONS(3391), + [anon_sym_QMARK_QMARK] = ACTIONS(3391), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3389), + [anon_sym_macro] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_extern] = ACTIONS(3389), + [anon_sym_inline] = ACTIONS(3389), + [anon_sym_overload] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_final] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), + [anon_sym_typedef] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [aux_sym_integer_token1] = ACTIONS(3389), + [aux_sym_integer_token2] = ACTIONS(3391), + [aux_sym_float_token1] = ACTIONS(3389), + [aux_sym_float_token2] = ACTIONS(3391), + [anon_sym_true] = ACTIONS(3389), + [anon_sym_false] = ACTIONS(3389), + [aux_sym_string_token1] = ACTIONS(3391), + [aux_sym_string_token3] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3391), [sym__closing_brace_unmarker] = ACTIONS(3), }, [609] = { - [ts_builtin_sym_end] = ACTIONS(1666), - [sym_identifier] = ACTIONS(1664), - [anon_sym_POUND] = ACTIONS(1666), - [anon_sym_package] = ACTIONS(1664), - [anon_sym_import] = ACTIONS(1664), - [anon_sym_using] = ACTIONS(1664), - [anon_sym_throw] = ACTIONS(1664), - [anon_sym_LPAREN] = ACTIONS(1666), - [anon_sym_switch] = ACTIONS(1664), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_cast] = ACTIONS(1664), - [anon_sym_DOLLARtype] = ACTIONS(1666), - [anon_sym_return] = ACTIONS(1664), - [anon_sym_untyped] = ACTIONS(1664), - [anon_sym_break] = ACTIONS(1664), - [anon_sym_continue] = ACTIONS(1664), - [anon_sym_LBRACK] = ACTIONS(1666), - [anon_sym_this] = ACTIONS(1664), - [anon_sym_AT] = ACTIONS(1664), - [anon_sym_AT_COLON] = ACTIONS(1666), - [anon_sym_if] = ACTIONS(1664), - [anon_sym_new] = ACTIONS(1664), - [anon_sym_TILDE] = ACTIONS(1666), - [anon_sym_BANG] = ACTIONS(1664), - [anon_sym_DASH] = ACTIONS(1664), - [anon_sym_PLUS_PLUS] = ACTIONS(1666), - [anon_sym_DASH_DASH] = ACTIONS(1666), - [anon_sym_PERCENT] = ACTIONS(1666), - [anon_sym_STAR] = ACTIONS(1666), - [anon_sym_SLASH] = ACTIONS(1664), - [anon_sym_PLUS] = ACTIONS(1664), - [anon_sym_LT_LT] = ACTIONS(1666), - [anon_sym_GT_GT] = ACTIONS(1664), - [anon_sym_GT_GT_GT] = ACTIONS(1666), - [anon_sym_AMP] = ACTIONS(1664), - [anon_sym_PIPE] = ACTIONS(1664), - [anon_sym_CARET] = ACTIONS(1666), - [anon_sym_AMP_AMP] = ACTIONS(1666), - [anon_sym_PIPE_PIPE] = ACTIONS(1666), - [anon_sym_EQ_EQ] = ACTIONS(1666), - [anon_sym_BANG_EQ] = ACTIONS(1666), - [anon_sym_LT] = ACTIONS(1664), - [anon_sym_LT_EQ] = ACTIONS(1666), - [anon_sym_GT] = ACTIONS(1664), - [anon_sym_GT_EQ] = ACTIONS(1666), - [anon_sym_EQ_GT] = ACTIONS(1666), - [anon_sym_QMARK_QMARK] = ACTIONS(1666), - [anon_sym_EQ] = ACTIONS(1664), - [sym__rangeOperator] = ACTIONS(1666), - [anon_sym_null] = ACTIONS(1664), - [anon_sym_macro] = ACTIONS(1664), - [anon_sym_abstract] = ACTIONS(1664), - [anon_sym_static] = ACTIONS(1664), - [anon_sym_public] = ACTIONS(1664), - [anon_sym_private] = ACTIONS(1664), - [anon_sym_extern] = ACTIONS(1664), - [anon_sym_inline] = ACTIONS(1664), - [anon_sym_overload] = ACTIONS(1664), - [anon_sym_override] = ACTIONS(1664), - [anon_sym_final] = ACTIONS(1664), - [anon_sym_class] = ACTIONS(1664), - [anon_sym_interface] = ACTIONS(1664), - [anon_sym_typedef] = ACTIONS(1664), - [anon_sym_function] = ACTIONS(1664), - [anon_sym_var] = ACTIONS(1664), - [aux_sym_integer_token1] = ACTIONS(1664), - [aux_sym_integer_token2] = ACTIONS(1666), - [aux_sym_float_token1] = ACTIONS(1664), - [aux_sym_float_token2] = ACTIONS(1666), - [anon_sym_true] = ACTIONS(1664), - [anon_sym_false] = ACTIONS(1664), - [aux_sym_string_token1] = ACTIONS(1666), - [aux_sym_string_token3] = ACTIONS(1666), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [610] = { - [ts_builtin_sym_end] = ACTIONS(2302), - [sym_identifier] = ACTIONS(2300), - [anon_sym_POUND] = ACTIONS(2302), - [anon_sym_package] = ACTIONS(2300), - [anon_sym_import] = ACTIONS(2300), - [anon_sym_using] = ACTIONS(2300), - [anon_sym_throw] = ACTIONS(2300), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2300), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_cast] = ACTIONS(2300), - [anon_sym_DOLLARtype] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2300), - [anon_sym_untyped] = ACTIONS(2300), - [anon_sym_break] = ACTIONS(2300), - [anon_sym_continue] = ACTIONS(2300), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_this] = ACTIONS(2300), - [anon_sym_AT] = ACTIONS(2300), - [anon_sym_AT_COLON] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2300), - [anon_sym_new] = ACTIONS(2300), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2300), - [anon_sym_DASH] = ACTIONS(2300), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2300), - [anon_sym_PLUS] = ACTIONS(2300), - [anon_sym_LT_LT] = ACTIONS(2302), - [anon_sym_GT_GT] = ACTIONS(2300), - [anon_sym_GT_GT_GT] = ACTIONS(2302), - [anon_sym_AMP] = ACTIONS(2300), - [anon_sym_PIPE] = ACTIONS(2300), - [anon_sym_CARET] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2302), - [anon_sym_PIPE_PIPE] = ACTIONS(2302), - [anon_sym_EQ_EQ] = ACTIONS(2302), - [anon_sym_BANG_EQ] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2300), - [anon_sym_LT_EQ] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2300), - [anon_sym_GT_EQ] = ACTIONS(2302), - [anon_sym_EQ_GT] = ACTIONS(2302), - [anon_sym_QMARK_QMARK] = ACTIONS(2302), - [anon_sym_EQ] = ACTIONS(2300), - [sym__rangeOperator] = ACTIONS(2302), - [anon_sym_null] = ACTIONS(2300), - [anon_sym_macro] = ACTIONS(2300), - [anon_sym_abstract] = ACTIONS(2300), - [anon_sym_static] = ACTIONS(2300), - [anon_sym_public] = ACTIONS(2300), - [anon_sym_private] = ACTIONS(2300), - [anon_sym_extern] = ACTIONS(2300), - [anon_sym_inline] = ACTIONS(2300), - [anon_sym_overload] = ACTIONS(2300), - [anon_sym_override] = ACTIONS(2300), - [anon_sym_final] = ACTIONS(2300), - [anon_sym_class] = ACTIONS(2300), - [anon_sym_interface] = ACTIONS(2300), - [anon_sym_typedef] = ACTIONS(2300), - [anon_sym_function] = ACTIONS(2300), - [anon_sym_var] = ACTIONS(2300), - [aux_sym_integer_token1] = ACTIONS(2300), - [aux_sym_integer_token2] = ACTIONS(2302), - [aux_sym_float_token1] = ACTIONS(2300), - [aux_sym_float_token2] = ACTIONS(2302), - [anon_sym_true] = ACTIONS(2300), - [anon_sym_false] = ACTIONS(2300), - [aux_sym_string_token1] = ACTIONS(2302), - [aux_sym_string_token3] = ACTIONS(2302), + [sym_catch_statement] = STATE(596), + [aux_sym_try_statement_repeat1] = STATE(596), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [611] = { - [ts_builtin_sym_end] = ACTIONS(1662), - [sym_identifier] = ACTIONS(1660), - [anon_sym_POUND] = ACTIONS(1662), - [anon_sym_package] = ACTIONS(1660), - [anon_sym_import] = ACTIONS(1660), - [anon_sym_using] = ACTIONS(1660), - [anon_sym_throw] = ACTIONS(1660), - [anon_sym_LPAREN] = ACTIONS(1662), - [anon_sym_switch] = ACTIONS(1660), - [anon_sym_LBRACE] = ACTIONS(1662), - [anon_sym_cast] = ACTIONS(1660), - [anon_sym_DOLLARtype] = ACTIONS(1662), - [anon_sym_return] = ACTIONS(1660), - [anon_sym_untyped] = ACTIONS(1660), - [anon_sym_break] = ACTIONS(1660), - [anon_sym_continue] = ACTIONS(1660), - [anon_sym_LBRACK] = ACTIONS(1662), - [anon_sym_this] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(1660), - [anon_sym_AT_COLON] = ACTIONS(1662), - [anon_sym_if] = ACTIONS(1660), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_TILDE] = ACTIONS(1662), - [anon_sym_BANG] = ACTIONS(1660), - [anon_sym_DASH] = ACTIONS(1660), - [anon_sym_PLUS_PLUS] = ACTIONS(1662), - [anon_sym_DASH_DASH] = ACTIONS(1662), - [anon_sym_PERCENT] = ACTIONS(1662), - [anon_sym_STAR] = ACTIONS(1662), - [anon_sym_SLASH] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1660), - [anon_sym_LT_LT] = ACTIONS(1662), - [anon_sym_GT_GT] = ACTIONS(1660), - [anon_sym_GT_GT_GT] = ACTIONS(1662), - [anon_sym_AMP] = ACTIONS(1660), - [anon_sym_PIPE] = ACTIONS(1660), - [anon_sym_CARET] = ACTIONS(1662), - [anon_sym_AMP_AMP] = ACTIONS(1662), - [anon_sym_PIPE_PIPE] = ACTIONS(1662), - [anon_sym_EQ_EQ] = ACTIONS(1662), - [anon_sym_BANG_EQ] = ACTIONS(1662), - [anon_sym_LT] = ACTIONS(1660), - [anon_sym_LT_EQ] = ACTIONS(1662), - [anon_sym_GT] = ACTIONS(1660), - [anon_sym_GT_EQ] = ACTIONS(1662), - [anon_sym_EQ_GT] = ACTIONS(1662), - [anon_sym_QMARK_QMARK] = ACTIONS(1662), - [anon_sym_EQ] = ACTIONS(1660), - [sym__rangeOperator] = ACTIONS(1662), - [anon_sym_null] = ACTIONS(1660), - [anon_sym_macro] = ACTIONS(1660), - [anon_sym_abstract] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1660), - [anon_sym_public] = ACTIONS(1660), - [anon_sym_private] = ACTIONS(1660), - [anon_sym_extern] = ACTIONS(1660), - [anon_sym_inline] = ACTIONS(1660), - [anon_sym_overload] = ACTIONS(1660), - [anon_sym_override] = ACTIONS(1660), - [anon_sym_final] = ACTIONS(1660), - [anon_sym_class] = ACTIONS(1660), - [anon_sym_interface] = ACTIONS(1660), - [anon_sym_typedef] = ACTIONS(1660), - [anon_sym_function] = ACTIONS(1660), - [anon_sym_var] = ACTIONS(1660), - [aux_sym_integer_token1] = ACTIONS(1660), - [aux_sym_integer_token2] = ACTIONS(1662), - [aux_sym_float_token1] = ACTIONS(1660), - [aux_sym_float_token2] = ACTIONS(1662), - [anon_sym_true] = ACTIONS(1660), - [anon_sym_false] = ACTIONS(1660), - [aux_sym_string_token1] = ACTIONS(1662), - [aux_sym_string_token3] = ACTIONS(1662), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3393), + [anon_sym_POUND] = ACTIONS(3395), + [anon_sym_package] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_cast] = ACTIONS(3393), + [anon_sym_DOLLARtype] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_untyped] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_this] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_AT_COLON] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_catch] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [anon_sym_PERCENT] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_LT_LT] = ACTIONS(3395), + [anon_sym_GT_GT] = ACTIONS(3393), + [anon_sym_GT_GT_GT] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_PIPE] = ACTIONS(3393), + [anon_sym_CARET] = ACTIONS(3395), + [anon_sym_AMP_AMP] = ACTIONS(3395), + [anon_sym_PIPE_PIPE] = ACTIONS(3395), + [anon_sym_EQ_EQ] = ACTIONS(3395), + [anon_sym_BANG_EQ] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3395), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3395), + [anon_sym_EQ_GT] = ACTIONS(3395), + [anon_sym_QMARK_QMARK] = ACTIONS(3395), + [anon_sym_EQ] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3395), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_macro] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym_inline] = ACTIONS(3393), + [anon_sym_overload] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_final] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [aux_sym_integer_token1] = ACTIONS(3393), + [aux_sym_integer_token2] = ACTIONS(3395), + [aux_sym_float_token1] = ACTIONS(3393), + [aux_sym_float_token2] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3393), + [anon_sym_false] = ACTIONS(3393), + [aux_sym_string_token1] = ACTIONS(3395), + [aux_sym_string_token3] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3395), [sym__closing_brace_unmarker] = ACTIONS(3), }, [612] = { - [ts_builtin_sym_end] = ACTIONS(1658), - [sym_identifier] = ACTIONS(1656), - [anon_sym_POUND] = ACTIONS(1658), - [anon_sym_package] = ACTIONS(1656), - [anon_sym_import] = ACTIONS(1656), - [anon_sym_using] = ACTIONS(1656), - [anon_sym_throw] = ACTIONS(1656), - [anon_sym_LPAREN] = ACTIONS(1658), - [anon_sym_switch] = ACTIONS(1656), - [anon_sym_LBRACE] = ACTIONS(1658), - [anon_sym_cast] = ACTIONS(1656), - [anon_sym_DOLLARtype] = ACTIONS(1658), - [anon_sym_return] = ACTIONS(1656), - [anon_sym_untyped] = ACTIONS(1656), - [anon_sym_break] = ACTIONS(1656), - [anon_sym_continue] = ACTIONS(1656), - [anon_sym_LBRACK] = ACTIONS(1658), - [anon_sym_this] = ACTIONS(1656), - [anon_sym_AT] = ACTIONS(1656), - [anon_sym_AT_COLON] = ACTIONS(1658), - [anon_sym_if] = ACTIONS(1656), - [anon_sym_new] = ACTIONS(1656), - [anon_sym_TILDE] = ACTIONS(1658), - [anon_sym_BANG] = ACTIONS(1656), - [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_PLUS_PLUS] = ACTIONS(1658), - [anon_sym_DASH_DASH] = ACTIONS(1658), - [anon_sym_PERCENT] = ACTIONS(1658), - [anon_sym_STAR] = ACTIONS(1658), - [anon_sym_SLASH] = ACTIONS(1656), - [anon_sym_PLUS] = ACTIONS(1656), - [anon_sym_LT_LT] = ACTIONS(1658), - [anon_sym_GT_GT] = ACTIONS(1656), - [anon_sym_GT_GT_GT] = ACTIONS(1658), - [anon_sym_AMP] = ACTIONS(1656), - [anon_sym_PIPE] = ACTIONS(1656), - [anon_sym_CARET] = ACTIONS(1658), - [anon_sym_AMP_AMP] = ACTIONS(1658), - [anon_sym_PIPE_PIPE] = ACTIONS(1658), - [anon_sym_EQ_EQ] = ACTIONS(1658), - [anon_sym_BANG_EQ] = ACTIONS(1658), - [anon_sym_LT] = ACTIONS(1656), - [anon_sym_LT_EQ] = ACTIONS(1658), - [anon_sym_GT] = ACTIONS(1656), - [anon_sym_GT_EQ] = ACTIONS(1658), - [anon_sym_EQ_GT] = ACTIONS(1658), - [anon_sym_QMARK_QMARK] = ACTIONS(1658), - [anon_sym_EQ] = ACTIONS(1656), - [sym__rangeOperator] = ACTIONS(1658), - [anon_sym_null] = ACTIONS(1656), - [anon_sym_macro] = ACTIONS(1656), - [anon_sym_abstract] = ACTIONS(1656), - [anon_sym_static] = ACTIONS(1656), - [anon_sym_public] = ACTIONS(1656), - [anon_sym_private] = ACTIONS(1656), - [anon_sym_extern] = ACTIONS(1656), - [anon_sym_inline] = ACTIONS(1656), - [anon_sym_overload] = ACTIONS(1656), - [anon_sym_override] = ACTIONS(1656), - [anon_sym_final] = ACTIONS(1656), - [anon_sym_class] = ACTIONS(1656), - [anon_sym_interface] = ACTIONS(1656), - [anon_sym_typedef] = ACTIONS(1656), - [anon_sym_function] = ACTIONS(1656), - [anon_sym_var] = ACTIONS(1656), - [aux_sym_integer_token1] = ACTIONS(1656), - [aux_sym_integer_token2] = ACTIONS(1658), - [aux_sym_float_token1] = ACTIONS(1656), - [aux_sym_float_token2] = ACTIONS(1658), - [anon_sym_true] = ACTIONS(1656), - [anon_sym_false] = ACTIONS(1656), - [aux_sym_string_token1] = ACTIONS(1658), - [aux_sym_string_token3] = ACTIONS(1658), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(3399), + [anon_sym_package] = ACTIONS(3397), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_STAR] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3397), + [anon_sym_throw] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3397), + [anon_sym_default] = ACTIONS(3397), + [anon_sym_cast] = ACTIONS(3397), + [anon_sym_DOLLARtype] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_untyped] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_this] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_AT_COLON] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_catch] = ACTIONS(3397), + [anon_sym_else] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_do] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_LT_LT] = ACTIONS(3399), + [anon_sym_GT_GT] = ACTIONS(3397), + [anon_sym_GT_GT_GT] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_PIPE] = ACTIONS(3397), + [anon_sym_CARET] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_LT_EQ] = ACTIONS(3399), + [anon_sym_GT] = ACTIONS(3397), + [anon_sym_GT_EQ] = ACTIONS(3399), + [anon_sym_EQ_GT] = ACTIONS(3399), + [anon_sym_QMARK_QMARK] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3397), + [anon_sym_macro] = ACTIONS(3397), + [anon_sym_abstract] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_private] = ACTIONS(3397), + [anon_sym_extern] = ACTIONS(3397), + [anon_sym_inline] = ACTIONS(3397), + [anon_sym_overload] = ACTIONS(3397), + [anon_sym_override] = ACTIONS(3397), + [anon_sym_final] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3397), + [anon_sym_var] = ACTIONS(3397), + [aux_sym_integer_token1] = ACTIONS(3397), + [aux_sym_integer_token2] = ACTIONS(3399), + [aux_sym_float_token1] = ACTIONS(3397), + [aux_sym_float_token2] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym_string_token1] = ACTIONS(3399), + [aux_sym_string_token3] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3399), [sym__closing_brace_unmarker] = ACTIONS(3), }, [613] = { - [ts_builtin_sym_end] = ACTIONS(1946), - [sym_identifier] = ACTIONS(1944), - [anon_sym_POUND] = ACTIONS(1946), - [anon_sym_package] = ACTIONS(1944), - [anon_sym_import] = ACTIONS(1944), - [anon_sym_using] = ACTIONS(1944), - [anon_sym_throw] = ACTIONS(1944), - [anon_sym_LPAREN] = ACTIONS(1946), - [anon_sym_switch] = ACTIONS(1944), - [anon_sym_LBRACE] = ACTIONS(1946), - [anon_sym_cast] = ACTIONS(1944), - [anon_sym_DOLLARtype] = ACTIONS(1946), - [anon_sym_return] = ACTIONS(1944), - [anon_sym_untyped] = ACTIONS(1944), - [anon_sym_break] = ACTIONS(1944), - [anon_sym_continue] = ACTIONS(1944), - [anon_sym_LBRACK] = ACTIONS(1946), - [anon_sym_this] = ACTIONS(1944), - [anon_sym_AT] = ACTIONS(1944), - [anon_sym_AT_COLON] = ACTIONS(1946), - [anon_sym_if] = ACTIONS(1944), - [anon_sym_new] = ACTIONS(1944), - [anon_sym_TILDE] = ACTIONS(1946), - [anon_sym_BANG] = ACTIONS(1944), - [anon_sym_DASH] = ACTIONS(1944), - [anon_sym_PLUS_PLUS] = ACTIONS(1946), - [anon_sym_DASH_DASH] = ACTIONS(1946), - [anon_sym_PERCENT] = ACTIONS(1946), - [anon_sym_STAR] = ACTIONS(1946), - [anon_sym_SLASH] = ACTIONS(1944), - [anon_sym_PLUS] = ACTIONS(1944), - [anon_sym_LT_LT] = ACTIONS(1946), - [anon_sym_GT_GT] = ACTIONS(1944), - [anon_sym_GT_GT_GT] = ACTIONS(1946), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_CARET] = ACTIONS(1946), - [anon_sym_AMP_AMP] = ACTIONS(1946), - [anon_sym_PIPE_PIPE] = ACTIONS(1946), - [anon_sym_EQ_EQ] = ACTIONS(1946), - [anon_sym_BANG_EQ] = ACTIONS(1946), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_LT_EQ] = ACTIONS(1946), - [anon_sym_GT] = ACTIONS(1944), - [anon_sym_GT_EQ] = ACTIONS(1946), - [anon_sym_EQ_GT] = ACTIONS(1946), - [anon_sym_QMARK_QMARK] = ACTIONS(1946), - [anon_sym_EQ] = ACTIONS(1944), - [sym__rangeOperator] = ACTIONS(1946), - [anon_sym_null] = ACTIONS(1944), - [anon_sym_macro] = ACTIONS(1944), - [anon_sym_abstract] = ACTIONS(1944), - [anon_sym_static] = ACTIONS(1944), - [anon_sym_public] = ACTIONS(1944), - [anon_sym_private] = ACTIONS(1944), - [anon_sym_extern] = ACTIONS(1944), - [anon_sym_inline] = ACTIONS(1944), - [anon_sym_overload] = ACTIONS(1944), - [anon_sym_override] = ACTIONS(1944), - [anon_sym_final] = ACTIONS(1944), - [anon_sym_class] = ACTIONS(1944), - [anon_sym_interface] = ACTIONS(1944), - [anon_sym_typedef] = ACTIONS(1944), - [anon_sym_function] = ACTIONS(1944), - [anon_sym_var] = ACTIONS(1944), - [aux_sym_integer_token1] = ACTIONS(1944), - [aux_sym_integer_token2] = ACTIONS(1946), - [aux_sym_float_token1] = ACTIONS(1944), - [aux_sym_float_token2] = ACTIONS(1946), - [anon_sym_true] = ACTIONS(1944), - [anon_sym_false] = ACTIONS(1944), - [aux_sym_string_token1] = ACTIONS(1946), - [aux_sym_string_token3] = ACTIONS(1946), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3401), + [anon_sym_POUND] = ACTIONS(3403), + [anon_sym_package] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3401), + [anon_sym_default] = ACTIONS(3401), + [anon_sym_cast] = ACTIONS(3401), + [anon_sym_DOLLARtype] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_untyped] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_this] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_AT_COLON] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_catch] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), + [anon_sym_PERCENT] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_GT_GT_GT] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_CARET] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_EQ_EQ] = ACTIONS(3403), + [anon_sym_BANG_EQ] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3401), + [anon_sym_GT_EQ] = ACTIONS(3403), + [anon_sym_EQ_GT] = ACTIONS(3403), + [anon_sym_QMARK_QMARK] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(3401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3403), + [anon_sym_null] = ACTIONS(3401), + [anon_sym_macro] = ACTIONS(3401), + [anon_sym_abstract] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_extern] = ACTIONS(3401), + [anon_sym_inline] = ACTIONS(3401), + [anon_sym_overload] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_final] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), + [anon_sym_typedef] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [aux_sym_integer_token1] = ACTIONS(3401), + [aux_sym_integer_token2] = ACTIONS(3403), + [aux_sym_float_token1] = ACTIONS(3401), + [aux_sym_float_token2] = ACTIONS(3403), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym_string_token1] = ACTIONS(3403), + [aux_sym_string_token3] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3403), [sym__closing_brace_unmarker] = ACTIONS(3), }, [614] = { - [ts_builtin_sym_end] = ACTIONS(2106), - [sym_identifier] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(2106), - [anon_sym_package] = ACTIONS(2104), - [anon_sym_import] = ACTIONS(2104), - [anon_sym_using] = ACTIONS(2104), - [anon_sym_throw] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2106), - [anon_sym_cast] = ACTIONS(2104), - [anon_sym_DOLLARtype] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2104), - [anon_sym_untyped] = ACTIONS(2104), - [anon_sym_break] = ACTIONS(2104), - [anon_sym_continue] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2106), - [anon_sym_this] = ACTIONS(2104), - [anon_sym_AT] = ACTIONS(2104), - [anon_sym_AT_COLON] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_new] = ACTIONS(2104), - [anon_sym_TILDE] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_DASH] = ACTIONS(2104), - [anon_sym_PLUS_PLUS] = ACTIONS(2106), - [anon_sym_DASH_DASH] = ACTIONS(2106), - [anon_sym_PERCENT] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2106), - [anon_sym_SLASH] = ACTIONS(2104), - [anon_sym_PLUS] = ACTIONS(2104), - [anon_sym_LT_LT] = ACTIONS(2106), - [anon_sym_GT_GT] = ACTIONS(2104), - [anon_sym_GT_GT_GT] = ACTIONS(2106), - [anon_sym_AMP] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_CARET] = ACTIONS(2106), - [anon_sym_AMP_AMP] = ACTIONS(2106), - [anon_sym_PIPE_PIPE] = ACTIONS(2106), - [anon_sym_EQ_EQ] = ACTIONS(2106), - [anon_sym_BANG_EQ] = ACTIONS(2106), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_LT_EQ] = ACTIONS(2106), - [anon_sym_GT] = ACTIONS(2104), - [anon_sym_GT_EQ] = ACTIONS(2106), - [anon_sym_EQ_GT] = ACTIONS(2106), - [anon_sym_QMARK_QMARK] = ACTIONS(2106), - [anon_sym_EQ] = ACTIONS(2104), - [sym__rangeOperator] = ACTIONS(2106), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_macro] = ACTIONS(2104), - [anon_sym_abstract] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2104), - [anon_sym_public] = ACTIONS(2104), - [anon_sym_private] = ACTIONS(2104), - [anon_sym_extern] = ACTIONS(2104), - [anon_sym_inline] = ACTIONS(2104), - [anon_sym_overload] = ACTIONS(2104), - [anon_sym_override] = ACTIONS(2104), - [anon_sym_final] = ACTIONS(2104), - [anon_sym_class] = ACTIONS(2104), - [anon_sym_interface] = ACTIONS(2104), - [anon_sym_typedef] = ACTIONS(2104), - [anon_sym_function] = ACTIONS(2104), - [anon_sym_var] = ACTIONS(2104), - [aux_sym_integer_token1] = ACTIONS(2104), - [aux_sym_integer_token2] = ACTIONS(2106), - [aux_sym_float_token1] = ACTIONS(2104), - [aux_sym_float_token2] = ACTIONS(2106), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [aux_sym_string_token1] = ACTIONS(2106), - [aux_sym_string_token3] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3405), + [anon_sym_POUND] = ACTIONS(3407), + [anon_sym_package] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_case] = ACTIONS(3405), + [anon_sym_default] = ACTIONS(3405), + [anon_sym_cast] = ACTIONS(3405), + [anon_sym_DOLLARtype] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_untyped] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_this] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_AT_COLON] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_catch] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [anon_sym_PERCENT] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_GT_GT_GT] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3405), + [anon_sym_CARET] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_EQ_EQ] = ACTIONS(3407), + [anon_sym_BANG_EQ] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3405), + [anon_sym_GT_EQ] = ACTIONS(3407), + [anon_sym_EQ_GT] = ACTIONS(3407), + [anon_sym_QMARK_QMARK] = ACTIONS(3407), + [anon_sym_EQ] = ACTIONS(3405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3405), + [anon_sym_macro] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_extern] = ACTIONS(3405), + [anon_sym_inline] = ACTIONS(3405), + [anon_sym_overload] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_final] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [aux_sym_integer_token1] = ACTIONS(3405), + [aux_sym_integer_token2] = ACTIONS(3407), + [aux_sym_float_token1] = ACTIONS(3405), + [aux_sym_float_token2] = ACTIONS(3407), + [anon_sym_true] = ACTIONS(3405), + [anon_sym_false] = ACTIONS(3405), + [aux_sym_string_token1] = ACTIONS(3407), + [aux_sym_string_token3] = ACTIONS(3407), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3407), [sym__closing_brace_unmarker] = ACTIONS(3), }, [615] = { - [ts_builtin_sym_end] = ACTIONS(1646), - [sym_identifier] = ACTIONS(1644), - [anon_sym_POUND] = ACTIONS(1646), - [anon_sym_package] = ACTIONS(1644), - [anon_sym_import] = ACTIONS(1644), - [anon_sym_using] = ACTIONS(1644), - [anon_sym_throw] = ACTIONS(1644), - [anon_sym_LPAREN] = ACTIONS(1646), - [anon_sym_switch] = ACTIONS(1644), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_cast] = ACTIONS(1644), - [anon_sym_DOLLARtype] = ACTIONS(1646), - [anon_sym_return] = ACTIONS(1644), - [anon_sym_untyped] = ACTIONS(1644), - [anon_sym_break] = ACTIONS(1644), - [anon_sym_continue] = ACTIONS(1644), - [anon_sym_LBRACK] = ACTIONS(1646), - [anon_sym_this] = ACTIONS(1644), - [anon_sym_AT] = ACTIONS(1644), - [anon_sym_AT_COLON] = ACTIONS(1646), - [anon_sym_if] = ACTIONS(1644), - [anon_sym_new] = ACTIONS(1644), - [anon_sym_TILDE] = ACTIONS(1646), - [anon_sym_BANG] = ACTIONS(1644), - [anon_sym_DASH] = ACTIONS(1644), - [anon_sym_PLUS_PLUS] = ACTIONS(1646), - [anon_sym_DASH_DASH] = ACTIONS(1646), - [anon_sym_PERCENT] = ACTIONS(1646), - [anon_sym_STAR] = ACTIONS(1646), - [anon_sym_SLASH] = ACTIONS(1644), - [anon_sym_PLUS] = ACTIONS(1644), - [anon_sym_LT_LT] = ACTIONS(1646), - [anon_sym_GT_GT] = ACTIONS(1644), - [anon_sym_GT_GT_GT] = ACTIONS(1646), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_PIPE] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1646), - [anon_sym_AMP_AMP] = ACTIONS(1646), - [anon_sym_PIPE_PIPE] = ACTIONS(1646), - [anon_sym_EQ_EQ] = ACTIONS(1646), - [anon_sym_BANG_EQ] = ACTIONS(1646), - [anon_sym_LT] = ACTIONS(1644), - [anon_sym_LT_EQ] = ACTIONS(1646), - [anon_sym_GT] = ACTIONS(1644), - [anon_sym_GT_EQ] = ACTIONS(1646), - [anon_sym_EQ_GT] = ACTIONS(1646), - [anon_sym_QMARK_QMARK] = ACTIONS(1646), - [anon_sym_EQ] = ACTIONS(1644), - [sym__rangeOperator] = ACTIONS(1646), - [anon_sym_null] = ACTIONS(1644), - [anon_sym_macro] = ACTIONS(1644), - [anon_sym_abstract] = ACTIONS(1644), - [anon_sym_static] = ACTIONS(1644), - [anon_sym_public] = ACTIONS(1644), - [anon_sym_private] = ACTIONS(1644), - [anon_sym_extern] = ACTIONS(1644), - [anon_sym_inline] = ACTIONS(1644), - [anon_sym_overload] = ACTIONS(1644), - [anon_sym_override] = ACTIONS(1644), - [anon_sym_final] = ACTIONS(1644), - [anon_sym_class] = ACTIONS(1644), - [anon_sym_interface] = ACTIONS(1644), - [anon_sym_typedef] = ACTIONS(1644), - [anon_sym_function] = ACTIONS(1644), - [anon_sym_var] = ACTIONS(1644), - [aux_sym_integer_token1] = ACTIONS(1644), - [aux_sym_integer_token2] = ACTIONS(1646), - [aux_sym_float_token1] = ACTIONS(1644), - [aux_sym_float_token2] = ACTIONS(1646), - [anon_sym_true] = ACTIONS(1644), - [anon_sym_false] = ACTIONS(1644), - [aux_sym_string_token1] = ACTIONS(1646), - [aux_sym_string_token3] = ACTIONS(1646), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3409), + [anon_sym_POUND] = ACTIONS(3411), + [anon_sym_package] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_case] = ACTIONS(3409), + [anon_sym_default] = ACTIONS(3409), + [anon_sym_cast] = ACTIONS(3409), + [anon_sym_DOLLARtype] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_untyped] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_this] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_AT_COLON] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_catch] = ACTIONS(3409), + [anon_sym_else] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PERCENT] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_LT_LT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3409), + [anon_sym_GT_GT_GT] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_PIPE_PIPE] = ACTIONS(3411), + [anon_sym_EQ_EQ] = ACTIONS(3411), + [anon_sym_BANG_EQ] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_LT_EQ] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3409), + [anon_sym_GT_EQ] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3411), + [anon_sym_QMARK_QMARK] = ACTIONS(3411), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3411), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_macro] = ACTIONS(3409), + [anon_sym_abstract] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_private] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_overload] = ACTIONS(3409), + [anon_sym_override] = ACTIONS(3409), + [anon_sym_final] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_function] = ACTIONS(3409), + [anon_sym_var] = ACTIONS(3409), + [aux_sym_integer_token1] = ACTIONS(3409), + [aux_sym_integer_token2] = ACTIONS(3411), + [aux_sym_float_token1] = ACTIONS(3409), + [aux_sym_float_token2] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3409), + [anon_sym_false] = ACTIONS(3409), + [aux_sym_string_token1] = ACTIONS(3411), + [aux_sym_string_token3] = ACTIONS(3411), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3411), [sym__closing_brace_unmarker] = ACTIONS(3), }, [616] = { - [ts_builtin_sym_end] = ACTIONS(1742), - [sym_identifier] = ACTIONS(1740), - [anon_sym_POUND] = ACTIONS(1742), - [anon_sym_package] = ACTIONS(1740), - [anon_sym_import] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1740), - [anon_sym_throw] = ACTIONS(1740), - [anon_sym_LPAREN] = ACTIONS(1742), - [anon_sym_switch] = ACTIONS(1740), - [anon_sym_LBRACE] = ACTIONS(1742), - [anon_sym_cast] = ACTIONS(1740), - [anon_sym_DOLLARtype] = ACTIONS(1742), - [anon_sym_return] = ACTIONS(1740), - [anon_sym_untyped] = ACTIONS(1740), - [anon_sym_break] = ACTIONS(1740), - [anon_sym_continue] = ACTIONS(1740), - [anon_sym_LBRACK] = ACTIONS(1742), - [anon_sym_this] = ACTIONS(1740), - [anon_sym_AT] = ACTIONS(1740), - [anon_sym_AT_COLON] = ACTIONS(1742), - [anon_sym_if] = ACTIONS(1740), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_TILDE] = ACTIONS(1742), - [anon_sym_BANG] = ACTIONS(1740), - [anon_sym_DASH] = ACTIONS(1740), - [anon_sym_PLUS_PLUS] = ACTIONS(1742), - [anon_sym_DASH_DASH] = ACTIONS(1742), - [anon_sym_PERCENT] = ACTIONS(1742), - [anon_sym_STAR] = ACTIONS(1742), - [anon_sym_SLASH] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1740), - [anon_sym_LT_LT] = ACTIONS(1742), - [anon_sym_GT_GT] = ACTIONS(1740), - [anon_sym_GT_GT_GT] = ACTIONS(1742), - [anon_sym_AMP] = ACTIONS(1740), - [anon_sym_PIPE] = ACTIONS(1740), - [anon_sym_CARET] = ACTIONS(1742), - [anon_sym_AMP_AMP] = ACTIONS(1742), - [anon_sym_PIPE_PIPE] = ACTIONS(1742), - [anon_sym_EQ_EQ] = ACTIONS(1742), - [anon_sym_BANG_EQ] = ACTIONS(1742), - [anon_sym_LT] = ACTIONS(1740), - [anon_sym_LT_EQ] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1740), - [anon_sym_GT_EQ] = ACTIONS(1742), - [anon_sym_EQ_GT] = ACTIONS(1742), - [anon_sym_QMARK_QMARK] = ACTIONS(1742), - [anon_sym_EQ] = ACTIONS(1740), - [sym__rangeOperator] = ACTIONS(1742), - [anon_sym_null] = ACTIONS(1740), - [anon_sym_macro] = ACTIONS(1740), - [anon_sym_abstract] = ACTIONS(1740), - [anon_sym_static] = ACTIONS(1740), - [anon_sym_public] = ACTIONS(1740), - [anon_sym_private] = ACTIONS(1740), - [anon_sym_extern] = ACTIONS(1740), - [anon_sym_inline] = ACTIONS(1740), - [anon_sym_overload] = ACTIONS(1740), - [anon_sym_override] = ACTIONS(1740), - [anon_sym_final] = ACTIONS(1740), - [anon_sym_class] = ACTIONS(1740), - [anon_sym_interface] = ACTIONS(1740), - [anon_sym_typedef] = ACTIONS(1740), - [anon_sym_function] = ACTIONS(1740), - [anon_sym_var] = ACTIONS(1740), - [aux_sym_integer_token1] = ACTIONS(1740), - [aux_sym_integer_token2] = ACTIONS(1742), - [aux_sym_float_token1] = ACTIONS(1740), - [aux_sym_float_token2] = ACTIONS(1742), - [anon_sym_true] = ACTIONS(1740), - [anon_sym_false] = ACTIONS(1740), - [aux_sym_string_token1] = ACTIONS(1742), - [aux_sym_string_token3] = ACTIONS(1742), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3413), + [anon_sym_POUND] = ACTIONS(3415), + [anon_sym_package] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3413), + [anon_sym_default] = ACTIONS(3413), + [anon_sym_cast] = ACTIONS(3413), + [anon_sym_DOLLARtype] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_untyped] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_this] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_AT_COLON] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_catch] = ACTIONS(3413), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_GT_GT_GT] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3413), + [anon_sym_CARET] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3413), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_EQ_GT] = ACTIONS(3415), + [anon_sym_QMARK_QMARK] = ACTIONS(3415), + [anon_sym_EQ] = ACTIONS(3413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3413), + [anon_sym_macro] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_extern] = ACTIONS(3413), + [anon_sym_inline] = ACTIONS(3413), + [anon_sym_overload] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_final] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), + [anon_sym_typedef] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [aux_sym_integer_token1] = ACTIONS(3413), + [aux_sym_integer_token2] = ACTIONS(3415), + [aux_sym_float_token1] = ACTIONS(3413), + [aux_sym_float_token2] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym_string_token1] = ACTIONS(3415), + [aux_sym_string_token3] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3415), [sym__closing_brace_unmarker] = ACTIONS(3), }, [617] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1980), - [anon_sym_POUND] = ACTIONS(1982), - [anon_sym_package] = ACTIONS(1980), - [anon_sym_import] = ACTIONS(1980), - [anon_sym_using] = ACTIONS(1980), - [anon_sym_throw] = ACTIONS(1980), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_switch] = ACTIONS(1980), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_cast] = ACTIONS(1980), - [anon_sym_DOLLARtype] = ACTIONS(1982), - [anon_sym_return] = ACTIONS(1980), - [anon_sym_untyped] = ACTIONS(1980), - [anon_sym_break] = ACTIONS(1980), - [anon_sym_continue] = ACTIONS(1980), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_this] = ACTIONS(1980), - [anon_sym_AT] = ACTIONS(1980), - [anon_sym_AT_COLON] = ACTIONS(1982), - [anon_sym_if] = ACTIONS(1980), - [anon_sym_new] = ACTIONS(1980), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_BANG] = ACTIONS(1980), - [anon_sym_DASH] = ACTIONS(1980), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_STAR] = ACTIONS(1982), - [anon_sym_SLASH] = ACTIONS(1980), - [anon_sym_PLUS] = ACTIONS(1980), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1980), - [anon_sym_GT_GT_GT] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_CARET] = ACTIONS(1982), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1982), - [anon_sym_BANG_EQ] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_LT_EQ] = ACTIONS(1982), - [anon_sym_GT] = ACTIONS(1980), - [anon_sym_GT_EQ] = ACTIONS(1982), - [anon_sym_EQ_GT] = ACTIONS(1982), - [anon_sym_QMARK_QMARK] = ACTIONS(1982), - [anon_sym_EQ] = ACTIONS(1980), - [sym__rangeOperator] = ACTIONS(1982), - [anon_sym_null] = ACTIONS(1980), - [anon_sym_macro] = ACTIONS(1980), - [anon_sym_abstract] = ACTIONS(1980), - [anon_sym_static] = ACTIONS(1980), - [anon_sym_public] = ACTIONS(1980), - [anon_sym_private] = ACTIONS(1980), - [anon_sym_extern] = ACTIONS(1980), - [anon_sym_inline] = ACTIONS(1980), - [anon_sym_overload] = ACTIONS(1980), - [anon_sym_override] = ACTIONS(1980), - [anon_sym_final] = ACTIONS(1980), - [anon_sym_class] = ACTIONS(1980), - [anon_sym_interface] = ACTIONS(1980), - [anon_sym_typedef] = ACTIONS(1980), - [anon_sym_function] = ACTIONS(1980), - [anon_sym_var] = ACTIONS(1980), - [aux_sym_integer_token1] = ACTIONS(1980), - [aux_sym_integer_token2] = ACTIONS(1982), - [aux_sym_float_token1] = ACTIONS(1980), - [aux_sym_float_token2] = ACTIONS(1982), - [anon_sym_true] = ACTIONS(1980), - [anon_sym_false] = ACTIONS(1980), - [aux_sym_string_token1] = ACTIONS(1982), - [aux_sym_string_token3] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3417), + [anon_sym_POUND] = ACTIONS(3419), + [anon_sym_package] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3417), + [anon_sym_default] = ACTIONS(3417), + [anon_sym_cast] = ACTIONS(3417), + [anon_sym_DOLLARtype] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_untyped] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_this] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_AT_COLON] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_catch] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_LT_LT] = ACTIONS(3419), + [anon_sym_GT_GT] = ACTIONS(3417), + [anon_sym_GT_GT_GT] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_PIPE] = ACTIONS(3417), + [anon_sym_CARET] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_QMARK_QMARK] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_macro] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_extern] = ACTIONS(3417), + [anon_sym_inline] = ACTIONS(3417), + [anon_sym_overload] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_final] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [aux_sym_integer_token1] = ACTIONS(3417), + [aux_sym_integer_token2] = ACTIONS(3419), + [aux_sym_float_token1] = ACTIONS(3417), + [aux_sym_float_token2] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym_string_token1] = ACTIONS(3419), + [aux_sym_string_token3] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3419), [sym__closing_brace_unmarker] = ACTIONS(3), }, [618] = { - [ts_builtin_sym_end] = ACTIONS(2318), - [sym_identifier] = ACTIONS(2316), - [anon_sym_POUND] = ACTIONS(2318), - [anon_sym_package] = ACTIONS(2316), - [anon_sym_import] = ACTIONS(2316), - [anon_sym_using] = ACTIONS(2316), - [anon_sym_throw] = ACTIONS(2316), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_switch] = ACTIONS(2316), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_cast] = ACTIONS(2316), - [anon_sym_DOLLARtype] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2316), - [anon_sym_untyped] = ACTIONS(2316), - [anon_sym_break] = ACTIONS(2316), - [anon_sym_continue] = ACTIONS(2316), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_this] = ACTIONS(2316), - [anon_sym_AT] = ACTIONS(2316), - [anon_sym_AT_COLON] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2316), - [anon_sym_new] = ACTIONS(2316), - [anon_sym_TILDE] = ACTIONS(2318), - [anon_sym_BANG] = ACTIONS(2316), - [anon_sym_DASH] = ACTIONS(2316), - [anon_sym_PLUS_PLUS] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2318), - [anon_sym_PERCENT] = ACTIONS(2318), - [anon_sym_STAR] = ACTIONS(2318), - [anon_sym_SLASH] = ACTIONS(2316), - [anon_sym_PLUS] = ACTIONS(2316), - [anon_sym_LT_LT] = ACTIONS(2318), - [anon_sym_GT_GT] = ACTIONS(2316), - [anon_sym_GT_GT_GT] = ACTIONS(2318), - [anon_sym_AMP] = ACTIONS(2316), - [anon_sym_PIPE] = ACTIONS(2316), - [anon_sym_CARET] = ACTIONS(2318), - [anon_sym_AMP_AMP] = ACTIONS(2318), - [anon_sym_PIPE_PIPE] = ACTIONS(2318), - [anon_sym_EQ_EQ] = ACTIONS(2318), - [anon_sym_BANG_EQ] = ACTIONS(2318), - [anon_sym_LT] = ACTIONS(2316), - [anon_sym_LT_EQ] = ACTIONS(2318), - [anon_sym_GT] = ACTIONS(2316), - [anon_sym_GT_EQ] = ACTIONS(2318), - [anon_sym_EQ_GT] = ACTIONS(2318), - [anon_sym_QMARK_QMARK] = ACTIONS(2318), - [anon_sym_EQ] = ACTIONS(2316), - [sym__rangeOperator] = ACTIONS(2318), - [anon_sym_null] = ACTIONS(2316), - [anon_sym_macro] = ACTIONS(2316), - [anon_sym_abstract] = ACTIONS(2316), - [anon_sym_static] = ACTIONS(2316), - [anon_sym_public] = ACTIONS(2316), - [anon_sym_private] = ACTIONS(2316), - [anon_sym_extern] = ACTIONS(2316), - [anon_sym_inline] = ACTIONS(2316), - [anon_sym_overload] = ACTIONS(2316), - [anon_sym_override] = ACTIONS(2316), - [anon_sym_final] = ACTIONS(2316), - [anon_sym_class] = ACTIONS(2316), - [anon_sym_interface] = ACTIONS(2316), - [anon_sym_typedef] = ACTIONS(2316), - [anon_sym_function] = ACTIONS(2316), - [anon_sym_var] = ACTIONS(2316), - [aux_sym_integer_token1] = ACTIONS(2316), - [aux_sym_integer_token2] = ACTIONS(2318), - [aux_sym_float_token1] = ACTIONS(2316), - [aux_sym_float_token2] = ACTIONS(2318), - [anon_sym_true] = ACTIONS(2316), - [anon_sym_false] = ACTIONS(2316), - [aux_sym_string_token1] = ACTIONS(2318), - [aux_sym_string_token3] = ACTIONS(2318), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3421), + [anon_sym_POUND] = ACTIONS(3423), + [anon_sym_package] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_case] = ACTIONS(3421), + [anon_sym_default] = ACTIONS(3421), + [anon_sym_cast] = ACTIONS(3421), + [anon_sym_DOLLARtype] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_untyped] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_this] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_AT_COLON] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_catch] = ACTIONS(3421), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PERCENT] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_GT_GT_GT] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_CARET] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3421), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_EQ_GT] = ACTIONS(3423), + [anon_sym_QMARK_QMARK] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3423), + [anon_sym_null] = ACTIONS(3421), + [anon_sym_macro] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_extern] = ACTIONS(3421), + [anon_sym_inline] = ACTIONS(3421), + [anon_sym_overload] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_final] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [aux_sym_integer_token1] = ACTIONS(3421), + [aux_sym_integer_token2] = ACTIONS(3423), + [aux_sym_float_token1] = ACTIONS(3421), + [aux_sym_float_token2] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym_string_token1] = ACTIONS(3423), + [aux_sym_string_token3] = ACTIONS(3423), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3423), [sym__closing_brace_unmarker] = ACTIONS(3), }, [619] = { - [ts_builtin_sym_end] = ACTIONS(1702), - [sym_identifier] = ACTIONS(1700), - [anon_sym_POUND] = ACTIONS(1702), - [anon_sym_package] = ACTIONS(1700), - [anon_sym_import] = ACTIONS(1700), - [anon_sym_using] = ACTIONS(1700), - [anon_sym_throw] = ACTIONS(1700), - [anon_sym_LPAREN] = ACTIONS(1702), - [anon_sym_switch] = ACTIONS(1700), - [anon_sym_LBRACE] = ACTIONS(1702), - [anon_sym_cast] = ACTIONS(1700), - [anon_sym_DOLLARtype] = ACTIONS(1702), - [anon_sym_return] = ACTIONS(1700), - [anon_sym_untyped] = ACTIONS(1700), - [anon_sym_break] = ACTIONS(1700), - [anon_sym_continue] = ACTIONS(1700), - [anon_sym_LBRACK] = ACTIONS(1702), - [anon_sym_this] = ACTIONS(1700), - [anon_sym_AT] = ACTIONS(1700), - [anon_sym_AT_COLON] = ACTIONS(1702), - [anon_sym_if] = ACTIONS(1700), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_TILDE] = ACTIONS(1702), - [anon_sym_BANG] = ACTIONS(1700), - [anon_sym_DASH] = ACTIONS(1700), - [anon_sym_PLUS_PLUS] = ACTIONS(1702), - [anon_sym_DASH_DASH] = ACTIONS(1702), - [anon_sym_PERCENT] = ACTIONS(1702), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_SLASH] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1700), - [anon_sym_LT_LT] = ACTIONS(1702), - [anon_sym_GT_GT] = ACTIONS(1700), - [anon_sym_GT_GT_GT] = ACTIONS(1702), - [anon_sym_AMP] = ACTIONS(1700), - [anon_sym_PIPE] = ACTIONS(1700), - [anon_sym_CARET] = ACTIONS(1702), - [anon_sym_AMP_AMP] = ACTIONS(1702), - [anon_sym_PIPE_PIPE] = ACTIONS(1702), - [anon_sym_EQ_EQ] = ACTIONS(1702), - [anon_sym_BANG_EQ] = ACTIONS(1702), - [anon_sym_LT] = ACTIONS(1700), - [anon_sym_LT_EQ] = ACTIONS(1702), - [anon_sym_GT] = ACTIONS(1700), - [anon_sym_GT_EQ] = ACTIONS(1702), - [anon_sym_EQ_GT] = ACTIONS(1702), - [anon_sym_QMARK_QMARK] = ACTIONS(1702), - [anon_sym_EQ] = ACTIONS(1700), - [sym__rangeOperator] = ACTIONS(1702), - [anon_sym_null] = ACTIONS(1700), - [anon_sym_macro] = ACTIONS(1700), - [anon_sym_abstract] = ACTIONS(1700), - [anon_sym_static] = ACTIONS(1700), - [anon_sym_public] = ACTIONS(1700), - [anon_sym_private] = ACTIONS(1700), - [anon_sym_extern] = ACTIONS(1700), - [anon_sym_inline] = ACTIONS(1700), - [anon_sym_overload] = ACTIONS(1700), - [anon_sym_override] = ACTIONS(1700), - [anon_sym_final] = ACTIONS(1700), - [anon_sym_class] = ACTIONS(1700), - [anon_sym_interface] = ACTIONS(1700), - [anon_sym_typedef] = ACTIONS(1700), - [anon_sym_function] = ACTIONS(1700), - [anon_sym_var] = ACTIONS(1700), - [aux_sym_integer_token1] = ACTIONS(1700), - [aux_sym_integer_token2] = ACTIONS(1702), - [aux_sym_float_token1] = ACTIONS(1700), - [aux_sym_float_token2] = ACTIONS(1702), - [anon_sym_true] = ACTIONS(1700), - [anon_sym_false] = ACTIONS(1700), - [aux_sym_string_token1] = ACTIONS(1702), - [aux_sym_string_token3] = ACTIONS(1702), - [sym_comment] = ACTIONS(3), + [sym_identifier] = ACTIONS(3425), + [anon_sym_POUND] = ACTIONS(3428), + [anon_sym_package] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_cast] = ACTIONS(3425), + [anon_sym_DOLLARtype] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_untyped] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_this] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_AT_COLON] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_catch] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3425), + [anon_sym_GT_GT_GT] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_PIPE] = ACTIONS(3425), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3425), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_EQ_GT] = ACTIONS(3428), + [anon_sym_QMARK_QMARK] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3428), + [anon_sym_null] = ACTIONS(3425), + [anon_sym_macro] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_overload] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_final] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [aux_sym_integer_token1] = ACTIONS(3425), + [aux_sym_integer_token2] = ACTIONS(3428), + [aux_sym_float_token1] = ACTIONS(3425), + [aux_sym_float_token2] = ACTIONS(3428), + [anon_sym_true] = ACTIONS(3425), + [anon_sym_false] = ACTIONS(3425), + [aux_sym_string_token1] = ACTIONS(3428), + [aux_sym_string_token3] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3428), [sym__closing_brace_unmarker] = ACTIONS(3), }, [620] = { - [ts_builtin_sym_end] = ACTIONS(1674), - [sym_identifier] = ACTIONS(1672), - [anon_sym_POUND] = ACTIONS(1674), - [anon_sym_package] = ACTIONS(1672), - [anon_sym_import] = ACTIONS(1672), - [anon_sym_using] = ACTIONS(1672), - [anon_sym_throw] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_switch] = ACTIONS(1672), - [anon_sym_LBRACE] = ACTIONS(1674), - [anon_sym_cast] = ACTIONS(1672), - [anon_sym_DOLLARtype] = ACTIONS(1674), - [anon_sym_return] = ACTIONS(1672), - [anon_sym_untyped] = ACTIONS(1672), - [anon_sym_break] = ACTIONS(1672), - [anon_sym_continue] = ACTIONS(1672), - [anon_sym_LBRACK] = ACTIONS(1674), - [anon_sym_this] = ACTIONS(1672), - [anon_sym_AT] = ACTIONS(1672), - [anon_sym_AT_COLON] = ACTIONS(1674), - [anon_sym_if] = ACTIONS(1672), - [anon_sym_new] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(1674), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PLUS_PLUS] = ACTIONS(1674), - [anon_sym_DASH_DASH] = ACTIONS(1674), - [anon_sym_PERCENT] = ACTIONS(1674), - [anon_sym_STAR] = ACTIONS(1674), - [anon_sym_SLASH] = ACTIONS(1672), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_LT_LT] = ACTIONS(1674), - [anon_sym_GT_GT] = ACTIONS(1672), - [anon_sym_GT_GT_GT] = ACTIONS(1674), - [anon_sym_AMP] = ACTIONS(1672), - [anon_sym_PIPE] = ACTIONS(1672), - [anon_sym_CARET] = ACTIONS(1674), - [anon_sym_AMP_AMP] = ACTIONS(1674), - [anon_sym_PIPE_PIPE] = ACTIONS(1674), - [anon_sym_EQ_EQ] = ACTIONS(1674), - [anon_sym_BANG_EQ] = ACTIONS(1674), - [anon_sym_LT] = ACTIONS(1672), - [anon_sym_LT_EQ] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1672), - [anon_sym_GT_EQ] = ACTIONS(1674), - [anon_sym_EQ_GT] = ACTIONS(1674), - [anon_sym_QMARK_QMARK] = ACTIONS(1674), - [anon_sym_EQ] = ACTIONS(1672), - [sym__rangeOperator] = ACTIONS(1674), - [anon_sym_null] = ACTIONS(1672), - [anon_sym_macro] = ACTIONS(1672), - [anon_sym_abstract] = ACTIONS(1672), - [anon_sym_static] = ACTIONS(1672), - [anon_sym_public] = ACTIONS(1672), - [anon_sym_private] = ACTIONS(1672), - [anon_sym_extern] = ACTIONS(1672), - [anon_sym_inline] = ACTIONS(1672), - [anon_sym_overload] = ACTIONS(1672), - [anon_sym_override] = ACTIONS(1672), - [anon_sym_final] = ACTIONS(1672), - [anon_sym_class] = ACTIONS(1672), - [anon_sym_interface] = ACTIONS(1672), - [anon_sym_typedef] = ACTIONS(1672), - [anon_sym_function] = ACTIONS(1672), - [anon_sym_var] = ACTIONS(1672), - [aux_sym_integer_token1] = ACTIONS(1672), - [aux_sym_integer_token2] = ACTIONS(1674), - [aux_sym_float_token1] = ACTIONS(1672), - [aux_sym_float_token2] = ACTIONS(1674), - [anon_sym_true] = ACTIONS(1672), - [anon_sym_false] = ACTIONS(1672), - [aux_sym_string_token1] = ACTIONS(1674), - [aux_sym_string_token3] = ACTIONS(1674), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_package] = ACTIONS(2661), + [anon_sym_import] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_cast] = ACTIONS(2661), + [anon_sym_DOLLARtype] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_untyped] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_this] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_AT_COLON] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_catch] = ACTIONS(2661), + [anon_sym_else] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PERCENT] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2663), + [anon_sym_GT_GT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_PIPE_PIPE] = ACTIONS(2663), + [anon_sym_EQ_EQ] = ACTIONS(2663), + [anon_sym_BANG_EQ] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2663), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2663), + [anon_sym_EQ_GT] = ACTIONS(2663), + [anon_sym_QMARK_QMARK] = ACTIONS(2663), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2661), + [anon_sym_macro] = ACTIONS(2661), + [anon_sym_abstract] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_public] = ACTIONS(2661), + [anon_sym_private] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_overload] = ACTIONS(2661), + [anon_sym_override] = ACTIONS(2661), + [anon_sym_final] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_interface] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_function] = ACTIONS(2661), + [anon_sym_var] = ACTIONS(2661), + [aux_sym_integer_token1] = ACTIONS(2661), + [aux_sym_integer_token2] = ACTIONS(2663), + [aux_sym_float_token1] = ACTIONS(2661), + [aux_sym_float_token2] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [aux_sym_string_token1] = ACTIONS(2663), + [aux_sym_string_token3] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3431), [sym__closing_brace_unmarker] = ACTIONS(3), }, [621] = { - [ts_builtin_sym_end] = ACTIONS(1994), - [sym_identifier] = ACTIONS(1992), - [anon_sym_POUND] = ACTIONS(1994), - [anon_sym_package] = ACTIONS(1992), - [anon_sym_import] = ACTIONS(1992), - [anon_sym_using] = ACTIONS(1992), - [anon_sym_throw] = ACTIONS(1992), - [anon_sym_LPAREN] = ACTIONS(1994), - [anon_sym_switch] = ACTIONS(1992), - [anon_sym_LBRACE] = ACTIONS(1994), - [anon_sym_cast] = ACTIONS(1992), - [anon_sym_DOLLARtype] = ACTIONS(1994), - [anon_sym_return] = ACTIONS(1992), - [anon_sym_untyped] = ACTIONS(1992), - [anon_sym_break] = ACTIONS(1992), - [anon_sym_continue] = ACTIONS(1992), - [anon_sym_LBRACK] = ACTIONS(1994), - [anon_sym_this] = ACTIONS(1992), - [anon_sym_AT] = ACTIONS(1992), - [anon_sym_AT_COLON] = ACTIONS(1994), - [anon_sym_if] = ACTIONS(1992), - [anon_sym_new] = ACTIONS(1992), - [anon_sym_TILDE] = ACTIONS(1994), - [anon_sym_BANG] = ACTIONS(1992), - [anon_sym_DASH] = ACTIONS(1992), - [anon_sym_PLUS_PLUS] = ACTIONS(1994), - [anon_sym_DASH_DASH] = ACTIONS(1994), - [anon_sym_PERCENT] = ACTIONS(1994), - [anon_sym_STAR] = ACTIONS(1994), - [anon_sym_SLASH] = ACTIONS(1992), - [anon_sym_PLUS] = ACTIONS(1992), - [anon_sym_LT_LT] = ACTIONS(1994), - [anon_sym_GT_GT] = ACTIONS(1992), - [anon_sym_GT_GT_GT] = ACTIONS(1994), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_CARET] = ACTIONS(1994), - [anon_sym_AMP_AMP] = ACTIONS(1994), - [anon_sym_PIPE_PIPE] = ACTIONS(1994), - [anon_sym_EQ_EQ] = ACTIONS(1994), - [anon_sym_BANG_EQ] = ACTIONS(1994), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_LT_EQ] = ACTIONS(1994), - [anon_sym_GT] = ACTIONS(1992), - [anon_sym_GT_EQ] = ACTIONS(1994), - [anon_sym_EQ_GT] = ACTIONS(1994), - [anon_sym_QMARK_QMARK] = ACTIONS(1994), - [anon_sym_EQ] = ACTIONS(1992), - [sym__rangeOperator] = ACTIONS(1994), - [anon_sym_null] = ACTIONS(1992), - [anon_sym_macro] = ACTIONS(1992), - [anon_sym_abstract] = ACTIONS(1992), - [anon_sym_static] = ACTIONS(1992), - [anon_sym_public] = ACTIONS(1992), - [anon_sym_private] = ACTIONS(1992), - [anon_sym_extern] = ACTIONS(1992), - [anon_sym_inline] = ACTIONS(1992), - [anon_sym_overload] = ACTIONS(1992), - [anon_sym_override] = ACTIONS(1992), - [anon_sym_final] = ACTIONS(1992), - [anon_sym_class] = ACTIONS(1992), - [anon_sym_interface] = ACTIONS(1992), - [anon_sym_typedef] = ACTIONS(1992), - [anon_sym_function] = ACTIONS(1992), - [anon_sym_var] = ACTIONS(1992), - [aux_sym_integer_token1] = ACTIONS(1992), - [aux_sym_integer_token2] = ACTIONS(1994), - [aux_sym_float_token1] = ACTIONS(1992), - [aux_sym_float_token2] = ACTIONS(1994), - [anon_sym_true] = ACTIONS(1992), - [anon_sym_false] = ACTIONS(1992), - [aux_sym_string_token1] = ACTIONS(1994), - [aux_sym_string_token3] = ACTIONS(1994), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2681), [sym__closing_brace_unmarker] = ACTIONS(3), }, [622] = { - [ts_builtin_sym_end] = ACTIONS(2002), - [sym_identifier] = ACTIONS(2000), - [anon_sym_POUND] = ACTIONS(2002), - [anon_sym_package] = ACTIONS(2000), - [anon_sym_import] = ACTIONS(2000), - [anon_sym_using] = ACTIONS(2000), - [anon_sym_throw] = ACTIONS(2000), - [anon_sym_LPAREN] = ACTIONS(2002), - [anon_sym_switch] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_cast] = ACTIONS(2000), - [anon_sym_DOLLARtype] = ACTIONS(2002), - [anon_sym_return] = ACTIONS(2000), - [anon_sym_untyped] = ACTIONS(2000), - [anon_sym_break] = ACTIONS(2000), - [anon_sym_continue] = ACTIONS(2000), - [anon_sym_LBRACK] = ACTIONS(2002), - [anon_sym_this] = ACTIONS(2000), - [anon_sym_AT] = ACTIONS(2000), - [anon_sym_AT_COLON] = ACTIONS(2002), - [anon_sym_if] = ACTIONS(2000), - [anon_sym_new] = ACTIONS(2000), - [anon_sym_TILDE] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(2000), - [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_PLUS_PLUS] = ACTIONS(2002), - [anon_sym_DASH_DASH] = ACTIONS(2002), - [anon_sym_PERCENT] = ACTIONS(2002), - [anon_sym_STAR] = ACTIONS(2002), - [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_PLUS] = ACTIONS(2000), - [anon_sym_LT_LT] = ACTIONS(2002), - [anon_sym_GT_GT] = ACTIONS(2000), - [anon_sym_GT_GT_GT] = ACTIONS(2002), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(2002), - [anon_sym_AMP_AMP] = ACTIONS(2002), - [anon_sym_PIPE_PIPE] = ACTIONS(2002), - [anon_sym_EQ_EQ] = ACTIONS(2002), - [anon_sym_BANG_EQ] = ACTIONS(2002), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_LT_EQ] = ACTIONS(2002), - [anon_sym_GT] = ACTIONS(2000), - [anon_sym_GT_EQ] = ACTIONS(2002), - [anon_sym_EQ_GT] = ACTIONS(2002), - [anon_sym_QMARK_QMARK] = ACTIONS(2002), - [anon_sym_EQ] = ACTIONS(2000), - [sym__rangeOperator] = ACTIONS(2002), - [anon_sym_null] = ACTIONS(2000), - [anon_sym_macro] = ACTIONS(2000), - [anon_sym_abstract] = ACTIONS(2000), - [anon_sym_static] = ACTIONS(2000), - [anon_sym_public] = ACTIONS(2000), - [anon_sym_private] = ACTIONS(2000), - [anon_sym_extern] = ACTIONS(2000), - [anon_sym_inline] = ACTIONS(2000), - [anon_sym_overload] = ACTIONS(2000), - [anon_sym_override] = ACTIONS(2000), - [anon_sym_final] = ACTIONS(2000), - [anon_sym_class] = ACTIONS(2000), - [anon_sym_interface] = ACTIONS(2000), - [anon_sym_typedef] = ACTIONS(2000), - [anon_sym_function] = ACTIONS(2000), - [anon_sym_var] = ACTIONS(2000), - [aux_sym_integer_token1] = ACTIONS(2000), - [aux_sym_integer_token2] = ACTIONS(2002), - [aux_sym_float_token1] = ACTIONS(2000), - [aux_sym_float_token2] = ACTIONS(2002), - [anon_sym_true] = ACTIONS(2000), - [anon_sym_false] = ACTIONS(2000), - [aux_sym_string_token1] = ACTIONS(2002), - [aux_sym_string_token3] = ACTIONS(2002), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3357), [sym__closing_brace_unmarker] = ACTIONS(3), }, [623] = { - [ts_builtin_sym_end] = ACTIONS(1654), - [sym_identifier] = ACTIONS(1652), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_package] = ACTIONS(1652), - [anon_sym_import] = ACTIONS(1652), - [anon_sym_using] = ACTIONS(1652), - [anon_sym_throw] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_switch] = ACTIONS(1652), - [anon_sym_LBRACE] = ACTIONS(1654), - [anon_sym_cast] = ACTIONS(1652), - [anon_sym_DOLLARtype] = ACTIONS(1654), - [anon_sym_return] = ACTIONS(1652), - [anon_sym_untyped] = ACTIONS(1652), - [anon_sym_break] = ACTIONS(1652), - [anon_sym_continue] = ACTIONS(1652), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_this] = ACTIONS(1652), - [anon_sym_AT] = ACTIONS(1652), - [anon_sym_AT_COLON] = ACTIONS(1654), - [anon_sym_if] = ACTIONS(1652), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_TILDE] = ACTIONS(1654), - [anon_sym_BANG] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_PLUS_PLUS] = ACTIONS(1654), - [anon_sym_DASH_DASH] = ACTIONS(1654), - [anon_sym_PERCENT] = ACTIONS(1654), - [anon_sym_STAR] = ACTIONS(1654), - [anon_sym_SLASH] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1652), - [anon_sym_LT_LT] = ACTIONS(1654), - [anon_sym_GT_GT] = ACTIONS(1652), - [anon_sym_GT_GT_GT] = ACTIONS(1654), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_CARET] = ACTIONS(1654), - [anon_sym_AMP_AMP] = ACTIONS(1654), - [anon_sym_PIPE_PIPE] = ACTIONS(1654), - [anon_sym_EQ_EQ] = ACTIONS(1654), - [anon_sym_BANG_EQ] = ACTIONS(1654), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_LT_EQ] = ACTIONS(1654), - [anon_sym_GT] = ACTIONS(1652), - [anon_sym_GT_EQ] = ACTIONS(1654), - [anon_sym_EQ_GT] = ACTIONS(1654), - [anon_sym_QMARK_QMARK] = ACTIONS(1654), - [anon_sym_EQ] = ACTIONS(1652), - [sym__rangeOperator] = ACTIONS(1654), - [anon_sym_null] = ACTIONS(1652), - [anon_sym_macro] = ACTIONS(1652), - [anon_sym_abstract] = ACTIONS(1652), - [anon_sym_static] = ACTIONS(1652), - [anon_sym_public] = ACTIONS(1652), - [anon_sym_private] = ACTIONS(1652), - [anon_sym_extern] = ACTIONS(1652), - [anon_sym_inline] = ACTIONS(1652), - [anon_sym_overload] = ACTIONS(1652), - [anon_sym_override] = ACTIONS(1652), - [anon_sym_final] = ACTIONS(1652), - [anon_sym_class] = ACTIONS(1652), - [anon_sym_interface] = ACTIONS(1652), - [anon_sym_typedef] = ACTIONS(1652), - [anon_sym_function] = ACTIONS(1652), - [anon_sym_var] = ACTIONS(1652), - [aux_sym_integer_token1] = ACTIONS(1652), - [aux_sym_integer_token2] = ACTIONS(1654), - [aux_sym_float_token1] = ACTIONS(1652), - [aux_sym_float_token2] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [aux_sym_string_token1] = ACTIONS(1654), - [aux_sym_string_token3] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3368), [sym__closing_brace_unmarker] = ACTIONS(3), }, [624] = { - [ts_builtin_sym_end] = ACTIONS(2222), - [sym_identifier] = ACTIONS(2220), - [anon_sym_POUND] = ACTIONS(2222), - [anon_sym_package] = ACTIONS(2220), - [anon_sym_import] = ACTIONS(2220), - [anon_sym_using] = ACTIONS(2220), - [anon_sym_throw] = ACTIONS(2220), - [anon_sym_LPAREN] = ACTIONS(2222), - [anon_sym_switch] = ACTIONS(2220), - [anon_sym_LBRACE] = ACTIONS(2222), - [anon_sym_cast] = ACTIONS(2220), - [anon_sym_DOLLARtype] = ACTIONS(2222), - [anon_sym_return] = ACTIONS(2220), - [anon_sym_untyped] = ACTIONS(2220), - [anon_sym_break] = ACTIONS(2220), - [anon_sym_continue] = ACTIONS(2220), - [anon_sym_LBRACK] = ACTIONS(2222), - [anon_sym_this] = ACTIONS(2220), - [anon_sym_AT] = ACTIONS(2220), - [anon_sym_AT_COLON] = ACTIONS(2222), - [anon_sym_if] = ACTIONS(2220), - [anon_sym_new] = ACTIONS(2220), - [anon_sym_TILDE] = ACTIONS(2222), - [anon_sym_BANG] = ACTIONS(2220), - [anon_sym_DASH] = ACTIONS(2220), - [anon_sym_PLUS_PLUS] = ACTIONS(2222), - [anon_sym_DASH_DASH] = ACTIONS(2222), - [anon_sym_PERCENT] = ACTIONS(2222), - [anon_sym_STAR] = ACTIONS(2222), - [anon_sym_SLASH] = ACTIONS(2220), - [anon_sym_PLUS] = ACTIONS(2220), - [anon_sym_LT_LT] = ACTIONS(2222), - [anon_sym_GT_GT] = ACTIONS(2220), - [anon_sym_GT_GT_GT] = ACTIONS(2222), - [anon_sym_AMP] = ACTIONS(2220), - [anon_sym_PIPE] = ACTIONS(2220), - [anon_sym_CARET] = ACTIONS(2222), - [anon_sym_AMP_AMP] = ACTIONS(2222), - [anon_sym_PIPE_PIPE] = ACTIONS(2222), - [anon_sym_EQ_EQ] = ACTIONS(2222), - [anon_sym_BANG_EQ] = ACTIONS(2222), - [anon_sym_LT] = ACTIONS(2220), - [anon_sym_LT_EQ] = ACTIONS(2222), - [anon_sym_GT] = ACTIONS(2220), - [anon_sym_GT_EQ] = ACTIONS(2222), - [anon_sym_EQ_GT] = ACTIONS(2222), - [anon_sym_QMARK_QMARK] = ACTIONS(2222), - [anon_sym_EQ] = ACTIONS(2220), - [sym__rangeOperator] = ACTIONS(2222), - [anon_sym_null] = ACTIONS(2220), - [anon_sym_macro] = ACTIONS(2220), - [anon_sym_abstract] = ACTIONS(2220), - [anon_sym_static] = ACTIONS(2220), - [anon_sym_public] = ACTIONS(2220), - [anon_sym_private] = ACTIONS(2220), - [anon_sym_extern] = ACTIONS(2220), - [anon_sym_inline] = ACTIONS(2220), - [anon_sym_overload] = ACTIONS(2220), - [anon_sym_override] = ACTIONS(2220), - [anon_sym_final] = ACTIONS(2220), - [anon_sym_class] = ACTIONS(2220), - [anon_sym_interface] = ACTIONS(2220), - [anon_sym_typedef] = ACTIONS(2220), - [anon_sym_function] = ACTIONS(2220), - [anon_sym_var] = ACTIONS(2220), - [aux_sym_integer_token1] = ACTIONS(2220), - [aux_sym_integer_token2] = ACTIONS(2222), - [aux_sym_float_token1] = ACTIONS(2220), - [aux_sym_float_token2] = ACTIONS(2222), - [anon_sym_true] = ACTIONS(2220), - [anon_sym_false] = ACTIONS(2220), - [aux_sym_string_token1] = ACTIONS(2222), - [aux_sym_string_token3] = ACTIONS(2222), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [625] = { - [ts_builtin_sym_end] = ACTIONS(1758), - [sym_identifier] = ACTIONS(1756), - [anon_sym_POUND] = ACTIONS(1758), - [anon_sym_package] = ACTIONS(1756), - [anon_sym_import] = ACTIONS(1756), - [anon_sym_using] = ACTIONS(1756), - [anon_sym_throw] = ACTIONS(1756), - [anon_sym_LPAREN] = ACTIONS(1758), - [anon_sym_switch] = ACTIONS(1756), - [anon_sym_LBRACE] = ACTIONS(1758), - [anon_sym_cast] = ACTIONS(1756), - [anon_sym_DOLLARtype] = ACTIONS(1758), - [anon_sym_return] = ACTIONS(1756), - [anon_sym_untyped] = ACTIONS(1756), - [anon_sym_break] = ACTIONS(1756), - [anon_sym_continue] = ACTIONS(1756), - [anon_sym_LBRACK] = ACTIONS(1758), - [anon_sym_this] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(1756), - [anon_sym_AT_COLON] = ACTIONS(1758), - [anon_sym_if] = ACTIONS(1756), - [anon_sym_new] = ACTIONS(1756), - [anon_sym_TILDE] = ACTIONS(1758), - [anon_sym_BANG] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_PLUS_PLUS] = ACTIONS(1758), - [anon_sym_DASH_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1758), - [anon_sym_STAR] = ACTIONS(1758), - [anon_sym_SLASH] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1756), - [anon_sym_LT_LT] = ACTIONS(1758), - [anon_sym_GT_GT] = ACTIONS(1756), - [anon_sym_GT_GT_GT] = ACTIONS(1758), - [anon_sym_AMP] = ACTIONS(1756), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_CARET] = ACTIONS(1758), - [anon_sym_AMP_AMP] = ACTIONS(1758), - [anon_sym_PIPE_PIPE] = ACTIONS(1758), - [anon_sym_EQ_EQ] = ACTIONS(1758), - [anon_sym_BANG_EQ] = ACTIONS(1758), - [anon_sym_LT] = ACTIONS(1756), - [anon_sym_LT_EQ] = ACTIONS(1758), - [anon_sym_GT] = ACTIONS(1756), - [anon_sym_GT_EQ] = ACTIONS(1758), - [anon_sym_EQ_GT] = ACTIONS(1758), - [anon_sym_QMARK_QMARK] = ACTIONS(1758), - [anon_sym_EQ] = ACTIONS(1756), - [sym__rangeOperator] = ACTIONS(1758), - [anon_sym_null] = ACTIONS(1756), - [anon_sym_macro] = ACTIONS(1756), - [anon_sym_abstract] = ACTIONS(1756), - [anon_sym_static] = ACTIONS(1756), - [anon_sym_public] = ACTIONS(1756), - [anon_sym_private] = ACTIONS(1756), - [anon_sym_extern] = ACTIONS(1756), - [anon_sym_inline] = ACTIONS(1756), - [anon_sym_overload] = ACTIONS(1756), - [anon_sym_override] = ACTIONS(1756), - [anon_sym_final] = ACTIONS(1756), - [anon_sym_class] = ACTIONS(1756), - [anon_sym_interface] = ACTIONS(1756), - [anon_sym_typedef] = ACTIONS(1756), - [anon_sym_function] = ACTIONS(1756), - [anon_sym_var] = ACTIONS(1756), - [aux_sym_integer_token1] = ACTIONS(1756), - [aux_sym_integer_token2] = ACTIONS(1758), - [aux_sym_float_token1] = ACTIONS(1756), - [aux_sym_float_token2] = ACTIONS(1758), - [anon_sym_true] = ACTIONS(1756), - [anon_sym_false] = ACTIONS(1756), - [aux_sym_string_token1] = ACTIONS(1758), - [aux_sym_string_token3] = ACTIONS(1758), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(3361), + [sym_identifier] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(3361), + [anon_sym_package] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_cast] = ACTIONS(3363), + [anon_sym_DOLLARtype] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_untyped] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_AT_COLON] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_catch] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3363), + [anon_sym_GT_GT_GT] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(3363), + [anon_sym_CARET] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_EQ_EQ] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3363), + [anon_sym_GT_EQ] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3361), + [anon_sym_QMARK_QMARK] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3363), + [anon_sym_macro] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_inline] = ACTIONS(3363), + [anon_sym_overload] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_final] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_typedef] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [aux_sym_integer_token1] = ACTIONS(3363), + [aux_sym_integer_token2] = ACTIONS(3361), + [aux_sym_float_token1] = ACTIONS(3363), + [aux_sym_float_token2] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [aux_sym_string_token1] = ACTIONS(3361), + [aux_sym_string_token3] = ACTIONS(3361), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [626] = { - [ts_builtin_sym_end] = ACTIONS(2006), - [sym_identifier] = ACTIONS(2004), - [anon_sym_POUND] = ACTIONS(2006), - [anon_sym_package] = ACTIONS(2004), - [anon_sym_import] = ACTIONS(2004), - [anon_sym_using] = ACTIONS(2004), - [anon_sym_throw] = ACTIONS(2004), - [anon_sym_LPAREN] = ACTIONS(2006), - [anon_sym_switch] = ACTIONS(2004), - [anon_sym_LBRACE] = ACTIONS(2006), - [anon_sym_cast] = ACTIONS(2004), - [anon_sym_DOLLARtype] = ACTIONS(2006), - [anon_sym_return] = ACTIONS(2004), - [anon_sym_untyped] = ACTIONS(2004), - [anon_sym_break] = ACTIONS(2004), - [anon_sym_continue] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_this] = ACTIONS(2004), - [anon_sym_AT] = ACTIONS(2004), - [anon_sym_AT_COLON] = ACTIONS(2006), - [anon_sym_if] = ACTIONS(2004), - [anon_sym_new] = ACTIONS(2004), - [anon_sym_TILDE] = ACTIONS(2006), - [anon_sym_BANG] = ACTIONS(2004), - [anon_sym_DASH] = ACTIONS(2004), - [anon_sym_PLUS_PLUS] = ACTIONS(2006), - [anon_sym_DASH_DASH] = ACTIONS(2006), - [anon_sym_PERCENT] = ACTIONS(2006), - [anon_sym_STAR] = ACTIONS(2006), - [anon_sym_SLASH] = ACTIONS(2004), - [anon_sym_PLUS] = ACTIONS(2004), - [anon_sym_LT_LT] = ACTIONS(2006), - [anon_sym_GT_GT] = ACTIONS(2004), - [anon_sym_GT_GT_GT] = ACTIONS(2006), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_CARET] = ACTIONS(2006), - [anon_sym_AMP_AMP] = ACTIONS(2006), - [anon_sym_PIPE_PIPE] = ACTIONS(2006), - [anon_sym_EQ_EQ] = ACTIONS(2006), - [anon_sym_BANG_EQ] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_LT_EQ] = ACTIONS(2006), - [anon_sym_GT] = ACTIONS(2004), - [anon_sym_GT_EQ] = ACTIONS(2006), - [anon_sym_EQ_GT] = ACTIONS(2006), - [anon_sym_QMARK_QMARK] = ACTIONS(2006), - [anon_sym_EQ] = ACTIONS(2004), - [sym__rangeOperator] = ACTIONS(2006), - [anon_sym_null] = ACTIONS(2004), - [anon_sym_macro] = ACTIONS(2004), - [anon_sym_abstract] = ACTIONS(2004), - [anon_sym_static] = ACTIONS(2004), - [anon_sym_public] = ACTIONS(2004), - [anon_sym_private] = ACTIONS(2004), - [anon_sym_extern] = ACTIONS(2004), - [anon_sym_inline] = ACTIONS(2004), - [anon_sym_overload] = ACTIONS(2004), - [anon_sym_override] = ACTIONS(2004), - [anon_sym_final] = ACTIONS(2004), - [anon_sym_class] = ACTIONS(2004), - [anon_sym_interface] = ACTIONS(2004), - [anon_sym_typedef] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(2004), - [anon_sym_var] = ACTIONS(2004), - [aux_sym_integer_token1] = ACTIONS(2004), - [aux_sym_integer_token2] = ACTIONS(2006), - [aux_sym_float_token1] = ACTIONS(2004), - [aux_sym_float_token2] = ACTIONS(2006), - [anon_sym_true] = ACTIONS(2004), - [anon_sym_false] = ACTIONS(2004), - [aux_sym_string_token1] = ACTIONS(2006), - [aux_sym_string_token3] = ACTIONS(2006), + [sym__rangeOperator] = STATE(2488), + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1727), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1640), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [627] = { - [ts_builtin_sym_end] = ACTIONS(1762), - [sym_identifier] = ACTIONS(1760), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_package] = ACTIONS(1760), - [anon_sym_import] = ACTIONS(1760), - [anon_sym_using] = ACTIONS(1760), - [anon_sym_throw] = ACTIONS(1760), - [anon_sym_LPAREN] = ACTIONS(1762), - [anon_sym_switch] = ACTIONS(1760), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_cast] = ACTIONS(1760), - [anon_sym_DOLLARtype] = ACTIONS(1762), - [anon_sym_return] = ACTIONS(1760), - [anon_sym_untyped] = ACTIONS(1760), - [anon_sym_break] = ACTIONS(1760), - [anon_sym_continue] = ACTIONS(1760), - [anon_sym_LBRACK] = ACTIONS(1762), - [anon_sym_this] = ACTIONS(1760), - [anon_sym_AT] = ACTIONS(1760), - [anon_sym_AT_COLON] = ACTIONS(1762), - [anon_sym_if] = ACTIONS(1760), - [anon_sym_new] = ACTIONS(1760), - [anon_sym_TILDE] = ACTIONS(1762), - [anon_sym_BANG] = ACTIONS(1760), - [anon_sym_DASH] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1762), - [anon_sym_DASH_DASH] = ACTIONS(1762), - [anon_sym_PERCENT] = ACTIONS(1762), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_SLASH] = ACTIONS(1760), - [anon_sym_PLUS] = ACTIONS(1760), - [anon_sym_LT_LT] = ACTIONS(1762), - [anon_sym_GT_GT] = ACTIONS(1760), - [anon_sym_GT_GT_GT] = ACTIONS(1762), - [anon_sym_AMP] = ACTIONS(1760), - [anon_sym_PIPE] = ACTIONS(1760), - [anon_sym_CARET] = ACTIONS(1762), - [anon_sym_AMP_AMP] = ACTIONS(1762), - [anon_sym_PIPE_PIPE] = ACTIONS(1762), - [anon_sym_EQ_EQ] = ACTIONS(1762), - [anon_sym_BANG_EQ] = ACTIONS(1762), - [anon_sym_LT] = ACTIONS(1760), - [anon_sym_LT_EQ] = ACTIONS(1762), - [anon_sym_GT] = ACTIONS(1760), - [anon_sym_GT_EQ] = ACTIONS(1762), - [anon_sym_EQ_GT] = ACTIONS(1762), - [anon_sym_QMARK_QMARK] = ACTIONS(1762), - [anon_sym_EQ] = ACTIONS(1760), - [sym__rangeOperator] = ACTIONS(1762), - [anon_sym_null] = ACTIONS(1760), - [anon_sym_macro] = ACTIONS(1760), - [anon_sym_abstract] = ACTIONS(1760), - [anon_sym_static] = ACTIONS(1760), - [anon_sym_public] = ACTIONS(1760), - [anon_sym_private] = ACTIONS(1760), - [anon_sym_extern] = ACTIONS(1760), - [anon_sym_inline] = ACTIONS(1760), - [anon_sym_overload] = ACTIONS(1760), - [anon_sym_override] = ACTIONS(1760), - [anon_sym_final] = ACTIONS(1760), - [anon_sym_class] = ACTIONS(1760), - [anon_sym_interface] = ACTIONS(1760), - [anon_sym_typedef] = ACTIONS(1760), - [anon_sym_function] = ACTIONS(1760), - [anon_sym_var] = ACTIONS(1760), - [aux_sym_integer_token1] = ACTIONS(1760), - [aux_sym_integer_token2] = ACTIONS(1762), - [aux_sym_float_token1] = ACTIONS(1760), - [aux_sym_float_token2] = ACTIONS(1762), - [anon_sym_true] = ACTIONS(1760), - [anon_sym_false] = ACTIONS(1760), - [aux_sym_string_token1] = ACTIONS(1762), - [aux_sym_string_token3] = ACTIONS(1762), + [sym_else_clause] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_package] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_cast] = ACTIONS(2677), + [anon_sym_DOLLARtype] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_untyped] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_this] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_AT_COLON] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_catch] = ACTIONS(2677), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_QMARK_QMARK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2677), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_overload] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_final] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [aux_sym_integer_token1] = ACTIONS(2677), + [aux_sym_integer_token2] = ACTIONS(2679), + [aux_sym_float_token1] = ACTIONS(2677), + [aux_sym_float_token2] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [aux_sym_string_token1] = ACTIONS(2679), + [aux_sym_string_token3] = ACTIONS(2679), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [628] = { - [ts_builtin_sym_end] = ACTIONS(1766), - [sym_identifier] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1766), - [anon_sym_package] = ACTIONS(1764), - [anon_sym_import] = ACTIONS(1764), - [anon_sym_using] = ACTIONS(1764), - [anon_sym_throw] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1766), - [anon_sym_switch] = ACTIONS(1764), - [anon_sym_LBRACE] = ACTIONS(1766), - [anon_sym_cast] = ACTIONS(1764), - [anon_sym_DOLLARtype] = ACTIONS(1766), - [anon_sym_return] = ACTIONS(1764), - [anon_sym_untyped] = ACTIONS(1764), - [anon_sym_break] = ACTIONS(1764), - [anon_sym_continue] = ACTIONS(1764), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_this] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(1764), - [anon_sym_AT_COLON] = ACTIONS(1766), - [anon_sym_if] = ACTIONS(1764), - [anon_sym_new] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1766), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PLUS_PLUS] = ACTIONS(1766), - [anon_sym_DASH_DASH] = ACTIONS(1766), - [anon_sym_PERCENT] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1766), - [anon_sym_SLASH] = ACTIONS(1764), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_LT_LT] = ACTIONS(1766), - [anon_sym_GT_GT] = ACTIONS(1764), - [anon_sym_GT_GT_GT] = ACTIONS(1766), - [anon_sym_AMP] = ACTIONS(1764), - [anon_sym_PIPE] = ACTIONS(1764), - [anon_sym_CARET] = ACTIONS(1766), - [anon_sym_AMP_AMP] = ACTIONS(1766), - [anon_sym_PIPE_PIPE] = ACTIONS(1766), - [anon_sym_EQ_EQ] = ACTIONS(1766), - [anon_sym_BANG_EQ] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1764), - [anon_sym_LT_EQ] = ACTIONS(1766), - [anon_sym_GT] = ACTIONS(1764), - [anon_sym_GT_EQ] = ACTIONS(1766), - [anon_sym_EQ_GT] = ACTIONS(1766), - [anon_sym_QMARK_QMARK] = ACTIONS(1766), - [anon_sym_EQ] = ACTIONS(1764), - [sym__rangeOperator] = ACTIONS(1766), - [anon_sym_null] = ACTIONS(1764), - [anon_sym_macro] = ACTIONS(1764), - [anon_sym_abstract] = ACTIONS(1764), - [anon_sym_static] = ACTIONS(1764), - [anon_sym_public] = ACTIONS(1764), - [anon_sym_private] = ACTIONS(1764), - [anon_sym_extern] = ACTIONS(1764), - [anon_sym_inline] = ACTIONS(1764), - [anon_sym_overload] = ACTIONS(1764), - [anon_sym_override] = ACTIONS(1764), - [anon_sym_final] = ACTIONS(1764), - [anon_sym_class] = ACTIONS(1764), - [anon_sym_interface] = ACTIONS(1764), - [anon_sym_typedef] = ACTIONS(1764), - [anon_sym_function] = ACTIONS(1764), - [anon_sym_var] = ACTIONS(1764), - [aux_sym_integer_token1] = ACTIONS(1764), - [aux_sym_integer_token2] = ACTIONS(1766), - [aux_sym_float_token1] = ACTIONS(1764), - [aux_sym_float_token2] = ACTIONS(1766), - [anon_sym_true] = ACTIONS(1764), - [anon_sym_false] = ACTIONS(1764), - [aux_sym_string_token1] = ACTIONS(1766), - [aux_sym_string_token3] = ACTIONS(1766), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2681), [sym__closing_brace_unmarker] = ACTIONS(3), }, [629] = { - [ts_builtin_sym_end] = ACTIONS(1770), - [sym_identifier] = ACTIONS(1768), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_package] = ACTIONS(1768), - [anon_sym_import] = ACTIONS(1768), - [anon_sym_using] = ACTIONS(1768), - [anon_sym_throw] = ACTIONS(1768), - [anon_sym_LPAREN] = ACTIONS(1770), - [anon_sym_switch] = ACTIONS(1768), - [anon_sym_LBRACE] = ACTIONS(1770), - [anon_sym_cast] = ACTIONS(1768), - [anon_sym_DOLLARtype] = ACTIONS(1770), - [anon_sym_return] = ACTIONS(1768), - [anon_sym_untyped] = ACTIONS(1768), - [anon_sym_break] = ACTIONS(1768), - [anon_sym_continue] = ACTIONS(1768), - [anon_sym_LBRACK] = ACTIONS(1770), - [anon_sym_this] = ACTIONS(1768), - [anon_sym_AT] = ACTIONS(1768), - [anon_sym_AT_COLON] = ACTIONS(1770), - [anon_sym_if] = ACTIONS(1768), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_TILDE] = ACTIONS(1770), - [anon_sym_BANG] = ACTIONS(1768), - [anon_sym_DASH] = ACTIONS(1768), - [anon_sym_PLUS_PLUS] = ACTIONS(1770), - [anon_sym_DASH_DASH] = ACTIONS(1770), - [anon_sym_PERCENT] = ACTIONS(1770), - [anon_sym_STAR] = ACTIONS(1770), - [anon_sym_SLASH] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1768), - [anon_sym_LT_LT] = ACTIONS(1770), - [anon_sym_GT_GT] = ACTIONS(1768), - [anon_sym_GT_GT_GT] = ACTIONS(1770), - [anon_sym_AMP] = ACTIONS(1768), - [anon_sym_PIPE] = ACTIONS(1768), - [anon_sym_CARET] = ACTIONS(1770), - [anon_sym_AMP_AMP] = ACTIONS(1770), - [anon_sym_PIPE_PIPE] = ACTIONS(1770), - [anon_sym_EQ_EQ] = ACTIONS(1770), - [anon_sym_BANG_EQ] = ACTIONS(1770), - [anon_sym_LT] = ACTIONS(1768), - [anon_sym_LT_EQ] = ACTIONS(1770), - [anon_sym_GT] = ACTIONS(1768), - [anon_sym_GT_EQ] = ACTIONS(1770), - [anon_sym_EQ_GT] = ACTIONS(1770), - [anon_sym_QMARK_QMARK] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1768), - [sym__rangeOperator] = ACTIONS(1770), - [anon_sym_null] = ACTIONS(1768), - [anon_sym_macro] = ACTIONS(1768), - [anon_sym_abstract] = ACTIONS(1768), - [anon_sym_static] = ACTIONS(1768), - [anon_sym_public] = ACTIONS(1768), - [anon_sym_private] = ACTIONS(1768), - [anon_sym_extern] = ACTIONS(1768), - [anon_sym_inline] = ACTIONS(1768), - [anon_sym_overload] = ACTIONS(1768), - [anon_sym_override] = ACTIONS(1768), - [anon_sym_final] = ACTIONS(1768), - [anon_sym_class] = ACTIONS(1768), - [anon_sym_interface] = ACTIONS(1768), - [anon_sym_typedef] = ACTIONS(1768), - [anon_sym_function] = ACTIONS(1768), - [anon_sym_var] = ACTIONS(1768), - [aux_sym_integer_token1] = ACTIONS(1768), - [aux_sym_integer_token2] = ACTIONS(1770), - [aux_sym_float_token1] = ACTIONS(1768), - [aux_sym_float_token2] = ACTIONS(1770), - [anon_sym_true] = ACTIONS(1768), - [anon_sym_false] = ACTIONS(1768), - [aux_sym_string_token1] = ACTIONS(1770), - [aux_sym_string_token3] = ACTIONS(1770), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(572), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3442), + [sym__closing_brace_marker] = ACTIONS(2629), [sym__closing_brace_unmarker] = ACTIONS(3), }, [630] = { - [ts_builtin_sym_end] = ACTIONS(2102), - [sym_identifier] = ACTIONS(2100), - [anon_sym_POUND] = ACTIONS(2102), - [anon_sym_package] = ACTIONS(2100), - [anon_sym_import] = ACTIONS(2100), - [anon_sym_using] = ACTIONS(2100), - [anon_sym_throw] = ACTIONS(2100), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2100), - [anon_sym_LBRACE] = ACTIONS(2102), - [anon_sym_cast] = ACTIONS(2100), - [anon_sym_DOLLARtype] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2100), - [anon_sym_untyped] = ACTIONS(2100), - [anon_sym_break] = ACTIONS(2100), - [anon_sym_continue] = ACTIONS(2100), - [anon_sym_LBRACK] = ACTIONS(2102), - [anon_sym_this] = ACTIONS(2100), - [anon_sym_AT] = ACTIONS(2100), - [anon_sym_AT_COLON] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2100), - [anon_sym_new] = ACTIONS(2100), - [anon_sym_TILDE] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PLUS_PLUS] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2102), - [anon_sym_PERCENT] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_SLASH] = ACTIONS(2100), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2102), - [anon_sym_GT_GT] = ACTIONS(2100), - [anon_sym_GT_GT_GT] = ACTIONS(2102), - [anon_sym_AMP] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2100), - [anon_sym_CARET] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2102), - [anon_sym_PIPE_PIPE] = ACTIONS(2102), - [anon_sym_EQ_EQ] = ACTIONS(2102), - [anon_sym_BANG_EQ] = ACTIONS(2102), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_LT_EQ] = ACTIONS(2102), - [anon_sym_GT] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2102), - [anon_sym_EQ_GT] = ACTIONS(2102), - [anon_sym_QMARK_QMARK] = ACTIONS(2102), - [anon_sym_EQ] = ACTIONS(2100), - [sym__rangeOperator] = ACTIONS(2102), - [anon_sym_null] = ACTIONS(2100), - [anon_sym_macro] = ACTIONS(2100), - [anon_sym_abstract] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2100), - [anon_sym_public] = ACTIONS(2100), - [anon_sym_private] = ACTIONS(2100), - [anon_sym_extern] = ACTIONS(2100), - [anon_sym_inline] = ACTIONS(2100), - [anon_sym_overload] = ACTIONS(2100), - [anon_sym_override] = ACTIONS(2100), - [anon_sym_final] = ACTIONS(2100), - [anon_sym_class] = ACTIONS(2100), - [anon_sym_interface] = ACTIONS(2100), - [anon_sym_typedef] = ACTIONS(2100), - [anon_sym_function] = ACTIONS(2100), - [anon_sym_var] = ACTIONS(2100), - [aux_sym_integer_token1] = ACTIONS(2100), - [aux_sym_integer_token2] = ACTIONS(2102), - [aux_sym_float_token1] = ACTIONS(2100), - [aux_sym_float_token2] = ACTIONS(2102), - [anon_sym_true] = ACTIONS(2100), - [anon_sym_false] = ACTIONS(2100), - [aux_sym_string_token1] = ACTIONS(2102), - [aux_sym_string_token3] = ACTIONS(2102), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [631] = { - [ts_builtin_sym_end] = ACTIONS(2262), - [sym_identifier] = ACTIONS(2260), - [anon_sym_POUND] = ACTIONS(2262), - [anon_sym_package] = ACTIONS(2260), - [anon_sym_import] = ACTIONS(2260), - [anon_sym_using] = ACTIONS(2260), - [anon_sym_throw] = ACTIONS(2260), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_cast] = ACTIONS(2260), - [anon_sym_DOLLARtype] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2260), - [anon_sym_untyped] = ACTIONS(2260), - [anon_sym_break] = ACTIONS(2260), - [anon_sym_continue] = ACTIONS(2260), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_this] = ACTIONS(2260), - [anon_sym_AT] = ACTIONS(2260), - [anon_sym_AT_COLON] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2260), - [anon_sym_new] = ACTIONS(2260), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2260), - [anon_sym_DASH] = ACTIONS(2260), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2260), - [anon_sym_PLUS] = ACTIONS(2260), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2260), - [anon_sym_GT_GT_GT] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2260), - [anon_sym_PIPE] = ACTIONS(2260), - [anon_sym_CARET] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_EQ_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2260), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_GT] = ACTIONS(2260), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_EQ_GT] = ACTIONS(2262), - [anon_sym_QMARK_QMARK] = ACTIONS(2262), - [anon_sym_EQ] = ACTIONS(2260), - [sym__rangeOperator] = ACTIONS(2262), - [anon_sym_null] = ACTIONS(2260), - [anon_sym_macro] = ACTIONS(2260), - [anon_sym_abstract] = ACTIONS(2260), - [anon_sym_static] = ACTIONS(2260), - [anon_sym_public] = ACTIONS(2260), - [anon_sym_private] = ACTIONS(2260), - [anon_sym_extern] = ACTIONS(2260), - [anon_sym_inline] = ACTIONS(2260), - [anon_sym_overload] = ACTIONS(2260), - [anon_sym_override] = ACTIONS(2260), - [anon_sym_final] = ACTIONS(2260), - [anon_sym_class] = ACTIONS(2260), - [anon_sym_interface] = ACTIONS(2260), - [anon_sym_typedef] = ACTIONS(2260), - [anon_sym_function] = ACTIONS(2260), - [anon_sym_var] = ACTIONS(2260), - [aux_sym_integer_token1] = ACTIONS(2260), - [aux_sym_integer_token2] = ACTIONS(2262), - [aux_sym_float_token1] = ACTIONS(2260), - [aux_sym_float_token2] = ACTIONS(2262), - [anon_sym_true] = ACTIONS(2260), - [anon_sym_false] = ACTIONS(2260), - [aux_sym_string_token1] = ACTIONS(2262), - [aux_sym_string_token3] = ACTIONS(2262), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_package] = ACTIONS(2671), + [anon_sym_import] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_cast] = ACTIONS(2671), + [anon_sym_DOLLARtype] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_untyped] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_this] = ACTIONS(2671), + [anon_sym_AT] = ACTIONS(2671), + [anon_sym_AT_COLON] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_catch] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PERCENT] = ACTIONS(2673), + [anon_sym_SLASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_LT_LT] = ACTIONS(2673), + [anon_sym_GT_GT] = ACTIONS(2671), + [anon_sym_GT_GT_GT] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_PIPE_PIPE] = ACTIONS(2673), + [anon_sym_EQ_EQ] = ACTIONS(2673), + [anon_sym_BANG_EQ] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_LT_EQ] = ACTIONS(2673), + [anon_sym_GT] = ACTIONS(2671), + [anon_sym_GT_EQ] = ACTIONS(2673), + [anon_sym_EQ_GT] = ACTIONS(2673), + [anon_sym_QMARK_QMARK] = ACTIONS(2673), + [anon_sym_EQ] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2673), + [anon_sym_null] = ACTIONS(2671), + [anon_sym_macro] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym_overload] = ACTIONS(2671), + [anon_sym_override] = ACTIONS(2671), + [anon_sym_final] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_interface] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_function] = ACTIONS(2671), + [anon_sym_var] = ACTIONS(2671), + [aux_sym_integer_token1] = ACTIONS(2671), + [aux_sym_integer_token2] = ACTIONS(2673), + [aux_sym_float_token1] = ACTIONS(2671), + [aux_sym_float_token2] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [aux_sym_string_token1] = ACTIONS(2673), + [aux_sym_string_token3] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3444), [sym__closing_brace_unmarker] = ACTIONS(3), }, [632] = { - [ts_builtin_sym_end] = ACTIONS(2226), - [sym_identifier] = ACTIONS(2224), - [anon_sym_POUND] = ACTIONS(2226), - [anon_sym_package] = ACTIONS(2224), - [anon_sym_import] = ACTIONS(2224), - [anon_sym_using] = ACTIONS(2224), - [anon_sym_throw] = ACTIONS(2224), - [anon_sym_LPAREN] = ACTIONS(2226), - [anon_sym_switch] = ACTIONS(2224), - [anon_sym_LBRACE] = ACTIONS(2226), - [anon_sym_cast] = ACTIONS(2224), - [anon_sym_DOLLARtype] = ACTIONS(2226), - [anon_sym_return] = ACTIONS(2224), - [anon_sym_untyped] = ACTIONS(2224), - [anon_sym_break] = ACTIONS(2224), - [anon_sym_continue] = ACTIONS(2224), - [anon_sym_LBRACK] = ACTIONS(2226), - [anon_sym_this] = ACTIONS(2224), - [anon_sym_AT] = ACTIONS(2224), - [anon_sym_AT_COLON] = ACTIONS(2226), - [anon_sym_if] = ACTIONS(2224), - [anon_sym_new] = ACTIONS(2224), - [anon_sym_TILDE] = ACTIONS(2226), - [anon_sym_BANG] = ACTIONS(2224), - [anon_sym_DASH] = ACTIONS(2224), - [anon_sym_PLUS_PLUS] = ACTIONS(2226), - [anon_sym_DASH_DASH] = ACTIONS(2226), - [anon_sym_PERCENT] = ACTIONS(2226), - [anon_sym_STAR] = ACTIONS(2226), - [anon_sym_SLASH] = ACTIONS(2224), - [anon_sym_PLUS] = ACTIONS(2224), - [anon_sym_LT_LT] = ACTIONS(2226), - [anon_sym_GT_GT] = ACTIONS(2224), - [anon_sym_GT_GT_GT] = ACTIONS(2226), - [anon_sym_AMP] = ACTIONS(2224), - [anon_sym_PIPE] = ACTIONS(2224), - [anon_sym_CARET] = ACTIONS(2226), - [anon_sym_AMP_AMP] = ACTIONS(2226), - [anon_sym_PIPE_PIPE] = ACTIONS(2226), - [anon_sym_EQ_EQ] = ACTIONS(2226), - [anon_sym_BANG_EQ] = ACTIONS(2226), - [anon_sym_LT] = ACTIONS(2224), - [anon_sym_LT_EQ] = ACTIONS(2226), - [anon_sym_GT] = ACTIONS(2224), - [anon_sym_GT_EQ] = ACTIONS(2226), - [anon_sym_EQ_GT] = ACTIONS(2226), - [anon_sym_QMARK_QMARK] = ACTIONS(2226), - [anon_sym_EQ] = ACTIONS(2224), - [sym__rangeOperator] = ACTIONS(2226), - [anon_sym_null] = ACTIONS(2224), - [anon_sym_macro] = ACTIONS(2224), - [anon_sym_abstract] = ACTIONS(2224), - [anon_sym_static] = ACTIONS(2224), - [anon_sym_public] = ACTIONS(2224), - [anon_sym_private] = ACTIONS(2224), - [anon_sym_extern] = ACTIONS(2224), - [anon_sym_inline] = ACTIONS(2224), - [anon_sym_overload] = ACTIONS(2224), - [anon_sym_override] = ACTIONS(2224), - [anon_sym_final] = ACTIONS(2224), - [anon_sym_class] = ACTIONS(2224), - [anon_sym_interface] = ACTIONS(2224), - [anon_sym_typedef] = ACTIONS(2224), - [anon_sym_function] = ACTIONS(2224), - [anon_sym_var] = ACTIONS(2224), - [aux_sym_integer_token1] = ACTIONS(2224), - [aux_sym_integer_token2] = ACTIONS(2226), - [aux_sym_float_token1] = ACTIONS(2224), - [aux_sym_float_token2] = ACTIONS(2226), - [anon_sym_true] = ACTIONS(2224), - [anon_sym_false] = ACTIONS(2224), - [aux_sym_string_token1] = ACTIONS(2226), - [aux_sym_string_token3] = ACTIONS(2226), + [sym_else_clause] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [633] = { - [ts_builtin_sym_end] = ACTIONS(1750), - [sym_identifier] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1750), - [anon_sym_package] = ACTIONS(1748), - [anon_sym_import] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(1748), - [anon_sym_throw] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_switch] = ACTIONS(1748), - [anon_sym_LBRACE] = ACTIONS(1750), - [anon_sym_cast] = ACTIONS(1748), - [anon_sym_DOLLARtype] = ACTIONS(1750), - [anon_sym_return] = ACTIONS(1748), - [anon_sym_untyped] = ACTIONS(1748), - [anon_sym_break] = ACTIONS(1748), - [anon_sym_continue] = ACTIONS(1748), - [anon_sym_LBRACK] = ACTIONS(1750), - [anon_sym_this] = ACTIONS(1748), - [anon_sym_AT] = ACTIONS(1748), - [anon_sym_AT_COLON] = ACTIONS(1750), - [anon_sym_if] = ACTIONS(1748), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1750), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PLUS_PLUS] = ACTIONS(1750), - [anon_sym_DASH_DASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_STAR] = ACTIONS(1750), - [anon_sym_SLASH] = ACTIONS(1748), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_LT_LT] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1748), - [anon_sym_GT_GT_GT] = ACTIONS(1750), - [anon_sym_AMP] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1748), - [anon_sym_CARET] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_LT_EQ] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1748), - [anon_sym_GT_EQ] = ACTIONS(1750), - [anon_sym_EQ_GT] = ACTIONS(1750), - [anon_sym_QMARK_QMARK] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1748), - [sym__rangeOperator] = ACTIONS(1750), - [anon_sym_null] = ACTIONS(1748), - [anon_sym_macro] = ACTIONS(1748), - [anon_sym_abstract] = ACTIONS(1748), - [anon_sym_static] = ACTIONS(1748), - [anon_sym_public] = ACTIONS(1748), - [anon_sym_private] = ACTIONS(1748), - [anon_sym_extern] = ACTIONS(1748), - [anon_sym_inline] = ACTIONS(1748), - [anon_sym_overload] = ACTIONS(1748), - [anon_sym_override] = ACTIONS(1748), - [anon_sym_final] = ACTIONS(1748), - [anon_sym_class] = ACTIONS(1748), - [anon_sym_interface] = ACTIONS(1748), - [anon_sym_typedef] = ACTIONS(1748), - [anon_sym_function] = ACTIONS(1748), - [anon_sym_var] = ACTIONS(1748), - [aux_sym_integer_token1] = ACTIONS(1748), - [aux_sym_integer_token2] = ACTIONS(1750), - [aux_sym_float_token1] = ACTIONS(1748), - [aux_sym_float_token2] = ACTIONS(1750), - [anon_sym_true] = ACTIONS(1748), - [anon_sym_false] = ACTIONS(1748), - [aux_sym_string_token1] = ACTIONS(1750), - [aux_sym_string_token3] = ACTIONS(1750), + [sym_else_clause] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_package] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_cast] = ACTIONS(2667), + [anon_sym_DOLLARtype] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_untyped] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_this] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_AT_COLON] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_EQ_GT] = ACTIONS(2669), + [anon_sym_QMARK_QMARK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_null] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym_overload] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_final] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [aux_sym_integer_token1] = ACTIONS(2667), + [aux_sym_integer_token2] = ACTIONS(2669), + [aux_sym_float_token1] = ACTIONS(2667), + [aux_sym_float_token2] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym_string_token1] = ACTIONS(2669), + [aux_sym_string_token3] = ACTIONS(2669), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [634] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2008), - [anon_sym_POUND] = ACTIONS(2010), - [anon_sym_package] = ACTIONS(2008), - [anon_sym_import] = ACTIONS(2008), - [anon_sym_using] = ACTIONS(2008), - [anon_sym_throw] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_switch] = ACTIONS(2008), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_cast] = ACTIONS(2008), - [anon_sym_DOLLARtype] = ACTIONS(2010), - [anon_sym_return] = ACTIONS(2008), - [anon_sym_untyped] = ACTIONS(2008), - [anon_sym_break] = ACTIONS(2008), - [anon_sym_continue] = ACTIONS(2008), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_this] = ACTIONS(2008), - [anon_sym_AT] = ACTIONS(2008), - [anon_sym_AT_COLON] = ACTIONS(2010), - [anon_sym_if] = ACTIONS(2008), - [anon_sym_new] = ACTIONS(2008), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_BANG] = ACTIONS(2008), - [anon_sym_DASH] = ACTIONS(2008), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym_PERCENT] = ACTIONS(2010), - [anon_sym_STAR] = ACTIONS(2010), - [anon_sym_SLASH] = ACTIONS(2008), - [anon_sym_PLUS] = ACTIONS(2008), - [anon_sym_LT_LT] = ACTIONS(2010), - [anon_sym_GT_GT] = ACTIONS(2008), - [anon_sym_GT_GT_GT] = ACTIONS(2010), - [anon_sym_AMP] = ACTIONS(2008), - [anon_sym_PIPE] = ACTIONS(2008), - [anon_sym_CARET] = ACTIONS(2010), - [anon_sym_AMP_AMP] = ACTIONS(2010), - [anon_sym_PIPE_PIPE] = ACTIONS(2010), - [anon_sym_EQ_EQ] = ACTIONS(2010), - [anon_sym_BANG_EQ] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2008), - [anon_sym_LT_EQ] = ACTIONS(2010), - [anon_sym_GT] = ACTIONS(2008), - [anon_sym_GT_EQ] = ACTIONS(2010), - [anon_sym_EQ_GT] = ACTIONS(2010), - [anon_sym_QMARK_QMARK] = ACTIONS(2010), - [anon_sym_EQ] = ACTIONS(2008), - [sym__rangeOperator] = ACTIONS(2010), - [anon_sym_null] = ACTIONS(2008), - [anon_sym_macro] = ACTIONS(2008), - [anon_sym_abstract] = ACTIONS(2008), - [anon_sym_static] = ACTIONS(2008), - [anon_sym_public] = ACTIONS(2008), - [anon_sym_private] = ACTIONS(2008), - [anon_sym_extern] = ACTIONS(2008), - [anon_sym_inline] = ACTIONS(2008), - [anon_sym_overload] = ACTIONS(2008), - [anon_sym_override] = ACTIONS(2008), - [anon_sym_final] = ACTIONS(2008), - [anon_sym_class] = ACTIONS(2008), - [anon_sym_interface] = ACTIONS(2008), - [anon_sym_typedef] = ACTIONS(2008), - [anon_sym_function] = ACTIONS(2008), - [anon_sym_var] = ACTIONS(2008), - [aux_sym_integer_token1] = ACTIONS(2008), - [aux_sym_integer_token2] = ACTIONS(2010), - [aux_sym_float_token1] = ACTIONS(2008), - [aux_sym_float_token2] = ACTIONS(2010), - [anon_sym_true] = ACTIONS(2008), - [anon_sym_false] = ACTIONS(2008), - [aux_sym_string_token1] = ACTIONS(2010), - [aux_sym_string_token3] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3357), [sym__closing_brace_unmarker] = ACTIONS(3), }, [635] = { - [ts_builtin_sym_end] = ACTIONS(1694), - [sym_identifier] = ACTIONS(1692), - [anon_sym_POUND] = ACTIONS(1694), - [anon_sym_package] = ACTIONS(1692), - [anon_sym_import] = ACTIONS(1692), - [anon_sym_using] = ACTIONS(1692), - [anon_sym_throw] = ACTIONS(1692), - [anon_sym_LPAREN] = ACTIONS(1694), - [anon_sym_switch] = ACTIONS(1692), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_cast] = ACTIONS(1692), - [anon_sym_DOLLARtype] = ACTIONS(1694), - [anon_sym_return] = ACTIONS(1692), - [anon_sym_untyped] = ACTIONS(1692), - [anon_sym_break] = ACTIONS(1692), - [anon_sym_continue] = ACTIONS(1692), - [anon_sym_LBRACK] = ACTIONS(1694), - [anon_sym_this] = ACTIONS(1692), - [anon_sym_AT] = ACTIONS(1692), - [anon_sym_AT_COLON] = ACTIONS(1694), - [anon_sym_if] = ACTIONS(1692), - [anon_sym_new] = ACTIONS(1692), - [anon_sym_TILDE] = ACTIONS(1694), - [anon_sym_BANG] = ACTIONS(1692), - [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_PLUS_PLUS] = ACTIONS(1694), - [anon_sym_DASH_DASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1694), - [anon_sym_STAR] = ACTIONS(1694), - [anon_sym_SLASH] = ACTIONS(1692), - [anon_sym_PLUS] = ACTIONS(1692), - [anon_sym_LT_LT] = ACTIONS(1694), - [anon_sym_GT_GT] = ACTIONS(1692), - [anon_sym_GT_GT_GT] = ACTIONS(1694), - [anon_sym_AMP] = ACTIONS(1692), - [anon_sym_PIPE] = ACTIONS(1692), - [anon_sym_CARET] = ACTIONS(1694), - [anon_sym_AMP_AMP] = ACTIONS(1694), - [anon_sym_PIPE_PIPE] = ACTIONS(1694), - [anon_sym_EQ_EQ] = ACTIONS(1694), - [anon_sym_BANG_EQ] = ACTIONS(1694), - [anon_sym_LT] = ACTIONS(1692), - [anon_sym_LT_EQ] = ACTIONS(1694), - [anon_sym_GT] = ACTIONS(1692), - [anon_sym_GT_EQ] = ACTIONS(1694), - [anon_sym_EQ_GT] = ACTIONS(1694), - [anon_sym_QMARK_QMARK] = ACTIONS(1694), - [anon_sym_EQ] = ACTIONS(1692), - [sym__rangeOperator] = ACTIONS(1694), - [anon_sym_null] = ACTIONS(1692), - [anon_sym_macro] = ACTIONS(1692), - [anon_sym_abstract] = ACTIONS(1692), - [anon_sym_static] = ACTIONS(1692), - [anon_sym_public] = ACTIONS(1692), - [anon_sym_private] = ACTIONS(1692), - [anon_sym_extern] = ACTIONS(1692), - [anon_sym_inline] = ACTIONS(1692), - [anon_sym_overload] = ACTIONS(1692), - [anon_sym_override] = ACTIONS(1692), - [anon_sym_final] = ACTIONS(1692), - [anon_sym_class] = ACTIONS(1692), - [anon_sym_interface] = ACTIONS(1692), - [anon_sym_typedef] = ACTIONS(1692), - [anon_sym_function] = ACTIONS(1692), - [anon_sym_var] = ACTIONS(1692), - [aux_sym_integer_token1] = ACTIONS(1692), - [aux_sym_integer_token2] = ACTIONS(1694), - [aux_sym_float_token1] = ACTIONS(1692), - [aux_sym_float_token2] = ACTIONS(1694), - [anon_sym_true] = ACTIONS(1692), - [anon_sym_false] = ACTIONS(1692), - [aux_sym_string_token1] = ACTIONS(1694), - [aux_sym_string_token3] = ACTIONS(1694), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(3363), + [anon_sym_POUND] = ACTIONS(3361), + [anon_sym_package] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_STAR] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_cast] = ACTIONS(3363), + [anon_sym_DOLLARtype] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_untyped] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_this] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_AT_COLON] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_catch] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [anon_sym_PERCENT] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_LT_LT] = ACTIONS(3361), + [anon_sym_GT_GT] = ACTIONS(3363), + [anon_sym_GT_GT_GT] = ACTIONS(3361), + [anon_sym_AMP] = ACTIONS(3363), + [anon_sym_PIPE] = ACTIONS(3363), + [anon_sym_CARET] = ACTIONS(3361), + [anon_sym_AMP_AMP] = ACTIONS(3361), + [anon_sym_PIPE_PIPE] = ACTIONS(3361), + [anon_sym_EQ_EQ] = ACTIONS(3361), + [anon_sym_BANG_EQ] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_LT_EQ] = ACTIONS(3361), + [anon_sym_GT] = ACTIONS(3363), + [anon_sym_GT_EQ] = ACTIONS(3361), + [anon_sym_EQ_GT] = ACTIONS(3361), + [anon_sym_QMARK_QMARK] = ACTIONS(3361), + [anon_sym_EQ] = ACTIONS(3363), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3363), + [anon_sym_macro] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_extern] = ACTIONS(3363), + [anon_sym_inline] = ACTIONS(3363), + [anon_sym_overload] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_final] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [anon_sym_typedef] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [aux_sym_integer_token1] = ACTIONS(3363), + [aux_sym_integer_token2] = ACTIONS(3361), + [aux_sym_float_token1] = ACTIONS(3363), + [aux_sym_float_token2] = ACTIONS(3361), + [anon_sym_true] = ACTIONS(3363), + [anon_sym_false] = ACTIONS(3363), + [aux_sym_string_token1] = ACTIONS(3361), + [aux_sym_string_token3] = ACTIONS(3361), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3361), [sym__closing_brace_unmarker] = ACTIONS(3), }, [636] = { - [ts_builtin_sym_end] = ACTIONS(2098), - [sym_identifier] = ACTIONS(2096), - [anon_sym_POUND] = ACTIONS(2098), - [anon_sym_package] = ACTIONS(2096), - [anon_sym_import] = ACTIONS(2096), - [anon_sym_using] = ACTIONS(2096), - [anon_sym_throw] = ACTIONS(2096), - [anon_sym_LPAREN] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2096), - [anon_sym_LBRACE] = ACTIONS(2098), - [anon_sym_cast] = ACTIONS(2096), - [anon_sym_DOLLARtype] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2096), - [anon_sym_untyped] = ACTIONS(2096), - [anon_sym_break] = ACTIONS(2096), - [anon_sym_continue] = ACTIONS(2096), - [anon_sym_LBRACK] = ACTIONS(2098), - [anon_sym_this] = ACTIONS(2096), - [anon_sym_AT] = ACTIONS(2096), - [anon_sym_AT_COLON] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2096), - [anon_sym_new] = ACTIONS(2096), - [anon_sym_TILDE] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_DASH] = ACTIONS(2096), - [anon_sym_PLUS_PLUS] = ACTIONS(2098), - [anon_sym_DASH_DASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2096), - [anon_sym_PLUS] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2098), - [anon_sym_GT_GT] = ACTIONS(2096), - [anon_sym_GT_GT_GT] = ACTIONS(2098), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2098), - [anon_sym_PIPE_PIPE] = ACTIONS(2098), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2098), - [anon_sym_EQ_GT] = ACTIONS(2098), - [anon_sym_QMARK_QMARK] = ACTIONS(2098), - [anon_sym_EQ] = ACTIONS(2096), - [sym__rangeOperator] = ACTIONS(2098), - [anon_sym_null] = ACTIONS(2096), - [anon_sym_macro] = ACTIONS(2096), - [anon_sym_abstract] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2096), - [anon_sym_public] = ACTIONS(2096), - [anon_sym_private] = ACTIONS(2096), - [anon_sym_extern] = ACTIONS(2096), - [anon_sym_inline] = ACTIONS(2096), - [anon_sym_overload] = ACTIONS(2096), - [anon_sym_override] = ACTIONS(2096), - [anon_sym_final] = ACTIONS(2096), - [anon_sym_class] = ACTIONS(2096), - [anon_sym_interface] = ACTIONS(2096), - [anon_sym_typedef] = ACTIONS(2096), - [anon_sym_function] = ACTIONS(2096), - [anon_sym_var] = ACTIONS(2096), - [aux_sym_integer_token1] = ACTIONS(2096), - [aux_sym_integer_token2] = ACTIONS(2098), - [aux_sym_float_token1] = ACTIONS(2096), - [aux_sym_float_token2] = ACTIONS(2098), - [anon_sym_true] = ACTIONS(2096), - [anon_sym_false] = ACTIONS(2096), - [aux_sym_string_token1] = ACTIONS(2098), - [aux_sym_string_token3] = ACTIONS(2098), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [637] = { - [ts_builtin_sym_end] = ACTIONS(1774), - [sym_identifier] = ACTIONS(1772), - [anon_sym_POUND] = ACTIONS(1774), - [anon_sym_package] = ACTIONS(1772), - [anon_sym_import] = ACTIONS(1772), - [anon_sym_using] = ACTIONS(1772), - [anon_sym_throw] = ACTIONS(1772), - [anon_sym_LPAREN] = ACTIONS(1774), - [anon_sym_switch] = ACTIONS(1772), - [anon_sym_LBRACE] = ACTIONS(1774), - [anon_sym_cast] = ACTIONS(1772), - [anon_sym_DOLLARtype] = ACTIONS(1774), - [anon_sym_return] = ACTIONS(1772), - [anon_sym_untyped] = ACTIONS(1772), - [anon_sym_break] = ACTIONS(1772), - [anon_sym_continue] = ACTIONS(1772), - [anon_sym_LBRACK] = ACTIONS(1774), - [anon_sym_this] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(1772), - [anon_sym_AT_COLON] = ACTIONS(1774), - [anon_sym_if] = ACTIONS(1772), - [anon_sym_new] = ACTIONS(1772), - [anon_sym_TILDE] = ACTIONS(1774), - [anon_sym_BANG] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_PLUS_PLUS] = ACTIONS(1774), - [anon_sym_DASH_DASH] = ACTIONS(1774), - [anon_sym_PERCENT] = ACTIONS(1774), - [anon_sym_STAR] = ACTIONS(1774), - [anon_sym_SLASH] = ACTIONS(1772), - [anon_sym_PLUS] = ACTIONS(1772), - [anon_sym_LT_LT] = ACTIONS(1774), - [anon_sym_GT_GT] = ACTIONS(1772), - [anon_sym_GT_GT_GT] = ACTIONS(1774), - [anon_sym_AMP] = ACTIONS(1772), - [anon_sym_PIPE] = ACTIONS(1772), - [anon_sym_CARET] = ACTIONS(1774), - [anon_sym_AMP_AMP] = ACTIONS(1774), - [anon_sym_PIPE_PIPE] = ACTIONS(1774), - [anon_sym_EQ_EQ] = ACTIONS(1774), - [anon_sym_BANG_EQ] = ACTIONS(1774), - [anon_sym_LT] = ACTIONS(1772), - [anon_sym_LT_EQ] = ACTIONS(1774), - [anon_sym_GT] = ACTIONS(1772), - [anon_sym_GT_EQ] = ACTIONS(1774), - [anon_sym_EQ_GT] = ACTIONS(1774), - [anon_sym_QMARK_QMARK] = ACTIONS(1774), - [anon_sym_EQ] = ACTIONS(1772), - [sym__rangeOperator] = ACTIONS(1774), - [anon_sym_null] = ACTIONS(1772), - [anon_sym_macro] = ACTIONS(1772), - [anon_sym_abstract] = ACTIONS(1772), - [anon_sym_static] = ACTIONS(1772), - [anon_sym_public] = ACTIONS(1772), - [anon_sym_private] = ACTIONS(1772), - [anon_sym_extern] = ACTIONS(1772), - [anon_sym_inline] = ACTIONS(1772), - [anon_sym_overload] = ACTIONS(1772), - [anon_sym_override] = ACTIONS(1772), - [anon_sym_final] = ACTIONS(1772), - [anon_sym_class] = ACTIONS(1772), - [anon_sym_interface] = ACTIONS(1772), - [anon_sym_typedef] = ACTIONS(1772), - [anon_sym_function] = ACTIONS(1772), - [anon_sym_var] = ACTIONS(1772), - [aux_sym_integer_token1] = ACTIONS(1772), - [aux_sym_integer_token2] = ACTIONS(1774), - [aux_sym_float_token1] = ACTIONS(1772), - [aux_sym_float_token2] = ACTIONS(1774), - [anon_sym_true] = ACTIONS(1772), - [anon_sym_false] = ACTIONS(1772), - [aux_sym_string_token1] = ACTIONS(1774), - [aux_sym_string_token3] = ACTIONS(1774), + [sym_else_clause] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(2627), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [638] = { - [ts_builtin_sym_end] = ACTIONS(2018), - [sym_identifier] = ACTIONS(2016), - [anon_sym_POUND] = ACTIONS(2018), - [anon_sym_package] = ACTIONS(2016), - [anon_sym_import] = ACTIONS(2016), - [anon_sym_using] = ACTIONS(2016), - [anon_sym_throw] = ACTIONS(2016), - [anon_sym_LPAREN] = ACTIONS(2018), - [anon_sym_switch] = ACTIONS(2016), - [anon_sym_LBRACE] = ACTIONS(2018), - [anon_sym_cast] = ACTIONS(2016), - [anon_sym_DOLLARtype] = ACTIONS(2018), - [anon_sym_return] = ACTIONS(2016), - [anon_sym_untyped] = ACTIONS(2016), - [anon_sym_break] = ACTIONS(2016), - [anon_sym_continue] = ACTIONS(2016), - [anon_sym_LBRACK] = ACTIONS(2018), - [anon_sym_this] = ACTIONS(2016), - [anon_sym_AT] = ACTIONS(2016), - [anon_sym_AT_COLON] = ACTIONS(2018), - [anon_sym_if] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2016), - [anon_sym_TILDE] = ACTIONS(2018), - [anon_sym_BANG] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2016), - [anon_sym_PLUS_PLUS] = ACTIONS(2018), - [anon_sym_DASH_DASH] = ACTIONS(2018), - [anon_sym_PERCENT] = ACTIONS(2018), - [anon_sym_STAR] = ACTIONS(2018), - [anon_sym_SLASH] = ACTIONS(2016), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_LT_LT] = ACTIONS(2018), - [anon_sym_GT_GT] = ACTIONS(2016), - [anon_sym_GT_GT_GT] = ACTIONS(2018), - [anon_sym_AMP] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2016), - [anon_sym_CARET] = ACTIONS(2018), - [anon_sym_AMP_AMP] = ACTIONS(2018), - [anon_sym_PIPE_PIPE] = ACTIONS(2018), - [anon_sym_EQ_EQ] = ACTIONS(2018), - [anon_sym_BANG_EQ] = ACTIONS(2018), - [anon_sym_LT] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2018), - [anon_sym_GT] = ACTIONS(2016), - [anon_sym_GT_EQ] = ACTIONS(2018), - [anon_sym_EQ_GT] = ACTIONS(2018), - [anon_sym_QMARK_QMARK] = ACTIONS(2018), - [anon_sym_EQ] = ACTIONS(2016), - [sym__rangeOperator] = ACTIONS(2018), - [anon_sym_null] = ACTIONS(2016), - [anon_sym_macro] = ACTIONS(2016), - [anon_sym_abstract] = ACTIONS(2016), - [anon_sym_static] = ACTIONS(2016), - [anon_sym_public] = ACTIONS(2016), - [anon_sym_private] = ACTIONS(2016), - [anon_sym_extern] = ACTIONS(2016), - [anon_sym_inline] = ACTIONS(2016), - [anon_sym_overload] = ACTIONS(2016), - [anon_sym_override] = ACTIONS(2016), - [anon_sym_final] = ACTIONS(2016), - [anon_sym_class] = ACTIONS(2016), - [anon_sym_interface] = ACTIONS(2016), - [anon_sym_typedef] = ACTIONS(2016), - [anon_sym_function] = ACTIONS(2016), - [anon_sym_var] = ACTIONS(2016), - [aux_sym_integer_token1] = ACTIONS(2016), - [aux_sym_integer_token2] = ACTIONS(2018), - [aux_sym_float_token1] = ACTIONS(2016), - [aux_sym_float_token2] = ACTIONS(2018), - [anon_sym_true] = ACTIONS(2016), - [anon_sym_false] = ACTIONS(2016), - [aux_sym_string_token1] = ACTIONS(2018), - [aux_sym_string_token3] = ACTIONS(2018), - [sym_comment] = ACTIONS(3), + [sym_catch_statement] = STATE(635), + [aux_sym_try_statement_repeat1] = STATE(635), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3368), [sym__closing_brace_unmarker] = ACTIONS(3), }, [639] = { - [ts_builtin_sym_end] = ACTIONS(2358), - [sym_identifier] = ACTIONS(2356), - [anon_sym_POUND] = ACTIONS(2358), - [anon_sym_package] = ACTIONS(2356), - [anon_sym_import] = ACTIONS(2356), - [anon_sym_using] = ACTIONS(2356), - [anon_sym_throw] = ACTIONS(2356), - [anon_sym_LPAREN] = ACTIONS(2358), - [anon_sym_switch] = ACTIONS(2356), - [anon_sym_LBRACE] = ACTIONS(2358), - [anon_sym_cast] = ACTIONS(2356), - [anon_sym_DOLLARtype] = ACTIONS(2358), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_untyped] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_LBRACK] = ACTIONS(2358), - [anon_sym_this] = ACTIONS(2356), - [anon_sym_AT] = ACTIONS(2356), - [anon_sym_AT_COLON] = ACTIONS(2358), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_new] = ACTIONS(2356), - [anon_sym_TILDE] = ACTIONS(2358), - [anon_sym_BANG] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2356), - [anon_sym_PLUS_PLUS] = ACTIONS(2358), - [anon_sym_DASH_DASH] = ACTIONS(2358), - [anon_sym_PERCENT] = ACTIONS(2358), - [anon_sym_STAR] = ACTIONS(2358), - [anon_sym_SLASH] = ACTIONS(2356), - [anon_sym_PLUS] = ACTIONS(2356), - [anon_sym_LT_LT] = ACTIONS(2358), - [anon_sym_GT_GT] = ACTIONS(2356), - [anon_sym_GT_GT_GT] = ACTIONS(2358), - [anon_sym_AMP] = ACTIONS(2356), - [anon_sym_PIPE] = ACTIONS(2356), - [anon_sym_CARET] = ACTIONS(2358), - [anon_sym_AMP_AMP] = ACTIONS(2358), - [anon_sym_PIPE_PIPE] = ACTIONS(2358), - [anon_sym_EQ_EQ] = ACTIONS(2358), - [anon_sym_BANG_EQ] = ACTIONS(2358), - [anon_sym_LT] = ACTIONS(2356), - [anon_sym_LT_EQ] = ACTIONS(2358), - [anon_sym_GT] = ACTIONS(2356), - [anon_sym_GT_EQ] = ACTIONS(2358), - [anon_sym_EQ_GT] = ACTIONS(2358), - [anon_sym_QMARK_QMARK] = ACTIONS(2358), - [anon_sym_EQ] = ACTIONS(2356), - [sym__rangeOperator] = ACTIONS(2358), - [anon_sym_null] = ACTIONS(2356), - [anon_sym_macro] = ACTIONS(2356), - [anon_sym_abstract] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_public] = ACTIONS(2356), - [anon_sym_private] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_inline] = ACTIONS(2356), - [anon_sym_overload] = ACTIONS(2356), - [anon_sym_override] = ACTIONS(2356), - [anon_sym_final] = ACTIONS(2356), - [anon_sym_class] = ACTIONS(2356), - [anon_sym_interface] = ACTIONS(2356), - [anon_sym_typedef] = ACTIONS(2356), - [anon_sym_function] = ACTIONS(2356), - [anon_sym_var] = ACTIONS(2356), - [aux_sym_integer_token1] = ACTIONS(2356), - [aux_sym_integer_token2] = ACTIONS(2358), - [aux_sym_float_token1] = ACTIONS(2356), - [aux_sym_float_token2] = ACTIONS(2358), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [aux_sym_string_token1] = ACTIONS(2358), - [aux_sym_string_token3] = ACTIONS(2358), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(572), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_catch] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2629), [sym__closing_brace_unmarker] = ACTIONS(3), }, [640] = { - [ts_builtin_sym_end] = ACTIONS(1886), - [sym_identifier] = ACTIONS(1884), - [anon_sym_POUND] = ACTIONS(1886), - [anon_sym_package] = ACTIONS(1884), - [anon_sym_import] = ACTIONS(1884), - [anon_sym_using] = ACTIONS(1884), - [anon_sym_throw] = ACTIONS(1884), - [anon_sym_LPAREN] = ACTIONS(1886), - [anon_sym_switch] = ACTIONS(1884), - [anon_sym_LBRACE] = ACTIONS(1886), - [anon_sym_cast] = ACTIONS(1884), - [anon_sym_DOLLARtype] = ACTIONS(1886), - [anon_sym_return] = ACTIONS(1884), - [anon_sym_untyped] = ACTIONS(1884), - [anon_sym_break] = ACTIONS(1884), - [anon_sym_continue] = ACTIONS(1884), - [anon_sym_LBRACK] = ACTIONS(1886), - [anon_sym_this] = ACTIONS(1884), - [anon_sym_AT] = ACTIONS(1884), - [anon_sym_AT_COLON] = ACTIONS(1886), - [anon_sym_if] = ACTIONS(1884), - [anon_sym_new] = ACTIONS(1884), - [anon_sym_TILDE] = ACTIONS(1886), - [anon_sym_BANG] = ACTIONS(1884), - [anon_sym_DASH] = ACTIONS(1884), - [anon_sym_PLUS_PLUS] = ACTIONS(1886), - [anon_sym_DASH_DASH] = ACTIONS(1886), - [anon_sym_PERCENT] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(1886), - [anon_sym_SLASH] = ACTIONS(1884), - [anon_sym_PLUS] = ACTIONS(1884), - [anon_sym_LT_LT] = ACTIONS(1886), - [anon_sym_GT_GT] = ACTIONS(1884), - [anon_sym_GT_GT_GT] = ACTIONS(1886), - [anon_sym_AMP] = ACTIONS(1884), - [anon_sym_PIPE] = ACTIONS(1884), - [anon_sym_CARET] = ACTIONS(1886), - [anon_sym_AMP_AMP] = ACTIONS(1886), - [anon_sym_PIPE_PIPE] = ACTIONS(1886), - [anon_sym_EQ_EQ] = ACTIONS(1886), - [anon_sym_BANG_EQ] = ACTIONS(1886), - [anon_sym_LT] = ACTIONS(1884), - [anon_sym_LT_EQ] = ACTIONS(1886), - [anon_sym_GT] = ACTIONS(1884), - [anon_sym_GT_EQ] = ACTIONS(1886), - [anon_sym_EQ_GT] = ACTIONS(1886), - [anon_sym_QMARK_QMARK] = ACTIONS(1886), - [anon_sym_EQ] = ACTIONS(1884), - [sym__rangeOperator] = ACTIONS(1886), - [anon_sym_null] = ACTIONS(1884), - [anon_sym_macro] = ACTIONS(1884), - [anon_sym_abstract] = ACTIONS(1884), - [anon_sym_static] = ACTIONS(1884), - [anon_sym_public] = ACTIONS(1884), - [anon_sym_private] = ACTIONS(1884), - [anon_sym_extern] = ACTIONS(1884), - [anon_sym_inline] = ACTIONS(1884), - [anon_sym_overload] = ACTIONS(1884), - [anon_sym_override] = ACTIONS(1884), - [anon_sym_final] = ACTIONS(1884), - [anon_sym_class] = ACTIONS(1884), - [anon_sym_interface] = ACTIONS(1884), - [anon_sym_typedef] = ACTIONS(1884), - [anon_sym_function] = ACTIONS(1884), - [anon_sym_var] = ACTIONS(1884), - [aux_sym_integer_token1] = ACTIONS(1884), - [aux_sym_integer_token2] = ACTIONS(1886), - [aux_sym_float_token1] = ACTIONS(1884), - [aux_sym_float_token2] = ACTIONS(1886), - [anon_sym_true] = ACTIONS(1884), - [anon_sym_false] = ACTIONS(1884), - [aux_sym_string_token1] = ACTIONS(1886), - [aux_sym_string_token3] = ACTIONS(1886), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(587), + [sym_identifier] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_package] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_cast] = ACTIONS(2667), + [anon_sym_DOLLARtype] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_untyped] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_this] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_AT_COLON] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_EQ_GT] = ACTIONS(2669), + [anon_sym_QMARK_QMARK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_null] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym_overload] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_final] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [aux_sym_integer_token1] = ACTIONS(2667), + [aux_sym_integer_token2] = ACTIONS(2669), + [aux_sym_float_token1] = ACTIONS(2667), + [aux_sym_float_token2] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym_string_token1] = ACTIONS(2669), + [aux_sym_string_token3] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2669), [sym__closing_brace_unmarker] = ACTIONS(3), }, [641] = { - [ts_builtin_sym_end] = ACTIONS(2094), - [sym_identifier] = ACTIONS(2092), - [anon_sym_POUND] = ACTIONS(2094), - [anon_sym_package] = ACTIONS(2092), - [anon_sym_import] = ACTIONS(2092), - [anon_sym_using] = ACTIONS(2092), - [anon_sym_throw] = ACTIONS(2092), - [anon_sym_LPAREN] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2092), - [anon_sym_LBRACE] = ACTIONS(2094), - [anon_sym_cast] = ACTIONS(2092), - [anon_sym_DOLLARtype] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2092), - [anon_sym_untyped] = ACTIONS(2092), - [anon_sym_break] = ACTIONS(2092), - [anon_sym_continue] = ACTIONS(2092), - [anon_sym_LBRACK] = ACTIONS(2094), - [anon_sym_this] = ACTIONS(2092), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_AT_COLON] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2092), - [anon_sym_new] = ACTIONS(2092), - [anon_sym_TILDE] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_DASH] = ACTIONS(2092), - [anon_sym_PLUS_PLUS] = ACTIONS(2094), - [anon_sym_DASH_DASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2092), - [anon_sym_PLUS] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2094), - [anon_sym_GT_GT] = ACTIONS(2092), - [anon_sym_GT_GT_GT] = ACTIONS(2094), - [anon_sym_AMP] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2092), - [anon_sym_CARET] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2094), - [anon_sym_PIPE_PIPE] = ACTIONS(2094), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_LT_EQ] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2094), - [anon_sym_EQ_GT] = ACTIONS(2094), - [anon_sym_QMARK_QMARK] = ACTIONS(2094), - [anon_sym_EQ] = ACTIONS(2092), - [sym__rangeOperator] = ACTIONS(2094), - [anon_sym_null] = ACTIONS(2092), - [anon_sym_macro] = ACTIONS(2092), - [anon_sym_abstract] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2092), - [anon_sym_public] = ACTIONS(2092), - [anon_sym_private] = ACTIONS(2092), - [anon_sym_extern] = ACTIONS(2092), - [anon_sym_inline] = ACTIONS(2092), - [anon_sym_overload] = ACTIONS(2092), - [anon_sym_override] = ACTIONS(2092), - [anon_sym_final] = ACTIONS(2092), - [anon_sym_class] = ACTIONS(2092), - [anon_sym_interface] = ACTIONS(2092), - [anon_sym_typedef] = ACTIONS(2092), - [anon_sym_function] = ACTIONS(2092), - [anon_sym_var] = ACTIONS(2092), - [aux_sym_integer_token1] = ACTIONS(2092), - [aux_sym_integer_token2] = ACTIONS(2094), - [aux_sym_float_token1] = ACTIONS(2092), - [aux_sym_float_token2] = ACTIONS(2094), - [anon_sym_true] = ACTIONS(2092), - [anon_sym_false] = ACTIONS(2092), - [aux_sym_string_token1] = ACTIONS(2094), - [aux_sym_string_token3] = ACTIONS(2094), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(421), + [sym_identifier] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_package] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_cast] = ACTIONS(2677), + [anon_sym_DOLLARtype] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_untyped] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_this] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_AT_COLON] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_catch] = ACTIONS(2677), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_QMARK_QMARK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2677), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_overload] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_final] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [aux_sym_integer_token1] = ACTIONS(2677), + [aux_sym_integer_token2] = ACTIONS(2679), + [aux_sym_float_token1] = ACTIONS(2677), + [aux_sym_float_token2] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [aux_sym_string_token1] = ACTIONS(2679), + [aux_sym_string_token3] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2679), [sym__closing_brace_unmarker] = ACTIONS(3), }, [642] = { - [ts_builtin_sym_end] = ACTIONS(2022), - [sym_identifier] = ACTIONS(2020), - [anon_sym_POUND] = ACTIONS(2022), - [anon_sym_package] = ACTIONS(2020), - [anon_sym_import] = ACTIONS(2020), - [anon_sym_using] = ACTIONS(2020), - [anon_sym_throw] = ACTIONS(2020), - [anon_sym_LPAREN] = ACTIONS(2022), - [anon_sym_switch] = ACTIONS(2020), - [anon_sym_LBRACE] = ACTIONS(2022), - [anon_sym_cast] = ACTIONS(2020), - [anon_sym_DOLLARtype] = ACTIONS(2022), - [anon_sym_return] = ACTIONS(2020), - [anon_sym_untyped] = ACTIONS(2020), - [anon_sym_break] = ACTIONS(2020), - [anon_sym_continue] = ACTIONS(2020), - [anon_sym_LBRACK] = ACTIONS(2022), - [anon_sym_this] = ACTIONS(2020), - [anon_sym_AT] = ACTIONS(2020), - [anon_sym_AT_COLON] = ACTIONS(2022), - [anon_sym_if] = ACTIONS(2020), - [anon_sym_new] = ACTIONS(2020), - [anon_sym_TILDE] = ACTIONS(2022), - [anon_sym_BANG] = ACTIONS(2020), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_PLUS_PLUS] = ACTIONS(2022), - [anon_sym_DASH_DASH] = ACTIONS(2022), - [anon_sym_PERCENT] = ACTIONS(2022), - [anon_sym_STAR] = ACTIONS(2022), - [anon_sym_SLASH] = ACTIONS(2020), - [anon_sym_PLUS] = ACTIONS(2020), - [anon_sym_LT_LT] = ACTIONS(2022), - [anon_sym_GT_GT] = ACTIONS(2020), - [anon_sym_GT_GT_GT] = ACTIONS(2022), - [anon_sym_AMP] = ACTIONS(2020), - [anon_sym_PIPE] = ACTIONS(2020), - [anon_sym_CARET] = ACTIONS(2022), - [anon_sym_AMP_AMP] = ACTIONS(2022), - [anon_sym_PIPE_PIPE] = ACTIONS(2022), - [anon_sym_EQ_EQ] = ACTIONS(2022), - [anon_sym_BANG_EQ] = ACTIONS(2022), - [anon_sym_LT] = ACTIONS(2020), - [anon_sym_LT_EQ] = ACTIONS(2022), - [anon_sym_GT] = ACTIONS(2020), - [anon_sym_GT_EQ] = ACTIONS(2022), - [anon_sym_EQ_GT] = ACTIONS(2022), - [anon_sym_QMARK_QMARK] = ACTIONS(2022), - [anon_sym_EQ] = ACTIONS(2020), - [sym__rangeOperator] = ACTIONS(2022), - [anon_sym_null] = ACTIONS(2020), - [anon_sym_macro] = ACTIONS(2020), - [anon_sym_abstract] = ACTIONS(2020), - [anon_sym_static] = ACTIONS(2020), - [anon_sym_public] = ACTIONS(2020), - [anon_sym_private] = ACTIONS(2020), - [anon_sym_extern] = ACTIONS(2020), - [anon_sym_inline] = ACTIONS(2020), - [anon_sym_overload] = ACTIONS(2020), - [anon_sym_override] = ACTIONS(2020), - [anon_sym_final] = ACTIONS(2020), - [anon_sym_class] = ACTIONS(2020), - [anon_sym_interface] = ACTIONS(2020), - [anon_sym_typedef] = ACTIONS(2020), - [anon_sym_function] = ACTIONS(2020), - [anon_sym_var] = ACTIONS(2020), - [aux_sym_integer_token1] = ACTIONS(2020), - [aux_sym_integer_token2] = ACTIONS(2022), - [aux_sym_float_token1] = ACTIONS(2020), - [aux_sym_float_token2] = ACTIONS(2022), - [anon_sym_true] = ACTIONS(2020), - [anon_sym_false] = ACTIONS(2020), - [aux_sym_string_token1] = ACTIONS(2022), - [aux_sym_string_token3] = ACTIONS(2022), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_package] = ACTIONS(2683), + [anon_sym_import] = ACTIONS(2683), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_using] = ACTIONS(2683), + [anon_sym_throw] = ACTIONS(2683), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_switch] = ACTIONS(2683), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_cast] = ACTIONS(2683), + [anon_sym_DOLLARtype] = ACTIONS(2681), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_untyped] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_this] = ACTIONS(2683), + [anon_sym_AT] = ACTIONS(2683), + [anon_sym_AT_COLON] = ACTIONS(2681), + [anon_sym_try] = ACTIONS(2683), + [anon_sym_catch] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_do] = ACTIONS(2683), + [anon_sym_new] = ACTIONS(2683), + [anon_sym_TILDE] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2683), + [anon_sym_PLUS_PLUS] = ACTIONS(2681), + [anon_sym_DASH_DASH] = ACTIONS(2681), + [anon_sym_PERCENT] = ACTIONS(2681), + [anon_sym_SLASH] = ACTIONS(2683), + [anon_sym_PLUS] = ACTIONS(2683), + [anon_sym_LT_LT] = ACTIONS(2681), + [anon_sym_GT_GT] = ACTIONS(2683), + [anon_sym_GT_GT_GT] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2683), + [anon_sym_PIPE] = ACTIONS(2683), + [anon_sym_CARET] = ACTIONS(2681), + [anon_sym_AMP_AMP] = ACTIONS(2681), + [anon_sym_PIPE_PIPE] = ACTIONS(2681), + [anon_sym_EQ_EQ] = ACTIONS(2681), + [anon_sym_BANG_EQ] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2683), + [anon_sym_LT_EQ] = ACTIONS(2681), + [anon_sym_GT] = ACTIONS(2683), + [anon_sym_GT_EQ] = ACTIONS(2681), + [anon_sym_EQ_GT] = ACTIONS(2681), + [anon_sym_QMARK_QMARK] = ACTIONS(2681), + [anon_sym_EQ] = ACTIONS(2683), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2681), + [anon_sym_null] = ACTIONS(2683), + [anon_sym_macro] = ACTIONS(2683), + [anon_sym_abstract] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_public] = ACTIONS(2683), + [anon_sym_private] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_inline] = ACTIONS(2683), + [anon_sym_overload] = ACTIONS(2683), + [anon_sym_override] = ACTIONS(2683), + [anon_sym_final] = ACTIONS(2683), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_interface] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_typedef] = ACTIONS(2683), + [anon_sym_function] = ACTIONS(2683), + [anon_sym_var] = ACTIONS(2683), + [aux_sym_integer_token1] = ACTIONS(2683), + [aux_sym_integer_token2] = ACTIONS(2681), + [aux_sym_float_token1] = ACTIONS(2683), + [aux_sym_float_token2] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [aux_sym_string_token1] = ACTIONS(2681), + [aux_sym_string_token3] = ACTIONS(2681), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [643] = { - [ts_builtin_sym_end] = ACTIONS(1870), - [sym_identifier] = ACTIONS(1868), - [anon_sym_POUND] = ACTIONS(1870), - [anon_sym_package] = ACTIONS(1868), - [anon_sym_import] = ACTIONS(1868), - [anon_sym_using] = ACTIONS(1868), - [anon_sym_throw] = ACTIONS(1868), - [anon_sym_LPAREN] = ACTIONS(1870), - [anon_sym_switch] = ACTIONS(1868), - [anon_sym_LBRACE] = ACTIONS(1870), - [anon_sym_cast] = ACTIONS(1868), - [anon_sym_DOLLARtype] = ACTIONS(1870), - [anon_sym_return] = ACTIONS(1868), - [anon_sym_untyped] = ACTIONS(1868), - [anon_sym_break] = ACTIONS(1868), - [anon_sym_continue] = ACTIONS(1868), - [anon_sym_LBRACK] = ACTIONS(1870), - [anon_sym_this] = ACTIONS(1868), - [anon_sym_AT] = ACTIONS(1868), - [anon_sym_AT_COLON] = ACTIONS(1870), - [anon_sym_if] = ACTIONS(1868), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_TILDE] = ACTIONS(1870), - [anon_sym_BANG] = ACTIONS(1868), - [anon_sym_DASH] = ACTIONS(1868), - [anon_sym_PLUS_PLUS] = ACTIONS(1870), - [anon_sym_DASH_DASH] = ACTIONS(1870), - [anon_sym_PERCENT] = ACTIONS(1870), - [anon_sym_STAR] = ACTIONS(1870), - [anon_sym_SLASH] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1868), - [anon_sym_LT_LT] = ACTIONS(1870), - [anon_sym_GT_GT] = ACTIONS(1868), - [anon_sym_GT_GT_GT] = ACTIONS(1870), - [anon_sym_AMP] = ACTIONS(1868), - [anon_sym_PIPE] = ACTIONS(1868), - [anon_sym_CARET] = ACTIONS(1870), - [anon_sym_AMP_AMP] = ACTIONS(1870), - [anon_sym_PIPE_PIPE] = ACTIONS(1870), - [anon_sym_EQ_EQ] = ACTIONS(1870), - [anon_sym_BANG_EQ] = ACTIONS(1870), - [anon_sym_LT] = ACTIONS(1868), - [anon_sym_LT_EQ] = ACTIONS(1870), - [anon_sym_GT] = ACTIONS(1868), - [anon_sym_GT_EQ] = ACTIONS(1870), - [anon_sym_EQ_GT] = ACTIONS(1870), - [anon_sym_QMARK_QMARK] = ACTIONS(1870), - [anon_sym_EQ] = ACTIONS(1868), - [sym__rangeOperator] = ACTIONS(1870), - [anon_sym_null] = ACTIONS(1868), - [anon_sym_macro] = ACTIONS(1868), - [anon_sym_abstract] = ACTIONS(1868), - [anon_sym_static] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1868), - [anon_sym_private] = ACTIONS(1868), - [anon_sym_extern] = ACTIONS(1868), - [anon_sym_inline] = ACTIONS(1868), - [anon_sym_overload] = ACTIONS(1868), - [anon_sym_override] = ACTIONS(1868), - [anon_sym_final] = ACTIONS(1868), - [anon_sym_class] = ACTIONS(1868), - [anon_sym_interface] = ACTIONS(1868), - [anon_sym_typedef] = ACTIONS(1868), - [anon_sym_function] = ACTIONS(1868), - [anon_sym_var] = ACTIONS(1868), - [aux_sym_integer_token1] = ACTIONS(1868), - [aux_sym_integer_token2] = ACTIONS(1870), - [aux_sym_float_token1] = ACTIONS(1868), - [aux_sym_float_token2] = ACTIONS(1870), - [anon_sym_true] = ACTIONS(1868), - [anon_sym_false] = ACTIONS(1868), - [aux_sym_string_token1] = ACTIONS(1870), - [aux_sym_string_token3] = ACTIONS(1870), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3359), + [anon_sym_POUND] = ACTIONS(3357), + [anon_sym_package] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_STAR] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_cast] = ACTIONS(3359), + [anon_sym_DOLLARtype] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_untyped] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_this] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_AT_COLON] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_catch] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [anon_sym_PERCENT] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_LT_LT] = ACTIONS(3357), + [anon_sym_GT_GT] = ACTIONS(3359), + [anon_sym_GT_GT_GT] = ACTIONS(3357), + [anon_sym_AMP] = ACTIONS(3359), + [anon_sym_PIPE] = ACTIONS(3359), + [anon_sym_CARET] = ACTIONS(3357), + [anon_sym_AMP_AMP] = ACTIONS(3357), + [anon_sym_PIPE_PIPE] = ACTIONS(3357), + [anon_sym_EQ_EQ] = ACTIONS(3357), + [anon_sym_BANG_EQ] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_LT_EQ] = ACTIONS(3357), + [anon_sym_GT] = ACTIONS(3359), + [anon_sym_GT_EQ] = ACTIONS(3357), + [anon_sym_EQ_GT] = ACTIONS(3357), + [anon_sym_QMARK_QMARK] = ACTIONS(3357), + [anon_sym_EQ] = ACTIONS(3359), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3357), + [anon_sym_null] = ACTIONS(3359), + [anon_sym_macro] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_extern] = ACTIONS(3359), + [anon_sym_inline] = ACTIONS(3359), + [anon_sym_overload] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_final] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [anon_sym_typedef] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [aux_sym_integer_token1] = ACTIONS(3359), + [aux_sym_integer_token2] = ACTIONS(3357), + [aux_sym_float_token1] = ACTIONS(3359), + [aux_sym_float_token2] = ACTIONS(3357), + [anon_sym_true] = ACTIONS(3359), + [anon_sym_false] = ACTIONS(3359), + [aux_sym_string_token1] = ACTIONS(3357), + [aux_sym_string_token3] = ACTIONS(3357), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [644] = { - [ts_builtin_sym_end] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2340), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_package] = ACTIONS(2340), - [anon_sym_import] = ACTIONS(2340), - [anon_sym_using] = ACTIONS(2340), - [anon_sym_throw] = ACTIONS(2340), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_switch] = ACTIONS(2340), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_cast] = ACTIONS(2340), - [anon_sym_DOLLARtype] = ACTIONS(2342), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_untyped] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_this] = ACTIONS(2340), - [anon_sym_AT] = ACTIONS(2340), - [anon_sym_AT_COLON] = ACTIONS(2342), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_new] = ACTIONS(2340), - [anon_sym_TILDE] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2340), - [anon_sym_PLUS_PLUS] = ACTIONS(2342), - [anon_sym_DASH_DASH] = ACTIONS(2342), - [anon_sym_PERCENT] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_SLASH] = ACTIONS(2340), - [anon_sym_PLUS] = ACTIONS(2340), - [anon_sym_LT_LT] = ACTIONS(2342), - [anon_sym_GT_GT] = ACTIONS(2340), - [anon_sym_GT_GT_GT] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2340), - [anon_sym_PIPE] = ACTIONS(2340), - [anon_sym_CARET] = ACTIONS(2342), - [anon_sym_AMP_AMP] = ACTIONS(2342), - [anon_sym_PIPE_PIPE] = ACTIONS(2342), - [anon_sym_EQ_EQ] = ACTIONS(2342), - [anon_sym_BANG_EQ] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2340), - [anon_sym_LT_EQ] = ACTIONS(2342), - [anon_sym_GT] = ACTIONS(2340), - [anon_sym_GT_EQ] = ACTIONS(2342), - [anon_sym_EQ_GT] = ACTIONS(2342), - [anon_sym_QMARK_QMARK] = ACTIONS(2342), - [anon_sym_EQ] = ACTIONS(2340), - [sym__rangeOperator] = ACTIONS(2342), - [anon_sym_null] = ACTIONS(2340), - [anon_sym_macro] = ACTIONS(2340), - [anon_sym_abstract] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_public] = ACTIONS(2340), - [anon_sym_private] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_inline] = ACTIONS(2340), - [anon_sym_overload] = ACTIONS(2340), - [anon_sym_override] = ACTIONS(2340), - [anon_sym_final] = ACTIONS(2340), - [anon_sym_class] = ACTIONS(2340), - [anon_sym_interface] = ACTIONS(2340), - [anon_sym_typedef] = ACTIONS(2340), - [anon_sym_function] = ACTIONS(2340), - [anon_sym_var] = ACTIONS(2340), - [aux_sym_integer_token1] = ACTIONS(2340), - [aux_sym_integer_token2] = ACTIONS(2342), - [aux_sym_float_token1] = ACTIONS(2340), - [aux_sym_float_token2] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [aux_sym_string_token1] = ACTIONS(2342), - [aux_sym_string_token3] = ACTIONS(2342), + [sym_catch_statement] = STATE(625), + [aux_sym_try_statement_repeat1] = STATE(625), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_POUND] = ACTIONS(3368), + [anon_sym_package] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_STAR] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_cast] = ACTIONS(3370), + [anon_sym_DOLLARtype] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_untyped] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_this] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_AT_COLON] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_catch] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_PERCENT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_LT_LT] = ACTIONS(3368), + [anon_sym_GT_GT] = ACTIONS(3370), + [anon_sym_GT_GT_GT] = ACTIONS(3368), + [anon_sym_AMP] = ACTIONS(3370), + [anon_sym_PIPE] = ACTIONS(3370), + [anon_sym_CARET] = ACTIONS(3368), + [anon_sym_AMP_AMP] = ACTIONS(3368), + [anon_sym_PIPE_PIPE] = ACTIONS(3368), + [anon_sym_EQ_EQ] = ACTIONS(3368), + [anon_sym_BANG_EQ] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_LT_EQ] = ACTIONS(3368), + [anon_sym_GT] = ACTIONS(3370), + [anon_sym_GT_EQ] = ACTIONS(3368), + [anon_sym_EQ_GT] = ACTIONS(3368), + [anon_sym_QMARK_QMARK] = ACTIONS(3368), + [anon_sym_EQ] = ACTIONS(3370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3368), + [anon_sym_null] = ACTIONS(3370), + [anon_sym_macro] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_extern] = ACTIONS(3370), + [anon_sym_inline] = ACTIONS(3370), + [anon_sym_overload] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_final] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), + [anon_sym_typedef] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [aux_sym_integer_token1] = ACTIONS(3370), + [aux_sym_integer_token2] = ACTIONS(3368), + [aux_sym_float_token1] = ACTIONS(3370), + [aux_sym_float_token2] = ACTIONS(3368), + [anon_sym_true] = ACTIONS(3370), + [anon_sym_false] = ACTIONS(3370), + [aux_sym_string_token1] = ACTIONS(3368), + [aux_sym_string_token3] = ACTIONS(3368), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [645] = { - [ts_builtin_sym_end] = ACTIONS(2030), - [sym_identifier] = ACTIONS(2028), - [anon_sym_POUND] = ACTIONS(2030), - [anon_sym_package] = ACTIONS(2028), - [anon_sym_import] = ACTIONS(2028), - [anon_sym_using] = ACTIONS(2028), - [anon_sym_throw] = ACTIONS(2028), - [anon_sym_LPAREN] = ACTIONS(2030), - [anon_sym_switch] = ACTIONS(2028), - [anon_sym_LBRACE] = ACTIONS(2030), - [anon_sym_cast] = ACTIONS(2028), - [anon_sym_DOLLARtype] = ACTIONS(2030), - [anon_sym_return] = ACTIONS(2028), - [anon_sym_untyped] = ACTIONS(2028), - [anon_sym_break] = ACTIONS(2028), - [anon_sym_continue] = ACTIONS(2028), - [anon_sym_LBRACK] = ACTIONS(2030), - [anon_sym_this] = ACTIONS(2028), - [anon_sym_AT] = ACTIONS(2028), - [anon_sym_AT_COLON] = ACTIONS(2030), - [anon_sym_if] = ACTIONS(2028), - [anon_sym_new] = ACTIONS(2028), - [anon_sym_TILDE] = ACTIONS(2030), - [anon_sym_BANG] = ACTIONS(2028), - [anon_sym_DASH] = ACTIONS(2028), - [anon_sym_PLUS_PLUS] = ACTIONS(2030), - [anon_sym_DASH_DASH] = ACTIONS(2030), - [anon_sym_PERCENT] = ACTIONS(2030), - [anon_sym_STAR] = ACTIONS(2030), - [anon_sym_SLASH] = ACTIONS(2028), - [anon_sym_PLUS] = ACTIONS(2028), - [anon_sym_LT_LT] = ACTIONS(2030), - [anon_sym_GT_GT] = ACTIONS(2028), - [anon_sym_GT_GT_GT] = ACTIONS(2030), - [anon_sym_AMP] = ACTIONS(2028), - [anon_sym_PIPE] = ACTIONS(2028), - [anon_sym_CARET] = ACTIONS(2030), - [anon_sym_AMP_AMP] = ACTIONS(2030), - [anon_sym_PIPE_PIPE] = ACTIONS(2030), - [anon_sym_EQ_EQ] = ACTIONS(2030), - [anon_sym_BANG_EQ] = ACTIONS(2030), - [anon_sym_LT] = ACTIONS(2028), - [anon_sym_LT_EQ] = ACTIONS(2030), - [anon_sym_GT] = ACTIONS(2028), - [anon_sym_GT_EQ] = ACTIONS(2030), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_QMARK] = ACTIONS(2030), - [anon_sym_EQ] = ACTIONS(2028), - [sym__rangeOperator] = ACTIONS(2030), - [anon_sym_null] = ACTIONS(2028), - [anon_sym_macro] = ACTIONS(2028), - [anon_sym_abstract] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(2028), - [anon_sym_public] = ACTIONS(2028), - [anon_sym_private] = ACTIONS(2028), - [anon_sym_extern] = ACTIONS(2028), - [anon_sym_inline] = ACTIONS(2028), - [anon_sym_overload] = ACTIONS(2028), - [anon_sym_override] = ACTIONS(2028), - [anon_sym_final] = ACTIONS(2028), - [anon_sym_class] = ACTIONS(2028), - [anon_sym_interface] = ACTIONS(2028), - [anon_sym_typedef] = ACTIONS(2028), - [anon_sym_function] = ACTIONS(2028), - [anon_sym_var] = ACTIONS(2028), - [aux_sym_integer_token1] = ACTIONS(2028), - [aux_sym_integer_token2] = ACTIONS(2030), - [aux_sym_float_token1] = ACTIONS(2028), - [aux_sym_float_token2] = ACTIONS(2030), - [anon_sym_true] = ACTIONS(2028), - [anon_sym_false] = ACTIONS(2028), - [aux_sym_string_token1] = ACTIONS(2030), - [aux_sym_string_token3] = ACTIONS(2030), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_package] = ACTIONS(2633), + [anon_sym_import] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_cast] = ACTIONS(2633), + [anon_sym_DOLLARtype] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_untyped] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_this] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_AT_COLON] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_catch] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_QMARK_QMARK] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_macro] = ACTIONS(2633), + [anon_sym_abstract] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_public] = ACTIONS(2633), + [anon_sym_private] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_overload] = ACTIONS(2633), + [anon_sym_override] = ACTIONS(2633), + [anon_sym_final] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_interface] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_function] = ACTIONS(2633), + [anon_sym_var] = ACTIONS(2633), + [aux_sym_integer_token1] = ACTIONS(2633), + [aux_sym_integer_token2] = ACTIONS(2635), + [aux_sym_float_token1] = ACTIONS(2633), + [aux_sym_float_token2] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [aux_sym_string_token1] = ACTIONS(2635), + [aux_sym_string_token3] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3449), [sym__closing_brace_unmarker] = ACTIONS(3), }, [646] = { - [ts_builtin_sym_end] = ACTIONS(1778), - [sym_identifier] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_package] = ACTIONS(1776), - [anon_sym_import] = ACTIONS(1776), - [anon_sym_using] = ACTIONS(1776), - [anon_sym_throw] = ACTIONS(1776), - [anon_sym_LPAREN] = ACTIONS(1778), - [anon_sym_switch] = ACTIONS(1776), - [anon_sym_LBRACE] = ACTIONS(1778), - [anon_sym_cast] = ACTIONS(1776), - [anon_sym_DOLLARtype] = ACTIONS(1778), - [anon_sym_return] = ACTIONS(1776), - [anon_sym_untyped] = ACTIONS(1776), - [anon_sym_break] = ACTIONS(1776), - [anon_sym_continue] = ACTIONS(1776), - [anon_sym_LBRACK] = ACTIONS(1778), - [anon_sym_this] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_AT_COLON] = ACTIONS(1778), - [anon_sym_if] = ACTIONS(1776), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_TILDE] = ACTIONS(1778), - [anon_sym_BANG] = ACTIONS(1776), - [anon_sym_DASH] = ACTIONS(1776), - [anon_sym_PLUS_PLUS] = ACTIONS(1778), - [anon_sym_DASH_DASH] = ACTIONS(1778), - [anon_sym_PERCENT] = ACTIONS(1778), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_SLASH] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1776), - [anon_sym_LT_LT] = ACTIONS(1778), - [anon_sym_GT_GT] = ACTIONS(1776), - [anon_sym_GT_GT_GT] = ACTIONS(1778), - [anon_sym_AMP] = ACTIONS(1776), - [anon_sym_PIPE] = ACTIONS(1776), - [anon_sym_CARET] = ACTIONS(1778), - [anon_sym_AMP_AMP] = ACTIONS(1778), - [anon_sym_PIPE_PIPE] = ACTIONS(1778), - [anon_sym_EQ_EQ] = ACTIONS(1778), - [anon_sym_BANG_EQ] = ACTIONS(1778), - [anon_sym_LT] = ACTIONS(1776), - [anon_sym_LT_EQ] = ACTIONS(1778), - [anon_sym_GT] = ACTIONS(1776), - [anon_sym_GT_EQ] = ACTIONS(1778), - [anon_sym_EQ_GT] = ACTIONS(1778), - [anon_sym_QMARK_QMARK] = ACTIONS(1778), - [anon_sym_EQ] = ACTIONS(1776), - [sym__rangeOperator] = ACTIONS(1778), - [anon_sym_null] = ACTIONS(1776), - [anon_sym_macro] = ACTIONS(1776), - [anon_sym_abstract] = ACTIONS(1776), - [anon_sym_static] = ACTIONS(1776), - [anon_sym_public] = ACTIONS(1776), - [anon_sym_private] = ACTIONS(1776), - [anon_sym_extern] = ACTIONS(1776), - [anon_sym_inline] = ACTIONS(1776), - [anon_sym_overload] = ACTIONS(1776), - [anon_sym_override] = ACTIONS(1776), - [anon_sym_final] = ACTIONS(1776), - [anon_sym_class] = ACTIONS(1776), - [anon_sym_interface] = ACTIONS(1776), - [anon_sym_typedef] = ACTIONS(1776), - [anon_sym_function] = ACTIONS(1776), - [anon_sym_var] = ACTIONS(1776), - [aux_sym_integer_token1] = ACTIONS(1776), - [aux_sym_integer_token2] = ACTIONS(1778), - [aux_sym_float_token1] = ACTIONS(1776), - [aux_sym_float_token2] = ACTIONS(1778), - [anon_sym_true] = ACTIONS(1776), - [anon_sym_false] = ACTIONS(1776), - [aux_sym_string_token1] = ACTIONS(1778), - [aux_sym_string_token3] = ACTIONS(1778), - [sym_comment] = ACTIONS(3), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2641), + [anon_sym_package] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_cast] = ACTIONS(2639), + [anon_sym_DOLLARtype] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_untyped] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_this] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_AT_COLON] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_QMARK_QMARK] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [anon_sym_null] = ACTIONS(2639), + [anon_sym_macro] = ACTIONS(2639), + [anon_sym_abstract] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_public] = ACTIONS(2639), + [anon_sym_private] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_overload] = ACTIONS(2639), + [anon_sym_override] = ACTIONS(2639), + [anon_sym_final] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_function] = ACTIONS(2639), + [anon_sym_var] = ACTIONS(2639), + [aux_sym_integer_token1] = ACTIONS(2639), + [aux_sym_integer_token2] = ACTIONS(2641), + [aux_sym_float_token1] = ACTIONS(2639), + [aux_sym_float_token2] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [aux_sym_string_token1] = ACTIONS(2641), + [aux_sym_string_token3] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3451), [sym__closing_brace_unmarker] = ACTIONS(3), }, [647] = { - [ts_builtin_sym_end] = ACTIONS(1866), - [sym_identifier] = ACTIONS(1864), - [anon_sym_POUND] = ACTIONS(1866), - [anon_sym_package] = ACTIONS(1864), - [anon_sym_import] = ACTIONS(1864), - [anon_sym_using] = ACTIONS(1864), - [anon_sym_throw] = ACTIONS(1864), - [anon_sym_LPAREN] = ACTIONS(1866), - [anon_sym_switch] = ACTIONS(1864), - [anon_sym_LBRACE] = ACTIONS(1866), - [anon_sym_cast] = ACTIONS(1864), - [anon_sym_DOLLARtype] = ACTIONS(1866), - [anon_sym_return] = ACTIONS(1864), - [anon_sym_untyped] = ACTIONS(1864), - [anon_sym_break] = ACTIONS(1864), - [anon_sym_continue] = ACTIONS(1864), - [anon_sym_LBRACK] = ACTIONS(1866), - [anon_sym_this] = ACTIONS(1864), - [anon_sym_AT] = ACTIONS(1864), - [anon_sym_AT_COLON] = ACTIONS(1866), - [anon_sym_if] = ACTIONS(1864), - [anon_sym_new] = ACTIONS(1864), - [anon_sym_TILDE] = ACTIONS(1866), - [anon_sym_BANG] = ACTIONS(1864), - [anon_sym_DASH] = ACTIONS(1864), - [anon_sym_PLUS_PLUS] = ACTIONS(1866), - [anon_sym_DASH_DASH] = ACTIONS(1866), - [anon_sym_PERCENT] = ACTIONS(1866), - [anon_sym_STAR] = ACTIONS(1866), - [anon_sym_SLASH] = ACTIONS(1864), - [anon_sym_PLUS] = ACTIONS(1864), - [anon_sym_LT_LT] = ACTIONS(1866), - [anon_sym_GT_GT] = ACTIONS(1864), - [anon_sym_GT_GT_GT] = ACTIONS(1866), - [anon_sym_AMP] = ACTIONS(1864), - [anon_sym_PIPE] = ACTIONS(1864), - [anon_sym_CARET] = ACTIONS(1866), - [anon_sym_AMP_AMP] = ACTIONS(1866), - [anon_sym_PIPE_PIPE] = ACTIONS(1866), - [anon_sym_EQ_EQ] = ACTIONS(1866), - [anon_sym_BANG_EQ] = ACTIONS(1866), - [anon_sym_LT] = ACTIONS(1864), - [anon_sym_LT_EQ] = ACTIONS(1866), - [anon_sym_GT] = ACTIONS(1864), - [anon_sym_GT_EQ] = ACTIONS(1866), - [anon_sym_EQ_GT] = ACTIONS(1866), - [anon_sym_QMARK_QMARK] = ACTIONS(1866), - [anon_sym_EQ] = ACTIONS(1864), - [sym__rangeOperator] = ACTIONS(1866), - [anon_sym_null] = ACTIONS(1864), - [anon_sym_macro] = ACTIONS(1864), - [anon_sym_abstract] = ACTIONS(1864), - [anon_sym_static] = ACTIONS(1864), - [anon_sym_public] = ACTIONS(1864), - [anon_sym_private] = ACTIONS(1864), - [anon_sym_extern] = ACTIONS(1864), - [anon_sym_inline] = ACTIONS(1864), - [anon_sym_overload] = ACTIONS(1864), - [anon_sym_override] = ACTIONS(1864), - [anon_sym_final] = ACTIONS(1864), - [anon_sym_class] = ACTIONS(1864), - [anon_sym_interface] = ACTIONS(1864), - [anon_sym_typedef] = ACTIONS(1864), - [anon_sym_function] = ACTIONS(1864), - [anon_sym_var] = ACTIONS(1864), - [aux_sym_integer_token1] = ACTIONS(1864), - [aux_sym_integer_token2] = ACTIONS(1866), - [aux_sym_float_token1] = ACTIONS(1864), - [aux_sym_float_token2] = ACTIONS(1866), - [anon_sym_true] = ACTIONS(1864), - [anon_sym_false] = ACTIONS(1864), - [aux_sym_string_token1] = ACTIONS(1866), - [aux_sym_string_token3] = ACTIONS(1866), + [sym_else_clause] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_package] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_cast] = ACTIONS(2667), + [anon_sym_DOLLARtype] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_untyped] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_this] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_AT_COLON] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_catch] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_EQ_GT] = ACTIONS(2669), + [anon_sym_QMARK_QMARK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_null] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym_overload] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_final] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [aux_sym_integer_token1] = ACTIONS(2667), + [aux_sym_integer_token2] = ACTIONS(2669), + [aux_sym_float_token1] = ACTIONS(2667), + [aux_sym_float_token2] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym_string_token1] = ACTIONS(2669), + [aux_sym_string_token3] = ACTIONS(2669), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [648] = { - [ts_builtin_sym_end] = ACTIONS(1638), - [sym_identifier] = ACTIONS(1636), - [anon_sym_POUND] = ACTIONS(1638), - [anon_sym_package] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(1636), - [anon_sym_using] = ACTIONS(1636), - [anon_sym_throw] = ACTIONS(1636), - [anon_sym_LPAREN] = ACTIONS(1638), - [anon_sym_switch] = ACTIONS(1636), - [anon_sym_LBRACE] = ACTIONS(1638), - [anon_sym_cast] = ACTIONS(1636), - [anon_sym_DOLLARtype] = ACTIONS(1638), - [anon_sym_return] = ACTIONS(1636), - [anon_sym_untyped] = ACTIONS(1636), - [anon_sym_break] = ACTIONS(1636), - [anon_sym_continue] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1638), - [anon_sym_this] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(1636), - [anon_sym_AT_COLON] = ACTIONS(1638), - [anon_sym_if] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1636), - [anon_sym_TILDE] = ACTIONS(1638), - [anon_sym_BANG] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1638), - [anon_sym_DASH_DASH] = ACTIONS(1638), - [anon_sym_PERCENT] = ACTIONS(1638), - [anon_sym_STAR] = ACTIONS(1638), - [anon_sym_SLASH] = ACTIONS(1636), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_LT_LT] = ACTIONS(1638), - [anon_sym_GT_GT] = ACTIONS(1636), - [anon_sym_GT_GT_GT] = ACTIONS(1638), - [anon_sym_AMP] = ACTIONS(1636), - [anon_sym_PIPE] = ACTIONS(1636), - [anon_sym_CARET] = ACTIONS(1638), - [anon_sym_AMP_AMP] = ACTIONS(1638), - [anon_sym_PIPE_PIPE] = ACTIONS(1638), - [anon_sym_EQ_EQ] = ACTIONS(1638), - [anon_sym_BANG_EQ] = ACTIONS(1638), - [anon_sym_LT] = ACTIONS(1636), - [anon_sym_LT_EQ] = ACTIONS(1638), - [anon_sym_GT] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1638), - [anon_sym_EQ_GT] = ACTIONS(1638), - [anon_sym_QMARK_QMARK] = ACTIONS(1638), - [anon_sym_EQ] = ACTIONS(1636), - [sym__rangeOperator] = ACTIONS(1638), - [anon_sym_null] = ACTIONS(1636), - [anon_sym_macro] = ACTIONS(1636), - [anon_sym_abstract] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(1636), - [anon_sym_public] = ACTIONS(1636), - [anon_sym_private] = ACTIONS(1636), - [anon_sym_extern] = ACTIONS(1636), - [anon_sym_inline] = ACTIONS(1636), - [anon_sym_overload] = ACTIONS(1636), - [anon_sym_override] = ACTIONS(1636), - [anon_sym_final] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(1636), - [anon_sym_interface] = ACTIONS(1636), - [anon_sym_typedef] = ACTIONS(1636), - [anon_sym_function] = ACTIONS(1636), - [anon_sym_var] = ACTIONS(1636), - [aux_sym_integer_token1] = ACTIONS(1636), - [aux_sym_integer_token2] = ACTIONS(1638), - [aux_sym_float_token1] = ACTIONS(1636), - [aux_sym_float_token2] = ACTIONS(1638), - [anon_sym_true] = ACTIONS(1636), - [anon_sym_false] = ACTIONS(1636), - [aux_sym_string_token1] = ACTIONS(1638), - [aux_sym_string_token3] = ACTIONS(1638), - [sym_comment] = ACTIONS(3), + [sym_else_clause] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3455), [sym__closing_brace_unmarker] = ACTIONS(3), }, [649] = { - [ts_builtin_sym_end] = ACTIONS(1850), - [sym_identifier] = ACTIONS(1848), - [anon_sym_POUND] = ACTIONS(1850), - [anon_sym_package] = ACTIONS(1848), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_using] = ACTIONS(1848), - [anon_sym_throw] = ACTIONS(1848), - [anon_sym_LPAREN] = ACTIONS(1850), - [anon_sym_switch] = ACTIONS(1848), - [anon_sym_LBRACE] = ACTIONS(1850), - [anon_sym_cast] = ACTIONS(1848), - [anon_sym_DOLLARtype] = ACTIONS(1850), - [anon_sym_return] = ACTIONS(1848), - [anon_sym_untyped] = ACTIONS(1848), - [anon_sym_break] = ACTIONS(1848), - [anon_sym_continue] = ACTIONS(1848), - [anon_sym_LBRACK] = ACTIONS(1850), - [anon_sym_this] = ACTIONS(1848), - [anon_sym_AT] = ACTIONS(1848), - [anon_sym_AT_COLON] = ACTIONS(1850), - [anon_sym_if] = ACTIONS(1848), - [anon_sym_new] = ACTIONS(1848), - [anon_sym_TILDE] = ACTIONS(1850), - [anon_sym_BANG] = ACTIONS(1848), - [anon_sym_DASH] = ACTIONS(1848), - [anon_sym_PLUS_PLUS] = ACTIONS(1850), - [anon_sym_DASH_DASH] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1850), - [anon_sym_STAR] = ACTIONS(1850), - [anon_sym_SLASH] = ACTIONS(1848), - [anon_sym_PLUS] = ACTIONS(1848), - [anon_sym_LT_LT] = ACTIONS(1850), - [anon_sym_GT_GT] = ACTIONS(1848), - [anon_sym_GT_GT_GT] = ACTIONS(1850), - [anon_sym_AMP] = ACTIONS(1848), - [anon_sym_PIPE] = ACTIONS(1848), - [anon_sym_CARET] = ACTIONS(1850), - [anon_sym_AMP_AMP] = ACTIONS(1850), - [anon_sym_PIPE_PIPE] = ACTIONS(1850), - [anon_sym_EQ_EQ] = ACTIONS(1850), - [anon_sym_BANG_EQ] = ACTIONS(1850), - [anon_sym_LT] = ACTIONS(1848), - [anon_sym_LT_EQ] = ACTIONS(1850), - [anon_sym_GT] = ACTIONS(1848), - [anon_sym_GT_EQ] = ACTIONS(1850), - [anon_sym_EQ_GT] = ACTIONS(1850), - [anon_sym_QMARK_QMARK] = ACTIONS(1850), - [anon_sym_EQ] = ACTIONS(1848), - [sym__rangeOperator] = ACTIONS(1850), - [anon_sym_null] = ACTIONS(1848), - [anon_sym_macro] = ACTIONS(1848), - [anon_sym_abstract] = ACTIONS(1848), - [anon_sym_static] = ACTIONS(1848), - [anon_sym_public] = ACTIONS(1848), - [anon_sym_private] = ACTIONS(1848), - [anon_sym_extern] = ACTIONS(1848), - [anon_sym_inline] = ACTIONS(1848), - [anon_sym_overload] = ACTIONS(1848), - [anon_sym_override] = ACTIONS(1848), - [anon_sym_final] = ACTIONS(1848), - [anon_sym_class] = ACTIONS(1848), - [anon_sym_interface] = ACTIONS(1848), - [anon_sym_typedef] = ACTIONS(1848), - [anon_sym_function] = ACTIONS(1848), - [anon_sym_var] = ACTIONS(1848), - [aux_sym_integer_token1] = ACTIONS(1848), - [aux_sym_integer_token2] = ACTIONS(1850), - [aux_sym_float_token1] = ACTIONS(1848), - [aux_sym_float_token2] = ACTIONS(1850), - [anon_sym_true] = ACTIONS(1848), - [anon_sym_false] = ACTIONS(1848), - [aux_sym_string_token1] = ACTIONS(1850), - [aux_sym_string_token3] = ACTIONS(1850), + [sym_else_clause] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_package] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_cast] = ACTIONS(2677), + [anon_sym_DOLLARtype] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_untyped] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_this] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_AT_COLON] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_catch] = ACTIONS(2677), + [anon_sym_else] = ACTIONS(2677), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_QMARK_QMARK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2677), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_overload] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_final] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [aux_sym_integer_token1] = ACTIONS(2677), + [aux_sym_integer_token2] = ACTIONS(2679), + [aux_sym_float_token1] = ACTIONS(2677), + [aux_sym_float_token2] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [aux_sym_string_token1] = ACTIONS(2679), + [aux_sym_string_token3] = ACTIONS(2679), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [650] = { - [ts_builtin_sym_end] = ACTIONS(2090), - [sym_identifier] = ACTIONS(2088), - [anon_sym_POUND] = ACTIONS(2090), - [anon_sym_package] = ACTIONS(2088), - [anon_sym_import] = ACTIONS(2088), - [anon_sym_using] = ACTIONS(2088), - [anon_sym_throw] = ACTIONS(2088), - [anon_sym_LPAREN] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2088), - [anon_sym_LBRACE] = ACTIONS(2090), - [anon_sym_cast] = ACTIONS(2088), - [anon_sym_DOLLARtype] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2088), - [anon_sym_untyped] = ACTIONS(2088), - [anon_sym_break] = ACTIONS(2088), - [anon_sym_continue] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_this] = ACTIONS(2088), - [anon_sym_AT] = ACTIONS(2088), - [anon_sym_AT_COLON] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2088), - [anon_sym_new] = ACTIONS(2088), - [anon_sym_TILDE] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_DASH] = ACTIONS(2088), - [anon_sym_PLUS_PLUS] = ACTIONS(2090), - [anon_sym_DASH_DASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2088), - [anon_sym_PLUS] = ACTIONS(2088), - [anon_sym_LT_LT] = ACTIONS(2090), - [anon_sym_GT_GT] = ACTIONS(2088), - [anon_sym_GT_GT_GT] = ACTIONS(2090), - [anon_sym_AMP] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2088), - [anon_sym_CARET] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2090), - [anon_sym_PIPE_PIPE] = ACTIONS(2090), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_LT_EQ] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2088), - [anon_sym_GT_EQ] = ACTIONS(2090), - [anon_sym_EQ_GT] = ACTIONS(2090), - [anon_sym_QMARK_QMARK] = ACTIONS(2090), - [anon_sym_EQ] = ACTIONS(2088), - [sym__rangeOperator] = ACTIONS(2090), - [anon_sym_null] = ACTIONS(2088), - [anon_sym_macro] = ACTIONS(2088), - [anon_sym_abstract] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2088), - [anon_sym_public] = ACTIONS(2088), - [anon_sym_private] = ACTIONS(2088), - [anon_sym_extern] = ACTIONS(2088), - [anon_sym_inline] = ACTIONS(2088), - [anon_sym_overload] = ACTIONS(2088), - [anon_sym_override] = ACTIONS(2088), - [anon_sym_final] = ACTIONS(2088), - [anon_sym_class] = ACTIONS(2088), - [anon_sym_interface] = ACTIONS(2088), - [anon_sym_typedef] = ACTIONS(2088), - [anon_sym_function] = ACTIONS(2088), - [anon_sym_var] = ACTIONS(2088), - [aux_sym_integer_token1] = ACTIONS(2088), - [aux_sym_integer_token2] = ACTIONS(2090), - [aux_sym_float_token1] = ACTIONS(2088), - [aux_sym_float_token2] = ACTIONS(2090), - [anon_sym_true] = ACTIONS(2088), - [anon_sym_false] = ACTIONS(2088), - [aux_sym_string_token1] = ACTIONS(2090), - [aux_sym_string_token3] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(3197), + [sym_identifier] = ACTIONS(3195), + [anon_sym_POUND] = ACTIONS(3197), + [anon_sym_package] = ACTIONS(3195), + [anon_sym_import] = ACTIONS(3195), + [anon_sym_STAR] = ACTIONS(3197), + [anon_sym_using] = ACTIONS(3195), + [anon_sym_throw] = ACTIONS(3195), + [anon_sym_LPAREN] = ACTIONS(3197), + [anon_sym_switch] = ACTIONS(3195), + [anon_sym_LBRACE] = ACTIONS(3197), + [anon_sym_cast] = ACTIONS(3195), + [anon_sym_DOLLARtype] = ACTIONS(3197), + [anon_sym_for] = ACTIONS(3195), + [anon_sym_return] = ACTIONS(3195), + [anon_sym_untyped] = ACTIONS(3195), + [anon_sym_break] = ACTIONS(3195), + [anon_sym_continue] = ACTIONS(3195), + [anon_sym_LBRACK] = ACTIONS(3197), + [anon_sym_this] = ACTIONS(3195), + [anon_sym_AT] = ACTIONS(3195), + [anon_sym_AT_COLON] = ACTIONS(3197), + [anon_sym_try] = ACTIONS(3195), + [anon_sym_catch] = ACTIONS(3195), + [anon_sym_else] = ACTIONS(3195), + [anon_sym_if] = ACTIONS(3195), + [anon_sym_while] = ACTIONS(3195), + [anon_sym_do] = ACTIONS(3195), + [anon_sym_new] = ACTIONS(3195), + [anon_sym_TILDE] = ACTIONS(3197), + [anon_sym_BANG] = ACTIONS(3195), + [anon_sym_DASH] = ACTIONS(3195), + [anon_sym_PLUS_PLUS] = ACTIONS(3197), + [anon_sym_DASH_DASH] = ACTIONS(3197), + [anon_sym_PERCENT] = ACTIONS(3197), + [anon_sym_SLASH] = ACTIONS(3195), + [anon_sym_PLUS] = ACTIONS(3195), + [anon_sym_LT_LT] = ACTIONS(3197), + [anon_sym_GT_GT] = ACTIONS(3195), + [anon_sym_GT_GT_GT] = ACTIONS(3197), + [anon_sym_AMP] = ACTIONS(3195), + [anon_sym_PIPE] = ACTIONS(3195), + [anon_sym_CARET] = ACTIONS(3197), + [anon_sym_AMP_AMP] = ACTIONS(3197), + [anon_sym_PIPE_PIPE] = ACTIONS(3197), + [anon_sym_EQ_EQ] = ACTIONS(3197), + [anon_sym_BANG_EQ] = ACTIONS(3197), + [anon_sym_LT] = ACTIONS(3195), + [anon_sym_LT_EQ] = ACTIONS(3197), + [anon_sym_GT] = ACTIONS(3195), + [anon_sym_GT_EQ] = ACTIONS(3197), + [anon_sym_EQ_GT] = ACTIONS(3197), + [anon_sym_QMARK_QMARK] = ACTIONS(3197), + [anon_sym_EQ] = ACTIONS(3195), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3197), + [anon_sym_null] = ACTIONS(3195), + [anon_sym_macro] = ACTIONS(3195), + [anon_sym_abstract] = ACTIONS(3195), + [anon_sym_static] = ACTIONS(3195), + [anon_sym_public] = ACTIONS(3195), + [anon_sym_private] = ACTIONS(3195), + [anon_sym_extern] = ACTIONS(3195), + [anon_sym_inline] = ACTIONS(3195), + [anon_sym_overload] = ACTIONS(3195), + [anon_sym_override] = ACTIONS(3195), + [anon_sym_final] = ACTIONS(3195), + [anon_sym_class] = ACTIONS(3195), + [anon_sym_interface] = ACTIONS(3195), + [anon_sym_enum] = ACTIONS(3195), + [anon_sym_typedef] = ACTIONS(3195), + [anon_sym_function] = ACTIONS(3195), + [anon_sym_var] = ACTIONS(3195), + [aux_sym_integer_token1] = ACTIONS(3195), + [aux_sym_integer_token2] = ACTIONS(3197), + [aux_sym_float_token1] = ACTIONS(3195), + [aux_sym_float_token2] = ACTIONS(3197), + [anon_sym_true] = ACTIONS(3195), + [anon_sym_false] = ACTIONS(3195), + [aux_sym_string_token1] = ACTIONS(3197), + [aux_sym_string_token3] = ACTIONS(3197), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [651] = { - [ts_builtin_sym_end] = ACTIONS(1782), - [sym_identifier] = ACTIONS(1780), - [anon_sym_POUND] = ACTIONS(1782), - [anon_sym_package] = ACTIONS(1780), - [anon_sym_import] = ACTIONS(1780), - [anon_sym_using] = ACTIONS(1780), - [anon_sym_throw] = ACTIONS(1780), - [anon_sym_LPAREN] = ACTIONS(1782), - [anon_sym_switch] = ACTIONS(1780), - [anon_sym_LBRACE] = ACTIONS(1782), - [anon_sym_cast] = ACTIONS(1780), - [anon_sym_DOLLARtype] = ACTIONS(1782), - [anon_sym_return] = ACTIONS(1780), - [anon_sym_untyped] = ACTIONS(1780), - [anon_sym_break] = ACTIONS(1780), - [anon_sym_continue] = ACTIONS(1780), - [anon_sym_LBRACK] = ACTIONS(1782), - [anon_sym_this] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(1780), - [anon_sym_AT_COLON] = ACTIONS(1782), - [anon_sym_if] = ACTIONS(1780), - [anon_sym_new] = ACTIONS(1780), - [anon_sym_TILDE] = ACTIONS(1782), - [anon_sym_BANG] = ACTIONS(1780), - [anon_sym_DASH] = ACTIONS(1780), - [anon_sym_PLUS_PLUS] = ACTIONS(1782), - [anon_sym_DASH_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1782), - [anon_sym_STAR] = ACTIONS(1782), - [anon_sym_SLASH] = ACTIONS(1780), - [anon_sym_PLUS] = ACTIONS(1780), - [anon_sym_LT_LT] = ACTIONS(1782), - [anon_sym_GT_GT] = ACTIONS(1780), - [anon_sym_GT_GT_GT] = ACTIONS(1782), - [anon_sym_AMP] = ACTIONS(1780), - [anon_sym_PIPE] = ACTIONS(1780), - [anon_sym_CARET] = ACTIONS(1782), - [anon_sym_AMP_AMP] = ACTIONS(1782), - [anon_sym_PIPE_PIPE] = ACTIONS(1782), - [anon_sym_EQ_EQ] = ACTIONS(1782), - [anon_sym_BANG_EQ] = ACTIONS(1782), - [anon_sym_LT] = ACTIONS(1780), - [anon_sym_LT_EQ] = ACTIONS(1782), - [anon_sym_GT] = ACTIONS(1780), - [anon_sym_GT_EQ] = ACTIONS(1782), - [anon_sym_EQ_GT] = ACTIONS(1782), - [anon_sym_QMARK_QMARK] = ACTIONS(1782), - [anon_sym_EQ] = ACTIONS(1780), - [sym__rangeOperator] = ACTIONS(1782), - [anon_sym_null] = ACTIONS(1780), - [anon_sym_macro] = ACTIONS(1780), - [anon_sym_abstract] = ACTIONS(1780), - [anon_sym_static] = ACTIONS(1780), - [anon_sym_public] = ACTIONS(1780), - [anon_sym_private] = ACTIONS(1780), - [anon_sym_extern] = ACTIONS(1780), - [anon_sym_inline] = ACTIONS(1780), - [anon_sym_overload] = ACTIONS(1780), - [anon_sym_override] = ACTIONS(1780), - [anon_sym_final] = ACTIONS(1780), - [anon_sym_class] = ACTIONS(1780), - [anon_sym_interface] = ACTIONS(1780), - [anon_sym_typedef] = ACTIONS(1780), - [anon_sym_function] = ACTIONS(1780), - [anon_sym_var] = ACTIONS(1780), - [aux_sym_integer_token1] = ACTIONS(1780), - [aux_sym_integer_token2] = ACTIONS(1782), - [aux_sym_float_token1] = ACTIONS(1780), - [aux_sym_float_token2] = ACTIONS(1782), - [anon_sym_true] = ACTIONS(1780), - [anon_sym_false] = ACTIONS(1780), - [aux_sym_string_token1] = ACTIONS(1782), - [aux_sym_string_token3] = ACTIONS(1782), + [ts_builtin_sym_end] = ACTIONS(2943), + [sym_identifier] = ACTIONS(2941), + [anon_sym_POUND] = ACTIONS(2943), + [anon_sym_package] = ACTIONS(2941), + [anon_sym_import] = ACTIONS(2941), + [anon_sym_STAR] = ACTIONS(2943), + [anon_sym_using] = ACTIONS(2941), + [anon_sym_throw] = ACTIONS(2941), + [anon_sym_LPAREN] = ACTIONS(2943), + [anon_sym_switch] = ACTIONS(2941), + [anon_sym_LBRACE] = ACTIONS(2943), + [anon_sym_cast] = ACTIONS(2941), + [anon_sym_DOLLARtype] = ACTIONS(2943), + [anon_sym_for] = ACTIONS(2941), + [anon_sym_return] = ACTIONS(2941), + [anon_sym_untyped] = ACTIONS(2941), + [anon_sym_break] = ACTIONS(2941), + [anon_sym_continue] = ACTIONS(2941), + [anon_sym_LBRACK] = ACTIONS(2943), + [anon_sym_this] = ACTIONS(2941), + [anon_sym_AT] = ACTIONS(2941), + [anon_sym_AT_COLON] = ACTIONS(2943), + [anon_sym_try] = ACTIONS(2941), + [anon_sym_catch] = ACTIONS(2941), + [anon_sym_else] = ACTIONS(2941), + [anon_sym_if] = ACTIONS(2941), + [anon_sym_while] = ACTIONS(2941), + [anon_sym_do] = ACTIONS(2941), + [anon_sym_new] = ACTIONS(2941), + [anon_sym_TILDE] = ACTIONS(2943), + [anon_sym_BANG] = ACTIONS(2941), + [anon_sym_DASH] = ACTIONS(2941), + [anon_sym_PLUS_PLUS] = ACTIONS(2943), + [anon_sym_DASH_DASH] = ACTIONS(2943), + [anon_sym_PERCENT] = ACTIONS(2943), + [anon_sym_SLASH] = ACTIONS(2941), + [anon_sym_PLUS] = ACTIONS(2941), + [anon_sym_LT_LT] = ACTIONS(2943), + [anon_sym_GT_GT] = ACTIONS(2941), + [anon_sym_GT_GT_GT] = ACTIONS(2943), + [anon_sym_AMP] = ACTIONS(2941), + [anon_sym_PIPE] = ACTIONS(2941), + [anon_sym_CARET] = ACTIONS(2943), + [anon_sym_AMP_AMP] = ACTIONS(2943), + [anon_sym_PIPE_PIPE] = ACTIONS(2943), + [anon_sym_EQ_EQ] = ACTIONS(2943), + [anon_sym_BANG_EQ] = ACTIONS(2943), + [anon_sym_LT] = ACTIONS(2941), + [anon_sym_LT_EQ] = ACTIONS(2943), + [anon_sym_GT] = ACTIONS(2941), + [anon_sym_GT_EQ] = ACTIONS(2943), + [anon_sym_EQ_GT] = ACTIONS(2943), + [anon_sym_QMARK_QMARK] = ACTIONS(2943), + [anon_sym_EQ] = ACTIONS(2941), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2943), + [anon_sym_null] = ACTIONS(2941), + [anon_sym_macro] = ACTIONS(2941), + [anon_sym_abstract] = ACTIONS(2941), + [anon_sym_static] = ACTIONS(2941), + [anon_sym_public] = ACTIONS(2941), + [anon_sym_private] = ACTIONS(2941), + [anon_sym_extern] = ACTIONS(2941), + [anon_sym_inline] = ACTIONS(2941), + [anon_sym_overload] = ACTIONS(2941), + [anon_sym_override] = ACTIONS(2941), + [anon_sym_final] = ACTIONS(2941), + [anon_sym_class] = ACTIONS(2941), + [anon_sym_interface] = ACTIONS(2941), + [anon_sym_enum] = ACTIONS(2941), + [anon_sym_typedef] = ACTIONS(2941), + [anon_sym_function] = ACTIONS(2941), + [anon_sym_var] = ACTIONS(2941), + [aux_sym_integer_token1] = ACTIONS(2941), + [aux_sym_integer_token2] = ACTIONS(2943), + [aux_sym_float_token1] = ACTIONS(2941), + [aux_sym_float_token2] = ACTIONS(2943), + [anon_sym_true] = ACTIONS(2941), + [anon_sym_false] = ACTIONS(2941), + [aux_sym_string_token1] = ACTIONS(2943), + [aux_sym_string_token3] = ACTIONS(2943), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [652] = { - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2352), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_package] = ACTIONS(2352), - [anon_sym_import] = ACTIONS(2352), - [anon_sym_using] = ACTIONS(2352), - [anon_sym_throw] = ACTIONS(2352), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_switch] = ACTIONS(2352), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_cast] = ACTIONS(2352), - [anon_sym_DOLLARtype] = ACTIONS(2354), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_untyped] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_this] = ACTIONS(2352), - [anon_sym_AT] = ACTIONS(2352), - [anon_sym_AT_COLON] = ACTIONS(2354), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_new] = ACTIONS(2352), - [anon_sym_TILDE] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2352), - [anon_sym_PLUS_PLUS] = ACTIONS(2354), - [anon_sym_DASH_DASH] = ACTIONS(2354), - [anon_sym_PERCENT] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_SLASH] = ACTIONS(2352), - [anon_sym_PLUS] = ACTIONS(2352), - [anon_sym_LT_LT] = ACTIONS(2354), - [anon_sym_GT_GT] = ACTIONS(2352), - [anon_sym_GT_GT_GT] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(2352), - [anon_sym_PIPE] = ACTIONS(2352), - [anon_sym_CARET] = ACTIONS(2354), - [anon_sym_AMP_AMP] = ACTIONS(2354), - [anon_sym_PIPE_PIPE] = ACTIONS(2354), - [anon_sym_EQ_EQ] = ACTIONS(2354), - [anon_sym_BANG_EQ] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2352), - [anon_sym_LT_EQ] = ACTIONS(2354), - [anon_sym_GT] = ACTIONS(2352), - [anon_sym_GT_EQ] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(2354), - [anon_sym_QMARK_QMARK] = ACTIONS(2354), - [anon_sym_EQ] = ACTIONS(2352), - [sym__rangeOperator] = ACTIONS(2354), - [anon_sym_null] = ACTIONS(2352), - [anon_sym_macro] = ACTIONS(2352), - [anon_sym_abstract] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_public] = ACTIONS(2352), - [anon_sym_private] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_inline] = ACTIONS(2352), - [anon_sym_overload] = ACTIONS(2352), - [anon_sym_override] = ACTIONS(2352), - [anon_sym_final] = ACTIONS(2352), - [anon_sym_class] = ACTIONS(2352), - [anon_sym_interface] = ACTIONS(2352), - [anon_sym_typedef] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2352), - [anon_sym_var] = ACTIONS(2352), - [aux_sym_integer_token1] = ACTIONS(2352), - [aux_sym_integer_token2] = ACTIONS(2354), - [aux_sym_float_token1] = ACTIONS(2352), - [aux_sym_float_token2] = ACTIONS(2354), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [aux_sym_string_token1] = ACTIONS(2354), - [aux_sym_string_token3] = ACTIONS(2354), + [ts_builtin_sym_end] = ACTIONS(2947), + [sym_identifier] = ACTIONS(2945), + [anon_sym_POUND] = ACTIONS(2947), + [anon_sym_package] = ACTIONS(2945), + [anon_sym_import] = ACTIONS(2945), + [anon_sym_STAR] = ACTIONS(2947), + [anon_sym_using] = ACTIONS(2945), + [anon_sym_throw] = ACTIONS(2945), + [anon_sym_LPAREN] = ACTIONS(2947), + [anon_sym_switch] = ACTIONS(2945), + [anon_sym_LBRACE] = ACTIONS(2947), + [anon_sym_cast] = ACTIONS(2945), + [anon_sym_DOLLARtype] = ACTIONS(2947), + [anon_sym_for] = ACTIONS(2945), + [anon_sym_return] = ACTIONS(2945), + [anon_sym_untyped] = ACTIONS(2945), + [anon_sym_break] = ACTIONS(2945), + [anon_sym_continue] = ACTIONS(2945), + [anon_sym_LBRACK] = ACTIONS(2947), + [anon_sym_this] = ACTIONS(2945), + [anon_sym_AT] = ACTIONS(2945), + [anon_sym_AT_COLON] = ACTIONS(2947), + [anon_sym_try] = ACTIONS(2945), + [anon_sym_catch] = ACTIONS(2945), + [anon_sym_else] = ACTIONS(2945), + [anon_sym_if] = ACTIONS(2945), + [anon_sym_while] = ACTIONS(2945), + [anon_sym_do] = ACTIONS(2945), + [anon_sym_new] = ACTIONS(2945), + [anon_sym_TILDE] = ACTIONS(2947), + [anon_sym_BANG] = ACTIONS(2945), + [anon_sym_DASH] = ACTIONS(2945), + [anon_sym_PLUS_PLUS] = ACTIONS(2947), + [anon_sym_DASH_DASH] = ACTIONS(2947), + [anon_sym_PERCENT] = ACTIONS(2947), + [anon_sym_SLASH] = ACTIONS(2945), + [anon_sym_PLUS] = ACTIONS(2945), + [anon_sym_LT_LT] = ACTIONS(2947), + [anon_sym_GT_GT] = ACTIONS(2945), + [anon_sym_GT_GT_GT] = ACTIONS(2947), + [anon_sym_AMP] = ACTIONS(2945), + [anon_sym_PIPE] = ACTIONS(2945), + [anon_sym_CARET] = ACTIONS(2947), + [anon_sym_AMP_AMP] = ACTIONS(2947), + [anon_sym_PIPE_PIPE] = ACTIONS(2947), + [anon_sym_EQ_EQ] = ACTIONS(2947), + [anon_sym_BANG_EQ] = ACTIONS(2947), + [anon_sym_LT] = ACTIONS(2945), + [anon_sym_LT_EQ] = ACTIONS(2947), + [anon_sym_GT] = ACTIONS(2945), + [anon_sym_GT_EQ] = ACTIONS(2947), + [anon_sym_EQ_GT] = ACTIONS(2947), + [anon_sym_QMARK_QMARK] = ACTIONS(2947), + [anon_sym_EQ] = ACTIONS(2945), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2947), + [anon_sym_null] = ACTIONS(2945), + [anon_sym_macro] = ACTIONS(2945), + [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_static] = ACTIONS(2945), + [anon_sym_public] = ACTIONS(2945), + [anon_sym_private] = ACTIONS(2945), + [anon_sym_extern] = ACTIONS(2945), + [anon_sym_inline] = ACTIONS(2945), + [anon_sym_overload] = ACTIONS(2945), + [anon_sym_override] = ACTIONS(2945), + [anon_sym_final] = ACTIONS(2945), + [anon_sym_class] = ACTIONS(2945), + [anon_sym_interface] = ACTIONS(2945), + [anon_sym_enum] = ACTIONS(2945), + [anon_sym_typedef] = ACTIONS(2945), + [anon_sym_function] = ACTIONS(2945), + [anon_sym_var] = ACTIONS(2945), + [aux_sym_integer_token1] = ACTIONS(2945), + [aux_sym_integer_token2] = ACTIONS(2947), + [aux_sym_float_token1] = ACTIONS(2945), + [aux_sym_float_token2] = ACTIONS(2947), + [anon_sym_true] = ACTIONS(2945), + [anon_sym_false] = ACTIONS(2945), + [aux_sym_string_token1] = ACTIONS(2947), + [aux_sym_string_token3] = ACTIONS(2947), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [653] = { - [ts_builtin_sym_end] = ACTIONS(2086), - [sym_identifier] = ACTIONS(2084), - [anon_sym_POUND] = ACTIONS(2086), - [anon_sym_package] = ACTIONS(2084), - [anon_sym_import] = ACTIONS(2084), - [anon_sym_using] = ACTIONS(2084), - [anon_sym_throw] = ACTIONS(2084), - [anon_sym_LPAREN] = ACTIONS(2086), - [anon_sym_switch] = ACTIONS(2084), - [anon_sym_LBRACE] = ACTIONS(2086), - [anon_sym_cast] = ACTIONS(2084), - [anon_sym_DOLLARtype] = ACTIONS(2086), - [anon_sym_return] = ACTIONS(2084), - [anon_sym_untyped] = ACTIONS(2084), - [anon_sym_break] = ACTIONS(2084), - [anon_sym_continue] = ACTIONS(2084), - [anon_sym_LBRACK] = ACTIONS(2086), - [anon_sym_this] = ACTIONS(2084), - [anon_sym_AT] = ACTIONS(2084), - [anon_sym_AT_COLON] = ACTIONS(2086), - [anon_sym_if] = ACTIONS(2084), - [anon_sym_new] = ACTIONS(2084), - [anon_sym_TILDE] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(2084), - [anon_sym_DASH] = ACTIONS(2084), - [anon_sym_PLUS_PLUS] = ACTIONS(2086), - [anon_sym_DASH_DASH] = ACTIONS(2086), - [anon_sym_PERCENT] = ACTIONS(2086), - [anon_sym_STAR] = ACTIONS(2086), - [anon_sym_SLASH] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(2084), - [anon_sym_LT_LT] = ACTIONS(2086), - [anon_sym_GT_GT] = ACTIONS(2084), - [anon_sym_GT_GT_GT] = ACTIONS(2086), - [anon_sym_AMP] = ACTIONS(2084), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_CARET] = ACTIONS(2086), - [anon_sym_AMP_AMP] = ACTIONS(2086), - [anon_sym_PIPE_PIPE] = ACTIONS(2086), - [anon_sym_EQ_EQ] = ACTIONS(2086), - [anon_sym_BANG_EQ] = ACTIONS(2086), - [anon_sym_LT] = ACTIONS(2084), - [anon_sym_LT_EQ] = ACTIONS(2086), - [anon_sym_GT] = ACTIONS(2084), - [anon_sym_GT_EQ] = ACTIONS(2086), - [anon_sym_EQ_GT] = ACTIONS(2086), - [anon_sym_QMARK_QMARK] = ACTIONS(2086), - [anon_sym_EQ] = ACTIONS(2084), - [sym__rangeOperator] = ACTIONS(2086), - [anon_sym_null] = ACTIONS(2084), - [anon_sym_macro] = ACTIONS(2084), - [anon_sym_abstract] = ACTIONS(2084), - [anon_sym_static] = ACTIONS(2084), - [anon_sym_public] = ACTIONS(2084), - [anon_sym_private] = ACTIONS(2084), - [anon_sym_extern] = ACTIONS(2084), - [anon_sym_inline] = ACTIONS(2084), - [anon_sym_overload] = ACTIONS(2084), - [anon_sym_override] = ACTIONS(2084), - [anon_sym_final] = ACTIONS(2084), - [anon_sym_class] = ACTIONS(2084), - [anon_sym_interface] = ACTIONS(2084), - [anon_sym_typedef] = ACTIONS(2084), - [anon_sym_function] = ACTIONS(2084), - [anon_sym_var] = ACTIONS(2084), - [aux_sym_integer_token1] = ACTIONS(2084), - [aux_sym_integer_token2] = ACTIONS(2086), - [aux_sym_float_token1] = ACTIONS(2084), - [aux_sym_float_token2] = ACTIONS(2086), - [anon_sym_true] = ACTIONS(2084), - [anon_sym_false] = ACTIONS(2084), - [aux_sym_string_token1] = ACTIONS(2086), - [aux_sym_string_token3] = ACTIONS(2086), + [ts_builtin_sym_end] = ACTIONS(2951), + [sym_identifier] = ACTIONS(2949), + [anon_sym_POUND] = ACTIONS(2951), + [anon_sym_package] = ACTIONS(2949), + [anon_sym_import] = ACTIONS(2949), + [anon_sym_STAR] = ACTIONS(2951), + [anon_sym_using] = ACTIONS(2949), + [anon_sym_throw] = ACTIONS(2949), + [anon_sym_LPAREN] = ACTIONS(2951), + [anon_sym_switch] = ACTIONS(2949), + [anon_sym_LBRACE] = ACTIONS(2951), + [anon_sym_cast] = ACTIONS(2949), + [anon_sym_DOLLARtype] = ACTIONS(2951), + [anon_sym_for] = ACTIONS(2949), + [anon_sym_return] = ACTIONS(2949), + [anon_sym_untyped] = ACTIONS(2949), + [anon_sym_break] = ACTIONS(2949), + [anon_sym_continue] = ACTIONS(2949), + [anon_sym_LBRACK] = ACTIONS(2951), + [anon_sym_this] = ACTIONS(2949), + [anon_sym_AT] = ACTIONS(2949), + [anon_sym_AT_COLON] = ACTIONS(2951), + [anon_sym_try] = ACTIONS(2949), + [anon_sym_catch] = ACTIONS(2949), + [anon_sym_else] = ACTIONS(2949), + [anon_sym_if] = ACTIONS(2949), + [anon_sym_while] = ACTIONS(2949), + [anon_sym_do] = ACTIONS(2949), + [anon_sym_new] = ACTIONS(2949), + [anon_sym_TILDE] = ACTIONS(2951), + [anon_sym_BANG] = ACTIONS(2949), + [anon_sym_DASH] = ACTIONS(2949), + [anon_sym_PLUS_PLUS] = ACTIONS(2951), + [anon_sym_DASH_DASH] = ACTIONS(2951), + [anon_sym_PERCENT] = ACTIONS(2951), + [anon_sym_SLASH] = ACTIONS(2949), + [anon_sym_PLUS] = ACTIONS(2949), + [anon_sym_LT_LT] = ACTIONS(2951), + [anon_sym_GT_GT] = ACTIONS(2949), + [anon_sym_GT_GT_GT] = ACTIONS(2951), + [anon_sym_AMP] = ACTIONS(2949), + [anon_sym_PIPE] = ACTIONS(2949), + [anon_sym_CARET] = ACTIONS(2951), + [anon_sym_AMP_AMP] = ACTIONS(2951), + [anon_sym_PIPE_PIPE] = ACTIONS(2951), + [anon_sym_EQ_EQ] = ACTIONS(2951), + [anon_sym_BANG_EQ] = ACTIONS(2951), + [anon_sym_LT] = ACTIONS(2949), + [anon_sym_LT_EQ] = ACTIONS(2951), + [anon_sym_GT] = ACTIONS(2949), + [anon_sym_GT_EQ] = ACTIONS(2951), + [anon_sym_EQ_GT] = ACTIONS(2951), + [anon_sym_QMARK_QMARK] = ACTIONS(2951), + [anon_sym_EQ] = ACTIONS(2949), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2951), + [anon_sym_null] = ACTIONS(2949), + [anon_sym_macro] = ACTIONS(2949), + [anon_sym_abstract] = ACTIONS(2949), + [anon_sym_static] = ACTIONS(2949), + [anon_sym_public] = ACTIONS(2949), + [anon_sym_private] = ACTIONS(2949), + [anon_sym_extern] = ACTIONS(2949), + [anon_sym_inline] = ACTIONS(2949), + [anon_sym_overload] = ACTIONS(2949), + [anon_sym_override] = ACTIONS(2949), + [anon_sym_final] = ACTIONS(2949), + [anon_sym_class] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2949), + [anon_sym_enum] = ACTIONS(2949), + [anon_sym_typedef] = ACTIONS(2949), + [anon_sym_function] = ACTIONS(2949), + [anon_sym_var] = ACTIONS(2949), + [aux_sym_integer_token1] = ACTIONS(2949), + [aux_sym_integer_token2] = ACTIONS(2951), + [aux_sym_float_token1] = ACTIONS(2949), + [aux_sym_float_token2] = ACTIONS(2951), + [anon_sym_true] = ACTIONS(2949), + [anon_sym_false] = ACTIONS(2949), + [aux_sym_string_token1] = ACTIONS(2951), + [aux_sym_string_token3] = ACTIONS(2951), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [654] = { - [ts_builtin_sym_end] = ACTIONS(1790), - [sym_identifier] = ACTIONS(1788), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_package] = ACTIONS(1788), - [anon_sym_import] = ACTIONS(1788), - [anon_sym_using] = ACTIONS(1788), - [anon_sym_throw] = ACTIONS(1788), - [anon_sym_LPAREN] = ACTIONS(1790), - [anon_sym_switch] = ACTIONS(1788), - [anon_sym_LBRACE] = ACTIONS(1790), - [anon_sym_cast] = ACTIONS(1788), - [anon_sym_DOLLARtype] = ACTIONS(1790), - [anon_sym_return] = ACTIONS(1788), - [anon_sym_untyped] = ACTIONS(1788), - [anon_sym_break] = ACTIONS(1788), - [anon_sym_continue] = ACTIONS(1788), - [anon_sym_LBRACK] = ACTIONS(1790), - [anon_sym_this] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(1788), - [anon_sym_AT_COLON] = ACTIONS(1790), - [anon_sym_if] = ACTIONS(1788), - [anon_sym_new] = ACTIONS(1788), - [anon_sym_TILDE] = ACTIONS(1790), - [anon_sym_BANG] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_PLUS_PLUS] = ACTIONS(1790), - [anon_sym_DASH_DASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1790), - [anon_sym_STAR] = ACTIONS(1790), - [anon_sym_SLASH] = ACTIONS(1788), - [anon_sym_PLUS] = ACTIONS(1788), - [anon_sym_LT_LT] = ACTIONS(1790), - [anon_sym_GT_GT] = ACTIONS(1788), - [anon_sym_GT_GT_GT] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(1788), - [anon_sym_PIPE] = ACTIONS(1788), - [anon_sym_CARET] = ACTIONS(1790), - [anon_sym_AMP_AMP] = ACTIONS(1790), - [anon_sym_PIPE_PIPE] = ACTIONS(1790), - [anon_sym_EQ_EQ] = ACTIONS(1790), - [anon_sym_BANG_EQ] = ACTIONS(1790), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_LT_EQ] = ACTIONS(1790), - [anon_sym_GT] = ACTIONS(1788), - [anon_sym_GT_EQ] = ACTIONS(1790), - [anon_sym_EQ_GT] = ACTIONS(1790), - [anon_sym_QMARK_QMARK] = ACTIONS(1790), - [anon_sym_EQ] = ACTIONS(1788), - [sym__rangeOperator] = ACTIONS(1790), - [anon_sym_null] = ACTIONS(1788), - [anon_sym_macro] = ACTIONS(1788), - [anon_sym_abstract] = ACTIONS(1788), - [anon_sym_static] = ACTIONS(1788), - [anon_sym_public] = ACTIONS(1788), - [anon_sym_private] = ACTIONS(1788), - [anon_sym_extern] = ACTIONS(1788), - [anon_sym_inline] = ACTIONS(1788), - [anon_sym_overload] = ACTIONS(1788), - [anon_sym_override] = ACTIONS(1788), - [anon_sym_final] = ACTIONS(1788), - [anon_sym_class] = ACTIONS(1788), - [anon_sym_interface] = ACTIONS(1788), - [anon_sym_typedef] = ACTIONS(1788), - [anon_sym_function] = ACTIONS(1788), - [anon_sym_var] = ACTIONS(1788), - [aux_sym_integer_token1] = ACTIONS(1788), - [aux_sym_integer_token2] = ACTIONS(1790), - [aux_sym_float_token1] = ACTIONS(1788), - [aux_sym_float_token2] = ACTIONS(1790), - [anon_sym_true] = ACTIONS(1788), - [anon_sym_false] = ACTIONS(1788), - [aux_sym_string_token1] = ACTIONS(1790), - [aux_sym_string_token3] = ACTIONS(1790), + [ts_builtin_sym_end] = ACTIONS(2955), + [sym_identifier] = ACTIONS(2953), + [anon_sym_POUND] = ACTIONS(2955), + [anon_sym_package] = ACTIONS(2953), + [anon_sym_import] = ACTIONS(2953), + [anon_sym_STAR] = ACTIONS(2955), + [anon_sym_using] = ACTIONS(2953), + [anon_sym_throw] = ACTIONS(2953), + [anon_sym_LPAREN] = ACTIONS(2955), + [anon_sym_switch] = ACTIONS(2953), + [anon_sym_LBRACE] = ACTIONS(2955), + [anon_sym_cast] = ACTIONS(2953), + [anon_sym_DOLLARtype] = ACTIONS(2955), + [anon_sym_for] = ACTIONS(2953), + [anon_sym_return] = ACTIONS(2953), + [anon_sym_untyped] = ACTIONS(2953), + [anon_sym_break] = ACTIONS(2953), + [anon_sym_continue] = ACTIONS(2953), + [anon_sym_LBRACK] = ACTIONS(2955), + [anon_sym_this] = ACTIONS(2953), + [anon_sym_AT] = ACTIONS(2953), + [anon_sym_AT_COLON] = ACTIONS(2955), + [anon_sym_try] = ACTIONS(2953), + [anon_sym_catch] = ACTIONS(2953), + [anon_sym_else] = ACTIONS(2953), + [anon_sym_if] = ACTIONS(2953), + [anon_sym_while] = ACTIONS(2953), + [anon_sym_do] = ACTIONS(2953), + [anon_sym_new] = ACTIONS(2953), + [anon_sym_TILDE] = ACTIONS(2955), + [anon_sym_BANG] = ACTIONS(2953), + [anon_sym_DASH] = ACTIONS(2953), + [anon_sym_PLUS_PLUS] = ACTIONS(2955), + [anon_sym_DASH_DASH] = ACTIONS(2955), + [anon_sym_PERCENT] = ACTIONS(2955), + [anon_sym_SLASH] = ACTIONS(2953), + [anon_sym_PLUS] = ACTIONS(2953), + [anon_sym_LT_LT] = ACTIONS(2955), + [anon_sym_GT_GT] = ACTIONS(2953), + [anon_sym_GT_GT_GT] = ACTIONS(2955), + [anon_sym_AMP] = ACTIONS(2953), + [anon_sym_PIPE] = ACTIONS(2953), + [anon_sym_CARET] = ACTIONS(2955), + [anon_sym_AMP_AMP] = ACTIONS(2955), + [anon_sym_PIPE_PIPE] = ACTIONS(2955), + [anon_sym_EQ_EQ] = ACTIONS(2955), + [anon_sym_BANG_EQ] = ACTIONS(2955), + [anon_sym_LT] = ACTIONS(2953), + [anon_sym_LT_EQ] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(2953), + [anon_sym_GT_EQ] = ACTIONS(2955), + [anon_sym_EQ_GT] = ACTIONS(2955), + [anon_sym_QMARK_QMARK] = ACTIONS(2955), + [anon_sym_EQ] = ACTIONS(2953), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2955), + [anon_sym_null] = ACTIONS(2953), + [anon_sym_macro] = ACTIONS(2953), + [anon_sym_abstract] = ACTIONS(2953), + [anon_sym_static] = ACTIONS(2953), + [anon_sym_public] = ACTIONS(2953), + [anon_sym_private] = ACTIONS(2953), + [anon_sym_extern] = ACTIONS(2953), + [anon_sym_inline] = ACTIONS(2953), + [anon_sym_overload] = ACTIONS(2953), + [anon_sym_override] = ACTIONS(2953), + [anon_sym_final] = ACTIONS(2953), + [anon_sym_class] = ACTIONS(2953), + [anon_sym_interface] = ACTIONS(2953), + [anon_sym_enum] = ACTIONS(2953), + [anon_sym_typedef] = ACTIONS(2953), + [anon_sym_function] = ACTIONS(2953), + [anon_sym_var] = ACTIONS(2953), + [aux_sym_integer_token1] = ACTIONS(2953), + [aux_sym_integer_token2] = ACTIONS(2955), + [aux_sym_float_token1] = ACTIONS(2953), + [aux_sym_float_token2] = ACTIONS(2955), + [anon_sym_true] = ACTIONS(2953), + [anon_sym_false] = ACTIONS(2953), + [aux_sym_string_token1] = ACTIONS(2955), + [aux_sym_string_token3] = ACTIONS(2955), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [655] = { - [ts_builtin_sym_end] = ACTIONS(2034), - [sym_identifier] = ACTIONS(2032), - [anon_sym_POUND] = ACTIONS(2034), - [anon_sym_package] = ACTIONS(2032), - [anon_sym_import] = ACTIONS(2032), - [anon_sym_using] = ACTIONS(2032), - [anon_sym_throw] = ACTIONS(2032), - [anon_sym_LPAREN] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2032), - [anon_sym_LBRACE] = ACTIONS(2034), - [anon_sym_cast] = ACTIONS(2032), - [anon_sym_DOLLARtype] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2032), - [anon_sym_untyped] = ACTIONS(2032), - [anon_sym_break] = ACTIONS(2032), - [anon_sym_continue] = ACTIONS(2032), - [anon_sym_LBRACK] = ACTIONS(2034), - [anon_sym_this] = ACTIONS(2032), - [anon_sym_AT] = ACTIONS(2032), - [anon_sym_AT_COLON] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2032), - [anon_sym_new] = ACTIONS(2032), - [anon_sym_TILDE] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_DASH] = ACTIONS(2032), - [anon_sym_PLUS_PLUS] = ACTIONS(2034), - [anon_sym_DASH_DASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2034), - [anon_sym_SLASH] = ACTIONS(2032), - [anon_sym_PLUS] = ACTIONS(2032), - [anon_sym_LT_LT] = ACTIONS(2034), - [anon_sym_GT_GT] = ACTIONS(2032), - [anon_sym_GT_GT_GT] = ACTIONS(2034), - [anon_sym_AMP] = ACTIONS(2032), - [anon_sym_PIPE] = ACTIONS(2032), - [anon_sym_CARET] = ACTIONS(2034), - [anon_sym_AMP_AMP] = ACTIONS(2034), - [anon_sym_PIPE_PIPE] = ACTIONS(2034), - [anon_sym_EQ_EQ] = ACTIONS(2034), - [anon_sym_BANG_EQ] = ACTIONS(2034), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_LT_EQ] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2032), - [anon_sym_GT_EQ] = ACTIONS(2034), - [anon_sym_EQ_GT] = ACTIONS(2034), - [anon_sym_QMARK_QMARK] = ACTIONS(2034), - [anon_sym_EQ] = ACTIONS(2032), - [sym__rangeOperator] = ACTIONS(2034), - [anon_sym_null] = ACTIONS(2032), - [anon_sym_macro] = ACTIONS(2032), - [anon_sym_abstract] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2032), - [anon_sym_public] = ACTIONS(2032), - [anon_sym_private] = ACTIONS(2032), - [anon_sym_extern] = ACTIONS(2032), - [anon_sym_inline] = ACTIONS(2032), - [anon_sym_overload] = ACTIONS(2032), - [anon_sym_override] = ACTIONS(2032), - [anon_sym_final] = ACTIONS(2032), - [anon_sym_class] = ACTIONS(2032), - [anon_sym_interface] = ACTIONS(2032), - [anon_sym_typedef] = ACTIONS(2032), - [anon_sym_function] = ACTIONS(2032), - [anon_sym_var] = ACTIONS(2032), - [aux_sym_integer_token1] = ACTIONS(2032), - [aux_sym_integer_token2] = ACTIONS(2034), - [aux_sym_float_token1] = ACTIONS(2032), - [aux_sym_float_token2] = ACTIONS(2034), - [anon_sym_true] = ACTIONS(2032), - [anon_sym_false] = ACTIONS(2032), - [aux_sym_string_token1] = ACTIONS(2034), - [aux_sym_string_token3] = ACTIONS(2034), + [ts_builtin_sym_end] = ACTIONS(2959), + [sym_identifier] = ACTIONS(2957), + [anon_sym_POUND] = ACTIONS(2959), + [anon_sym_package] = ACTIONS(2957), + [anon_sym_import] = ACTIONS(2957), + [anon_sym_STAR] = ACTIONS(2959), + [anon_sym_using] = ACTIONS(2957), + [anon_sym_throw] = ACTIONS(2957), + [anon_sym_LPAREN] = ACTIONS(2959), + [anon_sym_switch] = ACTIONS(2957), + [anon_sym_LBRACE] = ACTIONS(2959), + [anon_sym_cast] = ACTIONS(2957), + [anon_sym_DOLLARtype] = ACTIONS(2959), + [anon_sym_for] = ACTIONS(2957), + [anon_sym_return] = ACTIONS(2957), + [anon_sym_untyped] = ACTIONS(2957), + [anon_sym_break] = ACTIONS(2957), + [anon_sym_continue] = ACTIONS(2957), + [anon_sym_LBRACK] = ACTIONS(2959), + [anon_sym_this] = ACTIONS(2957), + [anon_sym_AT] = ACTIONS(2957), + [anon_sym_AT_COLON] = ACTIONS(2959), + [anon_sym_try] = ACTIONS(2957), + [anon_sym_catch] = ACTIONS(2957), + [anon_sym_else] = ACTIONS(2957), + [anon_sym_if] = ACTIONS(2957), + [anon_sym_while] = ACTIONS(2957), + [anon_sym_do] = ACTIONS(2957), + [anon_sym_new] = ACTIONS(2957), + [anon_sym_TILDE] = ACTIONS(2959), + [anon_sym_BANG] = ACTIONS(2957), + [anon_sym_DASH] = ACTIONS(2957), + [anon_sym_PLUS_PLUS] = ACTIONS(2959), + [anon_sym_DASH_DASH] = ACTIONS(2959), + [anon_sym_PERCENT] = ACTIONS(2959), + [anon_sym_SLASH] = ACTIONS(2957), + [anon_sym_PLUS] = ACTIONS(2957), + [anon_sym_LT_LT] = ACTIONS(2959), + [anon_sym_GT_GT] = ACTIONS(2957), + [anon_sym_GT_GT_GT] = ACTIONS(2959), + [anon_sym_AMP] = ACTIONS(2957), + [anon_sym_PIPE] = ACTIONS(2957), + [anon_sym_CARET] = ACTIONS(2959), + [anon_sym_AMP_AMP] = ACTIONS(2959), + [anon_sym_PIPE_PIPE] = ACTIONS(2959), + [anon_sym_EQ_EQ] = ACTIONS(2959), + [anon_sym_BANG_EQ] = ACTIONS(2959), + [anon_sym_LT] = ACTIONS(2957), + [anon_sym_LT_EQ] = ACTIONS(2959), + [anon_sym_GT] = ACTIONS(2957), + [anon_sym_GT_EQ] = ACTIONS(2959), + [anon_sym_EQ_GT] = ACTIONS(2959), + [anon_sym_QMARK_QMARK] = ACTIONS(2959), + [anon_sym_EQ] = ACTIONS(2957), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2959), + [anon_sym_null] = ACTIONS(2957), + [anon_sym_macro] = ACTIONS(2957), + [anon_sym_abstract] = ACTIONS(2957), + [anon_sym_static] = ACTIONS(2957), + [anon_sym_public] = ACTIONS(2957), + [anon_sym_private] = ACTIONS(2957), + [anon_sym_extern] = ACTIONS(2957), + [anon_sym_inline] = ACTIONS(2957), + [anon_sym_overload] = ACTIONS(2957), + [anon_sym_override] = ACTIONS(2957), + [anon_sym_final] = ACTIONS(2957), + [anon_sym_class] = ACTIONS(2957), + [anon_sym_interface] = ACTIONS(2957), + [anon_sym_enum] = ACTIONS(2957), + [anon_sym_typedef] = ACTIONS(2957), + [anon_sym_function] = ACTIONS(2957), + [anon_sym_var] = ACTIONS(2957), + [aux_sym_integer_token1] = ACTIONS(2957), + [aux_sym_integer_token2] = ACTIONS(2959), + [aux_sym_float_token1] = ACTIONS(2957), + [aux_sym_float_token2] = ACTIONS(2959), + [anon_sym_true] = ACTIONS(2957), + [anon_sym_false] = ACTIONS(2957), + [aux_sym_string_token1] = ACTIONS(2959), + [aux_sym_string_token3] = ACTIONS(2959), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [656] = { - [ts_builtin_sym_end] = ACTIONS(1794), - [sym_identifier] = ACTIONS(1792), - [anon_sym_POUND] = ACTIONS(1794), - [anon_sym_package] = ACTIONS(1792), - [anon_sym_import] = ACTIONS(1792), - [anon_sym_using] = ACTIONS(1792), - [anon_sym_throw] = ACTIONS(1792), - [anon_sym_LPAREN] = ACTIONS(1794), - [anon_sym_switch] = ACTIONS(1792), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_cast] = ACTIONS(1792), - [anon_sym_DOLLARtype] = ACTIONS(1794), - [anon_sym_return] = ACTIONS(1792), - [anon_sym_untyped] = ACTIONS(1792), - [anon_sym_break] = ACTIONS(1792), - [anon_sym_continue] = ACTIONS(1792), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_this] = ACTIONS(1792), - [anon_sym_AT] = ACTIONS(1792), - [anon_sym_AT_COLON] = ACTIONS(1794), - [anon_sym_if] = ACTIONS(1792), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_TILDE] = ACTIONS(1794), - [anon_sym_BANG] = ACTIONS(1792), - [anon_sym_DASH] = ACTIONS(1792), - [anon_sym_PLUS_PLUS] = ACTIONS(1794), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_PERCENT] = ACTIONS(1794), - [anon_sym_STAR] = ACTIONS(1794), - [anon_sym_SLASH] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1792), - [anon_sym_LT_LT] = ACTIONS(1794), - [anon_sym_GT_GT] = ACTIONS(1792), - [anon_sym_GT_GT_GT] = ACTIONS(1794), - [anon_sym_AMP] = ACTIONS(1792), - [anon_sym_PIPE] = ACTIONS(1792), - [anon_sym_CARET] = ACTIONS(1794), - [anon_sym_AMP_AMP] = ACTIONS(1794), - [anon_sym_PIPE_PIPE] = ACTIONS(1794), - [anon_sym_EQ_EQ] = ACTIONS(1794), - [anon_sym_BANG_EQ] = ACTIONS(1794), - [anon_sym_LT] = ACTIONS(1792), - [anon_sym_LT_EQ] = ACTIONS(1794), - [anon_sym_GT] = ACTIONS(1792), - [anon_sym_GT_EQ] = ACTIONS(1794), - [anon_sym_EQ_GT] = ACTIONS(1794), - [anon_sym_QMARK_QMARK] = ACTIONS(1794), - [anon_sym_EQ] = ACTIONS(1792), - [sym__rangeOperator] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1792), - [anon_sym_macro] = ACTIONS(1792), - [anon_sym_abstract] = ACTIONS(1792), - [anon_sym_static] = ACTIONS(1792), - [anon_sym_public] = ACTIONS(1792), - [anon_sym_private] = ACTIONS(1792), - [anon_sym_extern] = ACTIONS(1792), - [anon_sym_inline] = ACTIONS(1792), - [anon_sym_overload] = ACTIONS(1792), - [anon_sym_override] = ACTIONS(1792), - [anon_sym_final] = ACTIONS(1792), - [anon_sym_class] = ACTIONS(1792), - [anon_sym_interface] = ACTIONS(1792), - [anon_sym_typedef] = ACTIONS(1792), - [anon_sym_function] = ACTIONS(1792), - [anon_sym_var] = ACTIONS(1792), - [aux_sym_integer_token1] = ACTIONS(1792), - [aux_sym_integer_token2] = ACTIONS(1794), - [aux_sym_float_token1] = ACTIONS(1792), - [aux_sym_float_token2] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1792), - [anon_sym_false] = ACTIONS(1792), - [aux_sym_string_token1] = ACTIONS(1794), - [aux_sym_string_token3] = ACTIONS(1794), + [ts_builtin_sym_end] = ACTIONS(3237), + [sym_identifier] = ACTIONS(3235), + [anon_sym_POUND] = ACTIONS(3237), + [anon_sym_package] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_STAR] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_cast] = ACTIONS(3235), + [anon_sym_DOLLARtype] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_untyped] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_this] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_AT_COLON] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_catch] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [anon_sym_PERCENT] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_LT_LT] = ACTIONS(3237), + [anon_sym_GT_GT] = ACTIONS(3235), + [anon_sym_GT_GT_GT] = ACTIONS(3237), + [anon_sym_AMP] = ACTIONS(3235), + [anon_sym_PIPE] = ACTIONS(3235), + [anon_sym_CARET] = ACTIONS(3237), + [anon_sym_AMP_AMP] = ACTIONS(3237), + [anon_sym_PIPE_PIPE] = ACTIONS(3237), + [anon_sym_EQ_EQ] = ACTIONS(3237), + [anon_sym_BANG_EQ] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_LT_EQ] = ACTIONS(3237), + [anon_sym_GT] = ACTIONS(3235), + [anon_sym_GT_EQ] = ACTIONS(3237), + [anon_sym_EQ_GT] = ACTIONS(3237), + [anon_sym_QMARK_QMARK] = ACTIONS(3237), + [anon_sym_EQ] = ACTIONS(3235), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3237), + [anon_sym_null] = ACTIONS(3235), + [anon_sym_macro] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_extern] = ACTIONS(3235), + [anon_sym_inline] = ACTIONS(3235), + [anon_sym_overload] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_final] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), + [anon_sym_typedef] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [aux_sym_integer_token1] = ACTIONS(3235), + [aux_sym_integer_token2] = ACTIONS(3237), + [aux_sym_float_token1] = ACTIONS(3235), + [aux_sym_float_token2] = ACTIONS(3237), + [anon_sym_true] = ACTIONS(3235), + [anon_sym_false] = ACTIONS(3235), + [aux_sym_string_token1] = ACTIONS(3237), + [aux_sym_string_token3] = ACTIONS(3237), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [657] = { - [ts_builtin_sym_end] = ACTIONS(2038), - [sym_identifier] = ACTIONS(2036), - [anon_sym_POUND] = ACTIONS(2038), - [anon_sym_package] = ACTIONS(2036), - [anon_sym_import] = ACTIONS(2036), - [anon_sym_using] = ACTIONS(2036), - [anon_sym_throw] = ACTIONS(2036), - [anon_sym_LPAREN] = ACTIONS(2038), - [anon_sym_switch] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_cast] = ACTIONS(2036), - [anon_sym_DOLLARtype] = ACTIONS(2038), - [anon_sym_return] = ACTIONS(2036), - [anon_sym_untyped] = ACTIONS(2036), - [anon_sym_break] = ACTIONS(2036), - [anon_sym_continue] = ACTIONS(2036), - [anon_sym_LBRACK] = ACTIONS(2038), - [anon_sym_this] = ACTIONS(2036), - [anon_sym_AT] = ACTIONS(2036), - [anon_sym_AT_COLON] = ACTIONS(2038), - [anon_sym_if] = ACTIONS(2036), - [anon_sym_new] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2038), - [anon_sym_BANG] = ACTIONS(2036), - [anon_sym_DASH] = ACTIONS(2036), - [anon_sym_PLUS_PLUS] = ACTIONS(2038), - [anon_sym_DASH_DASH] = ACTIONS(2038), - [anon_sym_PERCENT] = ACTIONS(2038), - [anon_sym_STAR] = ACTIONS(2038), - [anon_sym_SLASH] = ACTIONS(2036), - [anon_sym_PLUS] = ACTIONS(2036), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_GT_GT_GT] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2038), - [anon_sym_AMP_AMP] = ACTIONS(2038), - [anon_sym_PIPE_PIPE] = ACTIONS(2038), - [anon_sym_EQ_EQ] = ACTIONS(2038), - [anon_sym_BANG_EQ] = ACTIONS(2038), - [anon_sym_LT] = ACTIONS(2036), - [anon_sym_LT_EQ] = ACTIONS(2038), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_GT_EQ] = ACTIONS(2038), - [anon_sym_EQ_GT] = ACTIONS(2038), - [anon_sym_QMARK_QMARK] = ACTIONS(2038), - [anon_sym_EQ] = ACTIONS(2036), - [sym__rangeOperator] = ACTIONS(2038), - [anon_sym_null] = ACTIONS(2036), - [anon_sym_macro] = ACTIONS(2036), - [anon_sym_abstract] = ACTIONS(2036), - [anon_sym_static] = ACTIONS(2036), - [anon_sym_public] = ACTIONS(2036), - [anon_sym_private] = ACTIONS(2036), - [anon_sym_extern] = ACTIONS(2036), - [anon_sym_inline] = ACTIONS(2036), - [anon_sym_overload] = ACTIONS(2036), - [anon_sym_override] = ACTIONS(2036), - [anon_sym_final] = ACTIONS(2036), - [anon_sym_class] = ACTIONS(2036), - [anon_sym_interface] = ACTIONS(2036), - [anon_sym_typedef] = ACTIONS(2036), - [anon_sym_function] = ACTIONS(2036), - [anon_sym_var] = ACTIONS(2036), - [aux_sym_integer_token1] = ACTIONS(2036), - [aux_sym_integer_token2] = ACTIONS(2038), - [aux_sym_float_token1] = ACTIONS(2036), - [aux_sym_float_token2] = ACTIONS(2038), - [anon_sym_true] = ACTIONS(2036), - [anon_sym_false] = ACTIONS(2036), - [aux_sym_string_token1] = ACTIONS(2038), - [aux_sym_string_token3] = ACTIONS(2038), + [ts_builtin_sym_end] = ACTIONS(2963), + [sym_identifier] = ACTIONS(2961), + [anon_sym_POUND] = ACTIONS(2963), + [anon_sym_package] = ACTIONS(2961), + [anon_sym_import] = ACTIONS(2961), + [anon_sym_STAR] = ACTIONS(2963), + [anon_sym_using] = ACTIONS(2961), + [anon_sym_throw] = ACTIONS(2961), + [anon_sym_LPAREN] = ACTIONS(2963), + [anon_sym_switch] = ACTIONS(2961), + [anon_sym_LBRACE] = ACTIONS(2963), + [anon_sym_cast] = ACTIONS(2961), + [anon_sym_DOLLARtype] = ACTIONS(2963), + [anon_sym_for] = ACTIONS(2961), + [anon_sym_return] = ACTIONS(2961), + [anon_sym_untyped] = ACTIONS(2961), + [anon_sym_break] = ACTIONS(2961), + [anon_sym_continue] = ACTIONS(2961), + [anon_sym_LBRACK] = ACTIONS(2963), + [anon_sym_this] = ACTIONS(2961), + [anon_sym_AT] = ACTIONS(2961), + [anon_sym_AT_COLON] = ACTIONS(2963), + [anon_sym_try] = ACTIONS(2961), + [anon_sym_catch] = ACTIONS(2961), + [anon_sym_else] = ACTIONS(2961), + [anon_sym_if] = ACTIONS(2961), + [anon_sym_while] = ACTIONS(2961), + [anon_sym_do] = ACTIONS(2961), + [anon_sym_new] = ACTIONS(2961), + [anon_sym_TILDE] = ACTIONS(2963), + [anon_sym_BANG] = ACTIONS(2961), + [anon_sym_DASH] = ACTIONS(2961), + [anon_sym_PLUS_PLUS] = ACTIONS(2963), + [anon_sym_DASH_DASH] = ACTIONS(2963), + [anon_sym_PERCENT] = ACTIONS(2963), + [anon_sym_SLASH] = ACTIONS(2961), + [anon_sym_PLUS] = ACTIONS(2961), + [anon_sym_LT_LT] = ACTIONS(2963), + [anon_sym_GT_GT] = ACTIONS(2961), + [anon_sym_GT_GT_GT] = ACTIONS(2963), + [anon_sym_AMP] = ACTIONS(2961), + [anon_sym_PIPE] = ACTIONS(2961), + [anon_sym_CARET] = ACTIONS(2963), + [anon_sym_AMP_AMP] = ACTIONS(2963), + [anon_sym_PIPE_PIPE] = ACTIONS(2963), + [anon_sym_EQ_EQ] = ACTIONS(2963), + [anon_sym_BANG_EQ] = ACTIONS(2963), + [anon_sym_LT] = ACTIONS(2961), + [anon_sym_LT_EQ] = ACTIONS(2963), + [anon_sym_GT] = ACTIONS(2961), + [anon_sym_GT_EQ] = ACTIONS(2963), + [anon_sym_EQ_GT] = ACTIONS(2963), + [anon_sym_QMARK_QMARK] = ACTIONS(2963), + [anon_sym_EQ] = ACTIONS(2961), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2963), + [anon_sym_null] = ACTIONS(2961), + [anon_sym_macro] = ACTIONS(2961), + [anon_sym_abstract] = ACTIONS(2961), + [anon_sym_static] = ACTIONS(2961), + [anon_sym_public] = ACTIONS(2961), + [anon_sym_private] = ACTIONS(2961), + [anon_sym_extern] = ACTIONS(2961), + [anon_sym_inline] = ACTIONS(2961), + [anon_sym_overload] = ACTIONS(2961), + [anon_sym_override] = ACTIONS(2961), + [anon_sym_final] = ACTIONS(2961), + [anon_sym_class] = ACTIONS(2961), + [anon_sym_interface] = ACTIONS(2961), + [anon_sym_enum] = ACTIONS(2961), + [anon_sym_typedef] = ACTIONS(2961), + [anon_sym_function] = ACTIONS(2961), + [anon_sym_var] = ACTIONS(2961), + [aux_sym_integer_token1] = ACTIONS(2961), + [aux_sym_integer_token2] = ACTIONS(2963), + [aux_sym_float_token1] = ACTIONS(2961), + [aux_sym_float_token2] = ACTIONS(2963), + [anon_sym_true] = ACTIONS(2961), + [anon_sym_false] = ACTIONS(2961), + [aux_sym_string_token1] = ACTIONS(2963), + [aux_sym_string_token3] = ACTIONS(2963), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [658] = { - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2044), - [anon_sym_POUND] = ACTIONS(2046), - [anon_sym_package] = ACTIONS(2044), - [anon_sym_import] = ACTIONS(2044), - [anon_sym_using] = ACTIONS(2044), - [anon_sym_throw] = ACTIONS(2044), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_switch] = ACTIONS(2044), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_cast] = ACTIONS(2044), - [anon_sym_DOLLARtype] = ACTIONS(2046), - [anon_sym_return] = ACTIONS(2044), - [anon_sym_untyped] = ACTIONS(2044), - [anon_sym_break] = ACTIONS(2044), - [anon_sym_continue] = ACTIONS(2044), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_this] = ACTIONS(2044), - [anon_sym_AT] = ACTIONS(2044), - [anon_sym_AT_COLON] = ACTIONS(2046), - [anon_sym_if] = ACTIONS(2044), - [anon_sym_new] = ACTIONS(2044), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_BANG] = ACTIONS(2044), - [anon_sym_DASH] = ACTIONS(2044), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_PERCENT] = ACTIONS(2046), - [anon_sym_STAR] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2044), - [anon_sym_PLUS] = ACTIONS(2044), - [anon_sym_LT_LT] = ACTIONS(2046), - [anon_sym_GT_GT] = ACTIONS(2044), - [anon_sym_GT_GT_GT] = ACTIONS(2046), - [anon_sym_AMP] = ACTIONS(2044), - [anon_sym_PIPE] = ACTIONS(2044), - [anon_sym_CARET] = ACTIONS(2046), - [anon_sym_AMP_AMP] = ACTIONS(2046), - [anon_sym_PIPE_PIPE] = ACTIONS(2046), - [anon_sym_EQ_EQ] = ACTIONS(2046), - [anon_sym_BANG_EQ] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2044), - [anon_sym_LT_EQ] = ACTIONS(2046), - [anon_sym_GT] = ACTIONS(2044), - [anon_sym_GT_EQ] = ACTIONS(2046), - [anon_sym_EQ_GT] = ACTIONS(2046), - [anon_sym_QMARK_QMARK] = ACTIONS(2046), - [anon_sym_EQ] = ACTIONS(2044), - [sym__rangeOperator] = ACTIONS(2046), - [anon_sym_null] = ACTIONS(2044), - [anon_sym_macro] = ACTIONS(2044), - [anon_sym_abstract] = ACTIONS(2044), - [anon_sym_static] = ACTIONS(2044), - [anon_sym_public] = ACTIONS(2044), - [anon_sym_private] = ACTIONS(2044), - [anon_sym_extern] = ACTIONS(2044), - [anon_sym_inline] = ACTIONS(2044), - [anon_sym_overload] = ACTIONS(2044), - [anon_sym_override] = ACTIONS(2044), - [anon_sym_final] = ACTIONS(2044), - [anon_sym_class] = ACTIONS(2044), - [anon_sym_interface] = ACTIONS(2044), - [anon_sym_typedef] = ACTIONS(2044), - [anon_sym_function] = ACTIONS(2044), - [anon_sym_var] = ACTIONS(2044), - [aux_sym_integer_token1] = ACTIONS(2044), - [aux_sym_integer_token2] = ACTIONS(2046), - [aux_sym_float_token1] = ACTIONS(2044), - [aux_sym_float_token2] = ACTIONS(2046), - [anon_sym_true] = ACTIONS(2044), - [anon_sym_false] = ACTIONS(2044), - [aux_sym_string_token1] = ACTIONS(2046), - [aux_sym_string_token3] = ACTIONS(2046), + [ts_builtin_sym_end] = ACTIONS(3241), + [sym_identifier] = ACTIONS(3239), + [anon_sym_POUND] = ACTIONS(3241), + [anon_sym_package] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_STAR] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_cast] = ACTIONS(3239), + [anon_sym_DOLLARtype] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_untyped] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_this] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_AT_COLON] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_catch] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [anon_sym_PERCENT] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_LT_LT] = ACTIONS(3241), + [anon_sym_GT_GT] = ACTIONS(3239), + [anon_sym_GT_GT_GT] = ACTIONS(3241), + [anon_sym_AMP] = ACTIONS(3239), + [anon_sym_PIPE] = ACTIONS(3239), + [anon_sym_CARET] = ACTIONS(3241), + [anon_sym_AMP_AMP] = ACTIONS(3241), + [anon_sym_PIPE_PIPE] = ACTIONS(3241), + [anon_sym_EQ_EQ] = ACTIONS(3241), + [anon_sym_BANG_EQ] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_LT_EQ] = ACTIONS(3241), + [anon_sym_GT] = ACTIONS(3239), + [anon_sym_GT_EQ] = ACTIONS(3241), + [anon_sym_EQ_GT] = ACTIONS(3241), + [anon_sym_QMARK_QMARK] = ACTIONS(3241), + [anon_sym_EQ] = ACTIONS(3239), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3241), + [anon_sym_null] = ACTIONS(3239), + [anon_sym_macro] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_extern] = ACTIONS(3239), + [anon_sym_inline] = ACTIONS(3239), + [anon_sym_overload] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_final] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [anon_sym_typedef] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [aux_sym_integer_token1] = ACTIONS(3239), + [aux_sym_integer_token2] = ACTIONS(3241), + [aux_sym_float_token1] = ACTIONS(3239), + [aux_sym_float_token2] = ACTIONS(3241), + [anon_sym_true] = ACTIONS(3239), + [anon_sym_false] = ACTIONS(3239), + [aux_sym_string_token1] = ACTIONS(3241), + [aux_sym_string_token3] = ACTIONS(3241), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [659] = { - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2348), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_package] = ACTIONS(2348), - [anon_sym_import] = ACTIONS(2348), - [anon_sym_using] = ACTIONS(2348), - [anon_sym_throw] = ACTIONS(2348), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_switch] = ACTIONS(2348), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_cast] = ACTIONS(2348), - [anon_sym_DOLLARtype] = ACTIONS(2350), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_untyped] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_this] = ACTIONS(2348), - [anon_sym_AT] = ACTIONS(2348), - [anon_sym_AT_COLON] = ACTIONS(2350), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_new] = ACTIONS(2348), - [anon_sym_TILDE] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2348), - [anon_sym_PLUS_PLUS] = ACTIONS(2350), - [anon_sym_DASH_DASH] = ACTIONS(2350), - [anon_sym_PERCENT] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_SLASH] = ACTIONS(2348), - [anon_sym_PLUS] = ACTIONS(2348), - [anon_sym_LT_LT] = ACTIONS(2350), - [anon_sym_GT_GT] = ACTIONS(2348), - [anon_sym_GT_GT_GT] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2348), - [anon_sym_PIPE] = ACTIONS(2348), - [anon_sym_CARET] = ACTIONS(2350), - [anon_sym_AMP_AMP] = ACTIONS(2350), - [anon_sym_PIPE_PIPE] = ACTIONS(2350), - [anon_sym_EQ_EQ] = ACTIONS(2350), - [anon_sym_BANG_EQ] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2348), - [anon_sym_LT_EQ] = ACTIONS(2350), - [anon_sym_GT] = ACTIONS(2348), - [anon_sym_GT_EQ] = ACTIONS(2350), - [anon_sym_EQ_GT] = ACTIONS(2350), - [anon_sym_QMARK_QMARK] = ACTIONS(2350), - [anon_sym_EQ] = ACTIONS(2348), - [sym__rangeOperator] = ACTIONS(2350), - [anon_sym_null] = ACTIONS(2348), - [anon_sym_macro] = ACTIONS(2348), - [anon_sym_abstract] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2348), - [anon_sym_public] = ACTIONS(2348), - [anon_sym_private] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_inline] = ACTIONS(2348), - [anon_sym_overload] = ACTIONS(2348), - [anon_sym_override] = ACTIONS(2348), - [anon_sym_final] = ACTIONS(2348), - [anon_sym_class] = ACTIONS(2348), - [anon_sym_interface] = ACTIONS(2348), - [anon_sym_typedef] = ACTIONS(2348), - [anon_sym_function] = ACTIONS(2348), - [anon_sym_var] = ACTIONS(2348), - [aux_sym_integer_token1] = ACTIONS(2348), - [aux_sym_integer_token2] = ACTIONS(2350), - [aux_sym_float_token1] = ACTIONS(2348), - [aux_sym_float_token2] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [aux_sym_string_token1] = ACTIONS(2350), - [aux_sym_string_token3] = ACTIONS(2350), + [ts_builtin_sym_end] = ACTIONS(2967), + [sym_identifier] = ACTIONS(2965), + [anon_sym_POUND] = ACTIONS(2967), + [anon_sym_package] = ACTIONS(2965), + [anon_sym_import] = ACTIONS(2965), + [anon_sym_STAR] = ACTIONS(2967), + [anon_sym_using] = ACTIONS(2965), + [anon_sym_throw] = ACTIONS(2965), + [anon_sym_LPAREN] = ACTIONS(2967), + [anon_sym_switch] = ACTIONS(2965), + [anon_sym_LBRACE] = ACTIONS(2967), + [anon_sym_cast] = ACTIONS(2965), + [anon_sym_DOLLARtype] = ACTIONS(2967), + [anon_sym_for] = ACTIONS(2965), + [anon_sym_return] = ACTIONS(2965), + [anon_sym_untyped] = ACTIONS(2965), + [anon_sym_break] = ACTIONS(2965), + [anon_sym_continue] = ACTIONS(2965), + [anon_sym_LBRACK] = ACTIONS(2967), + [anon_sym_this] = ACTIONS(2965), + [anon_sym_AT] = ACTIONS(2965), + [anon_sym_AT_COLON] = ACTIONS(2967), + [anon_sym_try] = ACTIONS(2965), + [anon_sym_catch] = ACTIONS(2965), + [anon_sym_else] = ACTIONS(2965), + [anon_sym_if] = ACTIONS(2965), + [anon_sym_while] = ACTIONS(2965), + [anon_sym_do] = ACTIONS(2965), + [anon_sym_new] = ACTIONS(2965), + [anon_sym_TILDE] = ACTIONS(2967), + [anon_sym_BANG] = ACTIONS(2965), + [anon_sym_DASH] = ACTIONS(2965), + [anon_sym_PLUS_PLUS] = ACTIONS(2967), + [anon_sym_DASH_DASH] = ACTIONS(2967), + [anon_sym_PERCENT] = ACTIONS(2967), + [anon_sym_SLASH] = ACTIONS(2965), + [anon_sym_PLUS] = ACTIONS(2965), + [anon_sym_LT_LT] = ACTIONS(2967), + [anon_sym_GT_GT] = ACTIONS(2965), + [anon_sym_GT_GT_GT] = ACTIONS(2967), + [anon_sym_AMP] = ACTIONS(2965), + [anon_sym_PIPE] = ACTIONS(2965), + [anon_sym_CARET] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(2967), + [anon_sym_PIPE_PIPE] = ACTIONS(2967), + [anon_sym_EQ_EQ] = ACTIONS(2967), + [anon_sym_BANG_EQ] = ACTIONS(2967), + [anon_sym_LT] = ACTIONS(2965), + [anon_sym_LT_EQ] = ACTIONS(2967), + [anon_sym_GT] = ACTIONS(2965), + [anon_sym_GT_EQ] = ACTIONS(2967), + [anon_sym_EQ_GT] = ACTIONS(2967), + [anon_sym_QMARK_QMARK] = ACTIONS(2967), + [anon_sym_EQ] = ACTIONS(2965), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2967), + [anon_sym_null] = ACTIONS(2965), + [anon_sym_macro] = ACTIONS(2965), + [anon_sym_abstract] = ACTIONS(2965), + [anon_sym_static] = ACTIONS(2965), + [anon_sym_public] = ACTIONS(2965), + [anon_sym_private] = ACTIONS(2965), + [anon_sym_extern] = ACTIONS(2965), + [anon_sym_inline] = ACTIONS(2965), + [anon_sym_overload] = ACTIONS(2965), + [anon_sym_override] = ACTIONS(2965), + [anon_sym_final] = ACTIONS(2965), + [anon_sym_class] = ACTIONS(2965), + [anon_sym_interface] = ACTIONS(2965), + [anon_sym_enum] = ACTIONS(2965), + [anon_sym_typedef] = ACTIONS(2965), + [anon_sym_function] = ACTIONS(2965), + [anon_sym_var] = ACTIONS(2965), + [aux_sym_integer_token1] = ACTIONS(2965), + [aux_sym_integer_token2] = ACTIONS(2967), + [aux_sym_float_token1] = ACTIONS(2965), + [aux_sym_float_token2] = ACTIONS(2967), + [anon_sym_true] = ACTIONS(2965), + [anon_sym_false] = ACTIONS(2965), + [aux_sym_string_token1] = ACTIONS(2967), + [aux_sym_string_token3] = ACTIONS(2967), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [660] = { - [ts_builtin_sym_end] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2332), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_package] = ACTIONS(2332), - [anon_sym_import] = ACTIONS(2332), - [anon_sym_using] = ACTIONS(2332), - [anon_sym_throw] = ACTIONS(2332), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_switch] = ACTIONS(2332), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_cast] = ACTIONS(2332), - [anon_sym_DOLLARtype] = ACTIONS(2334), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_untyped] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_this] = ACTIONS(2332), - [anon_sym_AT] = ACTIONS(2332), - [anon_sym_AT_COLON] = ACTIONS(2334), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_new] = ACTIONS(2332), - [anon_sym_TILDE] = ACTIONS(2334), - [anon_sym_BANG] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2332), - [anon_sym_PLUS_PLUS] = ACTIONS(2334), - [anon_sym_DASH_DASH] = ACTIONS(2334), - [anon_sym_PERCENT] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2334), - [anon_sym_SLASH] = ACTIONS(2332), - [anon_sym_PLUS] = ACTIONS(2332), - [anon_sym_LT_LT] = ACTIONS(2334), - [anon_sym_GT_GT] = ACTIONS(2332), - [anon_sym_GT_GT_GT] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2332), - [anon_sym_PIPE] = ACTIONS(2332), - [anon_sym_CARET] = ACTIONS(2334), - [anon_sym_AMP_AMP] = ACTIONS(2334), - [anon_sym_PIPE_PIPE] = ACTIONS(2334), - [anon_sym_EQ_EQ] = ACTIONS(2334), - [anon_sym_BANG_EQ] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2332), - [anon_sym_LT_EQ] = ACTIONS(2334), - [anon_sym_GT] = ACTIONS(2332), - [anon_sym_GT_EQ] = ACTIONS(2334), - [anon_sym_EQ_GT] = ACTIONS(2334), - [anon_sym_QMARK_QMARK] = ACTIONS(2334), - [anon_sym_EQ] = ACTIONS(2332), - [sym__rangeOperator] = ACTIONS(2334), - [anon_sym_null] = ACTIONS(2332), - [anon_sym_macro] = ACTIONS(2332), - [anon_sym_abstract] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_public] = ACTIONS(2332), - [anon_sym_private] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_inline] = ACTIONS(2332), - [anon_sym_overload] = ACTIONS(2332), - [anon_sym_override] = ACTIONS(2332), - [anon_sym_final] = ACTIONS(2332), - [anon_sym_class] = ACTIONS(2332), - [anon_sym_interface] = ACTIONS(2332), - [anon_sym_typedef] = ACTIONS(2332), - [anon_sym_function] = ACTIONS(2332), - [anon_sym_var] = ACTIONS(2332), - [aux_sym_integer_token1] = ACTIONS(2332), - [aux_sym_integer_token2] = ACTIONS(2334), - [aux_sym_float_token1] = ACTIONS(2332), - [aux_sym_float_token2] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [aux_sym_string_token1] = ACTIONS(2334), - [aux_sym_string_token3] = ACTIONS(2334), + [ts_builtin_sym_end] = ACTIONS(2971), + [sym_identifier] = ACTIONS(2969), + [anon_sym_POUND] = ACTIONS(2971), + [anon_sym_package] = ACTIONS(2969), + [anon_sym_import] = ACTIONS(2969), + [anon_sym_STAR] = ACTIONS(2971), + [anon_sym_using] = ACTIONS(2969), + [anon_sym_throw] = ACTIONS(2969), + [anon_sym_LPAREN] = ACTIONS(2971), + [anon_sym_switch] = ACTIONS(2969), + [anon_sym_LBRACE] = ACTIONS(2971), + [anon_sym_cast] = ACTIONS(2969), + [anon_sym_DOLLARtype] = ACTIONS(2971), + [anon_sym_for] = ACTIONS(2969), + [anon_sym_return] = ACTIONS(2969), + [anon_sym_untyped] = ACTIONS(2969), + [anon_sym_break] = ACTIONS(2969), + [anon_sym_continue] = ACTIONS(2969), + [anon_sym_LBRACK] = ACTIONS(2971), + [anon_sym_this] = ACTIONS(2969), + [anon_sym_AT] = ACTIONS(2969), + [anon_sym_AT_COLON] = ACTIONS(2971), + [anon_sym_try] = ACTIONS(2969), + [anon_sym_catch] = ACTIONS(2969), + [anon_sym_else] = ACTIONS(2969), + [anon_sym_if] = ACTIONS(2969), + [anon_sym_while] = ACTIONS(2969), + [anon_sym_do] = ACTIONS(2969), + [anon_sym_new] = ACTIONS(2969), + [anon_sym_TILDE] = ACTIONS(2971), + [anon_sym_BANG] = ACTIONS(2969), + [anon_sym_DASH] = ACTIONS(2969), + [anon_sym_PLUS_PLUS] = ACTIONS(2971), + [anon_sym_DASH_DASH] = ACTIONS(2971), + [anon_sym_PERCENT] = ACTIONS(2971), + [anon_sym_SLASH] = ACTIONS(2969), + [anon_sym_PLUS] = ACTIONS(2969), + [anon_sym_LT_LT] = ACTIONS(2971), + [anon_sym_GT_GT] = ACTIONS(2969), + [anon_sym_GT_GT_GT] = ACTIONS(2971), + [anon_sym_AMP] = ACTIONS(2969), + [anon_sym_PIPE] = ACTIONS(2969), + [anon_sym_CARET] = ACTIONS(2971), + [anon_sym_AMP_AMP] = ACTIONS(2971), + [anon_sym_PIPE_PIPE] = ACTIONS(2971), + [anon_sym_EQ_EQ] = ACTIONS(2971), + [anon_sym_BANG_EQ] = ACTIONS(2971), + [anon_sym_LT] = ACTIONS(2969), + [anon_sym_LT_EQ] = ACTIONS(2971), + [anon_sym_GT] = ACTIONS(2969), + [anon_sym_GT_EQ] = ACTIONS(2971), + [anon_sym_EQ_GT] = ACTIONS(2971), + [anon_sym_QMARK_QMARK] = ACTIONS(2971), + [anon_sym_EQ] = ACTIONS(2969), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2971), + [anon_sym_null] = ACTIONS(2969), + [anon_sym_macro] = ACTIONS(2969), + [anon_sym_abstract] = ACTIONS(2969), + [anon_sym_static] = ACTIONS(2969), + [anon_sym_public] = ACTIONS(2969), + [anon_sym_private] = ACTIONS(2969), + [anon_sym_extern] = ACTIONS(2969), + [anon_sym_inline] = ACTIONS(2969), + [anon_sym_overload] = ACTIONS(2969), + [anon_sym_override] = ACTIONS(2969), + [anon_sym_final] = ACTIONS(2969), + [anon_sym_class] = ACTIONS(2969), + [anon_sym_interface] = ACTIONS(2969), + [anon_sym_enum] = ACTIONS(2969), + [anon_sym_typedef] = ACTIONS(2969), + [anon_sym_function] = ACTIONS(2969), + [anon_sym_var] = ACTIONS(2969), + [aux_sym_integer_token1] = ACTIONS(2969), + [aux_sym_integer_token2] = ACTIONS(2971), + [aux_sym_float_token1] = ACTIONS(2969), + [aux_sym_float_token2] = ACTIONS(2971), + [anon_sym_true] = ACTIONS(2969), + [anon_sym_false] = ACTIONS(2969), + [aux_sym_string_token1] = ACTIONS(2971), + [aux_sym_string_token3] = ACTIONS(2971), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [661] = { - [ts_builtin_sym_end] = ACTIONS(1798), - [sym_identifier] = ACTIONS(1796), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_package] = ACTIONS(1796), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_using] = ACTIONS(1796), - [anon_sym_throw] = ACTIONS(1796), - [anon_sym_LPAREN] = ACTIONS(1798), - [anon_sym_switch] = ACTIONS(1796), - [anon_sym_LBRACE] = ACTIONS(1798), - [anon_sym_cast] = ACTIONS(1796), - [anon_sym_DOLLARtype] = ACTIONS(1798), - [anon_sym_return] = ACTIONS(1796), - [anon_sym_untyped] = ACTIONS(1796), - [anon_sym_break] = ACTIONS(1796), - [anon_sym_continue] = ACTIONS(1796), - [anon_sym_LBRACK] = ACTIONS(1798), - [anon_sym_this] = ACTIONS(1796), - [anon_sym_AT] = ACTIONS(1796), - [anon_sym_AT_COLON] = ACTIONS(1798), - [anon_sym_if] = ACTIONS(1796), - [anon_sym_new] = ACTIONS(1796), - [anon_sym_TILDE] = ACTIONS(1798), - [anon_sym_BANG] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_PLUS_PLUS] = ACTIONS(1798), - [anon_sym_DASH_DASH] = ACTIONS(1798), - [anon_sym_PERCENT] = ACTIONS(1798), - [anon_sym_STAR] = ACTIONS(1798), - [anon_sym_SLASH] = ACTIONS(1796), - [anon_sym_PLUS] = ACTIONS(1796), - [anon_sym_LT_LT] = ACTIONS(1798), - [anon_sym_GT_GT] = ACTIONS(1796), - [anon_sym_GT_GT_GT] = ACTIONS(1798), - [anon_sym_AMP] = ACTIONS(1796), - [anon_sym_PIPE] = ACTIONS(1796), - [anon_sym_CARET] = ACTIONS(1798), - [anon_sym_AMP_AMP] = ACTIONS(1798), - [anon_sym_PIPE_PIPE] = ACTIONS(1798), - [anon_sym_EQ_EQ] = ACTIONS(1798), - [anon_sym_BANG_EQ] = ACTIONS(1798), - [anon_sym_LT] = ACTIONS(1796), - [anon_sym_LT_EQ] = ACTIONS(1798), - [anon_sym_GT] = ACTIONS(1796), - [anon_sym_GT_EQ] = ACTIONS(1798), - [anon_sym_EQ_GT] = ACTIONS(1798), - [anon_sym_QMARK_QMARK] = ACTIONS(1798), - [anon_sym_EQ] = ACTIONS(1796), - [sym__rangeOperator] = ACTIONS(1798), - [anon_sym_null] = ACTIONS(1796), - [anon_sym_macro] = ACTIONS(1796), - [anon_sym_abstract] = ACTIONS(1796), - [anon_sym_static] = ACTIONS(1796), - [anon_sym_public] = ACTIONS(1796), - [anon_sym_private] = ACTIONS(1796), - [anon_sym_extern] = ACTIONS(1796), - [anon_sym_inline] = ACTIONS(1796), - [anon_sym_overload] = ACTIONS(1796), - [anon_sym_override] = ACTIONS(1796), - [anon_sym_final] = ACTIONS(1796), - [anon_sym_class] = ACTIONS(1796), - [anon_sym_interface] = ACTIONS(1796), - [anon_sym_typedef] = ACTIONS(1796), - [anon_sym_function] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(1796), - [aux_sym_integer_token1] = ACTIONS(1796), - [aux_sym_integer_token2] = ACTIONS(1798), - [aux_sym_float_token1] = ACTIONS(1796), - [aux_sym_float_token2] = ACTIONS(1798), - [anon_sym_true] = ACTIONS(1796), - [anon_sym_false] = ACTIONS(1796), - [aux_sym_string_token1] = ACTIONS(1798), - [aux_sym_string_token3] = ACTIONS(1798), + [ts_builtin_sym_end] = ACTIONS(2975), + [sym_identifier] = ACTIONS(2973), + [anon_sym_POUND] = ACTIONS(2975), + [anon_sym_package] = ACTIONS(2973), + [anon_sym_import] = ACTIONS(2973), + [anon_sym_STAR] = ACTIONS(2975), + [anon_sym_using] = ACTIONS(2973), + [anon_sym_throw] = ACTIONS(2973), + [anon_sym_LPAREN] = ACTIONS(2975), + [anon_sym_switch] = ACTIONS(2973), + [anon_sym_LBRACE] = ACTIONS(2975), + [anon_sym_cast] = ACTIONS(2973), + [anon_sym_DOLLARtype] = ACTIONS(2975), + [anon_sym_for] = ACTIONS(2973), + [anon_sym_return] = ACTIONS(2973), + [anon_sym_untyped] = ACTIONS(2973), + [anon_sym_break] = ACTIONS(2973), + [anon_sym_continue] = ACTIONS(2973), + [anon_sym_LBRACK] = ACTIONS(2975), + [anon_sym_this] = ACTIONS(2973), + [anon_sym_AT] = ACTIONS(2973), + [anon_sym_AT_COLON] = ACTIONS(2975), + [anon_sym_try] = ACTIONS(2973), + [anon_sym_catch] = ACTIONS(2973), + [anon_sym_else] = ACTIONS(2973), + [anon_sym_if] = ACTIONS(2973), + [anon_sym_while] = ACTIONS(2973), + [anon_sym_do] = ACTIONS(2973), + [anon_sym_new] = ACTIONS(2973), + [anon_sym_TILDE] = ACTIONS(2975), + [anon_sym_BANG] = ACTIONS(2973), + [anon_sym_DASH] = ACTIONS(2973), + [anon_sym_PLUS_PLUS] = ACTIONS(2975), + [anon_sym_DASH_DASH] = ACTIONS(2975), + [anon_sym_PERCENT] = ACTIONS(2975), + [anon_sym_SLASH] = ACTIONS(2973), + [anon_sym_PLUS] = ACTIONS(2973), + [anon_sym_LT_LT] = ACTIONS(2975), + [anon_sym_GT_GT] = ACTIONS(2973), + [anon_sym_GT_GT_GT] = ACTIONS(2975), + [anon_sym_AMP] = ACTIONS(2973), + [anon_sym_PIPE] = ACTIONS(2973), + [anon_sym_CARET] = ACTIONS(2975), + [anon_sym_AMP_AMP] = ACTIONS(2975), + [anon_sym_PIPE_PIPE] = ACTIONS(2975), + [anon_sym_EQ_EQ] = ACTIONS(2975), + [anon_sym_BANG_EQ] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2973), + [anon_sym_LT_EQ] = ACTIONS(2975), + [anon_sym_GT] = ACTIONS(2973), + [anon_sym_GT_EQ] = ACTIONS(2975), + [anon_sym_EQ_GT] = ACTIONS(2975), + [anon_sym_QMARK_QMARK] = ACTIONS(2975), + [anon_sym_EQ] = ACTIONS(2973), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2975), + [anon_sym_null] = ACTIONS(2973), + [anon_sym_macro] = ACTIONS(2973), + [anon_sym_abstract] = ACTIONS(2973), + [anon_sym_static] = ACTIONS(2973), + [anon_sym_public] = ACTIONS(2973), + [anon_sym_private] = ACTIONS(2973), + [anon_sym_extern] = ACTIONS(2973), + [anon_sym_inline] = ACTIONS(2973), + [anon_sym_overload] = ACTIONS(2973), + [anon_sym_override] = ACTIONS(2973), + [anon_sym_final] = ACTIONS(2973), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_interface] = ACTIONS(2973), + [anon_sym_enum] = ACTIONS(2973), + [anon_sym_typedef] = ACTIONS(2973), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_var] = ACTIONS(2973), + [aux_sym_integer_token1] = ACTIONS(2973), + [aux_sym_integer_token2] = ACTIONS(2975), + [aux_sym_float_token1] = ACTIONS(2973), + [aux_sym_float_token2] = ACTIONS(2975), + [anon_sym_true] = ACTIONS(2973), + [anon_sym_false] = ACTIONS(2973), + [aux_sym_string_token1] = ACTIONS(2975), + [aux_sym_string_token3] = ACTIONS(2975), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [662] = { - [ts_builtin_sym_end] = ACTIONS(2050), - [sym_identifier] = ACTIONS(2048), - [anon_sym_POUND] = ACTIONS(2050), - [anon_sym_package] = ACTIONS(2048), - [anon_sym_import] = ACTIONS(2048), - [anon_sym_using] = ACTIONS(2048), - [anon_sym_throw] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2050), - [anon_sym_switch] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2050), - [anon_sym_cast] = ACTIONS(2048), - [anon_sym_DOLLARtype] = ACTIONS(2050), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_untyped] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2050), - [anon_sym_this] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2048), - [anon_sym_AT_COLON] = ACTIONS(2050), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2050), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2050), - [anon_sym_DASH_DASH] = ACTIONS(2050), - [anon_sym_PERCENT] = ACTIONS(2050), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_LT_LT] = ACTIONS(2050), - [anon_sym_GT_GT] = ACTIONS(2048), - [anon_sym_GT_GT_GT] = ACTIONS(2050), - [anon_sym_AMP] = ACTIONS(2048), - [anon_sym_PIPE] = ACTIONS(2048), - [anon_sym_CARET] = ACTIONS(2050), - [anon_sym_AMP_AMP] = ACTIONS(2050), - [anon_sym_PIPE_PIPE] = ACTIONS(2050), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ] = ACTIONS(2050), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_LT_EQ] = ACTIONS(2050), - [anon_sym_GT] = ACTIONS(2048), - [anon_sym_GT_EQ] = ACTIONS(2050), - [anon_sym_EQ_GT] = ACTIONS(2050), - [anon_sym_QMARK_QMARK] = ACTIONS(2050), - [anon_sym_EQ] = ACTIONS(2048), - [sym__rangeOperator] = ACTIONS(2050), - [anon_sym_null] = ACTIONS(2048), - [anon_sym_macro] = ACTIONS(2048), - [anon_sym_abstract] = ACTIONS(2048), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_public] = ACTIONS(2048), - [anon_sym_private] = ACTIONS(2048), - [anon_sym_extern] = ACTIONS(2048), - [anon_sym_inline] = ACTIONS(2048), - [anon_sym_overload] = ACTIONS(2048), - [anon_sym_override] = ACTIONS(2048), - [anon_sym_final] = ACTIONS(2048), - [anon_sym_class] = ACTIONS(2048), - [anon_sym_interface] = ACTIONS(2048), - [anon_sym_typedef] = ACTIONS(2048), - [anon_sym_function] = ACTIONS(2048), - [anon_sym_var] = ACTIONS(2048), - [aux_sym_integer_token1] = ACTIONS(2048), - [aux_sym_integer_token2] = ACTIONS(2050), - [aux_sym_float_token1] = ACTIONS(2048), - [aux_sym_float_token2] = ACTIONS(2050), - [anon_sym_true] = ACTIONS(2048), - [anon_sym_false] = ACTIONS(2048), - [aux_sym_string_token1] = ACTIONS(2050), - [aux_sym_string_token3] = ACTIONS(2050), + [ts_builtin_sym_end] = ACTIONS(2695), + [sym_identifier] = ACTIONS(2693), + [anon_sym_POUND] = ACTIONS(2695), + [anon_sym_package] = ACTIONS(2693), + [anon_sym_import] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2695), + [anon_sym_using] = ACTIONS(2693), + [anon_sym_throw] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2695), + [anon_sym_switch] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2695), + [anon_sym_cast] = ACTIONS(2693), + [anon_sym_DOLLARtype] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2693), + [anon_sym_return] = ACTIONS(2693), + [anon_sym_untyped] = ACTIONS(2693), + [anon_sym_break] = ACTIONS(2693), + [anon_sym_continue] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2695), + [anon_sym_this] = ACTIONS(2693), + [anon_sym_AT] = ACTIONS(2693), + [anon_sym_AT_COLON] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2693), + [anon_sym_catch] = ACTIONS(2693), + [anon_sym_else] = ACTIONS(2693), + [anon_sym_if] = ACTIONS(2693), + [anon_sym_while] = ACTIONS(2693), + [anon_sym_do] = ACTIONS(2693), + [anon_sym_new] = ACTIONS(2693), + [anon_sym_TILDE] = ACTIONS(2695), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_PLUS_PLUS] = ACTIONS(2695), + [anon_sym_DASH_DASH] = ACTIONS(2695), + [anon_sym_PERCENT] = ACTIONS(2695), + [anon_sym_SLASH] = ACTIONS(2693), + [anon_sym_PLUS] = ACTIONS(2693), + [anon_sym_LT_LT] = ACTIONS(2695), + [anon_sym_GT_GT] = ACTIONS(2693), + [anon_sym_GT_GT_GT] = ACTIONS(2695), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_CARET] = ACTIONS(2695), + [anon_sym_AMP_AMP] = ACTIONS(2695), + [anon_sym_PIPE_PIPE] = ACTIONS(2695), + [anon_sym_EQ_EQ] = ACTIONS(2695), + [anon_sym_BANG_EQ] = ACTIONS(2695), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(2695), + [anon_sym_GT] = ACTIONS(2693), + [anon_sym_GT_EQ] = ACTIONS(2695), + [anon_sym_EQ_GT] = ACTIONS(2695), + [anon_sym_QMARK_QMARK] = ACTIONS(2695), + [anon_sym_EQ] = ACTIONS(2693), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2695), + [anon_sym_null] = ACTIONS(2693), + [anon_sym_macro] = ACTIONS(2693), + [anon_sym_abstract] = ACTIONS(2693), + [anon_sym_static] = ACTIONS(2693), + [anon_sym_public] = ACTIONS(2693), + [anon_sym_private] = ACTIONS(2693), + [anon_sym_extern] = ACTIONS(2693), + [anon_sym_inline] = ACTIONS(2693), + [anon_sym_overload] = ACTIONS(2693), + [anon_sym_override] = ACTIONS(2693), + [anon_sym_final] = ACTIONS(2693), + [anon_sym_class] = ACTIONS(2693), + [anon_sym_interface] = ACTIONS(2693), + [anon_sym_enum] = ACTIONS(2693), + [anon_sym_typedef] = ACTIONS(2693), + [anon_sym_function] = ACTIONS(2693), + [anon_sym_var] = ACTIONS(2693), + [aux_sym_integer_token1] = ACTIONS(2693), + [aux_sym_integer_token2] = ACTIONS(2695), + [aux_sym_float_token1] = ACTIONS(2693), + [aux_sym_float_token2] = ACTIONS(2695), + [anon_sym_true] = ACTIONS(2693), + [anon_sym_false] = ACTIONS(2693), + [aux_sym_string_token1] = ACTIONS(2695), + [aux_sym_string_token3] = ACTIONS(2695), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [663] = { - [ts_builtin_sym_end] = ACTIONS(772), - [sym_identifier] = ACTIONS(770), - [anon_sym_POUND] = ACTIONS(772), - [anon_sym_package] = ACTIONS(770), - [anon_sym_import] = ACTIONS(770), - [anon_sym_using] = ACTIONS(770), - [anon_sym_throw] = ACTIONS(770), - [anon_sym_LPAREN] = ACTIONS(772), - [anon_sym_switch] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_cast] = ACTIONS(770), - [anon_sym_DOLLARtype] = ACTIONS(772), - [anon_sym_return] = ACTIONS(770), - [anon_sym_untyped] = ACTIONS(770), - [anon_sym_break] = ACTIONS(770), - [anon_sym_continue] = ACTIONS(770), - [anon_sym_LBRACK] = ACTIONS(772), - [anon_sym_this] = ACTIONS(770), - [anon_sym_AT] = ACTIONS(770), - [anon_sym_AT_COLON] = ACTIONS(772), - [anon_sym_if] = ACTIONS(770), - [anon_sym_new] = ACTIONS(770), - [anon_sym_TILDE] = ACTIONS(772), - [anon_sym_BANG] = ACTIONS(770), - [anon_sym_DASH] = ACTIONS(770), - [anon_sym_PLUS_PLUS] = ACTIONS(772), - [anon_sym_DASH_DASH] = ACTIONS(772), - [anon_sym_PERCENT] = ACTIONS(772), - [anon_sym_STAR] = ACTIONS(772), - [anon_sym_SLASH] = ACTIONS(770), - [anon_sym_PLUS] = ACTIONS(770), - [anon_sym_LT_LT] = ACTIONS(772), - [anon_sym_GT_GT] = ACTIONS(770), - [anon_sym_GT_GT_GT] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(770), - [anon_sym_PIPE] = ACTIONS(770), - [anon_sym_CARET] = ACTIONS(772), - [anon_sym_AMP_AMP] = ACTIONS(772), - [anon_sym_PIPE_PIPE] = ACTIONS(772), - [anon_sym_EQ_EQ] = ACTIONS(772), - [anon_sym_BANG_EQ] = ACTIONS(772), - [anon_sym_LT] = ACTIONS(770), - [anon_sym_LT_EQ] = ACTIONS(772), - [anon_sym_GT] = ACTIONS(770), - [anon_sym_GT_EQ] = ACTIONS(772), - [anon_sym_EQ_GT] = ACTIONS(772), - [anon_sym_QMARK_QMARK] = ACTIONS(772), - [anon_sym_EQ] = ACTIONS(770), - [sym__rangeOperator] = ACTIONS(772), - [anon_sym_null] = ACTIONS(770), - [anon_sym_macro] = ACTIONS(770), - [anon_sym_abstract] = ACTIONS(770), - [anon_sym_static] = ACTIONS(770), - [anon_sym_public] = ACTIONS(770), - [anon_sym_private] = ACTIONS(770), - [anon_sym_extern] = ACTIONS(770), - [anon_sym_inline] = ACTIONS(770), - [anon_sym_overload] = ACTIONS(770), - [anon_sym_override] = ACTIONS(770), - [anon_sym_final] = ACTIONS(770), - [anon_sym_class] = ACTIONS(770), - [anon_sym_interface] = ACTIONS(770), - [anon_sym_typedef] = ACTIONS(770), - [anon_sym_function] = ACTIONS(770), - [anon_sym_var] = ACTIONS(770), - [aux_sym_integer_token1] = ACTIONS(770), - [aux_sym_integer_token2] = ACTIONS(772), - [aux_sym_float_token1] = ACTIONS(770), - [aux_sym_float_token2] = ACTIONS(772), - [anon_sym_true] = ACTIONS(770), - [anon_sym_false] = ACTIONS(770), - [aux_sym_string_token1] = ACTIONS(772), - [aux_sym_string_token3] = ACTIONS(772), + [ts_builtin_sym_end] = ACTIONS(2979), + [sym_identifier] = ACTIONS(2977), + [anon_sym_POUND] = ACTIONS(2979), + [anon_sym_package] = ACTIONS(2977), + [anon_sym_import] = ACTIONS(2977), + [anon_sym_STAR] = ACTIONS(2979), + [anon_sym_using] = ACTIONS(2977), + [anon_sym_throw] = ACTIONS(2977), + [anon_sym_LPAREN] = ACTIONS(2979), + [anon_sym_switch] = ACTIONS(2977), + [anon_sym_LBRACE] = ACTIONS(2979), + [anon_sym_cast] = ACTIONS(2977), + [anon_sym_DOLLARtype] = ACTIONS(2979), + [anon_sym_for] = ACTIONS(2977), + [anon_sym_return] = ACTIONS(2977), + [anon_sym_untyped] = ACTIONS(2977), + [anon_sym_break] = ACTIONS(2977), + [anon_sym_continue] = ACTIONS(2977), + [anon_sym_LBRACK] = ACTIONS(2979), + [anon_sym_this] = ACTIONS(2977), + [anon_sym_AT] = ACTIONS(2977), + [anon_sym_AT_COLON] = ACTIONS(2979), + [anon_sym_try] = ACTIONS(2977), + [anon_sym_catch] = ACTIONS(2977), + [anon_sym_else] = ACTIONS(2977), + [anon_sym_if] = ACTIONS(2977), + [anon_sym_while] = ACTIONS(2977), + [anon_sym_do] = ACTIONS(2977), + [anon_sym_new] = ACTIONS(2977), + [anon_sym_TILDE] = ACTIONS(2979), + [anon_sym_BANG] = ACTIONS(2977), + [anon_sym_DASH] = ACTIONS(2977), + [anon_sym_PLUS_PLUS] = ACTIONS(2979), + [anon_sym_DASH_DASH] = ACTIONS(2979), + [anon_sym_PERCENT] = ACTIONS(2979), + [anon_sym_SLASH] = ACTIONS(2977), + [anon_sym_PLUS] = ACTIONS(2977), + [anon_sym_LT_LT] = ACTIONS(2979), + [anon_sym_GT_GT] = ACTIONS(2977), + [anon_sym_GT_GT_GT] = ACTIONS(2979), + [anon_sym_AMP] = ACTIONS(2977), + [anon_sym_PIPE] = ACTIONS(2977), + [anon_sym_CARET] = ACTIONS(2979), + [anon_sym_AMP_AMP] = ACTIONS(2979), + [anon_sym_PIPE_PIPE] = ACTIONS(2979), + [anon_sym_EQ_EQ] = ACTIONS(2979), + [anon_sym_BANG_EQ] = ACTIONS(2979), + [anon_sym_LT] = ACTIONS(2977), + [anon_sym_LT_EQ] = ACTIONS(2979), + [anon_sym_GT] = ACTIONS(2977), + [anon_sym_GT_EQ] = ACTIONS(2979), + [anon_sym_EQ_GT] = ACTIONS(2979), + [anon_sym_QMARK_QMARK] = ACTIONS(2979), + [anon_sym_EQ] = ACTIONS(2977), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2979), + [anon_sym_null] = ACTIONS(2977), + [anon_sym_macro] = ACTIONS(2977), + [anon_sym_abstract] = ACTIONS(2977), + [anon_sym_static] = ACTIONS(2977), + [anon_sym_public] = ACTIONS(2977), + [anon_sym_private] = ACTIONS(2977), + [anon_sym_extern] = ACTIONS(2977), + [anon_sym_inline] = ACTIONS(2977), + [anon_sym_overload] = ACTIONS(2977), + [anon_sym_override] = ACTIONS(2977), + [anon_sym_final] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2977), + [anon_sym_interface] = ACTIONS(2977), + [anon_sym_enum] = ACTIONS(2977), + [anon_sym_typedef] = ACTIONS(2977), + [anon_sym_function] = ACTIONS(2977), + [anon_sym_var] = ACTIONS(2977), + [aux_sym_integer_token1] = ACTIONS(2977), + [aux_sym_integer_token2] = ACTIONS(2979), + [aux_sym_float_token1] = ACTIONS(2977), + [aux_sym_float_token2] = ACTIONS(2979), + [anon_sym_true] = ACTIONS(2977), + [anon_sym_false] = ACTIONS(2977), + [aux_sym_string_token1] = ACTIONS(2979), + [aux_sym_string_token3] = ACTIONS(2979), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [664] = { - [ts_builtin_sym_end] = ACTIONS(2330), - [sym_identifier] = ACTIONS(2328), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_package] = ACTIONS(2328), - [anon_sym_import] = ACTIONS(2328), - [anon_sym_using] = ACTIONS(2328), - [anon_sym_throw] = ACTIONS(2328), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_switch] = ACTIONS(2328), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_cast] = ACTIONS(2328), - [anon_sym_DOLLARtype] = ACTIONS(2330), - [anon_sym_return] = ACTIONS(2328), - [anon_sym_untyped] = ACTIONS(2328), - [anon_sym_break] = ACTIONS(2328), - [anon_sym_continue] = ACTIONS(2328), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_this] = ACTIONS(2328), - [anon_sym_AT] = ACTIONS(2328), - [anon_sym_AT_COLON] = ACTIONS(2330), - [anon_sym_if] = ACTIONS(2328), - [anon_sym_new] = ACTIONS(2328), - [anon_sym_TILDE] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2328), - [anon_sym_DASH] = ACTIONS(2328), - [anon_sym_PLUS_PLUS] = ACTIONS(2330), - [anon_sym_DASH_DASH] = ACTIONS(2330), - [anon_sym_PERCENT] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_SLASH] = ACTIONS(2328), - [anon_sym_PLUS] = ACTIONS(2328), - [anon_sym_LT_LT] = ACTIONS(2330), - [anon_sym_GT_GT] = ACTIONS(2328), - [anon_sym_GT_GT_GT] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2328), - [anon_sym_PIPE] = ACTIONS(2328), - [anon_sym_CARET] = ACTIONS(2330), - [anon_sym_AMP_AMP] = ACTIONS(2330), - [anon_sym_PIPE_PIPE] = ACTIONS(2330), - [anon_sym_EQ_EQ] = ACTIONS(2330), - [anon_sym_BANG_EQ] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2328), - [anon_sym_LT_EQ] = ACTIONS(2330), - [anon_sym_GT] = ACTIONS(2328), - [anon_sym_GT_EQ] = ACTIONS(2330), - [anon_sym_EQ_GT] = ACTIONS(2330), - [anon_sym_QMARK_QMARK] = ACTIONS(2330), - [anon_sym_EQ] = ACTIONS(2328), - [sym__rangeOperator] = ACTIONS(2330), - [anon_sym_null] = ACTIONS(2328), - [anon_sym_macro] = ACTIONS(2328), - [anon_sym_abstract] = ACTIONS(2328), - [anon_sym_static] = ACTIONS(2328), - [anon_sym_public] = ACTIONS(2328), - [anon_sym_private] = ACTIONS(2328), - [anon_sym_extern] = ACTIONS(2328), - [anon_sym_inline] = ACTIONS(2328), - [anon_sym_overload] = ACTIONS(2328), - [anon_sym_override] = ACTIONS(2328), - [anon_sym_final] = ACTIONS(2328), - [anon_sym_class] = ACTIONS(2328), - [anon_sym_interface] = ACTIONS(2328), - [anon_sym_typedef] = ACTIONS(2328), - [anon_sym_function] = ACTIONS(2328), - [anon_sym_var] = ACTIONS(2328), - [aux_sym_integer_token1] = ACTIONS(2328), - [aux_sym_integer_token2] = ACTIONS(2330), - [aux_sym_float_token1] = ACTIONS(2328), - [aux_sym_float_token2] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2328), - [anon_sym_false] = ACTIONS(2328), - [aux_sym_string_token1] = ACTIONS(2330), - [aux_sym_string_token3] = ACTIONS(2330), + [ts_builtin_sym_end] = ACTIONS(2983), + [sym_identifier] = ACTIONS(2981), + [anon_sym_POUND] = ACTIONS(2983), + [anon_sym_package] = ACTIONS(2981), + [anon_sym_import] = ACTIONS(2981), + [anon_sym_STAR] = ACTIONS(2983), + [anon_sym_using] = ACTIONS(2981), + [anon_sym_throw] = ACTIONS(2981), + [anon_sym_LPAREN] = ACTIONS(2983), + [anon_sym_switch] = ACTIONS(2981), + [anon_sym_LBRACE] = ACTIONS(2983), + [anon_sym_cast] = ACTIONS(2981), + [anon_sym_DOLLARtype] = ACTIONS(2983), + [anon_sym_for] = ACTIONS(2981), + [anon_sym_return] = ACTIONS(2981), + [anon_sym_untyped] = ACTIONS(2981), + [anon_sym_break] = ACTIONS(2981), + [anon_sym_continue] = ACTIONS(2981), + [anon_sym_LBRACK] = ACTIONS(2983), + [anon_sym_this] = ACTIONS(2981), + [anon_sym_AT] = ACTIONS(2981), + [anon_sym_AT_COLON] = ACTIONS(2983), + [anon_sym_try] = ACTIONS(2981), + [anon_sym_catch] = ACTIONS(2981), + [anon_sym_else] = ACTIONS(2981), + [anon_sym_if] = ACTIONS(2981), + [anon_sym_while] = ACTIONS(2981), + [anon_sym_do] = ACTIONS(2981), + [anon_sym_new] = ACTIONS(2981), + [anon_sym_TILDE] = ACTIONS(2983), + [anon_sym_BANG] = ACTIONS(2981), + [anon_sym_DASH] = ACTIONS(2981), + [anon_sym_PLUS_PLUS] = ACTIONS(2983), + [anon_sym_DASH_DASH] = ACTIONS(2983), + [anon_sym_PERCENT] = ACTIONS(2983), + [anon_sym_SLASH] = ACTIONS(2981), + [anon_sym_PLUS] = ACTIONS(2981), + [anon_sym_LT_LT] = ACTIONS(2983), + [anon_sym_GT_GT] = ACTIONS(2981), + [anon_sym_GT_GT_GT] = ACTIONS(2983), + [anon_sym_AMP] = ACTIONS(2981), + [anon_sym_PIPE] = ACTIONS(2981), + [anon_sym_CARET] = ACTIONS(2983), + [anon_sym_AMP_AMP] = ACTIONS(2983), + [anon_sym_PIPE_PIPE] = ACTIONS(2983), + [anon_sym_EQ_EQ] = ACTIONS(2983), + [anon_sym_BANG_EQ] = ACTIONS(2983), + [anon_sym_LT] = ACTIONS(2981), + [anon_sym_LT_EQ] = ACTIONS(2983), + [anon_sym_GT] = ACTIONS(2981), + [anon_sym_GT_EQ] = ACTIONS(2983), + [anon_sym_EQ_GT] = ACTIONS(2983), + [anon_sym_QMARK_QMARK] = ACTIONS(2983), + [anon_sym_EQ] = ACTIONS(2981), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2983), + [anon_sym_null] = ACTIONS(2981), + [anon_sym_macro] = ACTIONS(2981), + [anon_sym_abstract] = ACTIONS(2981), + [anon_sym_static] = ACTIONS(2981), + [anon_sym_public] = ACTIONS(2981), + [anon_sym_private] = ACTIONS(2981), + [anon_sym_extern] = ACTIONS(2981), + [anon_sym_inline] = ACTIONS(2981), + [anon_sym_overload] = ACTIONS(2981), + [anon_sym_override] = ACTIONS(2981), + [anon_sym_final] = ACTIONS(2981), + [anon_sym_class] = ACTIONS(2981), + [anon_sym_interface] = ACTIONS(2981), + [anon_sym_enum] = ACTIONS(2981), + [anon_sym_typedef] = ACTIONS(2981), + [anon_sym_function] = ACTIONS(2981), + [anon_sym_var] = ACTIONS(2981), + [aux_sym_integer_token1] = ACTIONS(2981), + [aux_sym_integer_token2] = ACTIONS(2983), + [aux_sym_float_token1] = ACTIONS(2981), + [aux_sym_float_token2] = ACTIONS(2983), + [anon_sym_true] = ACTIONS(2981), + [anon_sym_false] = ACTIONS(2981), + [aux_sym_string_token1] = ACTIONS(2983), + [aux_sym_string_token3] = ACTIONS(2983), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [665] = { - [ts_builtin_sym_end] = ACTIONS(1802), - [sym_identifier] = ACTIONS(1800), - [anon_sym_POUND] = ACTIONS(1802), - [anon_sym_package] = ACTIONS(1800), - [anon_sym_import] = ACTIONS(1800), - [anon_sym_using] = ACTIONS(1800), - [anon_sym_throw] = ACTIONS(1800), - [anon_sym_LPAREN] = ACTIONS(1802), - [anon_sym_switch] = ACTIONS(1800), - [anon_sym_LBRACE] = ACTIONS(1802), - [anon_sym_cast] = ACTIONS(1800), - [anon_sym_DOLLARtype] = ACTIONS(1802), - [anon_sym_return] = ACTIONS(1800), - [anon_sym_untyped] = ACTIONS(1800), - [anon_sym_break] = ACTIONS(1800), - [anon_sym_continue] = ACTIONS(1800), - [anon_sym_LBRACK] = ACTIONS(1802), - [anon_sym_this] = ACTIONS(1800), - [anon_sym_AT] = ACTIONS(1800), - [anon_sym_AT_COLON] = ACTIONS(1802), - [anon_sym_if] = ACTIONS(1800), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_TILDE] = ACTIONS(1802), - [anon_sym_BANG] = ACTIONS(1800), - [anon_sym_DASH] = ACTIONS(1800), - [anon_sym_PLUS_PLUS] = ACTIONS(1802), - [anon_sym_DASH_DASH] = ACTIONS(1802), - [anon_sym_PERCENT] = ACTIONS(1802), - [anon_sym_STAR] = ACTIONS(1802), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1800), - [anon_sym_LT_LT] = ACTIONS(1802), - [anon_sym_GT_GT] = ACTIONS(1800), - [anon_sym_GT_GT_GT] = ACTIONS(1802), - [anon_sym_AMP] = ACTIONS(1800), - [anon_sym_PIPE] = ACTIONS(1800), - [anon_sym_CARET] = ACTIONS(1802), - [anon_sym_AMP_AMP] = ACTIONS(1802), - [anon_sym_PIPE_PIPE] = ACTIONS(1802), - [anon_sym_EQ_EQ] = ACTIONS(1802), - [anon_sym_BANG_EQ] = ACTIONS(1802), - [anon_sym_LT] = ACTIONS(1800), - [anon_sym_LT_EQ] = ACTIONS(1802), - [anon_sym_GT] = ACTIONS(1800), - [anon_sym_GT_EQ] = ACTIONS(1802), - [anon_sym_EQ_GT] = ACTIONS(1802), - [anon_sym_QMARK_QMARK] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1800), - [sym__rangeOperator] = ACTIONS(1802), - [anon_sym_null] = ACTIONS(1800), - [anon_sym_macro] = ACTIONS(1800), - [anon_sym_abstract] = ACTIONS(1800), - [anon_sym_static] = ACTIONS(1800), - [anon_sym_public] = ACTIONS(1800), - [anon_sym_private] = ACTIONS(1800), - [anon_sym_extern] = ACTIONS(1800), - [anon_sym_inline] = ACTIONS(1800), - [anon_sym_overload] = ACTIONS(1800), - [anon_sym_override] = ACTIONS(1800), - [anon_sym_final] = ACTIONS(1800), - [anon_sym_class] = ACTIONS(1800), - [anon_sym_interface] = ACTIONS(1800), - [anon_sym_typedef] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(1800), - [anon_sym_var] = ACTIONS(1800), - [aux_sym_integer_token1] = ACTIONS(1800), - [aux_sym_integer_token2] = ACTIONS(1802), - [aux_sym_float_token1] = ACTIONS(1800), - [aux_sym_float_token2] = ACTIONS(1802), - [anon_sym_true] = ACTIONS(1800), - [anon_sym_false] = ACTIONS(1800), - [aux_sym_string_token1] = ACTIONS(1802), - [aux_sym_string_token3] = ACTIONS(1802), + [ts_builtin_sym_end] = ACTIONS(2987), + [sym_identifier] = ACTIONS(2985), + [anon_sym_POUND] = ACTIONS(2987), + [anon_sym_package] = ACTIONS(2985), + [anon_sym_import] = ACTIONS(2985), + [anon_sym_STAR] = ACTIONS(2987), + [anon_sym_using] = ACTIONS(2985), + [anon_sym_throw] = ACTIONS(2985), + [anon_sym_LPAREN] = ACTIONS(2987), + [anon_sym_switch] = ACTIONS(2985), + [anon_sym_LBRACE] = ACTIONS(2987), + [anon_sym_cast] = ACTIONS(2985), + [anon_sym_DOLLARtype] = ACTIONS(2987), + [anon_sym_for] = ACTIONS(2985), + [anon_sym_return] = ACTIONS(2985), + [anon_sym_untyped] = ACTIONS(2985), + [anon_sym_break] = ACTIONS(2985), + [anon_sym_continue] = ACTIONS(2985), + [anon_sym_LBRACK] = ACTIONS(2987), + [anon_sym_this] = ACTIONS(2985), + [anon_sym_AT] = ACTIONS(2985), + [anon_sym_AT_COLON] = ACTIONS(2987), + [anon_sym_try] = ACTIONS(2985), + [anon_sym_catch] = ACTIONS(2985), + [anon_sym_else] = ACTIONS(2985), + [anon_sym_if] = ACTIONS(2985), + [anon_sym_while] = ACTIONS(2985), + [anon_sym_do] = ACTIONS(2985), + [anon_sym_new] = ACTIONS(2985), + [anon_sym_TILDE] = ACTIONS(2987), + [anon_sym_BANG] = ACTIONS(2985), + [anon_sym_DASH] = ACTIONS(2985), + [anon_sym_PLUS_PLUS] = ACTIONS(2987), + [anon_sym_DASH_DASH] = ACTIONS(2987), + [anon_sym_PERCENT] = ACTIONS(2987), + [anon_sym_SLASH] = ACTIONS(2985), + [anon_sym_PLUS] = ACTIONS(2985), + [anon_sym_LT_LT] = ACTIONS(2987), + [anon_sym_GT_GT] = ACTIONS(2985), + [anon_sym_GT_GT_GT] = ACTIONS(2987), + [anon_sym_AMP] = ACTIONS(2985), + [anon_sym_PIPE] = ACTIONS(2985), + [anon_sym_CARET] = ACTIONS(2987), + [anon_sym_AMP_AMP] = ACTIONS(2987), + [anon_sym_PIPE_PIPE] = ACTIONS(2987), + [anon_sym_EQ_EQ] = ACTIONS(2987), + [anon_sym_BANG_EQ] = ACTIONS(2987), + [anon_sym_LT] = ACTIONS(2985), + [anon_sym_LT_EQ] = ACTIONS(2987), + [anon_sym_GT] = ACTIONS(2985), + [anon_sym_GT_EQ] = ACTIONS(2987), + [anon_sym_EQ_GT] = ACTIONS(2987), + [anon_sym_QMARK_QMARK] = ACTIONS(2987), + [anon_sym_EQ] = ACTIONS(2985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2987), + [anon_sym_null] = ACTIONS(2985), + [anon_sym_macro] = ACTIONS(2985), + [anon_sym_abstract] = ACTIONS(2985), + [anon_sym_static] = ACTIONS(2985), + [anon_sym_public] = ACTIONS(2985), + [anon_sym_private] = ACTIONS(2985), + [anon_sym_extern] = ACTIONS(2985), + [anon_sym_inline] = ACTIONS(2985), + [anon_sym_overload] = ACTIONS(2985), + [anon_sym_override] = ACTIONS(2985), + [anon_sym_final] = ACTIONS(2985), + [anon_sym_class] = ACTIONS(2985), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2985), + [anon_sym_typedef] = ACTIONS(2985), + [anon_sym_function] = ACTIONS(2985), + [anon_sym_var] = ACTIONS(2985), + [aux_sym_integer_token1] = ACTIONS(2985), + [aux_sym_integer_token2] = ACTIONS(2987), + [aux_sym_float_token1] = ACTIONS(2985), + [aux_sym_float_token2] = ACTIONS(2987), + [anon_sym_true] = ACTIONS(2985), + [anon_sym_false] = ACTIONS(2985), + [aux_sym_string_token1] = ACTIONS(2987), + [aux_sym_string_token3] = ACTIONS(2987), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [666] = { - [ts_builtin_sym_end] = ACTIONS(1806), - [sym_identifier] = ACTIONS(1804), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_package] = ACTIONS(1804), - [anon_sym_import] = ACTIONS(1804), - [anon_sym_using] = ACTIONS(1804), - [anon_sym_throw] = ACTIONS(1804), - [anon_sym_LPAREN] = ACTIONS(1806), - [anon_sym_switch] = ACTIONS(1804), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_cast] = ACTIONS(1804), - [anon_sym_DOLLARtype] = ACTIONS(1806), - [anon_sym_return] = ACTIONS(1804), - [anon_sym_untyped] = ACTIONS(1804), - [anon_sym_break] = ACTIONS(1804), - [anon_sym_continue] = ACTIONS(1804), - [anon_sym_LBRACK] = ACTIONS(1806), - [anon_sym_this] = ACTIONS(1804), - [anon_sym_AT] = ACTIONS(1804), - [anon_sym_AT_COLON] = ACTIONS(1806), - [anon_sym_if] = ACTIONS(1804), - [anon_sym_new] = ACTIONS(1804), - [anon_sym_TILDE] = ACTIONS(1806), - [anon_sym_BANG] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_PLUS_PLUS] = ACTIONS(1806), - [anon_sym_DASH_DASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1806), - [anon_sym_STAR] = ACTIONS(1806), - [anon_sym_SLASH] = ACTIONS(1804), - [anon_sym_PLUS] = ACTIONS(1804), - [anon_sym_LT_LT] = ACTIONS(1806), - [anon_sym_GT_GT] = ACTIONS(1804), - [anon_sym_GT_GT_GT] = ACTIONS(1806), - [anon_sym_AMP] = ACTIONS(1804), - [anon_sym_PIPE] = ACTIONS(1804), - [anon_sym_CARET] = ACTIONS(1806), - [anon_sym_AMP_AMP] = ACTIONS(1806), - [anon_sym_PIPE_PIPE] = ACTIONS(1806), - [anon_sym_EQ_EQ] = ACTIONS(1806), - [anon_sym_BANG_EQ] = ACTIONS(1806), - [anon_sym_LT] = ACTIONS(1804), - [anon_sym_LT_EQ] = ACTIONS(1806), - [anon_sym_GT] = ACTIONS(1804), - [anon_sym_GT_EQ] = ACTIONS(1806), - [anon_sym_EQ_GT] = ACTIONS(1806), - [anon_sym_QMARK_QMARK] = ACTIONS(1806), - [anon_sym_EQ] = ACTIONS(1804), - [sym__rangeOperator] = ACTIONS(1806), - [anon_sym_null] = ACTIONS(1804), - [anon_sym_macro] = ACTIONS(1804), - [anon_sym_abstract] = ACTIONS(1804), - [anon_sym_static] = ACTIONS(1804), - [anon_sym_public] = ACTIONS(1804), - [anon_sym_private] = ACTIONS(1804), - [anon_sym_extern] = ACTIONS(1804), - [anon_sym_inline] = ACTIONS(1804), - [anon_sym_overload] = ACTIONS(1804), - [anon_sym_override] = ACTIONS(1804), - [anon_sym_final] = ACTIONS(1804), - [anon_sym_class] = ACTIONS(1804), - [anon_sym_interface] = ACTIONS(1804), - [anon_sym_typedef] = ACTIONS(1804), - [anon_sym_function] = ACTIONS(1804), - [anon_sym_var] = ACTIONS(1804), - [aux_sym_integer_token1] = ACTIONS(1804), - [aux_sym_integer_token2] = ACTIONS(1806), - [aux_sym_float_token1] = ACTIONS(1804), - [aux_sym_float_token2] = ACTIONS(1806), - [anon_sym_true] = ACTIONS(1804), - [anon_sym_false] = ACTIONS(1804), - [aux_sym_string_token1] = ACTIONS(1806), - [aux_sym_string_token3] = ACTIONS(1806), + [ts_builtin_sym_end] = ACTIONS(2991), + [sym_identifier] = ACTIONS(2989), + [anon_sym_POUND] = ACTIONS(2991), + [anon_sym_package] = ACTIONS(2989), + [anon_sym_import] = ACTIONS(2989), + [anon_sym_STAR] = ACTIONS(2991), + [anon_sym_using] = ACTIONS(2989), + [anon_sym_throw] = ACTIONS(2989), + [anon_sym_LPAREN] = ACTIONS(2991), + [anon_sym_switch] = ACTIONS(2989), + [anon_sym_LBRACE] = ACTIONS(2991), + [anon_sym_cast] = ACTIONS(2989), + [anon_sym_DOLLARtype] = ACTIONS(2991), + [anon_sym_for] = ACTIONS(2989), + [anon_sym_return] = ACTIONS(2989), + [anon_sym_untyped] = ACTIONS(2989), + [anon_sym_break] = ACTIONS(2989), + [anon_sym_continue] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(2991), + [anon_sym_this] = ACTIONS(2989), + [anon_sym_AT] = ACTIONS(2989), + [anon_sym_AT_COLON] = ACTIONS(2991), + [anon_sym_try] = ACTIONS(2989), + [anon_sym_catch] = ACTIONS(2989), + [anon_sym_else] = ACTIONS(2989), + [anon_sym_if] = ACTIONS(2989), + [anon_sym_while] = ACTIONS(2989), + [anon_sym_do] = ACTIONS(2989), + [anon_sym_new] = ACTIONS(2989), + [anon_sym_TILDE] = ACTIONS(2991), + [anon_sym_BANG] = ACTIONS(2989), + [anon_sym_DASH] = ACTIONS(2989), + [anon_sym_PLUS_PLUS] = ACTIONS(2991), + [anon_sym_DASH_DASH] = ACTIONS(2991), + [anon_sym_PERCENT] = ACTIONS(2991), + [anon_sym_SLASH] = ACTIONS(2989), + [anon_sym_PLUS] = ACTIONS(2989), + [anon_sym_LT_LT] = ACTIONS(2991), + [anon_sym_GT_GT] = ACTIONS(2989), + [anon_sym_GT_GT_GT] = ACTIONS(2991), + [anon_sym_AMP] = ACTIONS(2989), + [anon_sym_PIPE] = ACTIONS(2989), + [anon_sym_CARET] = ACTIONS(2991), + [anon_sym_AMP_AMP] = ACTIONS(2991), + [anon_sym_PIPE_PIPE] = ACTIONS(2991), + [anon_sym_EQ_EQ] = ACTIONS(2991), + [anon_sym_BANG_EQ] = ACTIONS(2991), + [anon_sym_LT] = ACTIONS(2989), + [anon_sym_LT_EQ] = ACTIONS(2991), + [anon_sym_GT] = ACTIONS(2989), + [anon_sym_GT_EQ] = ACTIONS(2991), + [anon_sym_EQ_GT] = ACTIONS(2991), + [anon_sym_QMARK_QMARK] = ACTIONS(2991), + [anon_sym_EQ] = ACTIONS(2989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2991), + [anon_sym_null] = ACTIONS(2989), + [anon_sym_macro] = ACTIONS(2989), + [anon_sym_abstract] = ACTIONS(2989), + [anon_sym_static] = ACTIONS(2989), + [anon_sym_public] = ACTIONS(2989), + [anon_sym_private] = ACTIONS(2989), + [anon_sym_extern] = ACTIONS(2989), + [anon_sym_inline] = ACTIONS(2989), + [anon_sym_overload] = ACTIONS(2989), + [anon_sym_override] = ACTIONS(2989), + [anon_sym_final] = ACTIONS(2989), + [anon_sym_class] = ACTIONS(2989), + [anon_sym_interface] = ACTIONS(2989), + [anon_sym_enum] = ACTIONS(2989), + [anon_sym_typedef] = ACTIONS(2989), + [anon_sym_function] = ACTIONS(2989), + [anon_sym_var] = ACTIONS(2989), + [aux_sym_integer_token1] = ACTIONS(2989), + [aux_sym_integer_token2] = ACTIONS(2991), + [aux_sym_float_token1] = ACTIONS(2989), + [aux_sym_float_token2] = ACTIONS(2991), + [anon_sym_true] = ACTIONS(2989), + [anon_sym_false] = ACTIONS(2989), + [aux_sym_string_token1] = ACTIONS(2991), + [aux_sym_string_token3] = ACTIONS(2991), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [667] = { - [ts_builtin_sym_end] = ACTIONS(1810), - [sym_identifier] = ACTIONS(1808), - [anon_sym_POUND] = ACTIONS(1810), - [anon_sym_package] = ACTIONS(1808), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_using] = ACTIONS(1808), - [anon_sym_throw] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1810), - [anon_sym_switch] = ACTIONS(1808), - [anon_sym_LBRACE] = ACTIONS(1810), - [anon_sym_cast] = ACTIONS(1808), - [anon_sym_DOLLARtype] = ACTIONS(1810), - [anon_sym_return] = ACTIONS(1808), - [anon_sym_untyped] = ACTIONS(1808), - [anon_sym_break] = ACTIONS(1808), - [anon_sym_continue] = ACTIONS(1808), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_this] = ACTIONS(1808), - [anon_sym_AT] = ACTIONS(1808), - [anon_sym_AT_COLON] = ACTIONS(1810), - [anon_sym_if] = ACTIONS(1808), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1810), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PLUS_PLUS] = ACTIONS(1810), - [anon_sym_DASH_DASH] = ACTIONS(1810), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_STAR] = ACTIONS(1810), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_LT_LT] = ACTIONS(1810), - [anon_sym_GT_GT] = ACTIONS(1808), - [anon_sym_GT_GT_GT] = ACTIONS(1810), - [anon_sym_AMP] = ACTIONS(1808), - [anon_sym_PIPE] = ACTIONS(1808), - [anon_sym_CARET] = ACTIONS(1810), - [anon_sym_AMP_AMP] = ACTIONS(1810), - [anon_sym_PIPE_PIPE] = ACTIONS(1810), - [anon_sym_EQ_EQ] = ACTIONS(1810), - [anon_sym_BANG_EQ] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1808), - [anon_sym_LT_EQ] = ACTIONS(1810), - [anon_sym_GT] = ACTIONS(1808), - [anon_sym_GT_EQ] = ACTIONS(1810), - [anon_sym_EQ_GT] = ACTIONS(1810), - [anon_sym_QMARK_QMARK] = ACTIONS(1810), - [anon_sym_EQ] = ACTIONS(1808), - [sym__rangeOperator] = ACTIONS(1810), - [anon_sym_null] = ACTIONS(1808), - [anon_sym_macro] = ACTIONS(1808), - [anon_sym_abstract] = ACTIONS(1808), - [anon_sym_static] = ACTIONS(1808), - [anon_sym_public] = ACTIONS(1808), - [anon_sym_private] = ACTIONS(1808), - [anon_sym_extern] = ACTIONS(1808), - [anon_sym_inline] = ACTIONS(1808), - [anon_sym_overload] = ACTIONS(1808), - [anon_sym_override] = ACTIONS(1808), - [anon_sym_final] = ACTIONS(1808), - [anon_sym_class] = ACTIONS(1808), - [anon_sym_interface] = ACTIONS(1808), - [anon_sym_typedef] = ACTIONS(1808), - [anon_sym_function] = ACTIONS(1808), - [anon_sym_var] = ACTIONS(1808), - [aux_sym_integer_token1] = ACTIONS(1808), - [aux_sym_integer_token2] = ACTIONS(1810), - [aux_sym_float_token1] = ACTIONS(1808), - [aux_sym_float_token2] = ACTIONS(1810), - [anon_sym_true] = ACTIONS(1808), - [anon_sym_false] = ACTIONS(1808), - [aux_sym_string_token1] = ACTIONS(1810), - [aux_sym_string_token3] = ACTIONS(1810), + [ts_builtin_sym_end] = ACTIONS(3245), + [sym_identifier] = ACTIONS(3243), + [anon_sym_POUND] = ACTIONS(3245), + [anon_sym_package] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_STAR] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_cast] = ACTIONS(3243), + [anon_sym_DOLLARtype] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_untyped] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_this] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_AT_COLON] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_catch] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), + [anon_sym_PERCENT] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_LT_LT] = ACTIONS(3245), + [anon_sym_GT_GT] = ACTIONS(3243), + [anon_sym_GT_GT_GT] = ACTIONS(3245), + [anon_sym_AMP] = ACTIONS(3243), + [anon_sym_PIPE] = ACTIONS(3243), + [anon_sym_CARET] = ACTIONS(3245), + [anon_sym_AMP_AMP] = ACTIONS(3245), + [anon_sym_PIPE_PIPE] = ACTIONS(3245), + [anon_sym_EQ_EQ] = ACTIONS(3245), + [anon_sym_BANG_EQ] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_LT_EQ] = ACTIONS(3245), + [anon_sym_GT] = ACTIONS(3243), + [anon_sym_GT_EQ] = ACTIONS(3245), + [anon_sym_EQ_GT] = ACTIONS(3245), + [anon_sym_QMARK_QMARK] = ACTIONS(3245), + [anon_sym_EQ] = ACTIONS(3243), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3245), + [anon_sym_null] = ACTIONS(3243), + [anon_sym_macro] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_extern] = ACTIONS(3243), + [anon_sym_inline] = ACTIONS(3243), + [anon_sym_overload] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_final] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), + [anon_sym_typedef] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [aux_sym_integer_token1] = ACTIONS(3243), + [aux_sym_integer_token2] = ACTIONS(3245), + [aux_sym_float_token1] = ACTIONS(3243), + [aux_sym_float_token2] = ACTIONS(3245), + [anon_sym_true] = ACTIONS(3243), + [anon_sym_false] = ACTIONS(3243), + [aux_sym_string_token1] = ACTIONS(3245), + [aux_sym_string_token3] = ACTIONS(3245), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [668] = { - [ts_builtin_sym_end] = ACTIONS(2250), - [sym_identifier] = ACTIONS(2248), - [anon_sym_POUND] = ACTIONS(2250), - [anon_sym_package] = ACTIONS(2248), - [anon_sym_import] = ACTIONS(2248), - [anon_sym_using] = ACTIONS(2248), - [anon_sym_throw] = ACTIONS(2248), - [anon_sym_LPAREN] = ACTIONS(2250), - [anon_sym_switch] = ACTIONS(2248), - [anon_sym_LBRACE] = ACTIONS(2250), - [anon_sym_cast] = ACTIONS(2248), - [anon_sym_DOLLARtype] = ACTIONS(2250), - [anon_sym_return] = ACTIONS(2248), - [anon_sym_untyped] = ACTIONS(2248), - [anon_sym_break] = ACTIONS(2248), - [anon_sym_continue] = ACTIONS(2248), - [anon_sym_LBRACK] = ACTIONS(2250), - [anon_sym_this] = ACTIONS(2248), - [anon_sym_AT] = ACTIONS(2248), - [anon_sym_AT_COLON] = ACTIONS(2250), - [anon_sym_if] = ACTIONS(2248), - [anon_sym_new] = ACTIONS(2248), - [anon_sym_TILDE] = ACTIONS(2250), - [anon_sym_BANG] = ACTIONS(2248), - [anon_sym_DASH] = ACTIONS(2248), - [anon_sym_PLUS_PLUS] = ACTIONS(2250), - [anon_sym_DASH_DASH] = ACTIONS(2250), - [anon_sym_PERCENT] = ACTIONS(2250), - [anon_sym_STAR] = ACTIONS(2250), - [anon_sym_SLASH] = ACTIONS(2248), - [anon_sym_PLUS] = ACTIONS(2248), - [anon_sym_LT_LT] = ACTIONS(2250), - [anon_sym_GT_GT] = ACTIONS(2248), - [anon_sym_GT_GT_GT] = ACTIONS(2250), - [anon_sym_AMP] = ACTIONS(2248), - [anon_sym_PIPE] = ACTIONS(2248), - [anon_sym_CARET] = ACTIONS(2250), - [anon_sym_AMP_AMP] = ACTIONS(2250), - [anon_sym_PIPE_PIPE] = ACTIONS(2250), - [anon_sym_EQ_EQ] = ACTIONS(2250), - [anon_sym_BANG_EQ] = ACTIONS(2250), - [anon_sym_LT] = ACTIONS(2248), - [anon_sym_LT_EQ] = ACTIONS(2250), - [anon_sym_GT] = ACTIONS(2248), - [anon_sym_GT_EQ] = ACTIONS(2250), - [anon_sym_EQ_GT] = ACTIONS(2250), - [anon_sym_QMARK_QMARK] = ACTIONS(2250), - [anon_sym_EQ] = ACTIONS(2248), - [sym__rangeOperator] = ACTIONS(2250), - [anon_sym_null] = ACTIONS(2248), - [anon_sym_macro] = ACTIONS(2248), - [anon_sym_abstract] = ACTIONS(2248), - [anon_sym_static] = ACTIONS(2248), - [anon_sym_public] = ACTIONS(2248), - [anon_sym_private] = ACTIONS(2248), - [anon_sym_extern] = ACTIONS(2248), - [anon_sym_inline] = ACTIONS(2248), - [anon_sym_overload] = ACTIONS(2248), - [anon_sym_override] = ACTIONS(2248), - [anon_sym_final] = ACTIONS(2248), - [anon_sym_class] = ACTIONS(2248), - [anon_sym_interface] = ACTIONS(2248), - [anon_sym_typedef] = ACTIONS(2248), - [anon_sym_function] = ACTIONS(2248), - [anon_sym_var] = ACTIONS(2248), - [aux_sym_integer_token1] = ACTIONS(2248), - [aux_sym_integer_token2] = ACTIONS(2250), - [aux_sym_float_token1] = ACTIONS(2248), - [aux_sym_float_token2] = ACTIONS(2250), - [anon_sym_true] = ACTIONS(2248), - [anon_sym_false] = ACTIONS(2248), - [aux_sym_string_token1] = ACTIONS(2250), - [aux_sym_string_token3] = ACTIONS(2250), + [ts_builtin_sym_end] = ACTIONS(2995), + [sym_identifier] = ACTIONS(2993), + [anon_sym_POUND] = ACTIONS(2995), + [anon_sym_package] = ACTIONS(2993), + [anon_sym_import] = ACTIONS(2993), + [anon_sym_STAR] = ACTIONS(2995), + [anon_sym_using] = ACTIONS(2993), + [anon_sym_throw] = ACTIONS(2993), + [anon_sym_LPAREN] = ACTIONS(2995), + [anon_sym_switch] = ACTIONS(2993), + [anon_sym_LBRACE] = ACTIONS(2995), + [anon_sym_cast] = ACTIONS(2993), + [anon_sym_DOLLARtype] = ACTIONS(2995), + [anon_sym_for] = ACTIONS(2993), + [anon_sym_return] = ACTIONS(2993), + [anon_sym_untyped] = ACTIONS(2993), + [anon_sym_break] = ACTIONS(2993), + [anon_sym_continue] = ACTIONS(2993), + [anon_sym_LBRACK] = ACTIONS(2995), + [anon_sym_this] = ACTIONS(2993), + [anon_sym_AT] = ACTIONS(2993), + [anon_sym_AT_COLON] = ACTIONS(2995), + [anon_sym_try] = ACTIONS(2993), + [anon_sym_catch] = ACTIONS(2993), + [anon_sym_else] = ACTIONS(2993), + [anon_sym_if] = ACTIONS(2993), + [anon_sym_while] = ACTIONS(2993), + [anon_sym_do] = ACTIONS(2993), + [anon_sym_new] = ACTIONS(2993), + [anon_sym_TILDE] = ACTIONS(2995), + [anon_sym_BANG] = ACTIONS(2993), + [anon_sym_DASH] = ACTIONS(2993), + [anon_sym_PLUS_PLUS] = ACTIONS(2995), + [anon_sym_DASH_DASH] = ACTIONS(2995), + [anon_sym_PERCENT] = ACTIONS(2995), + [anon_sym_SLASH] = ACTIONS(2993), + [anon_sym_PLUS] = ACTIONS(2993), + [anon_sym_LT_LT] = ACTIONS(2995), + [anon_sym_GT_GT] = ACTIONS(2993), + [anon_sym_GT_GT_GT] = ACTIONS(2995), + [anon_sym_AMP] = ACTIONS(2993), + [anon_sym_PIPE] = ACTIONS(2993), + [anon_sym_CARET] = ACTIONS(2995), + [anon_sym_AMP_AMP] = ACTIONS(2995), + [anon_sym_PIPE_PIPE] = ACTIONS(2995), + [anon_sym_EQ_EQ] = ACTIONS(2995), + [anon_sym_BANG_EQ] = ACTIONS(2995), + [anon_sym_LT] = ACTIONS(2993), + [anon_sym_LT_EQ] = ACTIONS(2995), + [anon_sym_GT] = ACTIONS(2993), + [anon_sym_GT_EQ] = ACTIONS(2995), + [anon_sym_EQ_GT] = ACTIONS(2995), + [anon_sym_QMARK_QMARK] = ACTIONS(2995), + [anon_sym_EQ] = ACTIONS(2993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2995), + [anon_sym_null] = ACTIONS(2993), + [anon_sym_macro] = ACTIONS(2993), + [anon_sym_abstract] = ACTIONS(2993), + [anon_sym_static] = ACTIONS(2993), + [anon_sym_public] = ACTIONS(2993), + [anon_sym_private] = ACTIONS(2993), + [anon_sym_extern] = ACTIONS(2993), + [anon_sym_inline] = ACTIONS(2993), + [anon_sym_overload] = ACTIONS(2993), + [anon_sym_override] = ACTIONS(2993), + [anon_sym_final] = ACTIONS(2993), + [anon_sym_class] = ACTIONS(2993), + [anon_sym_interface] = ACTIONS(2993), + [anon_sym_enum] = ACTIONS(2993), + [anon_sym_typedef] = ACTIONS(2993), + [anon_sym_function] = ACTIONS(2993), + [anon_sym_var] = ACTIONS(2993), + [aux_sym_integer_token1] = ACTIONS(2993), + [aux_sym_integer_token2] = ACTIONS(2995), + [aux_sym_float_token1] = ACTIONS(2993), + [aux_sym_float_token2] = ACTIONS(2995), + [anon_sym_true] = ACTIONS(2993), + [anon_sym_false] = ACTIONS(2993), + [aux_sym_string_token1] = ACTIONS(2995), + [aux_sym_string_token3] = ACTIONS(2995), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [669] = { - [ts_builtin_sym_end] = ACTIONS(1814), - [sym_identifier] = ACTIONS(1812), - [anon_sym_POUND] = ACTIONS(1814), - [anon_sym_package] = ACTIONS(1812), - [anon_sym_import] = ACTIONS(1812), - [anon_sym_using] = ACTIONS(1812), - [anon_sym_throw] = ACTIONS(1812), - [anon_sym_LPAREN] = ACTIONS(1814), - [anon_sym_switch] = ACTIONS(1812), - [anon_sym_LBRACE] = ACTIONS(1814), - [anon_sym_cast] = ACTIONS(1812), - [anon_sym_DOLLARtype] = ACTIONS(1814), - [anon_sym_return] = ACTIONS(1812), - [anon_sym_untyped] = ACTIONS(1812), - [anon_sym_break] = ACTIONS(1812), - [anon_sym_continue] = ACTIONS(1812), - [anon_sym_LBRACK] = ACTIONS(1814), - [anon_sym_this] = ACTIONS(1812), - [anon_sym_AT] = ACTIONS(1812), - [anon_sym_AT_COLON] = ACTIONS(1814), - [anon_sym_if] = ACTIONS(1812), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_TILDE] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1812), - [anon_sym_DASH] = ACTIONS(1812), - [anon_sym_PLUS_PLUS] = ACTIONS(1814), - [anon_sym_DASH_DASH] = ACTIONS(1814), - [anon_sym_PERCENT] = ACTIONS(1814), - [anon_sym_STAR] = ACTIONS(1814), - [anon_sym_SLASH] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1812), - [anon_sym_LT_LT] = ACTIONS(1814), - [anon_sym_GT_GT] = ACTIONS(1812), - [anon_sym_GT_GT_GT] = ACTIONS(1814), - [anon_sym_AMP] = ACTIONS(1812), - [anon_sym_PIPE] = ACTIONS(1812), - [anon_sym_CARET] = ACTIONS(1814), - [anon_sym_AMP_AMP] = ACTIONS(1814), - [anon_sym_PIPE_PIPE] = ACTIONS(1814), - [anon_sym_EQ_EQ] = ACTIONS(1814), - [anon_sym_BANG_EQ] = ACTIONS(1814), - [anon_sym_LT] = ACTIONS(1812), - [anon_sym_LT_EQ] = ACTIONS(1814), - [anon_sym_GT] = ACTIONS(1812), - [anon_sym_GT_EQ] = ACTIONS(1814), - [anon_sym_EQ_GT] = ACTIONS(1814), - [anon_sym_QMARK_QMARK] = ACTIONS(1814), - [anon_sym_EQ] = ACTIONS(1812), - [sym__rangeOperator] = ACTIONS(1814), - [anon_sym_null] = ACTIONS(1812), - [anon_sym_macro] = ACTIONS(1812), - [anon_sym_abstract] = ACTIONS(1812), - [anon_sym_static] = ACTIONS(1812), - [anon_sym_public] = ACTIONS(1812), - [anon_sym_private] = ACTIONS(1812), - [anon_sym_extern] = ACTIONS(1812), - [anon_sym_inline] = ACTIONS(1812), - [anon_sym_overload] = ACTIONS(1812), - [anon_sym_override] = ACTIONS(1812), - [anon_sym_final] = ACTIONS(1812), - [anon_sym_class] = ACTIONS(1812), - [anon_sym_interface] = ACTIONS(1812), - [anon_sym_typedef] = ACTIONS(1812), - [anon_sym_function] = ACTIONS(1812), - [anon_sym_var] = ACTIONS(1812), - [aux_sym_integer_token1] = ACTIONS(1812), - [aux_sym_integer_token2] = ACTIONS(1814), - [aux_sym_float_token1] = ACTIONS(1812), - [aux_sym_float_token2] = ACTIONS(1814), - [anon_sym_true] = ACTIONS(1812), - [anon_sym_false] = ACTIONS(1812), - [aux_sym_string_token1] = ACTIONS(1814), - [aux_sym_string_token3] = ACTIONS(1814), + [ts_builtin_sym_end] = ACTIONS(2999), + [sym_identifier] = ACTIONS(2997), + [anon_sym_POUND] = ACTIONS(2999), + [anon_sym_package] = ACTIONS(2997), + [anon_sym_import] = ACTIONS(2997), + [anon_sym_STAR] = ACTIONS(2999), + [anon_sym_using] = ACTIONS(2997), + [anon_sym_throw] = ACTIONS(2997), + [anon_sym_LPAREN] = ACTIONS(2999), + [anon_sym_switch] = ACTIONS(2997), + [anon_sym_LBRACE] = ACTIONS(2999), + [anon_sym_cast] = ACTIONS(2997), + [anon_sym_DOLLARtype] = ACTIONS(2999), + [anon_sym_for] = ACTIONS(2997), + [anon_sym_return] = ACTIONS(2997), + [anon_sym_untyped] = ACTIONS(2997), + [anon_sym_break] = ACTIONS(2997), + [anon_sym_continue] = ACTIONS(2997), + [anon_sym_LBRACK] = ACTIONS(2999), + [anon_sym_this] = ACTIONS(2997), + [anon_sym_AT] = ACTIONS(2997), + [anon_sym_AT_COLON] = ACTIONS(2999), + [anon_sym_try] = ACTIONS(2997), + [anon_sym_catch] = ACTIONS(2997), + [anon_sym_else] = ACTIONS(2997), + [anon_sym_if] = ACTIONS(2997), + [anon_sym_while] = ACTIONS(2997), + [anon_sym_do] = ACTIONS(2997), + [anon_sym_new] = ACTIONS(2997), + [anon_sym_TILDE] = ACTIONS(2999), + [anon_sym_BANG] = ACTIONS(2997), + [anon_sym_DASH] = ACTIONS(2997), + [anon_sym_PLUS_PLUS] = ACTIONS(2999), + [anon_sym_DASH_DASH] = ACTIONS(2999), + [anon_sym_PERCENT] = ACTIONS(2999), + [anon_sym_SLASH] = ACTIONS(2997), + [anon_sym_PLUS] = ACTIONS(2997), + [anon_sym_LT_LT] = ACTIONS(2999), + [anon_sym_GT_GT] = ACTIONS(2997), + [anon_sym_GT_GT_GT] = ACTIONS(2999), + [anon_sym_AMP] = ACTIONS(2997), + [anon_sym_PIPE] = ACTIONS(2997), + [anon_sym_CARET] = ACTIONS(2999), + [anon_sym_AMP_AMP] = ACTIONS(2999), + [anon_sym_PIPE_PIPE] = ACTIONS(2999), + [anon_sym_EQ_EQ] = ACTIONS(2999), + [anon_sym_BANG_EQ] = ACTIONS(2999), + [anon_sym_LT] = ACTIONS(2997), + [anon_sym_LT_EQ] = ACTIONS(2999), + [anon_sym_GT] = ACTIONS(2997), + [anon_sym_GT_EQ] = ACTIONS(2999), + [anon_sym_EQ_GT] = ACTIONS(2999), + [anon_sym_QMARK_QMARK] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(2997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2999), + [anon_sym_null] = ACTIONS(2997), + [anon_sym_macro] = ACTIONS(2997), + [anon_sym_abstract] = ACTIONS(2997), + [anon_sym_static] = ACTIONS(2997), + [anon_sym_public] = ACTIONS(2997), + [anon_sym_private] = ACTIONS(2997), + [anon_sym_extern] = ACTIONS(2997), + [anon_sym_inline] = ACTIONS(2997), + [anon_sym_overload] = ACTIONS(2997), + [anon_sym_override] = ACTIONS(2997), + [anon_sym_final] = ACTIONS(2997), + [anon_sym_class] = ACTIONS(2997), + [anon_sym_interface] = ACTIONS(2997), + [anon_sym_enum] = ACTIONS(2997), + [anon_sym_typedef] = ACTIONS(2997), + [anon_sym_function] = ACTIONS(2997), + [anon_sym_var] = ACTIONS(2997), + [aux_sym_integer_token1] = ACTIONS(2997), + [aux_sym_integer_token2] = ACTIONS(2999), + [aux_sym_float_token1] = ACTIONS(2997), + [aux_sym_float_token2] = ACTIONS(2999), + [anon_sym_true] = ACTIONS(2997), + [anon_sym_false] = ACTIONS(2997), + [aux_sym_string_token1] = ACTIONS(2999), + [aux_sym_string_token3] = ACTIONS(2999), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [670] = { - [ts_builtin_sym_end] = ACTIONS(2314), - [sym_identifier] = ACTIONS(2312), - [anon_sym_POUND] = ACTIONS(2314), - [anon_sym_package] = ACTIONS(2312), - [anon_sym_import] = ACTIONS(2312), - [anon_sym_using] = ACTIONS(2312), - [anon_sym_throw] = ACTIONS(2312), - [anon_sym_LPAREN] = ACTIONS(2314), - [anon_sym_switch] = ACTIONS(2312), - [anon_sym_LBRACE] = ACTIONS(2314), - [anon_sym_cast] = ACTIONS(2312), - [anon_sym_DOLLARtype] = ACTIONS(2314), - [anon_sym_return] = ACTIONS(2312), - [anon_sym_untyped] = ACTIONS(2312), - [anon_sym_break] = ACTIONS(2312), - [anon_sym_continue] = ACTIONS(2312), - [anon_sym_LBRACK] = ACTIONS(2314), - [anon_sym_this] = ACTIONS(2312), - [anon_sym_AT] = ACTIONS(2312), - [anon_sym_AT_COLON] = ACTIONS(2314), - [anon_sym_if] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2314), - [anon_sym_BANG] = ACTIONS(2312), - [anon_sym_DASH] = ACTIONS(2312), - [anon_sym_PLUS_PLUS] = ACTIONS(2314), - [anon_sym_DASH_DASH] = ACTIONS(2314), - [anon_sym_PERCENT] = ACTIONS(2314), - [anon_sym_STAR] = ACTIONS(2314), - [anon_sym_SLASH] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2312), - [anon_sym_LT_LT] = ACTIONS(2314), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2314), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2314), - [anon_sym_AMP_AMP] = ACTIONS(2314), - [anon_sym_PIPE_PIPE] = ACTIONS(2314), - [anon_sym_EQ_EQ] = ACTIONS(2314), - [anon_sym_BANG_EQ] = ACTIONS(2314), - [anon_sym_LT] = ACTIONS(2312), - [anon_sym_LT_EQ] = ACTIONS(2314), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2314), - [anon_sym_EQ_GT] = ACTIONS(2314), - [anon_sym_QMARK_QMARK] = ACTIONS(2314), - [anon_sym_EQ] = ACTIONS(2312), - [sym__rangeOperator] = ACTIONS(2314), - [anon_sym_null] = ACTIONS(2312), - [anon_sym_macro] = ACTIONS(2312), - [anon_sym_abstract] = ACTIONS(2312), - [anon_sym_static] = ACTIONS(2312), - [anon_sym_public] = ACTIONS(2312), - [anon_sym_private] = ACTIONS(2312), - [anon_sym_extern] = ACTIONS(2312), - [anon_sym_inline] = ACTIONS(2312), - [anon_sym_overload] = ACTIONS(2312), - [anon_sym_override] = ACTIONS(2312), - [anon_sym_final] = ACTIONS(2312), - [anon_sym_class] = ACTIONS(2312), - [anon_sym_interface] = ACTIONS(2312), - [anon_sym_typedef] = ACTIONS(2312), - [anon_sym_function] = ACTIONS(2312), - [anon_sym_var] = ACTIONS(2312), - [aux_sym_integer_token1] = ACTIONS(2312), - [aux_sym_integer_token2] = ACTIONS(2314), - [aux_sym_float_token1] = ACTIONS(2312), - [aux_sym_float_token2] = ACTIONS(2314), - [anon_sym_true] = ACTIONS(2312), - [anon_sym_false] = ACTIONS(2312), - [aux_sym_string_token1] = ACTIONS(2314), - [aux_sym_string_token3] = ACTIONS(2314), + [ts_builtin_sym_end] = ACTIONS(3003), + [sym_identifier] = ACTIONS(3001), + [anon_sym_POUND] = ACTIONS(3003), + [anon_sym_package] = ACTIONS(3001), + [anon_sym_import] = ACTIONS(3001), + [anon_sym_STAR] = ACTIONS(3003), + [anon_sym_using] = ACTIONS(3001), + [anon_sym_throw] = ACTIONS(3001), + [anon_sym_LPAREN] = ACTIONS(3003), + [anon_sym_switch] = ACTIONS(3001), + [anon_sym_LBRACE] = ACTIONS(3003), + [anon_sym_cast] = ACTIONS(3001), + [anon_sym_DOLLARtype] = ACTIONS(3003), + [anon_sym_for] = ACTIONS(3001), + [anon_sym_return] = ACTIONS(3001), + [anon_sym_untyped] = ACTIONS(3001), + [anon_sym_break] = ACTIONS(3001), + [anon_sym_continue] = ACTIONS(3001), + [anon_sym_LBRACK] = ACTIONS(3003), + [anon_sym_this] = ACTIONS(3001), + [anon_sym_AT] = ACTIONS(3001), + [anon_sym_AT_COLON] = ACTIONS(3003), + [anon_sym_try] = ACTIONS(3001), + [anon_sym_catch] = ACTIONS(3001), + [anon_sym_else] = ACTIONS(3001), + [anon_sym_if] = ACTIONS(3001), + [anon_sym_while] = ACTIONS(3001), + [anon_sym_do] = ACTIONS(3001), + [anon_sym_new] = ACTIONS(3001), + [anon_sym_TILDE] = ACTIONS(3003), + [anon_sym_BANG] = ACTIONS(3001), + [anon_sym_DASH] = ACTIONS(3001), + [anon_sym_PLUS_PLUS] = ACTIONS(3003), + [anon_sym_DASH_DASH] = ACTIONS(3003), + [anon_sym_PERCENT] = ACTIONS(3003), + [anon_sym_SLASH] = ACTIONS(3001), + [anon_sym_PLUS] = ACTIONS(3001), + [anon_sym_LT_LT] = ACTIONS(3003), + [anon_sym_GT_GT] = ACTIONS(3001), + [anon_sym_GT_GT_GT] = ACTIONS(3003), + [anon_sym_AMP] = ACTIONS(3001), + [anon_sym_PIPE] = ACTIONS(3001), + [anon_sym_CARET] = ACTIONS(3003), + [anon_sym_AMP_AMP] = ACTIONS(3003), + [anon_sym_PIPE_PIPE] = ACTIONS(3003), + [anon_sym_EQ_EQ] = ACTIONS(3003), + [anon_sym_BANG_EQ] = ACTIONS(3003), + [anon_sym_LT] = ACTIONS(3001), + [anon_sym_LT_EQ] = ACTIONS(3003), + [anon_sym_GT] = ACTIONS(3001), + [anon_sym_GT_EQ] = ACTIONS(3003), + [anon_sym_EQ_GT] = ACTIONS(3003), + [anon_sym_QMARK_QMARK] = ACTIONS(3003), + [anon_sym_EQ] = ACTIONS(3001), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3003), + [anon_sym_null] = ACTIONS(3001), + [anon_sym_macro] = ACTIONS(3001), + [anon_sym_abstract] = ACTIONS(3001), + [anon_sym_static] = ACTIONS(3001), + [anon_sym_public] = ACTIONS(3001), + [anon_sym_private] = ACTIONS(3001), + [anon_sym_extern] = ACTIONS(3001), + [anon_sym_inline] = ACTIONS(3001), + [anon_sym_overload] = ACTIONS(3001), + [anon_sym_override] = ACTIONS(3001), + [anon_sym_final] = ACTIONS(3001), + [anon_sym_class] = ACTIONS(3001), + [anon_sym_interface] = ACTIONS(3001), + [anon_sym_enum] = ACTIONS(3001), + [anon_sym_typedef] = ACTIONS(3001), + [anon_sym_function] = ACTIONS(3001), + [anon_sym_var] = ACTIONS(3001), + [aux_sym_integer_token1] = ACTIONS(3001), + [aux_sym_integer_token2] = ACTIONS(3003), + [aux_sym_float_token1] = ACTIONS(3001), + [aux_sym_float_token2] = ACTIONS(3003), + [anon_sym_true] = ACTIONS(3001), + [anon_sym_false] = ACTIONS(3001), + [aux_sym_string_token1] = ACTIONS(3003), + [aux_sym_string_token3] = ACTIONS(3003), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [671] = { - [ts_builtin_sym_end] = ACTIONS(1818), - [sym_identifier] = ACTIONS(1816), - [anon_sym_POUND] = ACTIONS(1818), - [anon_sym_package] = ACTIONS(1816), - [anon_sym_import] = ACTIONS(1816), - [anon_sym_using] = ACTIONS(1816), - [anon_sym_throw] = ACTIONS(1816), - [anon_sym_LPAREN] = ACTIONS(1818), - [anon_sym_switch] = ACTIONS(1816), - [anon_sym_LBRACE] = ACTIONS(1818), - [anon_sym_cast] = ACTIONS(1816), - [anon_sym_DOLLARtype] = ACTIONS(1818), - [anon_sym_return] = ACTIONS(1816), - [anon_sym_untyped] = ACTIONS(1816), - [anon_sym_break] = ACTIONS(1816), - [anon_sym_continue] = ACTIONS(1816), - [anon_sym_LBRACK] = ACTIONS(1818), - [anon_sym_this] = ACTIONS(1816), - [anon_sym_AT] = ACTIONS(1816), - [anon_sym_AT_COLON] = ACTIONS(1818), - [anon_sym_if] = ACTIONS(1816), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_TILDE] = ACTIONS(1818), - [anon_sym_BANG] = ACTIONS(1816), - [anon_sym_DASH] = ACTIONS(1816), - [anon_sym_PLUS_PLUS] = ACTIONS(1818), - [anon_sym_DASH_DASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1818), - [anon_sym_STAR] = ACTIONS(1818), - [anon_sym_SLASH] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1816), - [anon_sym_LT_LT] = ACTIONS(1818), - [anon_sym_GT_GT] = ACTIONS(1816), - [anon_sym_GT_GT_GT] = ACTIONS(1818), - [anon_sym_AMP] = ACTIONS(1816), - [anon_sym_PIPE] = ACTIONS(1816), - [anon_sym_CARET] = ACTIONS(1818), - [anon_sym_AMP_AMP] = ACTIONS(1818), - [anon_sym_PIPE_PIPE] = ACTIONS(1818), - [anon_sym_EQ_EQ] = ACTIONS(1818), - [anon_sym_BANG_EQ] = ACTIONS(1818), - [anon_sym_LT] = ACTIONS(1816), - [anon_sym_LT_EQ] = ACTIONS(1818), - [anon_sym_GT] = ACTIONS(1816), - [anon_sym_GT_EQ] = ACTIONS(1818), - [anon_sym_EQ_GT] = ACTIONS(1818), - [anon_sym_QMARK_QMARK] = ACTIONS(1818), - [anon_sym_EQ] = ACTIONS(1816), - [sym__rangeOperator] = ACTIONS(1818), - [anon_sym_null] = ACTIONS(1816), - [anon_sym_macro] = ACTIONS(1816), - [anon_sym_abstract] = ACTIONS(1816), - [anon_sym_static] = ACTIONS(1816), - [anon_sym_public] = ACTIONS(1816), - [anon_sym_private] = ACTIONS(1816), - [anon_sym_extern] = ACTIONS(1816), - [anon_sym_inline] = ACTIONS(1816), - [anon_sym_overload] = ACTIONS(1816), - [anon_sym_override] = ACTIONS(1816), - [anon_sym_final] = ACTIONS(1816), - [anon_sym_class] = ACTIONS(1816), - [anon_sym_interface] = ACTIONS(1816), - [anon_sym_typedef] = ACTIONS(1816), - [anon_sym_function] = ACTIONS(1816), - [anon_sym_var] = ACTIONS(1816), - [aux_sym_integer_token1] = ACTIONS(1816), - [aux_sym_integer_token2] = ACTIONS(1818), - [aux_sym_float_token1] = ACTIONS(1816), - [aux_sym_float_token2] = ACTIONS(1818), - [anon_sym_true] = ACTIONS(1816), - [anon_sym_false] = ACTIONS(1816), - [aux_sym_string_token1] = ACTIONS(1818), - [aux_sym_string_token3] = ACTIONS(1818), + [ts_builtin_sym_end] = ACTIONS(3007), + [sym_identifier] = ACTIONS(3005), + [anon_sym_POUND] = ACTIONS(3007), + [anon_sym_package] = ACTIONS(3005), + [anon_sym_import] = ACTIONS(3005), + [anon_sym_STAR] = ACTIONS(3007), + [anon_sym_using] = ACTIONS(3005), + [anon_sym_throw] = ACTIONS(3005), + [anon_sym_LPAREN] = ACTIONS(3007), + [anon_sym_switch] = ACTIONS(3005), + [anon_sym_LBRACE] = ACTIONS(3007), + [anon_sym_cast] = ACTIONS(3005), + [anon_sym_DOLLARtype] = ACTIONS(3007), + [anon_sym_for] = ACTIONS(3005), + [anon_sym_return] = ACTIONS(3005), + [anon_sym_untyped] = ACTIONS(3005), + [anon_sym_break] = ACTIONS(3005), + [anon_sym_continue] = ACTIONS(3005), + [anon_sym_LBRACK] = ACTIONS(3007), + [anon_sym_this] = ACTIONS(3005), + [anon_sym_AT] = ACTIONS(3005), + [anon_sym_AT_COLON] = ACTIONS(3007), + [anon_sym_try] = ACTIONS(3005), + [anon_sym_catch] = ACTIONS(3005), + [anon_sym_else] = ACTIONS(3005), + [anon_sym_if] = ACTIONS(3005), + [anon_sym_while] = ACTIONS(3005), + [anon_sym_do] = ACTIONS(3005), + [anon_sym_new] = ACTIONS(3005), + [anon_sym_TILDE] = ACTIONS(3007), + [anon_sym_BANG] = ACTIONS(3005), + [anon_sym_DASH] = ACTIONS(3005), + [anon_sym_PLUS_PLUS] = ACTIONS(3007), + [anon_sym_DASH_DASH] = ACTIONS(3007), + [anon_sym_PERCENT] = ACTIONS(3007), + [anon_sym_SLASH] = ACTIONS(3005), + [anon_sym_PLUS] = ACTIONS(3005), + [anon_sym_LT_LT] = ACTIONS(3007), + [anon_sym_GT_GT] = ACTIONS(3005), + [anon_sym_GT_GT_GT] = ACTIONS(3007), + [anon_sym_AMP] = ACTIONS(3005), + [anon_sym_PIPE] = ACTIONS(3005), + [anon_sym_CARET] = ACTIONS(3007), + [anon_sym_AMP_AMP] = ACTIONS(3007), + [anon_sym_PIPE_PIPE] = ACTIONS(3007), + [anon_sym_EQ_EQ] = ACTIONS(3007), + [anon_sym_BANG_EQ] = ACTIONS(3007), + [anon_sym_LT] = ACTIONS(3005), + [anon_sym_LT_EQ] = ACTIONS(3007), + [anon_sym_GT] = ACTIONS(3005), + [anon_sym_GT_EQ] = ACTIONS(3007), + [anon_sym_EQ_GT] = ACTIONS(3007), + [anon_sym_QMARK_QMARK] = ACTIONS(3007), + [anon_sym_EQ] = ACTIONS(3005), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3007), + [anon_sym_null] = ACTIONS(3005), + [anon_sym_macro] = ACTIONS(3005), + [anon_sym_abstract] = ACTIONS(3005), + [anon_sym_static] = ACTIONS(3005), + [anon_sym_public] = ACTIONS(3005), + [anon_sym_private] = ACTIONS(3005), + [anon_sym_extern] = ACTIONS(3005), + [anon_sym_inline] = ACTIONS(3005), + [anon_sym_overload] = ACTIONS(3005), + [anon_sym_override] = ACTIONS(3005), + [anon_sym_final] = ACTIONS(3005), + [anon_sym_class] = ACTIONS(3005), + [anon_sym_interface] = ACTIONS(3005), + [anon_sym_enum] = ACTIONS(3005), + [anon_sym_typedef] = ACTIONS(3005), + [anon_sym_function] = ACTIONS(3005), + [anon_sym_var] = ACTIONS(3005), + [aux_sym_integer_token1] = ACTIONS(3005), + [aux_sym_integer_token2] = ACTIONS(3007), + [aux_sym_float_token1] = ACTIONS(3005), + [aux_sym_float_token2] = ACTIONS(3007), + [anon_sym_true] = ACTIONS(3005), + [anon_sym_false] = ACTIONS(3005), + [aux_sym_string_token1] = ACTIONS(3007), + [aux_sym_string_token3] = ACTIONS(3007), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [672] = { - [ts_builtin_sym_end] = ACTIONS(2054), - [sym_identifier] = ACTIONS(2052), - [anon_sym_POUND] = ACTIONS(2054), - [anon_sym_package] = ACTIONS(2052), - [anon_sym_import] = ACTIONS(2052), - [anon_sym_using] = ACTIONS(2052), - [anon_sym_throw] = ACTIONS(2052), - [anon_sym_LPAREN] = ACTIONS(2054), - [anon_sym_switch] = ACTIONS(2052), - [anon_sym_LBRACE] = ACTIONS(2054), - [anon_sym_cast] = ACTIONS(2052), - [anon_sym_DOLLARtype] = ACTIONS(2054), - [anon_sym_return] = ACTIONS(2052), - [anon_sym_untyped] = ACTIONS(2052), - [anon_sym_break] = ACTIONS(2052), - [anon_sym_continue] = ACTIONS(2052), - [anon_sym_LBRACK] = ACTIONS(2054), - [anon_sym_this] = ACTIONS(2052), - [anon_sym_AT] = ACTIONS(2052), - [anon_sym_AT_COLON] = ACTIONS(2054), - [anon_sym_if] = ACTIONS(2052), - [anon_sym_new] = ACTIONS(2052), - [anon_sym_TILDE] = ACTIONS(2054), - [anon_sym_BANG] = ACTIONS(2052), - [anon_sym_DASH] = ACTIONS(2052), - [anon_sym_PLUS_PLUS] = ACTIONS(2054), - [anon_sym_DASH_DASH] = ACTIONS(2054), - [anon_sym_PERCENT] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2054), - [anon_sym_SLASH] = ACTIONS(2052), - [anon_sym_PLUS] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(2054), - [anon_sym_GT_GT] = ACTIONS(2052), - [anon_sym_GT_GT_GT] = ACTIONS(2054), - [anon_sym_AMP] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(2052), - [anon_sym_CARET] = ACTIONS(2054), - [anon_sym_AMP_AMP] = ACTIONS(2054), - [anon_sym_PIPE_PIPE] = ACTIONS(2054), - [anon_sym_EQ_EQ] = ACTIONS(2054), - [anon_sym_BANG_EQ] = ACTIONS(2054), - [anon_sym_LT] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2054), - [anon_sym_GT] = ACTIONS(2052), - [anon_sym_GT_EQ] = ACTIONS(2054), - [anon_sym_EQ_GT] = ACTIONS(2054), - [anon_sym_QMARK_QMARK] = ACTIONS(2054), - [anon_sym_EQ] = ACTIONS(2052), - [sym__rangeOperator] = ACTIONS(2054), - [anon_sym_null] = ACTIONS(2052), - [anon_sym_macro] = ACTIONS(2052), - [anon_sym_abstract] = ACTIONS(2052), - [anon_sym_static] = ACTIONS(2052), - [anon_sym_public] = ACTIONS(2052), - [anon_sym_private] = ACTIONS(2052), - [anon_sym_extern] = ACTIONS(2052), - [anon_sym_inline] = ACTIONS(2052), - [anon_sym_overload] = ACTIONS(2052), - [anon_sym_override] = ACTIONS(2052), - [anon_sym_final] = ACTIONS(2052), - [anon_sym_class] = ACTIONS(2052), - [anon_sym_interface] = ACTIONS(2052), - [anon_sym_typedef] = ACTIONS(2052), - [anon_sym_function] = ACTIONS(2052), - [anon_sym_var] = ACTIONS(2052), - [aux_sym_integer_token1] = ACTIONS(2052), - [aux_sym_integer_token2] = ACTIONS(2054), - [aux_sym_float_token1] = ACTIONS(2052), - [aux_sym_float_token2] = ACTIONS(2054), - [anon_sym_true] = ACTIONS(2052), - [anon_sym_false] = ACTIONS(2052), - [aux_sym_string_token1] = ACTIONS(2054), - [aux_sym_string_token3] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(3011), + [sym_identifier] = ACTIONS(3009), + [anon_sym_POUND] = ACTIONS(3011), + [anon_sym_package] = ACTIONS(3009), + [anon_sym_import] = ACTIONS(3009), + [anon_sym_STAR] = ACTIONS(3011), + [anon_sym_using] = ACTIONS(3009), + [anon_sym_throw] = ACTIONS(3009), + [anon_sym_LPAREN] = ACTIONS(3011), + [anon_sym_switch] = ACTIONS(3009), + [anon_sym_LBRACE] = ACTIONS(3011), + [anon_sym_cast] = ACTIONS(3009), + [anon_sym_DOLLARtype] = ACTIONS(3011), + [anon_sym_for] = ACTIONS(3009), + [anon_sym_return] = ACTIONS(3009), + [anon_sym_untyped] = ACTIONS(3009), + [anon_sym_break] = ACTIONS(3009), + [anon_sym_continue] = ACTIONS(3009), + [anon_sym_LBRACK] = ACTIONS(3011), + [anon_sym_this] = ACTIONS(3009), + [anon_sym_AT] = ACTIONS(3009), + [anon_sym_AT_COLON] = ACTIONS(3011), + [anon_sym_try] = ACTIONS(3009), + [anon_sym_catch] = ACTIONS(3009), + [anon_sym_else] = ACTIONS(3009), + [anon_sym_if] = ACTIONS(3009), + [anon_sym_while] = ACTIONS(3009), + [anon_sym_do] = ACTIONS(3009), + [anon_sym_new] = ACTIONS(3009), + [anon_sym_TILDE] = ACTIONS(3011), + [anon_sym_BANG] = ACTIONS(3009), + [anon_sym_DASH] = ACTIONS(3009), + [anon_sym_PLUS_PLUS] = ACTIONS(3011), + [anon_sym_DASH_DASH] = ACTIONS(3011), + [anon_sym_PERCENT] = ACTIONS(3011), + [anon_sym_SLASH] = ACTIONS(3009), + [anon_sym_PLUS] = ACTIONS(3009), + [anon_sym_LT_LT] = ACTIONS(3011), + [anon_sym_GT_GT] = ACTIONS(3009), + [anon_sym_GT_GT_GT] = ACTIONS(3011), + [anon_sym_AMP] = ACTIONS(3009), + [anon_sym_PIPE] = ACTIONS(3009), + [anon_sym_CARET] = ACTIONS(3011), + [anon_sym_AMP_AMP] = ACTIONS(3011), + [anon_sym_PIPE_PIPE] = ACTIONS(3011), + [anon_sym_EQ_EQ] = ACTIONS(3011), + [anon_sym_BANG_EQ] = ACTIONS(3011), + [anon_sym_LT] = ACTIONS(3009), + [anon_sym_LT_EQ] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(3009), + [anon_sym_GT_EQ] = ACTIONS(3011), + [anon_sym_EQ_GT] = ACTIONS(3011), + [anon_sym_QMARK_QMARK] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(3009), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), + [anon_sym_null] = ACTIONS(3009), + [anon_sym_macro] = ACTIONS(3009), + [anon_sym_abstract] = ACTIONS(3009), + [anon_sym_static] = ACTIONS(3009), + [anon_sym_public] = ACTIONS(3009), + [anon_sym_private] = ACTIONS(3009), + [anon_sym_extern] = ACTIONS(3009), + [anon_sym_inline] = ACTIONS(3009), + [anon_sym_overload] = ACTIONS(3009), + [anon_sym_override] = ACTIONS(3009), + [anon_sym_final] = ACTIONS(3009), + [anon_sym_class] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(3009), + [anon_sym_enum] = ACTIONS(3009), + [anon_sym_typedef] = ACTIONS(3009), + [anon_sym_function] = ACTIONS(3009), + [anon_sym_var] = ACTIONS(3009), + [aux_sym_integer_token1] = ACTIONS(3009), + [aux_sym_integer_token2] = ACTIONS(3011), + [aux_sym_float_token1] = ACTIONS(3009), + [aux_sym_float_token2] = ACTIONS(3011), + [anon_sym_true] = ACTIONS(3009), + [anon_sym_false] = ACTIONS(3009), + [aux_sym_string_token1] = ACTIONS(3011), + [aux_sym_string_token3] = ACTIONS(3011), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [673] = { - [ts_builtin_sym_end] = ACTIONS(1826), - [sym_identifier] = ACTIONS(1824), - [anon_sym_POUND] = ACTIONS(1826), - [anon_sym_package] = ACTIONS(1824), - [anon_sym_import] = ACTIONS(1824), - [anon_sym_using] = ACTIONS(1824), - [anon_sym_throw] = ACTIONS(1824), - [anon_sym_LPAREN] = ACTIONS(1826), - [anon_sym_switch] = ACTIONS(1824), - [anon_sym_LBRACE] = ACTIONS(1826), - [anon_sym_cast] = ACTIONS(1824), - [anon_sym_DOLLARtype] = ACTIONS(1826), - [anon_sym_return] = ACTIONS(1824), - [anon_sym_untyped] = ACTIONS(1824), - [anon_sym_break] = ACTIONS(1824), - [anon_sym_continue] = ACTIONS(1824), - [anon_sym_LBRACK] = ACTIONS(1826), - [anon_sym_this] = ACTIONS(1824), - [anon_sym_AT] = ACTIONS(1824), - [anon_sym_AT_COLON] = ACTIONS(1826), - [anon_sym_if] = ACTIONS(1824), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_TILDE] = ACTIONS(1826), - [anon_sym_BANG] = ACTIONS(1824), - [anon_sym_DASH] = ACTIONS(1824), - [anon_sym_PLUS_PLUS] = ACTIONS(1826), - [anon_sym_DASH_DASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1826), - [anon_sym_STAR] = ACTIONS(1826), - [anon_sym_SLASH] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1824), - [anon_sym_LT_LT] = ACTIONS(1826), - [anon_sym_GT_GT] = ACTIONS(1824), - [anon_sym_GT_GT_GT] = ACTIONS(1826), - [anon_sym_AMP] = ACTIONS(1824), - [anon_sym_PIPE] = ACTIONS(1824), - [anon_sym_CARET] = ACTIONS(1826), - [anon_sym_AMP_AMP] = ACTIONS(1826), - [anon_sym_PIPE_PIPE] = ACTIONS(1826), - [anon_sym_EQ_EQ] = ACTIONS(1826), - [anon_sym_BANG_EQ] = ACTIONS(1826), - [anon_sym_LT] = ACTIONS(1824), - [anon_sym_LT_EQ] = ACTIONS(1826), - [anon_sym_GT] = ACTIONS(1824), - [anon_sym_GT_EQ] = ACTIONS(1826), - [anon_sym_EQ_GT] = ACTIONS(1826), - [anon_sym_QMARK_QMARK] = ACTIONS(1826), - [anon_sym_EQ] = ACTIONS(1824), - [sym__rangeOperator] = ACTIONS(1826), - [anon_sym_null] = ACTIONS(1824), - [anon_sym_macro] = ACTIONS(1824), - [anon_sym_abstract] = ACTIONS(1824), - [anon_sym_static] = ACTIONS(1824), - [anon_sym_public] = ACTIONS(1824), - [anon_sym_private] = ACTIONS(1824), - [anon_sym_extern] = ACTIONS(1824), - [anon_sym_inline] = ACTIONS(1824), - [anon_sym_overload] = ACTIONS(1824), - [anon_sym_override] = ACTIONS(1824), - [anon_sym_final] = ACTIONS(1824), - [anon_sym_class] = ACTIONS(1824), - [anon_sym_interface] = ACTIONS(1824), - [anon_sym_typedef] = ACTIONS(1824), - [anon_sym_function] = ACTIONS(1824), - [anon_sym_var] = ACTIONS(1824), - [aux_sym_integer_token1] = ACTIONS(1824), - [aux_sym_integer_token2] = ACTIONS(1826), - [aux_sym_float_token1] = ACTIONS(1824), - [aux_sym_float_token2] = ACTIONS(1826), - [anon_sym_true] = ACTIONS(1824), - [anon_sym_false] = ACTIONS(1824), - [aux_sym_string_token1] = ACTIONS(1826), - [aux_sym_string_token3] = ACTIONS(1826), + [ts_builtin_sym_end] = ACTIONS(3015), + [sym_identifier] = ACTIONS(3013), + [anon_sym_POUND] = ACTIONS(3015), + [anon_sym_package] = ACTIONS(3013), + [anon_sym_import] = ACTIONS(3013), + [anon_sym_STAR] = ACTIONS(3015), + [anon_sym_using] = ACTIONS(3013), + [anon_sym_throw] = ACTIONS(3013), + [anon_sym_LPAREN] = ACTIONS(3015), + [anon_sym_switch] = ACTIONS(3013), + [anon_sym_LBRACE] = ACTIONS(3015), + [anon_sym_cast] = ACTIONS(3013), + [anon_sym_DOLLARtype] = ACTIONS(3015), + [anon_sym_for] = ACTIONS(3013), + [anon_sym_return] = ACTIONS(3013), + [anon_sym_untyped] = ACTIONS(3013), + [anon_sym_break] = ACTIONS(3013), + [anon_sym_continue] = ACTIONS(3013), + [anon_sym_LBRACK] = ACTIONS(3015), + [anon_sym_this] = ACTIONS(3013), + [anon_sym_AT] = ACTIONS(3013), + [anon_sym_AT_COLON] = ACTIONS(3015), + [anon_sym_try] = ACTIONS(3013), + [anon_sym_catch] = ACTIONS(3013), + [anon_sym_else] = ACTIONS(3013), + [anon_sym_if] = ACTIONS(3013), + [anon_sym_while] = ACTIONS(3013), + [anon_sym_do] = ACTIONS(3013), + [anon_sym_new] = ACTIONS(3013), + [anon_sym_TILDE] = ACTIONS(3015), + [anon_sym_BANG] = ACTIONS(3013), + [anon_sym_DASH] = ACTIONS(3013), + [anon_sym_PLUS_PLUS] = ACTIONS(3015), + [anon_sym_DASH_DASH] = ACTIONS(3015), + [anon_sym_PERCENT] = ACTIONS(3015), + [anon_sym_SLASH] = ACTIONS(3013), + [anon_sym_PLUS] = ACTIONS(3013), + [anon_sym_LT_LT] = ACTIONS(3015), + [anon_sym_GT_GT] = ACTIONS(3013), + [anon_sym_GT_GT_GT] = ACTIONS(3015), + [anon_sym_AMP] = ACTIONS(3013), + [anon_sym_PIPE] = ACTIONS(3013), + [anon_sym_CARET] = ACTIONS(3015), + [anon_sym_AMP_AMP] = ACTIONS(3015), + [anon_sym_PIPE_PIPE] = ACTIONS(3015), + [anon_sym_EQ_EQ] = ACTIONS(3015), + [anon_sym_BANG_EQ] = ACTIONS(3015), + [anon_sym_LT] = ACTIONS(3013), + [anon_sym_LT_EQ] = ACTIONS(3015), + [anon_sym_GT] = ACTIONS(3013), + [anon_sym_GT_EQ] = ACTIONS(3015), + [anon_sym_EQ_GT] = ACTIONS(3015), + [anon_sym_QMARK_QMARK] = ACTIONS(3015), + [anon_sym_EQ] = ACTIONS(3013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3015), + [anon_sym_null] = ACTIONS(3013), + [anon_sym_macro] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(3013), + [anon_sym_static] = ACTIONS(3013), + [anon_sym_public] = ACTIONS(3013), + [anon_sym_private] = ACTIONS(3013), + [anon_sym_extern] = ACTIONS(3013), + [anon_sym_inline] = ACTIONS(3013), + [anon_sym_overload] = ACTIONS(3013), + [anon_sym_override] = ACTIONS(3013), + [anon_sym_final] = ACTIONS(3013), + [anon_sym_class] = ACTIONS(3013), + [anon_sym_interface] = ACTIONS(3013), + [anon_sym_enum] = ACTIONS(3013), + [anon_sym_typedef] = ACTIONS(3013), + [anon_sym_function] = ACTIONS(3013), + [anon_sym_var] = ACTIONS(3013), + [aux_sym_integer_token1] = ACTIONS(3013), + [aux_sym_integer_token2] = ACTIONS(3015), + [aux_sym_float_token1] = ACTIONS(3013), + [aux_sym_float_token2] = ACTIONS(3015), + [anon_sym_true] = ACTIONS(3013), + [anon_sym_false] = ACTIONS(3013), + [aux_sym_string_token1] = ACTIONS(3015), + [aux_sym_string_token3] = ACTIONS(3015), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [674] = { - [ts_builtin_sym_end] = ACTIONS(2058), - [sym_identifier] = ACTIONS(2056), - [anon_sym_POUND] = ACTIONS(2058), - [anon_sym_package] = ACTIONS(2056), - [anon_sym_import] = ACTIONS(2056), - [anon_sym_using] = ACTIONS(2056), - [anon_sym_throw] = ACTIONS(2056), - [anon_sym_LPAREN] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2056), - [anon_sym_LBRACE] = ACTIONS(2058), - [anon_sym_cast] = ACTIONS(2056), - [anon_sym_DOLLARtype] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2056), - [anon_sym_untyped] = ACTIONS(2056), - [anon_sym_break] = ACTIONS(2056), - [anon_sym_continue] = ACTIONS(2056), - [anon_sym_LBRACK] = ACTIONS(2058), - [anon_sym_this] = ACTIONS(2056), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_AT_COLON] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2056), - [anon_sym_new] = ACTIONS(2056), - [anon_sym_TILDE] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_DASH] = ACTIONS(2056), - [anon_sym_PLUS_PLUS] = ACTIONS(2058), - [anon_sym_DASH_DASH] = ACTIONS(2058), - [anon_sym_PERCENT] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2058), - [anon_sym_SLASH] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2056), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_GT_GT_GT] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG_EQ] = ACTIONS(2058), - [anon_sym_LT] = ACTIONS(2056), - [anon_sym_LT_EQ] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2056), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_EQ_GT] = ACTIONS(2058), - [anon_sym_QMARK_QMARK] = ACTIONS(2058), - [anon_sym_EQ] = ACTIONS(2056), - [sym__rangeOperator] = ACTIONS(2058), - [anon_sym_null] = ACTIONS(2056), - [anon_sym_macro] = ACTIONS(2056), - [anon_sym_abstract] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2056), - [anon_sym_public] = ACTIONS(2056), - [anon_sym_private] = ACTIONS(2056), - [anon_sym_extern] = ACTIONS(2056), - [anon_sym_inline] = ACTIONS(2056), - [anon_sym_overload] = ACTIONS(2056), - [anon_sym_override] = ACTIONS(2056), - [anon_sym_final] = ACTIONS(2056), - [anon_sym_class] = ACTIONS(2056), - [anon_sym_interface] = ACTIONS(2056), - [anon_sym_typedef] = ACTIONS(2056), - [anon_sym_function] = ACTIONS(2056), - [anon_sym_var] = ACTIONS(2056), - [aux_sym_integer_token1] = ACTIONS(2056), - [aux_sym_integer_token2] = ACTIONS(2058), - [aux_sym_float_token1] = ACTIONS(2056), - [aux_sym_float_token2] = ACTIONS(2058), - [anon_sym_true] = ACTIONS(2056), - [anon_sym_false] = ACTIONS(2056), - [aux_sym_string_token1] = ACTIONS(2058), - [aux_sym_string_token3] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(3019), + [sym_identifier] = ACTIONS(3017), + [anon_sym_POUND] = ACTIONS(3019), + [anon_sym_package] = ACTIONS(3017), + [anon_sym_import] = ACTIONS(3017), + [anon_sym_STAR] = ACTIONS(3019), + [anon_sym_using] = ACTIONS(3017), + [anon_sym_throw] = ACTIONS(3017), + [anon_sym_LPAREN] = ACTIONS(3019), + [anon_sym_switch] = ACTIONS(3017), + [anon_sym_LBRACE] = ACTIONS(3019), + [anon_sym_cast] = ACTIONS(3017), + [anon_sym_DOLLARtype] = ACTIONS(3019), + [anon_sym_for] = ACTIONS(3017), + [anon_sym_return] = ACTIONS(3017), + [anon_sym_untyped] = ACTIONS(3017), + [anon_sym_break] = ACTIONS(3017), + [anon_sym_continue] = ACTIONS(3017), + [anon_sym_LBRACK] = ACTIONS(3019), + [anon_sym_this] = ACTIONS(3017), + [anon_sym_AT] = ACTIONS(3017), + [anon_sym_AT_COLON] = ACTIONS(3019), + [anon_sym_try] = ACTIONS(3017), + [anon_sym_catch] = ACTIONS(3017), + [anon_sym_else] = ACTIONS(3017), + [anon_sym_if] = ACTIONS(3017), + [anon_sym_while] = ACTIONS(3017), + [anon_sym_do] = ACTIONS(3017), + [anon_sym_new] = ACTIONS(3017), + [anon_sym_TILDE] = ACTIONS(3019), + [anon_sym_BANG] = ACTIONS(3017), + [anon_sym_DASH] = ACTIONS(3017), + [anon_sym_PLUS_PLUS] = ACTIONS(3019), + [anon_sym_DASH_DASH] = ACTIONS(3019), + [anon_sym_PERCENT] = ACTIONS(3019), + [anon_sym_SLASH] = ACTIONS(3017), + [anon_sym_PLUS] = ACTIONS(3017), + [anon_sym_LT_LT] = ACTIONS(3019), + [anon_sym_GT_GT] = ACTIONS(3017), + [anon_sym_GT_GT_GT] = ACTIONS(3019), + [anon_sym_AMP] = ACTIONS(3017), + [anon_sym_PIPE] = ACTIONS(3017), + [anon_sym_CARET] = ACTIONS(3019), + [anon_sym_AMP_AMP] = ACTIONS(3019), + [anon_sym_PIPE_PIPE] = ACTIONS(3019), + [anon_sym_EQ_EQ] = ACTIONS(3019), + [anon_sym_BANG_EQ] = ACTIONS(3019), + [anon_sym_LT] = ACTIONS(3017), + [anon_sym_LT_EQ] = ACTIONS(3019), + [anon_sym_GT] = ACTIONS(3017), + [anon_sym_GT_EQ] = ACTIONS(3019), + [anon_sym_EQ_GT] = ACTIONS(3019), + [anon_sym_QMARK_QMARK] = ACTIONS(3019), + [anon_sym_EQ] = ACTIONS(3017), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3019), + [anon_sym_null] = ACTIONS(3017), + [anon_sym_macro] = ACTIONS(3017), + [anon_sym_abstract] = ACTIONS(3017), + [anon_sym_static] = ACTIONS(3017), + [anon_sym_public] = ACTIONS(3017), + [anon_sym_private] = ACTIONS(3017), + [anon_sym_extern] = ACTIONS(3017), + [anon_sym_inline] = ACTIONS(3017), + [anon_sym_overload] = ACTIONS(3017), + [anon_sym_override] = ACTIONS(3017), + [anon_sym_final] = ACTIONS(3017), + [anon_sym_class] = ACTIONS(3017), + [anon_sym_interface] = ACTIONS(3017), + [anon_sym_enum] = ACTIONS(3017), + [anon_sym_typedef] = ACTIONS(3017), + [anon_sym_function] = ACTIONS(3017), + [anon_sym_var] = ACTIONS(3017), + [aux_sym_integer_token1] = ACTIONS(3017), + [aux_sym_integer_token2] = ACTIONS(3019), + [aux_sym_float_token1] = ACTIONS(3017), + [aux_sym_float_token2] = ACTIONS(3019), + [anon_sym_true] = ACTIONS(3017), + [anon_sym_false] = ACTIONS(3017), + [aux_sym_string_token1] = ACTIONS(3019), + [aux_sym_string_token3] = ACTIONS(3019), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [675] = { - [ts_builtin_sym_end] = ACTIONS(1830), - [sym_identifier] = ACTIONS(1828), - [anon_sym_POUND] = ACTIONS(1830), - [anon_sym_package] = ACTIONS(1828), - [anon_sym_import] = ACTIONS(1828), - [anon_sym_using] = ACTIONS(1828), - [anon_sym_throw] = ACTIONS(1828), - [anon_sym_LPAREN] = ACTIONS(1830), - [anon_sym_switch] = ACTIONS(1828), - [anon_sym_LBRACE] = ACTIONS(1830), - [anon_sym_cast] = ACTIONS(1828), - [anon_sym_DOLLARtype] = ACTIONS(1830), - [anon_sym_return] = ACTIONS(1828), - [anon_sym_untyped] = ACTIONS(1828), - [anon_sym_break] = ACTIONS(1828), - [anon_sym_continue] = ACTIONS(1828), - [anon_sym_LBRACK] = ACTIONS(1830), - [anon_sym_this] = ACTIONS(1828), - [anon_sym_AT] = ACTIONS(1828), - [anon_sym_AT_COLON] = ACTIONS(1830), - [anon_sym_if] = ACTIONS(1828), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_TILDE] = ACTIONS(1830), - [anon_sym_BANG] = ACTIONS(1828), - [anon_sym_DASH] = ACTIONS(1828), - [anon_sym_PLUS_PLUS] = ACTIONS(1830), - [anon_sym_DASH_DASH] = ACTIONS(1830), - [anon_sym_PERCENT] = ACTIONS(1830), - [anon_sym_STAR] = ACTIONS(1830), - [anon_sym_SLASH] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1828), - [anon_sym_LT_LT] = ACTIONS(1830), - [anon_sym_GT_GT] = ACTIONS(1828), - [anon_sym_GT_GT_GT] = ACTIONS(1830), - [anon_sym_AMP] = ACTIONS(1828), - [anon_sym_PIPE] = ACTIONS(1828), - [anon_sym_CARET] = ACTIONS(1830), - [anon_sym_AMP_AMP] = ACTIONS(1830), - [anon_sym_PIPE_PIPE] = ACTIONS(1830), - [anon_sym_EQ_EQ] = ACTIONS(1830), - [anon_sym_BANG_EQ] = ACTIONS(1830), - [anon_sym_LT] = ACTIONS(1828), - [anon_sym_LT_EQ] = ACTIONS(1830), - [anon_sym_GT] = ACTIONS(1828), - [anon_sym_GT_EQ] = ACTIONS(1830), - [anon_sym_EQ_GT] = ACTIONS(1830), - [anon_sym_QMARK_QMARK] = ACTIONS(1830), - [anon_sym_EQ] = ACTIONS(1828), - [sym__rangeOperator] = ACTIONS(1830), - [anon_sym_null] = ACTIONS(1828), - [anon_sym_macro] = ACTIONS(1828), - [anon_sym_abstract] = ACTIONS(1828), - [anon_sym_static] = ACTIONS(1828), - [anon_sym_public] = ACTIONS(1828), - [anon_sym_private] = ACTIONS(1828), - [anon_sym_extern] = ACTIONS(1828), - [anon_sym_inline] = ACTIONS(1828), - [anon_sym_overload] = ACTIONS(1828), - [anon_sym_override] = ACTIONS(1828), - [anon_sym_final] = ACTIONS(1828), - [anon_sym_class] = ACTIONS(1828), - [anon_sym_interface] = ACTIONS(1828), - [anon_sym_typedef] = ACTIONS(1828), - [anon_sym_function] = ACTIONS(1828), - [anon_sym_var] = ACTIONS(1828), - [aux_sym_integer_token1] = ACTIONS(1828), - [aux_sym_integer_token2] = ACTIONS(1830), - [aux_sym_float_token1] = ACTIONS(1828), - [aux_sym_float_token2] = ACTIONS(1830), - [anon_sym_true] = ACTIONS(1828), - [anon_sym_false] = ACTIONS(1828), - [aux_sym_string_token1] = ACTIONS(1830), - [aux_sym_string_token3] = ACTIONS(1830), + [ts_builtin_sym_end] = ACTIONS(3023), + [sym_identifier] = ACTIONS(3021), + [anon_sym_POUND] = ACTIONS(3023), + [anon_sym_package] = ACTIONS(3021), + [anon_sym_import] = ACTIONS(3021), + [anon_sym_STAR] = ACTIONS(3023), + [anon_sym_using] = ACTIONS(3021), + [anon_sym_throw] = ACTIONS(3021), + [anon_sym_LPAREN] = ACTIONS(3023), + [anon_sym_switch] = ACTIONS(3021), + [anon_sym_LBRACE] = ACTIONS(3023), + [anon_sym_cast] = ACTIONS(3021), + [anon_sym_DOLLARtype] = ACTIONS(3023), + [anon_sym_for] = ACTIONS(3021), + [anon_sym_return] = ACTIONS(3021), + [anon_sym_untyped] = ACTIONS(3021), + [anon_sym_break] = ACTIONS(3021), + [anon_sym_continue] = ACTIONS(3021), + [anon_sym_LBRACK] = ACTIONS(3023), + [anon_sym_this] = ACTIONS(3021), + [anon_sym_AT] = ACTIONS(3021), + [anon_sym_AT_COLON] = ACTIONS(3023), + [anon_sym_try] = ACTIONS(3021), + [anon_sym_catch] = ACTIONS(3021), + [anon_sym_else] = ACTIONS(3021), + [anon_sym_if] = ACTIONS(3021), + [anon_sym_while] = ACTIONS(3021), + [anon_sym_do] = ACTIONS(3021), + [anon_sym_new] = ACTIONS(3021), + [anon_sym_TILDE] = ACTIONS(3023), + [anon_sym_BANG] = ACTIONS(3021), + [anon_sym_DASH] = ACTIONS(3021), + [anon_sym_PLUS_PLUS] = ACTIONS(3023), + [anon_sym_DASH_DASH] = ACTIONS(3023), + [anon_sym_PERCENT] = ACTIONS(3023), + [anon_sym_SLASH] = ACTIONS(3021), + [anon_sym_PLUS] = ACTIONS(3021), + [anon_sym_LT_LT] = ACTIONS(3023), + [anon_sym_GT_GT] = ACTIONS(3021), + [anon_sym_GT_GT_GT] = ACTIONS(3023), + [anon_sym_AMP] = ACTIONS(3021), + [anon_sym_PIPE] = ACTIONS(3021), + [anon_sym_CARET] = ACTIONS(3023), + [anon_sym_AMP_AMP] = ACTIONS(3023), + [anon_sym_PIPE_PIPE] = ACTIONS(3023), + [anon_sym_EQ_EQ] = ACTIONS(3023), + [anon_sym_BANG_EQ] = ACTIONS(3023), + [anon_sym_LT] = ACTIONS(3021), + [anon_sym_LT_EQ] = ACTIONS(3023), + [anon_sym_GT] = ACTIONS(3021), + [anon_sym_GT_EQ] = ACTIONS(3023), + [anon_sym_EQ_GT] = ACTIONS(3023), + [anon_sym_QMARK_QMARK] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(3021), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3023), + [anon_sym_null] = ACTIONS(3021), + [anon_sym_macro] = ACTIONS(3021), + [anon_sym_abstract] = ACTIONS(3021), + [anon_sym_static] = ACTIONS(3021), + [anon_sym_public] = ACTIONS(3021), + [anon_sym_private] = ACTIONS(3021), + [anon_sym_extern] = ACTIONS(3021), + [anon_sym_inline] = ACTIONS(3021), + [anon_sym_overload] = ACTIONS(3021), + [anon_sym_override] = ACTIONS(3021), + [anon_sym_final] = ACTIONS(3021), + [anon_sym_class] = ACTIONS(3021), + [anon_sym_interface] = ACTIONS(3021), + [anon_sym_enum] = ACTIONS(3021), + [anon_sym_typedef] = ACTIONS(3021), + [anon_sym_function] = ACTIONS(3021), + [anon_sym_var] = ACTIONS(3021), + [aux_sym_integer_token1] = ACTIONS(3021), + [aux_sym_integer_token2] = ACTIONS(3023), + [aux_sym_float_token1] = ACTIONS(3021), + [aux_sym_float_token2] = ACTIONS(3023), + [anon_sym_true] = ACTIONS(3021), + [anon_sym_false] = ACTIONS(3021), + [aux_sym_string_token1] = ACTIONS(3023), + [aux_sym_string_token3] = ACTIONS(3023), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [676] = { - [ts_builtin_sym_end] = ACTIONS(2066), - [sym_identifier] = ACTIONS(2064), - [anon_sym_POUND] = ACTIONS(2066), - [anon_sym_package] = ACTIONS(2064), - [anon_sym_import] = ACTIONS(2064), - [anon_sym_using] = ACTIONS(2064), - [anon_sym_throw] = ACTIONS(2064), - [anon_sym_LPAREN] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2064), - [anon_sym_LBRACE] = ACTIONS(2066), - [anon_sym_cast] = ACTIONS(2064), - [anon_sym_DOLLARtype] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2064), - [anon_sym_untyped] = ACTIONS(2064), - [anon_sym_break] = ACTIONS(2064), - [anon_sym_continue] = ACTIONS(2064), - [anon_sym_LBRACK] = ACTIONS(2066), - [anon_sym_this] = ACTIONS(2064), - [anon_sym_AT] = ACTIONS(2064), - [anon_sym_AT_COLON] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2064), - [anon_sym_new] = ACTIONS(2064), - [anon_sym_TILDE] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_DASH] = ACTIONS(2064), - [anon_sym_PLUS_PLUS] = ACTIONS(2066), - [anon_sym_DASH_DASH] = ACTIONS(2066), - [anon_sym_PERCENT] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2066), - [anon_sym_SLASH] = ACTIONS(2064), - [anon_sym_PLUS] = ACTIONS(2064), - [anon_sym_LT_LT] = ACTIONS(2066), - [anon_sym_GT_GT] = ACTIONS(2064), - [anon_sym_GT_GT_GT] = ACTIONS(2066), - [anon_sym_AMP] = ACTIONS(2064), - [anon_sym_PIPE] = ACTIONS(2064), - [anon_sym_CARET] = ACTIONS(2066), - [anon_sym_AMP_AMP] = ACTIONS(2066), - [anon_sym_PIPE_PIPE] = ACTIONS(2066), - [anon_sym_EQ_EQ] = ACTIONS(2066), - [anon_sym_BANG_EQ] = ACTIONS(2066), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_LT_EQ] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2064), - [anon_sym_GT_EQ] = ACTIONS(2066), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_QMARK_QMARK] = ACTIONS(2066), - [anon_sym_EQ] = ACTIONS(2064), - [sym__rangeOperator] = ACTIONS(2066), - [anon_sym_null] = ACTIONS(2064), - [anon_sym_macro] = ACTIONS(2064), - [anon_sym_abstract] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2064), - [anon_sym_public] = ACTIONS(2064), - [anon_sym_private] = ACTIONS(2064), - [anon_sym_extern] = ACTIONS(2064), - [anon_sym_inline] = ACTIONS(2064), - [anon_sym_overload] = ACTIONS(2064), - [anon_sym_override] = ACTIONS(2064), - [anon_sym_final] = ACTIONS(2064), - [anon_sym_class] = ACTIONS(2064), - [anon_sym_interface] = ACTIONS(2064), - [anon_sym_typedef] = ACTIONS(2064), - [anon_sym_function] = ACTIONS(2064), - [anon_sym_var] = ACTIONS(2064), - [aux_sym_integer_token1] = ACTIONS(2064), - [aux_sym_integer_token2] = ACTIONS(2066), - [aux_sym_float_token1] = ACTIONS(2064), - [aux_sym_float_token2] = ACTIONS(2066), - [anon_sym_true] = ACTIONS(2064), - [anon_sym_false] = ACTIONS(2064), - [aux_sym_string_token1] = ACTIONS(2066), - [aux_sym_string_token3] = ACTIONS(2066), + [ts_builtin_sym_end] = ACTIONS(3027), + [sym_identifier] = ACTIONS(3025), + [anon_sym_POUND] = ACTIONS(3027), + [anon_sym_package] = ACTIONS(3025), + [anon_sym_import] = ACTIONS(3025), + [anon_sym_STAR] = ACTIONS(3027), + [anon_sym_using] = ACTIONS(3025), + [anon_sym_throw] = ACTIONS(3025), + [anon_sym_LPAREN] = ACTIONS(3027), + [anon_sym_switch] = ACTIONS(3025), + [anon_sym_LBRACE] = ACTIONS(3027), + [anon_sym_cast] = ACTIONS(3025), + [anon_sym_DOLLARtype] = ACTIONS(3027), + [anon_sym_for] = ACTIONS(3025), + [anon_sym_return] = ACTIONS(3025), + [anon_sym_untyped] = ACTIONS(3025), + [anon_sym_break] = ACTIONS(3025), + [anon_sym_continue] = ACTIONS(3025), + [anon_sym_LBRACK] = ACTIONS(3027), + [anon_sym_this] = ACTIONS(3025), + [anon_sym_AT] = ACTIONS(3025), + [anon_sym_AT_COLON] = ACTIONS(3027), + [anon_sym_try] = ACTIONS(3025), + [anon_sym_catch] = ACTIONS(3025), + [anon_sym_else] = ACTIONS(3025), + [anon_sym_if] = ACTIONS(3025), + [anon_sym_while] = ACTIONS(3025), + [anon_sym_do] = ACTIONS(3025), + [anon_sym_new] = ACTIONS(3025), + [anon_sym_TILDE] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(3025), + [anon_sym_DASH] = ACTIONS(3025), + [anon_sym_PLUS_PLUS] = ACTIONS(3027), + [anon_sym_DASH_DASH] = ACTIONS(3027), + [anon_sym_PERCENT] = ACTIONS(3027), + [anon_sym_SLASH] = ACTIONS(3025), + [anon_sym_PLUS] = ACTIONS(3025), + [anon_sym_LT_LT] = ACTIONS(3027), + [anon_sym_GT_GT] = ACTIONS(3025), + [anon_sym_GT_GT_GT] = ACTIONS(3027), + [anon_sym_AMP] = ACTIONS(3025), + [anon_sym_PIPE] = ACTIONS(3025), + [anon_sym_CARET] = ACTIONS(3027), + [anon_sym_AMP_AMP] = ACTIONS(3027), + [anon_sym_PIPE_PIPE] = ACTIONS(3027), + [anon_sym_EQ_EQ] = ACTIONS(3027), + [anon_sym_BANG_EQ] = ACTIONS(3027), + [anon_sym_LT] = ACTIONS(3025), + [anon_sym_LT_EQ] = ACTIONS(3027), + [anon_sym_GT] = ACTIONS(3025), + [anon_sym_GT_EQ] = ACTIONS(3027), + [anon_sym_EQ_GT] = ACTIONS(3027), + [anon_sym_QMARK_QMARK] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3025), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3027), + [anon_sym_null] = ACTIONS(3025), + [anon_sym_macro] = ACTIONS(3025), + [anon_sym_abstract] = ACTIONS(3025), + [anon_sym_static] = ACTIONS(3025), + [anon_sym_public] = ACTIONS(3025), + [anon_sym_private] = ACTIONS(3025), + [anon_sym_extern] = ACTIONS(3025), + [anon_sym_inline] = ACTIONS(3025), + [anon_sym_overload] = ACTIONS(3025), + [anon_sym_override] = ACTIONS(3025), + [anon_sym_final] = ACTIONS(3025), + [anon_sym_class] = ACTIONS(3025), + [anon_sym_interface] = ACTIONS(3025), + [anon_sym_enum] = ACTIONS(3025), + [anon_sym_typedef] = ACTIONS(3025), + [anon_sym_function] = ACTIONS(3025), + [anon_sym_var] = ACTIONS(3025), + [aux_sym_integer_token1] = ACTIONS(3025), + [aux_sym_integer_token2] = ACTIONS(3027), + [aux_sym_float_token1] = ACTIONS(3025), + [aux_sym_float_token2] = ACTIONS(3027), + [anon_sym_true] = ACTIONS(3025), + [anon_sym_false] = ACTIONS(3025), + [aux_sym_string_token1] = ACTIONS(3027), + [aux_sym_string_token3] = ACTIONS(3027), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [677] = { - [ts_builtin_sym_end] = ACTIONS(2070), - [sym_identifier] = ACTIONS(2068), - [anon_sym_POUND] = ACTIONS(2070), - [anon_sym_package] = ACTIONS(2068), - [anon_sym_import] = ACTIONS(2068), - [anon_sym_using] = ACTIONS(2068), - [anon_sym_throw] = ACTIONS(2068), - [anon_sym_LPAREN] = ACTIONS(2070), - [anon_sym_switch] = ACTIONS(2068), - [anon_sym_LBRACE] = ACTIONS(2070), - [anon_sym_cast] = ACTIONS(2068), - [anon_sym_DOLLARtype] = ACTIONS(2070), - [anon_sym_return] = ACTIONS(2068), - [anon_sym_untyped] = ACTIONS(2068), - [anon_sym_break] = ACTIONS(2068), - [anon_sym_continue] = ACTIONS(2068), - [anon_sym_LBRACK] = ACTIONS(2070), - [anon_sym_this] = ACTIONS(2068), - [anon_sym_AT] = ACTIONS(2068), - [anon_sym_AT_COLON] = ACTIONS(2070), - [anon_sym_if] = ACTIONS(2068), - [anon_sym_new] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2070), - [anon_sym_BANG] = ACTIONS(2068), - [anon_sym_DASH] = ACTIONS(2068), - [anon_sym_PLUS_PLUS] = ACTIONS(2070), - [anon_sym_DASH_DASH] = ACTIONS(2070), - [anon_sym_PERCENT] = ACTIONS(2070), - [anon_sym_STAR] = ACTIONS(2070), - [anon_sym_SLASH] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2068), - [anon_sym_LT_LT] = ACTIONS(2070), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_GT_GT_GT] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2070), - [anon_sym_AMP_AMP] = ACTIONS(2070), - [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_EQ_EQ] = ACTIONS(2070), - [anon_sym_BANG_EQ] = ACTIONS(2070), - [anon_sym_LT] = ACTIONS(2068), - [anon_sym_LT_EQ] = ACTIONS(2070), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_GT_EQ] = ACTIONS(2070), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_QMARK] = ACTIONS(2070), - [anon_sym_EQ] = ACTIONS(2068), - [sym__rangeOperator] = ACTIONS(2070), - [anon_sym_null] = ACTIONS(2068), - [anon_sym_macro] = ACTIONS(2068), - [anon_sym_abstract] = ACTIONS(2068), - [anon_sym_static] = ACTIONS(2068), - [anon_sym_public] = ACTIONS(2068), - [anon_sym_private] = ACTIONS(2068), - [anon_sym_extern] = ACTIONS(2068), - [anon_sym_inline] = ACTIONS(2068), - [anon_sym_overload] = ACTIONS(2068), - [anon_sym_override] = ACTIONS(2068), - [anon_sym_final] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2068), - [anon_sym_interface] = ACTIONS(2068), - [anon_sym_typedef] = ACTIONS(2068), - [anon_sym_function] = ACTIONS(2068), - [anon_sym_var] = ACTIONS(2068), - [aux_sym_integer_token1] = ACTIONS(2068), - [aux_sym_integer_token2] = ACTIONS(2070), - [aux_sym_float_token1] = ACTIONS(2068), - [aux_sym_float_token2] = ACTIONS(2070), - [anon_sym_true] = ACTIONS(2068), - [anon_sym_false] = ACTIONS(2068), - [aux_sym_string_token1] = ACTIONS(2070), - [aux_sym_string_token3] = ACTIONS(2070), + [ts_builtin_sym_end] = ACTIONS(3031), + [sym_identifier] = ACTIONS(3029), + [anon_sym_POUND] = ACTIONS(3031), + [anon_sym_package] = ACTIONS(3029), + [anon_sym_import] = ACTIONS(3029), + [anon_sym_STAR] = ACTIONS(3031), + [anon_sym_using] = ACTIONS(3029), + [anon_sym_throw] = ACTIONS(3029), + [anon_sym_LPAREN] = ACTIONS(3031), + [anon_sym_switch] = ACTIONS(3029), + [anon_sym_LBRACE] = ACTIONS(3031), + [anon_sym_cast] = ACTIONS(3029), + [anon_sym_DOLLARtype] = ACTIONS(3031), + [anon_sym_for] = ACTIONS(3029), + [anon_sym_return] = ACTIONS(3029), + [anon_sym_untyped] = ACTIONS(3029), + [anon_sym_break] = ACTIONS(3029), + [anon_sym_continue] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(3031), + [anon_sym_this] = ACTIONS(3029), + [anon_sym_AT] = ACTIONS(3029), + [anon_sym_AT_COLON] = ACTIONS(3031), + [anon_sym_try] = ACTIONS(3029), + [anon_sym_catch] = ACTIONS(3029), + [anon_sym_else] = ACTIONS(3029), + [anon_sym_if] = ACTIONS(3029), + [anon_sym_while] = ACTIONS(3029), + [anon_sym_do] = ACTIONS(3029), + [anon_sym_new] = ACTIONS(3029), + [anon_sym_TILDE] = ACTIONS(3031), + [anon_sym_BANG] = ACTIONS(3029), + [anon_sym_DASH] = ACTIONS(3029), + [anon_sym_PLUS_PLUS] = ACTIONS(3031), + [anon_sym_DASH_DASH] = ACTIONS(3031), + [anon_sym_PERCENT] = ACTIONS(3031), + [anon_sym_SLASH] = ACTIONS(3029), + [anon_sym_PLUS] = ACTIONS(3029), + [anon_sym_LT_LT] = ACTIONS(3031), + [anon_sym_GT_GT] = ACTIONS(3029), + [anon_sym_GT_GT_GT] = ACTIONS(3031), + [anon_sym_AMP] = ACTIONS(3029), + [anon_sym_PIPE] = ACTIONS(3029), + [anon_sym_CARET] = ACTIONS(3031), + [anon_sym_AMP_AMP] = ACTIONS(3031), + [anon_sym_PIPE_PIPE] = ACTIONS(3031), + [anon_sym_EQ_EQ] = ACTIONS(3031), + [anon_sym_BANG_EQ] = ACTIONS(3031), + [anon_sym_LT] = ACTIONS(3029), + [anon_sym_LT_EQ] = ACTIONS(3031), + [anon_sym_GT] = ACTIONS(3029), + [anon_sym_GT_EQ] = ACTIONS(3031), + [anon_sym_EQ_GT] = ACTIONS(3031), + [anon_sym_QMARK_QMARK] = ACTIONS(3031), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3031), + [anon_sym_null] = ACTIONS(3029), + [anon_sym_macro] = ACTIONS(3029), + [anon_sym_abstract] = ACTIONS(3029), + [anon_sym_static] = ACTIONS(3029), + [anon_sym_public] = ACTIONS(3029), + [anon_sym_private] = ACTIONS(3029), + [anon_sym_extern] = ACTIONS(3029), + [anon_sym_inline] = ACTIONS(3029), + [anon_sym_overload] = ACTIONS(3029), + [anon_sym_override] = ACTIONS(3029), + [anon_sym_final] = ACTIONS(3029), + [anon_sym_class] = ACTIONS(3029), + [anon_sym_interface] = ACTIONS(3029), + [anon_sym_enum] = ACTIONS(3029), + [anon_sym_typedef] = ACTIONS(3029), + [anon_sym_function] = ACTIONS(3029), + [anon_sym_var] = ACTIONS(3029), + [aux_sym_integer_token1] = ACTIONS(3029), + [aux_sym_integer_token2] = ACTIONS(3031), + [aux_sym_float_token1] = ACTIONS(3029), + [aux_sym_float_token2] = ACTIONS(3031), + [anon_sym_true] = ACTIONS(3029), + [anon_sym_false] = ACTIONS(3029), + [aux_sym_string_token1] = ACTIONS(3031), + [aux_sym_string_token3] = ACTIONS(3031), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [678] = { - [ts_builtin_sym_end] = ACTIONS(1890), - [sym_identifier] = ACTIONS(1888), - [anon_sym_POUND] = ACTIONS(1890), - [anon_sym_package] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(1888), - [anon_sym_using] = ACTIONS(1888), - [anon_sym_throw] = ACTIONS(1888), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_switch] = ACTIONS(1888), - [anon_sym_LBRACE] = ACTIONS(1890), - [anon_sym_cast] = ACTIONS(1888), - [anon_sym_DOLLARtype] = ACTIONS(1890), - [anon_sym_return] = ACTIONS(1888), - [anon_sym_untyped] = ACTIONS(1888), - [anon_sym_break] = ACTIONS(1888), - [anon_sym_continue] = ACTIONS(1888), - [anon_sym_LBRACK] = ACTIONS(1890), - [anon_sym_this] = ACTIONS(1888), - [anon_sym_AT] = ACTIONS(1888), - [anon_sym_AT_COLON] = ACTIONS(1890), - [anon_sym_if] = ACTIONS(1888), - [anon_sym_new] = ACTIONS(1888), - [anon_sym_TILDE] = ACTIONS(1890), - [anon_sym_BANG] = ACTIONS(1888), - [anon_sym_DASH] = ACTIONS(1888), - [anon_sym_PLUS_PLUS] = ACTIONS(1890), - [anon_sym_DASH_DASH] = ACTIONS(1890), - [anon_sym_PERCENT] = ACTIONS(1890), - [anon_sym_STAR] = ACTIONS(1890), - [anon_sym_SLASH] = ACTIONS(1888), - [anon_sym_PLUS] = ACTIONS(1888), - [anon_sym_LT_LT] = ACTIONS(1890), - [anon_sym_GT_GT] = ACTIONS(1888), - [anon_sym_GT_GT_GT] = ACTIONS(1890), - [anon_sym_AMP] = ACTIONS(1888), - [anon_sym_PIPE] = ACTIONS(1888), - [anon_sym_CARET] = ACTIONS(1890), - [anon_sym_AMP_AMP] = ACTIONS(1890), - [anon_sym_PIPE_PIPE] = ACTIONS(1890), - [anon_sym_EQ_EQ] = ACTIONS(1890), - [anon_sym_BANG_EQ] = ACTIONS(1890), - [anon_sym_LT] = ACTIONS(1888), - [anon_sym_LT_EQ] = ACTIONS(1890), - [anon_sym_GT] = ACTIONS(1888), - [anon_sym_GT_EQ] = ACTIONS(1890), - [anon_sym_EQ_GT] = ACTIONS(1890), - [anon_sym_QMARK_QMARK] = ACTIONS(1890), - [anon_sym_EQ] = ACTIONS(1888), - [sym__rangeOperator] = ACTIONS(1890), - [anon_sym_null] = ACTIONS(1888), - [anon_sym_macro] = ACTIONS(1888), - [anon_sym_abstract] = ACTIONS(1888), - [anon_sym_static] = ACTIONS(1888), - [anon_sym_public] = ACTIONS(1888), - [anon_sym_private] = ACTIONS(1888), - [anon_sym_extern] = ACTIONS(1888), - [anon_sym_inline] = ACTIONS(1888), - [anon_sym_overload] = ACTIONS(1888), - [anon_sym_override] = ACTIONS(1888), - [anon_sym_final] = ACTIONS(1888), - [anon_sym_class] = ACTIONS(1888), - [anon_sym_interface] = ACTIONS(1888), - [anon_sym_typedef] = ACTIONS(1888), - [anon_sym_function] = ACTIONS(1888), - [anon_sym_var] = ACTIONS(1888), - [aux_sym_integer_token1] = ACTIONS(1888), - [aux_sym_integer_token2] = ACTIONS(1890), - [aux_sym_float_token1] = ACTIONS(1888), - [aux_sym_float_token2] = ACTIONS(1890), - [anon_sym_true] = ACTIONS(1888), - [anon_sym_false] = ACTIONS(1888), - [aux_sym_string_token1] = ACTIONS(1890), - [aux_sym_string_token3] = ACTIONS(1890), + [ts_builtin_sym_end] = ACTIONS(3035), + [sym_identifier] = ACTIONS(3033), + [anon_sym_POUND] = ACTIONS(3035), + [anon_sym_package] = ACTIONS(3033), + [anon_sym_import] = ACTIONS(3033), + [anon_sym_STAR] = ACTIONS(3035), + [anon_sym_using] = ACTIONS(3033), + [anon_sym_throw] = ACTIONS(3033), + [anon_sym_LPAREN] = ACTIONS(3035), + [anon_sym_switch] = ACTIONS(3033), + [anon_sym_LBRACE] = ACTIONS(3035), + [anon_sym_cast] = ACTIONS(3033), + [anon_sym_DOLLARtype] = ACTIONS(3035), + [anon_sym_for] = ACTIONS(3033), + [anon_sym_return] = ACTIONS(3033), + [anon_sym_untyped] = ACTIONS(3033), + [anon_sym_break] = ACTIONS(3033), + [anon_sym_continue] = ACTIONS(3033), + [anon_sym_LBRACK] = ACTIONS(3035), + [anon_sym_this] = ACTIONS(3033), + [anon_sym_AT] = ACTIONS(3033), + [anon_sym_AT_COLON] = ACTIONS(3035), + [anon_sym_try] = ACTIONS(3033), + [anon_sym_catch] = ACTIONS(3033), + [anon_sym_else] = ACTIONS(3033), + [anon_sym_if] = ACTIONS(3033), + [anon_sym_while] = ACTIONS(3033), + [anon_sym_do] = ACTIONS(3033), + [anon_sym_new] = ACTIONS(3033), + [anon_sym_TILDE] = ACTIONS(3035), + [anon_sym_BANG] = ACTIONS(3033), + [anon_sym_DASH] = ACTIONS(3033), + [anon_sym_PLUS_PLUS] = ACTIONS(3035), + [anon_sym_DASH_DASH] = ACTIONS(3035), + [anon_sym_PERCENT] = ACTIONS(3035), + [anon_sym_SLASH] = ACTIONS(3033), + [anon_sym_PLUS] = ACTIONS(3033), + [anon_sym_LT_LT] = ACTIONS(3035), + [anon_sym_GT_GT] = ACTIONS(3033), + [anon_sym_GT_GT_GT] = ACTIONS(3035), + [anon_sym_AMP] = ACTIONS(3033), + [anon_sym_PIPE] = ACTIONS(3033), + [anon_sym_CARET] = ACTIONS(3035), + [anon_sym_AMP_AMP] = ACTIONS(3035), + [anon_sym_PIPE_PIPE] = ACTIONS(3035), + [anon_sym_EQ_EQ] = ACTIONS(3035), + [anon_sym_BANG_EQ] = ACTIONS(3035), + [anon_sym_LT] = ACTIONS(3033), + [anon_sym_LT_EQ] = ACTIONS(3035), + [anon_sym_GT] = ACTIONS(3033), + [anon_sym_GT_EQ] = ACTIONS(3035), + [anon_sym_EQ_GT] = ACTIONS(3035), + [anon_sym_QMARK_QMARK] = ACTIONS(3035), + [anon_sym_EQ] = ACTIONS(3033), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), + [anon_sym_null] = ACTIONS(3033), + [anon_sym_macro] = ACTIONS(3033), + [anon_sym_abstract] = ACTIONS(3033), + [anon_sym_static] = ACTIONS(3033), + [anon_sym_public] = ACTIONS(3033), + [anon_sym_private] = ACTIONS(3033), + [anon_sym_extern] = ACTIONS(3033), + [anon_sym_inline] = ACTIONS(3033), + [anon_sym_overload] = ACTIONS(3033), + [anon_sym_override] = ACTIONS(3033), + [anon_sym_final] = ACTIONS(3033), + [anon_sym_class] = ACTIONS(3033), + [anon_sym_interface] = ACTIONS(3033), + [anon_sym_enum] = ACTIONS(3033), + [anon_sym_typedef] = ACTIONS(3033), + [anon_sym_function] = ACTIONS(3033), + [anon_sym_var] = ACTIONS(3033), + [aux_sym_integer_token1] = ACTIONS(3033), + [aux_sym_integer_token2] = ACTIONS(3035), + [aux_sym_float_token1] = ACTIONS(3033), + [aux_sym_float_token2] = ACTIONS(3035), + [anon_sym_true] = ACTIONS(3033), + [anon_sym_false] = ACTIONS(3033), + [aux_sym_string_token1] = ACTIONS(3035), + [aux_sym_string_token3] = ACTIONS(3035), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [679] = { - [ts_builtin_sym_end] = ACTIONS(1834), - [sym_identifier] = ACTIONS(1832), - [anon_sym_POUND] = ACTIONS(1834), - [anon_sym_package] = ACTIONS(1832), - [anon_sym_import] = ACTIONS(1832), - [anon_sym_using] = ACTIONS(1832), - [anon_sym_throw] = ACTIONS(1832), - [anon_sym_LPAREN] = ACTIONS(1834), - [anon_sym_switch] = ACTIONS(1832), - [anon_sym_LBRACE] = ACTIONS(1834), - [anon_sym_cast] = ACTIONS(1832), - [anon_sym_DOLLARtype] = ACTIONS(1834), - [anon_sym_return] = ACTIONS(1832), - [anon_sym_untyped] = ACTIONS(1832), - [anon_sym_break] = ACTIONS(1832), - [anon_sym_continue] = ACTIONS(1832), - [anon_sym_LBRACK] = ACTIONS(1834), - [anon_sym_this] = ACTIONS(1832), - [anon_sym_AT] = ACTIONS(1832), - [anon_sym_AT_COLON] = ACTIONS(1834), - [anon_sym_if] = ACTIONS(1832), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_TILDE] = ACTIONS(1834), - [anon_sym_BANG] = ACTIONS(1832), - [anon_sym_DASH] = ACTIONS(1832), - [anon_sym_PLUS_PLUS] = ACTIONS(1834), - [anon_sym_DASH_DASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1834), - [anon_sym_STAR] = ACTIONS(1834), - [anon_sym_SLASH] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1832), - [anon_sym_LT_LT] = ACTIONS(1834), - [anon_sym_GT_GT] = ACTIONS(1832), - [anon_sym_GT_GT_GT] = ACTIONS(1834), - [anon_sym_AMP] = ACTIONS(1832), - [anon_sym_PIPE] = ACTIONS(1832), - [anon_sym_CARET] = ACTIONS(1834), - [anon_sym_AMP_AMP] = ACTIONS(1834), - [anon_sym_PIPE_PIPE] = ACTIONS(1834), - [anon_sym_EQ_EQ] = ACTIONS(1834), - [anon_sym_BANG_EQ] = ACTIONS(1834), - [anon_sym_LT] = ACTIONS(1832), - [anon_sym_LT_EQ] = ACTIONS(1834), - [anon_sym_GT] = ACTIONS(1832), - [anon_sym_GT_EQ] = ACTIONS(1834), - [anon_sym_EQ_GT] = ACTIONS(1834), - [anon_sym_QMARK_QMARK] = ACTIONS(1834), - [anon_sym_EQ] = ACTIONS(1832), - [sym__rangeOperator] = ACTIONS(1834), - [anon_sym_null] = ACTIONS(1832), - [anon_sym_macro] = ACTIONS(1832), - [anon_sym_abstract] = ACTIONS(1832), - [anon_sym_static] = ACTIONS(1832), - [anon_sym_public] = ACTIONS(1832), - [anon_sym_private] = ACTIONS(1832), - [anon_sym_extern] = ACTIONS(1832), - [anon_sym_inline] = ACTIONS(1832), - [anon_sym_overload] = ACTIONS(1832), - [anon_sym_override] = ACTIONS(1832), - [anon_sym_final] = ACTIONS(1832), - [anon_sym_class] = ACTIONS(1832), - [anon_sym_interface] = ACTIONS(1832), - [anon_sym_typedef] = ACTIONS(1832), - [anon_sym_function] = ACTIONS(1832), - [anon_sym_var] = ACTIONS(1832), - [aux_sym_integer_token1] = ACTIONS(1832), - [aux_sym_integer_token2] = ACTIONS(1834), - [aux_sym_float_token1] = ACTIONS(1832), - [aux_sym_float_token2] = ACTIONS(1834), - [anon_sym_true] = ACTIONS(1832), - [anon_sym_false] = ACTIONS(1832), - [aux_sym_string_token1] = ACTIONS(1834), - [aux_sym_string_token3] = ACTIONS(1834), + [ts_builtin_sym_end] = ACTIONS(3039), + [sym_identifier] = ACTIONS(3037), + [anon_sym_POUND] = ACTIONS(3039), + [anon_sym_package] = ACTIONS(3037), + [anon_sym_import] = ACTIONS(3037), + [anon_sym_STAR] = ACTIONS(3039), + [anon_sym_using] = ACTIONS(3037), + [anon_sym_throw] = ACTIONS(3037), + [anon_sym_LPAREN] = ACTIONS(3039), + [anon_sym_switch] = ACTIONS(3037), + [anon_sym_LBRACE] = ACTIONS(3039), + [anon_sym_cast] = ACTIONS(3037), + [anon_sym_DOLLARtype] = ACTIONS(3039), + [anon_sym_for] = ACTIONS(3037), + [anon_sym_return] = ACTIONS(3037), + [anon_sym_untyped] = ACTIONS(3037), + [anon_sym_break] = ACTIONS(3037), + [anon_sym_continue] = ACTIONS(3037), + [anon_sym_LBRACK] = ACTIONS(3039), + [anon_sym_this] = ACTIONS(3037), + [anon_sym_AT] = ACTIONS(3037), + [anon_sym_AT_COLON] = ACTIONS(3039), + [anon_sym_try] = ACTIONS(3037), + [anon_sym_catch] = ACTIONS(3037), + [anon_sym_else] = ACTIONS(3037), + [anon_sym_if] = ACTIONS(3037), + [anon_sym_while] = ACTIONS(3037), + [anon_sym_do] = ACTIONS(3037), + [anon_sym_new] = ACTIONS(3037), + [anon_sym_TILDE] = ACTIONS(3039), + [anon_sym_BANG] = ACTIONS(3037), + [anon_sym_DASH] = ACTIONS(3037), + [anon_sym_PLUS_PLUS] = ACTIONS(3039), + [anon_sym_DASH_DASH] = ACTIONS(3039), + [anon_sym_PERCENT] = ACTIONS(3039), + [anon_sym_SLASH] = ACTIONS(3037), + [anon_sym_PLUS] = ACTIONS(3037), + [anon_sym_LT_LT] = ACTIONS(3039), + [anon_sym_GT_GT] = ACTIONS(3037), + [anon_sym_GT_GT_GT] = ACTIONS(3039), + [anon_sym_AMP] = ACTIONS(3037), + [anon_sym_PIPE] = ACTIONS(3037), + [anon_sym_CARET] = ACTIONS(3039), + [anon_sym_AMP_AMP] = ACTIONS(3039), + [anon_sym_PIPE_PIPE] = ACTIONS(3039), + [anon_sym_EQ_EQ] = ACTIONS(3039), + [anon_sym_BANG_EQ] = ACTIONS(3039), + [anon_sym_LT] = ACTIONS(3037), + [anon_sym_LT_EQ] = ACTIONS(3039), + [anon_sym_GT] = ACTIONS(3037), + [anon_sym_GT_EQ] = ACTIONS(3039), + [anon_sym_EQ_GT] = ACTIONS(3039), + [anon_sym_QMARK_QMARK] = ACTIONS(3039), + [anon_sym_EQ] = ACTIONS(3037), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3039), + [anon_sym_null] = ACTIONS(3037), + [anon_sym_macro] = ACTIONS(3037), + [anon_sym_abstract] = ACTIONS(3037), + [anon_sym_static] = ACTIONS(3037), + [anon_sym_public] = ACTIONS(3037), + [anon_sym_private] = ACTIONS(3037), + [anon_sym_extern] = ACTIONS(3037), + [anon_sym_inline] = ACTIONS(3037), + [anon_sym_overload] = ACTIONS(3037), + [anon_sym_override] = ACTIONS(3037), + [anon_sym_final] = ACTIONS(3037), + [anon_sym_class] = ACTIONS(3037), + [anon_sym_interface] = ACTIONS(3037), + [anon_sym_enum] = ACTIONS(3037), + [anon_sym_typedef] = ACTIONS(3037), + [anon_sym_function] = ACTIONS(3037), + [anon_sym_var] = ACTIONS(3037), + [aux_sym_integer_token1] = ACTIONS(3037), + [aux_sym_integer_token2] = ACTIONS(3039), + [aux_sym_float_token1] = ACTIONS(3037), + [aux_sym_float_token2] = ACTIONS(3039), + [anon_sym_true] = ACTIONS(3037), + [anon_sym_false] = ACTIONS(3037), + [aux_sym_string_token1] = ACTIONS(3039), + [aux_sym_string_token3] = ACTIONS(3039), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [680] = { - [ts_builtin_sym_end] = ACTIONS(2078), - [sym_identifier] = ACTIONS(2076), - [anon_sym_POUND] = ACTIONS(2078), - [anon_sym_package] = ACTIONS(2076), - [anon_sym_import] = ACTIONS(2076), - [anon_sym_using] = ACTIONS(2076), - [anon_sym_throw] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(2078), - [anon_sym_switch] = ACTIONS(2076), - [anon_sym_LBRACE] = ACTIONS(2078), - [anon_sym_cast] = ACTIONS(2076), - [anon_sym_DOLLARtype] = ACTIONS(2078), - [anon_sym_return] = ACTIONS(2076), - [anon_sym_untyped] = ACTIONS(2076), - [anon_sym_break] = ACTIONS(2076), - [anon_sym_continue] = ACTIONS(2076), - [anon_sym_LBRACK] = ACTIONS(2078), - [anon_sym_this] = ACTIONS(2076), - [anon_sym_AT] = ACTIONS(2076), - [anon_sym_AT_COLON] = ACTIONS(2078), - [anon_sym_if] = ACTIONS(2076), - [anon_sym_new] = ACTIONS(2076), - [anon_sym_TILDE] = ACTIONS(2078), - [anon_sym_BANG] = ACTIONS(2076), - [anon_sym_DASH] = ACTIONS(2076), - [anon_sym_PLUS_PLUS] = ACTIONS(2078), - [anon_sym_DASH_DASH] = ACTIONS(2078), - [anon_sym_PERCENT] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2076), - [anon_sym_PLUS] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2078), - [anon_sym_GT_GT] = ACTIONS(2076), - [anon_sym_GT_GT_GT] = ACTIONS(2078), - [anon_sym_AMP] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2076), - [anon_sym_CARET] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2078), - [anon_sym_PIPE_PIPE] = ACTIONS(2078), - [anon_sym_EQ_EQ] = ACTIONS(2078), - [anon_sym_BANG_EQ] = ACTIONS(2078), - [anon_sym_LT] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2078), - [anon_sym_GT] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2078), - [anon_sym_EQ_GT] = ACTIONS(2078), - [anon_sym_QMARK_QMARK] = ACTIONS(2078), - [anon_sym_EQ] = ACTIONS(2076), - [sym__rangeOperator] = ACTIONS(2078), - [anon_sym_null] = ACTIONS(2076), - [anon_sym_macro] = ACTIONS(2076), - [anon_sym_abstract] = ACTIONS(2076), - [anon_sym_static] = ACTIONS(2076), - [anon_sym_public] = ACTIONS(2076), - [anon_sym_private] = ACTIONS(2076), - [anon_sym_extern] = ACTIONS(2076), - [anon_sym_inline] = ACTIONS(2076), - [anon_sym_overload] = ACTIONS(2076), - [anon_sym_override] = ACTIONS(2076), - [anon_sym_final] = ACTIONS(2076), - [anon_sym_class] = ACTIONS(2076), - [anon_sym_interface] = ACTIONS(2076), - [anon_sym_typedef] = ACTIONS(2076), - [anon_sym_function] = ACTIONS(2076), - [anon_sym_var] = ACTIONS(2076), - [aux_sym_integer_token1] = ACTIONS(2076), - [aux_sym_integer_token2] = ACTIONS(2078), - [aux_sym_float_token1] = ACTIONS(2076), - [aux_sym_float_token2] = ACTIONS(2078), - [anon_sym_true] = ACTIONS(2076), - [anon_sym_false] = ACTIONS(2076), - [aux_sym_string_token1] = ACTIONS(2078), - [aux_sym_string_token3] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(3043), + [sym_identifier] = ACTIONS(3041), + [anon_sym_POUND] = ACTIONS(3043), + [anon_sym_package] = ACTIONS(3041), + [anon_sym_import] = ACTIONS(3041), + [anon_sym_STAR] = ACTIONS(3043), + [anon_sym_using] = ACTIONS(3041), + [anon_sym_throw] = ACTIONS(3041), + [anon_sym_LPAREN] = ACTIONS(3043), + [anon_sym_switch] = ACTIONS(3041), + [anon_sym_LBRACE] = ACTIONS(3043), + [anon_sym_cast] = ACTIONS(3041), + [anon_sym_DOLLARtype] = ACTIONS(3043), + [anon_sym_for] = ACTIONS(3041), + [anon_sym_return] = ACTIONS(3041), + [anon_sym_untyped] = ACTIONS(3041), + [anon_sym_break] = ACTIONS(3041), + [anon_sym_continue] = ACTIONS(3041), + [anon_sym_LBRACK] = ACTIONS(3043), + [anon_sym_this] = ACTIONS(3041), + [anon_sym_AT] = ACTIONS(3041), + [anon_sym_AT_COLON] = ACTIONS(3043), + [anon_sym_try] = ACTIONS(3041), + [anon_sym_catch] = ACTIONS(3041), + [anon_sym_else] = ACTIONS(3041), + [anon_sym_if] = ACTIONS(3041), + [anon_sym_while] = ACTIONS(3041), + [anon_sym_do] = ACTIONS(3041), + [anon_sym_new] = ACTIONS(3041), + [anon_sym_TILDE] = ACTIONS(3043), + [anon_sym_BANG] = ACTIONS(3041), + [anon_sym_DASH] = ACTIONS(3041), + [anon_sym_PLUS_PLUS] = ACTIONS(3043), + [anon_sym_DASH_DASH] = ACTIONS(3043), + [anon_sym_PERCENT] = ACTIONS(3043), + [anon_sym_SLASH] = ACTIONS(3041), + [anon_sym_PLUS] = ACTIONS(3041), + [anon_sym_LT_LT] = ACTIONS(3043), + [anon_sym_GT_GT] = ACTIONS(3041), + [anon_sym_GT_GT_GT] = ACTIONS(3043), + [anon_sym_AMP] = ACTIONS(3041), + [anon_sym_PIPE] = ACTIONS(3041), + [anon_sym_CARET] = ACTIONS(3043), + [anon_sym_AMP_AMP] = ACTIONS(3043), + [anon_sym_PIPE_PIPE] = ACTIONS(3043), + [anon_sym_EQ_EQ] = ACTIONS(3043), + [anon_sym_BANG_EQ] = ACTIONS(3043), + [anon_sym_LT] = ACTIONS(3041), + [anon_sym_LT_EQ] = ACTIONS(3043), + [anon_sym_GT] = ACTIONS(3041), + [anon_sym_GT_EQ] = ACTIONS(3043), + [anon_sym_EQ_GT] = ACTIONS(3043), + [anon_sym_QMARK_QMARK] = ACTIONS(3043), + [anon_sym_EQ] = ACTIONS(3041), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3043), + [anon_sym_null] = ACTIONS(3041), + [anon_sym_macro] = ACTIONS(3041), + [anon_sym_abstract] = ACTIONS(3041), + [anon_sym_static] = ACTIONS(3041), + [anon_sym_public] = ACTIONS(3041), + [anon_sym_private] = ACTIONS(3041), + [anon_sym_extern] = ACTIONS(3041), + [anon_sym_inline] = ACTIONS(3041), + [anon_sym_overload] = ACTIONS(3041), + [anon_sym_override] = ACTIONS(3041), + [anon_sym_final] = ACTIONS(3041), + [anon_sym_class] = ACTIONS(3041), + [anon_sym_interface] = ACTIONS(3041), + [anon_sym_enum] = ACTIONS(3041), + [anon_sym_typedef] = ACTIONS(3041), + [anon_sym_function] = ACTIONS(3041), + [anon_sym_var] = ACTIONS(3041), + [aux_sym_integer_token1] = ACTIONS(3041), + [aux_sym_integer_token2] = ACTIONS(3043), + [aux_sym_float_token1] = ACTIONS(3041), + [aux_sym_float_token2] = ACTIONS(3043), + [anon_sym_true] = ACTIONS(3041), + [anon_sym_false] = ACTIONS(3041), + [aux_sym_string_token1] = ACTIONS(3043), + [aux_sym_string_token3] = ACTIONS(3043), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [681] = { - [ts_builtin_sym_end] = ACTIONS(2270), - [sym_identifier] = ACTIONS(2268), - [anon_sym_POUND] = ACTIONS(2270), - [anon_sym_package] = ACTIONS(2268), - [anon_sym_import] = ACTIONS(2268), - [anon_sym_using] = ACTIONS(2268), - [anon_sym_throw] = ACTIONS(2268), - [anon_sym_LPAREN] = ACTIONS(2270), - [anon_sym_switch] = ACTIONS(2268), - [anon_sym_LBRACE] = ACTIONS(2270), - [anon_sym_cast] = ACTIONS(2268), - [anon_sym_DOLLARtype] = ACTIONS(2270), - [anon_sym_return] = ACTIONS(2268), - [anon_sym_untyped] = ACTIONS(2268), - [anon_sym_break] = ACTIONS(2268), - [anon_sym_continue] = ACTIONS(2268), - [anon_sym_LBRACK] = ACTIONS(2270), - [anon_sym_this] = ACTIONS(2268), - [anon_sym_AT] = ACTIONS(2268), - [anon_sym_AT_COLON] = ACTIONS(2270), - [anon_sym_if] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2270), - [anon_sym_BANG] = ACTIONS(2268), - [anon_sym_DASH] = ACTIONS(2268), - [anon_sym_PLUS_PLUS] = ACTIONS(2270), - [anon_sym_DASH_DASH] = ACTIONS(2270), - [anon_sym_PERCENT] = ACTIONS(2270), - [anon_sym_STAR] = ACTIONS(2270), - [anon_sym_SLASH] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2270), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_GT_GT_GT] = ACTIONS(2270), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_CARET] = ACTIONS(2270), - [anon_sym_AMP_AMP] = ACTIONS(2270), - [anon_sym_PIPE_PIPE] = ACTIONS(2270), - [anon_sym_EQ_EQ] = ACTIONS(2270), - [anon_sym_BANG_EQ] = ACTIONS(2270), - [anon_sym_LT] = ACTIONS(2268), - [anon_sym_LT_EQ] = ACTIONS(2270), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_GT_EQ] = ACTIONS(2270), - [anon_sym_EQ_GT] = ACTIONS(2270), - [anon_sym_QMARK_QMARK] = ACTIONS(2270), - [anon_sym_EQ] = ACTIONS(2268), - [sym__rangeOperator] = ACTIONS(2270), - [anon_sym_null] = ACTIONS(2268), - [anon_sym_macro] = ACTIONS(2268), - [anon_sym_abstract] = ACTIONS(2268), - [anon_sym_static] = ACTIONS(2268), - [anon_sym_public] = ACTIONS(2268), - [anon_sym_private] = ACTIONS(2268), - [anon_sym_extern] = ACTIONS(2268), - [anon_sym_inline] = ACTIONS(2268), - [anon_sym_overload] = ACTIONS(2268), - [anon_sym_override] = ACTIONS(2268), - [anon_sym_final] = ACTIONS(2268), - [anon_sym_class] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2268), - [anon_sym_typedef] = ACTIONS(2268), - [anon_sym_function] = ACTIONS(2268), - [anon_sym_var] = ACTIONS(2268), - [aux_sym_integer_token1] = ACTIONS(2268), - [aux_sym_integer_token2] = ACTIONS(2270), - [aux_sym_float_token1] = ACTIONS(2268), - [aux_sym_float_token2] = ACTIONS(2270), - [anon_sym_true] = ACTIONS(2268), - [anon_sym_false] = ACTIONS(2268), - [aux_sym_string_token1] = ACTIONS(2270), - [aux_sym_string_token3] = ACTIONS(2270), + [ts_builtin_sym_end] = ACTIONS(3047), + [sym_identifier] = ACTIONS(3045), + [anon_sym_POUND] = ACTIONS(3047), + [anon_sym_package] = ACTIONS(3045), + [anon_sym_import] = ACTIONS(3045), + [anon_sym_STAR] = ACTIONS(3047), + [anon_sym_using] = ACTIONS(3045), + [anon_sym_throw] = ACTIONS(3045), + [anon_sym_LPAREN] = ACTIONS(3047), + [anon_sym_switch] = ACTIONS(3045), + [anon_sym_LBRACE] = ACTIONS(3047), + [anon_sym_cast] = ACTIONS(3045), + [anon_sym_DOLLARtype] = ACTIONS(3047), + [anon_sym_for] = ACTIONS(3045), + [anon_sym_return] = ACTIONS(3045), + [anon_sym_untyped] = ACTIONS(3045), + [anon_sym_break] = ACTIONS(3045), + [anon_sym_continue] = ACTIONS(3045), + [anon_sym_LBRACK] = ACTIONS(3047), + [anon_sym_this] = ACTIONS(3045), + [anon_sym_AT] = ACTIONS(3045), + [anon_sym_AT_COLON] = ACTIONS(3047), + [anon_sym_try] = ACTIONS(3045), + [anon_sym_catch] = ACTIONS(3045), + [anon_sym_else] = ACTIONS(3045), + [anon_sym_if] = ACTIONS(3045), + [anon_sym_while] = ACTIONS(3045), + [anon_sym_do] = ACTIONS(3045), + [anon_sym_new] = ACTIONS(3045), + [anon_sym_TILDE] = ACTIONS(3047), + [anon_sym_BANG] = ACTIONS(3045), + [anon_sym_DASH] = ACTIONS(3045), + [anon_sym_PLUS_PLUS] = ACTIONS(3047), + [anon_sym_DASH_DASH] = ACTIONS(3047), + [anon_sym_PERCENT] = ACTIONS(3047), + [anon_sym_SLASH] = ACTIONS(3045), + [anon_sym_PLUS] = ACTIONS(3045), + [anon_sym_LT_LT] = ACTIONS(3047), + [anon_sym_GT_GT] = ACTIONS(3045), + [anon_sym_GT_GT_GT] = ACTIONS(3047), + [anon_sym_AMP] = ACTIONS(3045), + [anon_sym_PIPE] = ACTIONS(3045), + [anon_sym_CARET] = ACTIONS(3047), + [anon_sym_AMP_AMP] = ACTIONS(3047), + [anon_sym_PIPE_PIPE] = ACTIONS(3047), + [anon_sym_EQ_EQ] = ACTIONS(3047), + [anon_sym_BANG_EQ] = ACTIONS(3047), + [anon_sym_LT] = ACTIONS(3045), + [anon_sym_LT_EQ] = ACTIONS(3047), + [anon_sym_GT] = ACTIONS(3045), + [anon_sym_GT_EQ] = ACTIONS(3047), + [anon_sym_EQ_GT] = ACTIONS(3047), + [anon_sym_QMARK_QMARK] = ACTIONS(3047), + [anon_sym_EQ] = ACTIONS(3045), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3047), + [anon_sym_null] = ACTIONS(3045), + [anon_sym_macro] = ACTIONS(3045), + [anon_sym_abstract] = ACTIONS(3045), + [anon_sym_static] = ACTIONS(3045), + [anon_sym_public] = ACTIONS(3045), + [anon_sym_private] = ACTIONS(3045), + [anon_sym_extern] = ACTIONS(3045), + [anon_sym_inline] = ACTIONS(3045), + [anon_sym_overload] = ACTIONS(3045), + [anon_sym_override] = ACTIONS(3045), + [anon_sym_final] = ACTIONS(3045), + [anon_sym_class] = ACTIONS(3045), + [anon_sym_interface] = ACTIONS(3045), + [anon_sym_enum] = ACTIONS(3045), + [anon_sym_typedef] = ACTIONS(3045), + [anon_sym_function] = ACTIONS(3045), + [anon_sym_var] = ACTIONS(3045), + [aux_sym_integer_token1] = ACTIONS(3045), + [aux_sym_integer_token2] = ACTIONS(3047), + [aux_sym_float_token1] = ACTIONS(3045), + [aux_sym_float_token2] = ACTIONS(3047), + [anon_sym_true] = ACTIONS(3045), + [anon_sym_false] = ACTIONS(3045), + [aux_sym_string_token1] = ACTIONS(3047), + [aux_sym_string_token3] = ACTIONS(3047), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [682] = { - [ts_builtin_sym_end] = ACTIONS(1838), - [sym_identifier] = ACTIONS(1836), - [anon_sym_POUND] = ACTIONS(1838), - [anon_sym_package] = ACTIONS(1836), - [anon_sym_import] = ACTIONS(1836), - [anon_sym_using] = ACTIONS(1836), - [anon_sym_throw] = ACTIONS(1836), - [anon_sym_LPAREN] = ACTIONS(1838), - [anon_sym_switch] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1838), - [anon_sym_cast] = ACTIONS(1836), - [anon_sym_DOLLARtype] = ACTIONS(1838), - [anon_sym_return] = ACTIONS(1836), - [anon_sym_untyped] = ACTIONS(1836), - [anon_sym_break] = ACTIONS(1836), - [anon_sym_continue] = ACTIONS(1836), - [anon_sym_LBRACK] = ACTIONS(1838), - [anon_sym_this] = ACTIONS(1836), - [anon_sym_AT] = ACTIONS(1836), - [anon_sym_AT_COLON] = ACTIONS(1838), - [anon_sym_if] = ACTIONS(1836), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_TILDE] = ACTIONS(1838), - [anon_sym_BANG] = ACTIONS(1836), - [anon_sym_DASH] = ACTIONS(1836), - [anon_sym_PLUS_PLUS] = ACTIONS(1838), - [anon_sym_DASH_DASH] = ACTIONS(1838), - [anon_sym_PERCENT] = ACTIONS(1838), - [anon_sym_STAR] = ACTIONS(1838), - [anon_sym_SLASH] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1836), - [anon_sym_LT_LT] = ACTIONS(1838), - [anon_sym_GT_GT] = ACTIONS(1836), - [anon_sym_GT_GT_GT] = ACTIONS(1838), - [anon_sym_AMP] = ACTIONS(1836), - [anon_sym_PIPE] = ACTIONS(1836), - [anon_sym_CARET] = ACTIONS(1838), - [anon_sym_AMP_AMP] = ACTIONS(1838), - [anon_sym_PIPE_PIPE] = ACTIONS(1838), - [anon_sym_EQ_EQ] = ACTIONS(1838), - [anon_sym_BANG_EQ] = ACTIONS(1838), - [anon_sym_LT] = ACTIONS(1836), - [anon_sym_LT_EQ] = ACTIONS(1838), - [anon_sym_GT] = ACTIONS(1836), - [anon_sym_GT_EQ] = ACTIONS(1838), - [anon_sym_EQ_GT] = ACTIONS(1838), - [anon_sym_QMARK_QMARK] = ACTIONS(1838), - [anon_sym_EQ] = ACTIONS(1836), - [sym__rangeOperator] = ACTIONS(1838), - [anon_sym_null] = ACTIONS(1836), - [anon_sym_macro] = ACTIONS(1836), - [anon_sym_abstract] = ACTIONS(1836), - [anon_sym_static] = ACTIONS(1836), - [anon_sym_public] = ACTIONS(1836), - [anon_sym_private] = ACTIONS(1836), - [anon_sym_extern] = ACTIONS(1836), - [anon_sym_inline] = ACTIONS(1836), - [anon_sym_overload] = ACTIONS(1836), - [anon_sym_override] = ACTIONS(1836), - [anon_sym_final] = ACTIONS(1836), - [anon_sym_class] = ACTIONS(1836), - [anon_sym_interface] = ACTIONS(1836), - [anon_sym_typedef] = ACTIONS(1836), - [anon_sym_function] = ACTIONS(1836), - [anon_sym_var] = ACTIONS(1836), - [aux_sym_integer_token1] = ACTIONS(1836), - [aux_sym_integer_token2] = ACTIONS(1838), - [aux_sym_float_token1] = ACTIONS(1836), - [aux_sym_float_token2] = ACTIONS(1838), - [anon_sym_true] = ACTIONS(1836), - [anon_sym_false] = ACTIONS(1836), - [aux_sym_string_token1] = ACTIONS(1838), - [aux_sym_string_token3] = ACTIONS(1838), + [ts_builtin_sym_end] = ACTIONS(3051), + [sym_identifier] = ACTIONS(3049), + [anon_sym_POUND] = ACTIONS(3051), + [anon_sym_package] = ACTIONS(3049), + [anon_sym_import] = ACTIONS(3049), + [anon_sym_STAR] = ACTIONS(3051), + [anon_sym_using] = ACTIONS(3049), + [anon_sym_throw] = ACTIONS(3049), + [anon_sym_LPAREN] = ACTIONS(3051), + [anon_sym_switch] = ACTIONS(3049), + [anon_sym_LBRACE] = ACTIONS(3051), + [anon_sym_cast] = ACTIONS(3049), + [anon_sym_DOLLARtype] = ACTIONS(3051), + [anon_sym_for] = ACTIONS(3049), + [anon_sym_return] = ACTIONS(3049), + [anon_sym_untyped] = ACTIONS(3049), + [anon_sym_break] = ACTIONS(3049), + [anon_sym_continue] = ACTIONS(3049), + [anon_sym_LBRACK] = ACTIONS(3051), + [anon_sym_this] = ACTIONS(3049), + [anon_sym_AT] = ACTIONS(3049), + [anon_sym_AT_COLON] = ACTIONS(3051), + [anon_sym_try] = ACTIONS(3049), + [anon_sym_catch] = ACTIONS(3049), + [anon_sym_else] = ACTIONS(3049), + [anon_sym_if] = ACTIONS(3049), + [anon_sym_while] = ACTIONS(3049), + [anon_sym_do] = ACTIONS(3049), + [anon_sym_new] = ACTIONS(3049), + [anon_sym_TILDE] = ACTIONS(3051), + [anon_sym_BANG] = ACTIONS(3049), + [anon_sym_DASH] = ACTIONS(3049), + [anon_sym_PLUS_PLUS] = ACTIONS(3051), + [anon_sym_DASH_DASH] = ACTIONS(3051), + [anon_sym_PERCENT] = ACTIONS(3051), + [anon_sym_SLASH] = ACTIONS(3049), + [anon_sym_PLUS] = ACTIONS(3049), + [anon_sym_LT_LT] = ACTIONS(3051), + [anon_sym_GT_GT] = ACTIONS(3049), + [anon_sym_GT_GT_GT] = ACTIONS(3051), + [anon_sym_AMP] = ACTIONS(3049), + [anon_sym_PIPE] = ACTIONS(3049), + [anon_sym_CARET] = ACTIONS(3051), + [anon_sym_AMP_AMP] = ACTIONS(3051), + [anon_sym_PIPE_PIPE] = ACTIONS(3051), + [anon_sym_EQ_EQ] = ACTIONS(3051), + [anon_sym_BANG_EQ] = ACTIONS(3051), + [anon_sym_LT] = ACTIONS(3049), + [anon_sym_LT_EQ] = ACTIONS(3051), + [anon_sym_GT] = ACTIONS(3049), + [anon_sym_GT_EQ] = ACTIONS(3051), + [anon_sym_EQ_GT] = ACTIONS(3051), + [anon_sym_QMARK_QMARK] = ACTIONS(3051), + [anon_sym_EQ] = ACTIONS(3049), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3051), + [anon_sym_null] = ACTIONS(3049), + [anon_sym_macro] = ACTIONS(3049), + [anon_sym_abstract] = ACTIONS(3049), + [anon_sym_static] = ACTIONS(3049), + [anon_sym_public] = ACTIONS(3049), + [anon_sym_private] = ACTIONS(3049), + [anon_sym_extern] = ACTIONS(3049), + [anon_sym_inline] = ACTIONS(3049), + [anon_sym_overload] = ACTIONS(3049), + [anon_sym_override] = ACTIONS(3049), + [anon_sym_final] = ACTIONS(3049), + [anon_sym_class] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3049), + [anon_sym_enum] = ACTIONS(3049), + [anon_sym_typedef] = ACTIONS(3049), + [anon_sym_function] = ACTIONS(3049), + [anon_sym_var] = ACTIONS(3049), + [aux_sym_integer_token1] = ACTIONS(3049), + [aux_sym_integer_token2] = ACTIONS(3051), + [aux_sym_float_token1] = ACTIONS(3049), + [aux_sym_float_token2] = ACTIONS(3051), + [anon_sym_true] = ACTIONS(3049), + [anon_sym_false] = ACTIONS(3049), + [aux_sym_string_token1] = ACTIONS(3051), + [aux_sym_string_token3] = ACTIONS(3051), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [683] = { - [ts_builtin_sym_end] = ACTIONS(2306), - [sym_identifier] = ACTIONS(2304), - [anon_sym_POUND] = ACTIONS(2306), - [anon_sym_package] = ACTIONS(2304), - [anon_sym_import] = ACTIONS(2304), - [anon_sym_using] = ACTIONS(2304), - [anon_sym_throw] = ACTIONS(2304), - [anon_sym_LPAREN] = ACTIONS(2306), - [anon_sym_switch] = ACTIONS(2304), - [anon_sym_LBRACE] = ACTIONS(2306), - [anon_sym_cast] = ACTIONS(2304), - [anon_sym_DOLLARtype] = ACTIONS(2306), - [anon_sym_return] = ACTIONS(2304), - [anon_sym_untyped] = ACTIONS(2304), - [anon_sym_break] = ACTIONS(2304), - [anon_sym_continue] = ACTIONS(2304), - [anon_sym_LBRACK] = ACTIONS(2306), - [anon_sym_this] = ACTIONS(2304), - [anon_sym_AT] = ACTIONS(2304), - [anon_sym_AT_COLON] = ACTIONS(2306), - [anon_sym_if] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2306), - [anon_sym_BANG] = ACTIONS(2304), - [anon_sym_DASH] = ACTIONS(2304), - [anon_sym_PLUS_PLUS] = ACTIONS(2306), - [anon_sym_DASH_DASH] = ACTIONS(2306), - [anon_sym_PERCENT] = ACTIONS(2306), - [anon_sym_STAR] = ACTIONS(2306), - [anon_sym_SLASH] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2306), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2306), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2306), - [anon_sym_AMP_AMP] = ACTIONS(2306), - [anon_sym_PIPE_PIPE] = ACTIONS(2306), - [anon_sym_EQ_EQ] = ACTIONS(2306), - [anon_sym_BANG_EQ] = ACTIONS(2306), - [anon_sym_LT] = ACTIONS(2304), - [anon_sym_LT_EQ] = ACTIONS(2306), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2306), - [anon_sym_EQ_GT] = ACTIONS(2306), - [anon_sym_QMARK_QMARK] = ACTIONS(2306), - [anon_sym_EQ] = ACTIONS(2304), - [sym__rangeOperator] = ACTIONS(2306), - [anon_sym_null] = ACTIONS(2304), - [anon_sym_macro] = ACTIONS(2304), - [anon_sym_abstract] = ACTIONS(2304), - [anon_sym_static] = ACTIONS(2304), - [anon_sym_public] = ACTIONS(2304), - [anon_sym_private] = ACTIONS(2304), - [anon_sym_extern] = ACTIONS(2304), - [anon_sym_inline] = ACTIONS(2304), - [anon_sym_overload] = ACTIONS(2304), - [anon_sym_override] = ACTIONS(2304), - [anon_sym_final] = ACTIONS(2304), - [anon_sym_class] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2304), - [anon_sym_typedef] = ACTIONS(2304), - [anon_sym_function] = ACTIONS(2304), - [anon_sym_var] = ACTIONS(2304), - [aux_sym_integer_token1] = ACTIONS(2304), - [aux_sym_integer_token2] = ACTIONS(2306), - [aux_sym_float_token1] = ACTIONS(2304), - [aux_sym_float_token2] = ACTIONS(2306), - [anon_sym_true] = ACTIONS(2304), - [anon_sym_false] = ACTIONS(2304), - [aux_sym_string_token1] = ACTIONS(2306), - [aux_sym_string_token3] = ACTIONS(2306), + [ts_builtin_sym_end] = ACTIONS(3055), + [sym_identifier] = ACTIONS(3053), + [anon_sym_POUND] = ACTIONS(3055), + [anon_sym_package] = ACTIONS(3053), + [anon_sym_import] = ACTIONS(3053), + [anon_sym_STAR] = ACTIONS(3055), + [anon_sym_using] = ACTIONS(3053), + [anon_sym_throw] = ACTIONS(3053), + [anon_sym_LPAREN] = ACTIONS(3055), + [anon_sym_switch] = ACTIONS(3053), + [anon_sym_LBRACE] = ACTIONS(3055), + [anon_sym_cast] = ACTIONS(3053), + [anon_sym_DOLLARtype] = ACTIONS(3055), + [anon_sym_for] = ACTIONS(3053), + [anon_sym_return] = ACTIONS(3053), + [anon_sym_untyped] = ACTIONS(3053), + [anon_sym_break] = ACTIONS(3053), + [anon_sym_continue] = ACTIONS(3053), + [anon_sym_LBRACK] = ACTIONS(3055), + [anon_sym_this] = ACTIONS(3053), + [anon_sym_AT] = ACTIONS(3053), + [anon_sym_AT_COLON] = ACTIONS(3055), + [anon_sym_try] = ACTIONS(3053), + [anon_sym_catch] = ACTIONS(3053), + [anon_sym_else] = ACTIONS(3053), + [anon_sym_if] = ACTIONS(3053), + [anon_sym_while] = ACTIONS(3053), + [anon_sym_do] = ACTIONS(3053), + [anon_sym_new] = ACTIONS(3053), + [anon_sym_TILDE] = ACTIONS(3055), + [anon_sym_BANG] = ACTIONS(3053), + [anon_sym_DASH] = ACTIONS(3053), + [anon_sym_PLUS_PLUS] = ACTIONS(3055), + [anon_sym_DASH_DASH] = ACTIONS(3055), + [anon_sym_PERCENT] = ACTIONS(3055), + [anon_sym_SLASH] = ACTIONS(3053), + [anon_sym_PLUS] = ACTIONS(3053), + [anon_sym_LT_LT] = ACTIONS(3055), + [anon_sym_GT_GT] = ACTIONS(3053), + [anon_sym_GT_GT_GT] = ACTIONS(3055), + [anon_sym_AMP] = ACTIONS(3053), + [anon_sym_PIPE] = ACTIONS(3053), + [anon_sym_CARET] = ACTIONS(3055), + [anon_sym_AMP_AMP] = ACTIONS(3055), + [anon_sym_PIPE_PIPE] = ACTIONS(3055), + [anon_sym_EQ_EQ] = ACTIONS(3055), + [anon_sym_BANG_EQ] = ACTIONS(3055), + [anon_sym_LT] = ACTIONS(3053), + [anon_sym_LT_EQ] = ACTIONS(3055), + [anon_sym_GT] = ACTIONS(3053), + [anon_sym_GT_EQ] = ACTIONS(3055), + [anon_sym_EQ_GT] = ACTIONS(3055), + [anon_sym_QMARK_QMARK] = ACTIONS(3055), + [anon_sym_EQ] = ACTIONS(3053), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3055), + [anon_sym_null] = ACTIONS(3053), + [anon_sym_macro] = ACTIONS(3053), + [anon_sym_abstract] = ACTIONS(3053), + [anon_sym_static] = ACTIONS(3053), + [anon_sym_public] = ACTIONS(3053), + [anon_sym_private] = ACTIONS(3053), + [anon_sym_extern] = ACTIONS(3053), + [anon_sym_inline] = ACTIONS(3053), + [anon_sym_overload] = ACTIONS(3053), + [anon_sym_override] = ACTIONS(3053), + [anon_sym_final] = ACTIONS(3053), + [anon_sym_class] = ACTIONS(3053), + [anon_sym_interface] = ACTIONS(3053), + [anon_sym_enum] = ACTIONS(3053), + [anon_sym_typedef] = ACTIONS(3053), + [anon_sym_function] = ACTIONS(3053), + [anon_sym_var] = ACTIONS(3053), + [aux_sym_integer_token1] = ACTIONS(3053), + [aux_sym_integer_token2] = ACTIONS(3055), + [aux_sym_float_token1] = ACTIONS(3053), + [aux_sym_float_token2] = ACTIONS(3055), + [anon_sym_true] = ACTIONS(3053), + [anon_sym_false] = ACTIONS(3053), + [aux_sym_string_token1] = ACTIONS(3055), + [aux_sym_string_token3] = ACTIONS(3055), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [684] = { - [sym__rhs_expression] = STATE(207), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(207), - [sym__literal] = STATE(767), - [sym_integer] = STATE(767), - [sym_float] = STATE(767), - [sym_bool] = STATE(767), - [sym_string] = STATE(765), - [sym_null] = STATE(767), - [sym_array] = STATE(767), - [sym_map] = STATE(767), - [sym_object] = STATE(767), - [sym_pair] = STATE(767), - [sym_identifier] = ACTIONS(2374), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(472), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_new] = ACTIONS(380), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3059), + [sym_identifier] = ACTIONS(3057), + [anon_sym_POUND] = ACTIONS(3059), + [anon_sym_package] = ACTIONS(3057), + [anon_sym_import] = ACTIONS(3057), + [anon_sym_STAR] = ACTIONS(3059), + [anon_sym_using] = ACTIONS(3057), + [anon_sym_throw] = ACTIONS(3057), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_switch] = ACTIONS(3057), + [anon_sym_LBRACE] = ACTIONS(3059), + [anon_sym_cast] = ACTIONS(3057), + [anon_sym_DOLLARtype] = ACTIONS(3059), + [anon_sym_for] = ACTIONS(3057), + [anon_sym_return] = ACTIONS(3057), + [anon_sym_untyped] = ACTIONS(3057), + [anon_sym_break] = ACTIONS(3057), + [anon_sym_continue] = ACTIONS(3057), + [anon_sym_LBRACK] = ACTIONS(3059), + [anon_sym_this] = ACTIONS(3057), + [anon_sym_AT] = ACTIONS(3057), + [anon_sym_AT_COLON] = ACTIONS(3059), + [anon_sym_try] = ACTIONS(3057), + [anon_sym_catch] = ACTIONS(3057), + [anon_sym_else] = ACTIONS(3057), + [anon_sym_if] = ACTIONS(3057), + [anon_sym_while] = ACTIONS(3057), + [anon_sym_do] = ACTIONS(3057), + [anon_sym_new] = ACTIONS(3057), + [anon_sym_TILDE] = ACTIONS(3059), + [anon_sym_BANG] = ACTIONS(3057), + [anon_sym_DASH] = ACTIONS(3057), + [anon_sym_PLUS_PLUS] = ACTIONS(3059), + [anon_sym_DASH_DASH] = ACTIONS(3059), + [anon_sym_PERCENT] = ACTIONS(3059), + [anon_sym_SLASH] = ACTIONS(3057), + [anon_sym_PLUS] = ACTIONS(3057), + [anon_sym_LT_LT] = ACTIONS(3059), + [anon_sym_GT_GT] = ACTIONS(3057), + [anon_sym_GT_GT_GT] = ACTIONS(3059), + [anon_sym_AMP] = ACTIONS(3057), + [anon_sym_PIPE] = ACTIONS(3057), + [anon_sym_CARET] = ACTIONS(3059), + [anon_sym_AMP_AMP] = ACTIONS(3059), + [anon_sym_PIPE_PIPE] = ACTIONS(3059), + [anon_sym_EQ_EQ] = ACTIONS(3059), + [anon_sym_BANG_EQ] = ACTIONS(3059), + [anon_sym_LT] = ACTIONS(3057), + [anon_sym_LT_EQ] = ACTIONS(3059), + [anon_sym_GT] = ACTIONS(3057), + [anon_sym_GT_EQ] = ACTIONS(3059), + [anon_sym_EQ_GT] = ACTIONS(3059), + [anon_sym_QMARK_QMARK] = ACTIONS(3059), + [anon_sym_EQ] = ACTIONS(3057), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3059), + [anon_sym_null] = ACTIONS(3057), + [anon_sym_macro] = ACTIONS(3057), + [anon_sym_abstract] = ACTIONS(3057), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_extern] = ACTIONS(3057), + [anon_sym_inline] = ACTIONS(3057), + [anon_sym_overload] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_final] = ACTIONS(3057), + [anon_sym_class] = ACTIONS(3057), + [anon_sym_interface] = ACTIONS(3057), + [anon_sym_enum] = ACTIONS(3057), + [anon_sym_typedef] = ACTIONS(3057), + [anon_sym_function] = ACTIONS(3057), + [anon_sym_var] = ACTIONS(3057), + [aux_sym_integer_token1] = ACTIONS(3057), + [aux_sym_integer_token2] = ACTIONS(3059), + [aux_sym_float_token1] = ACTIONS(3057), + [aux_sym_float_token2] = ACTIONS(3059), + [anon_sym_true] = ACTIONS(3057), + [anon_sym_false] = ACTIONS(3057), + [aux_sym_string_token1] = ACTIONS(3059), + [aux_sym_string_token3] = ACTIONS(3059), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [685] = { - [sym__rhs_expression] = STATE(214), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(214), - [sym__literal] = STATE(767), - [sym_integer] = STATE(767), - [sym_float] = STATE(767), - [sym_bool] = STATE(767), - [sym_string] = STATE(765), - [sym_null] = STATE(767), - [sym_array] = STATE(767), - [sym_map] = STATE(767), - [sym_object] = STATE(767), - [sym_pair] = STATE(767), - [sym_identifier] = ACTIONS(526), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_RPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), + [ts_builtin_sym_end] = ACTIONS(3063), + [sym_identifier] = ACTIONS(3061), + [anon_sym_POUND] = ACTIONS(3063), + [anon_sym_package] = ACTIONS(3061), + [anon_sym_import] = ACTIONS(3061), + [anon_sym_STAR] = ACTIONS(3063), + [anon_sym_using] = ACTIONS(3061), + [anon_sym_throw] = ACTIONS(3061), + [anon_sym_LPAREN] = ACTIONS(3063), + [anon_sym_switch] = ACTIONS(3061), + [anon_sym_LBRACE] = ACTIONS(3063), + [anon_sym_cast] = ACTIONS(3061), + [anon_sym_DOLLARtype] = ACTIONS(3063), + [anon_sym_for] = ACTIONS(3061), + [anon_sym_return] = ACTIONS(3061), + [anon_sym_untyped] = ACTIONS(3061), + [anon_sym_break] = ACTIONS(3061), + [anon_sym_continue] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_this] = ACTIONS(3061), + [anon_sym_AT] = ACTIONS(3061), + [anon_sym_AT_COLON] = ACTIONS(3063), + [anon_sym_try] = ACTIONS(3061), + [anon_sym_catch] = ACTIONS(3061), + [anon_sym_else] = ACTIONS(3061), + [anon_sym_if] = ACTIONS(3061), + [anon_sym_while] = ACTIONS(3061), + [anon_sym_do] = ACTIONS(3061), + [anon_sym_new] = ACTIONS(3061), + [anon_sym_TILDE] = ACTIONS(3063), + [anon_sym_BANG] = ACTIONS(3061), + [anon_sym_DASH] = ACTIONS(3061), + [anon_sym_PLUS_PLUS] = ACTIONS(3063), + [anon_sym_DASH_DASH] = ACTIONS(3063), + [anon_sym_PERCENT] = ACTIONS(3063), + [anon_sym_SLASH] = ACTIONS(3061), + [anon_sym_PLUS] = ACTIONS(3061), + [anon_sym_LT_LT] = ACTIONS(3063), + [anon_sym_GT_GT] = ACTIONS(3061), + [anon_sym_GT_GT_GT] = ACTIONS(3063), + [anon_sym_AMP] = ACTIONS(3061), + [anon_sym_PIPE] = ACTIONS(3061), + [anon_sym_CARET] = ACTIONS(3063), + [anon_sym_AMP_AMP] = ACTIONS(3063), + [anon_sym_PIPE_PIPE] = ACTIONS(3063), + [anon_sym_EQ_EQ] = ACTIONS(3063), + [anon_sym_BANG_EQ] = ACTIONS(3063), + [anon_sym_LT] = ACTIONS(3061), + [anon_sym_LT_EQ] = ACTIONS(3063), + [anon_sym_GT] = ACTIONS(3061), + [anon_sym_GT_EQ] = ACTIONS(3063), + [anon_sym_EQ_GT] = ACTIONS(3063), + [anon_sym_QMARK_QMARK] = ACTIONS(3063), + [anon_sym_EQ] = ACTIONS(3061), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3063), + [anon_sym_null] = ACTIONS(3061), + [anon_sym_macro] = ACTIONS(3061), + [anon_sym_abstract] = ACTIONS(3061), + [anon_sym_static] = ACTIONS(3061), + [anon_sym_public] = ACTIONS(3061), + [anon_sym_private] = ACTIONS(3061), + [anon_sym_extern] = ACTIONS(3061), + [anon_sym_inline] = ACTIONS(3061), + [anon_sym_overload] = ACTIONS(3061), + [anon_sym_override] = ACTIONS(3061), + [anon_sym_final] = ACTIONS(3061), + [anon_sym_class] = ACTIONS(3061), + [anon_sym_interface] = ACTIONS(3061), + [anon_sym_enum] = ACTIONS(3061), + [anon_sym_typedef] = ACTIONS(3061), + [anon_sym_function] = ACTIONS(3061), + [anon_sym_var] = ACTIONS(3061), + [aux_sym_integer_token1] = ACTIONS(3061), + [aux_sym_integer_token2] = ACTIONS(3063), + [aux_sym_float_token1] = ACTIONS(3061), + [aux_sym_float_token2] = ACTIONS(3063), + [anon_sym_true] = ACTIONS(3061), + [anon_sym_false] = ACTIONS(3061), + [aux_sym_string_token1] = ACTIONS(3063), + [aux_sym_string_token3] = ACTIONS(3063), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [686] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2375), - [sym_integer] = STATE(2375), - [sym_float] = STATE(2375), - [sym_bool] = STATE(2375), - [sym_string] = STATE(1926), - [sym_null] = STATE(2375), - [sym_array] = STATE(2375), - [sym_map] = STATE(2375), - [sym_object] = STATE(2375), - [sym_pair] = STATE(2375), - [aux_sym_member_expression_repeat1] = STATE(690), - [sym_identifier] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(476), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_DOLLARtype] = ACTIONS(474), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(476), - [anon_sym_DASH_GT] = ACTIONS(474), - [anon_sym_new] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [sym__rangeOperator] = ACTIONS(474), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3067), + [sym_identifier] = ACTIONS(3065), + [anon_sym_POUND] = ACTIONS(3067), + [anon_sym_package] = ACTIONS(3065), + [anon_sym_import] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_using] = ACTIONS(3065), + [anon_sym_throw] = ACTIONS(3065), + [anon_sym_LPAREN] = ACTIONS(3067), + [anon_sym_switch] = ACTIONS(3065), + [anon_sym_LBRACE] = ACTIONS(3067), + [anon_sym_cast] = ACTIONS(3065), + [anon_sym_DOLLARtype] = ACTIONS(3067), + [anon_sym_for] = ACTIONS(3065), + [anon_sym_return] = ACTIONS(3065), + [anon_sym_untyped] = ACTIONS(3065), + [anon_sym_break] = ACTIONS(3065), + [anon_sym_continue] = ACTIONS(3065), + [anon_sym_LBRACK] = ACTIONS(3067), + [anon_sym_this] = ACTIONS(3065), + [anon_sym_AT] = ACTIONS(3065), + [anon_sym_AT_COLON] = ACTIONS(3067), + [anon_sym_try] = ACTIONS(3065), + [anon_sym_catch] = ACTIONS(3065), + [anon_sym_else] = ACTIONS(3065), + [anon_sym_if] = ACTIONS(3065), + [anon_sym_while] = ACTIONS(3065), + [anon_sym_do] = ACTIONS(3065), + [anon_sym_new] = ACTIONS(3065), + [anon_sym_TILDE] = ACTIONS(3067), + [anon_sym_BANG] = ACTIONS(3065), + [anon_sym_DASH] = ACTIONS(3065), + [anon_sym_PLUS_PLUS] = ACTIONS(3067), + [anon_sym_DASH_DASH] = ACTIONS(3067), + [anon_sym_PERCENT] = ACTIONS(3067), + [anon_sym_SLASH] = ACTIONS(3065), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_LT_LT] = ACTIONS(3067), + [anon_sym_GT_GT] = ACTIONS(3065), + [anon_sym_GT_GT_GT] = ACTIONS(3067), + [anon_sym_AMP] = ACTIONS(3065), + [anon_sym_PIPE] = ACTIONS(3065), + [anon_sym_CARET] = ACTIONS(3067), + [anon_sym_AMP_AMP] = ACTIONS(3067), + [anon_sym_PIPE_PIPE] = ACTIONS(3067), + [anon_sym_EQ_EQ] = ACTIONS(3067), + [anon_sym_BANG_EQ] = ACTIONS(3067), + [anon_sym_LT] = ACTIONS(3065), + [anon_sym_LT_EQ] = ACTIONS(3067), + [anon_sym_GT] = ACTIONS(3065), + [anon_sym_GT_EQ] = ACTIONS(3067), + [anon_sym_EQ_GT] = ACTIONS(3067), + [anon_sym_QMARK_QMARK] = ACTIONS(3067), + [anon_sym_EQ] = ACTIONS(3065), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3067), + [anon_sym_null] = ACTIONS(3065), + [anon_sym_macro] = ACTIONS(3065), + [anon_sym_abstract] = ACTIONS(3065), + [anon_sym_static] = ACTIONS(3065), + [anon_sym_public] = ACTIONS(3065), + [anon_sym_private] = ACTIONS(3065), + [anon_sym_extern] = ACTIONS(3065), + [anon_sym_inline] = ACTIONS(3065), + [anon_sym_overload] = ACTIONS(3065), + [anon_sym_override] = ACTIONS(3065), + [anon_sym_final] = ACTIONS(3065), + [anon_sym_class] = ACTIONS(3065), + [anon_sym_interface] = ACTIONS(3065), + [anon_sym_enum] = ACTIONS(3065), + [anon_sym_typedef] = ACTIONS(3065), + [anon_sym_function] = ACTIONS(3065), + [anon_sym_var] = ACTIONS(3065), + [aux_sym_integer_token1] = ACTIONS(3065), + [aux_sym_integer_token2] = ACTIONS(3067), + [aux_sym_float_token1] = ACTIONS(3065), + [aux_sym_float_token2] = ACTIONS(3067), + [anon_sym_true] = ACTIONS(3065), + [anon_sym_false] = ACTIONS(3065), + [aux_sym_string_token1] = ACTIONS(3067), + [aux_sym_string_token3] = ACTIONS(3067), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [687] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2375), - [sym_integer] = STATE(2375), - [sym_float] = STATE(2375), - [sym_bool] = STATE(2375), - [sym_string] = STATE(1926), - [sym_null] = STATE(2375), - [sym_array] = STATE(2375), - [sym_map] = STATE(2375), - [sym_object] = STATE(2375), - [sym_pair] = STATE(2375), - [aux_sym_member_expression_repeat1] = STATE(690), - [sym_identifier] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(470), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_DOLLARtype] = ACTIONS(466), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(466), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK_QMARK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(466), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3071), + [sym_identifier] = ACTIONS(3069), + [anon_sym_POUND] = ACTIONS(3071), + [anon_sym_package] = ACTIONS(3069), + [anon_sym_import] = ACTIONS(3069), + [anon_sym_STAR] = ACTIONS(3071), + [anon_sym_using] = ACTIONS(3069), + [anon_sym_throw] = ACTIONS(3069), + [anon_sym_LPAREN] = ACTIONS(3071), + [anon_sym_switch] = ACTIONS(3069), + [anon_sym_LBRACE] = ACTIONS(3071), + [anon_sym_cast] = ACTIONS(3069), + [anon_sym_DOLLARtype] = ACTIONS(3071), + [anon_sym_for] = ACTIONS(3069), + [anon_sym_return] = ACTIONS(3069), + [anon_sym_untyped] = ACTIONS(3069), + [anon_sym_break] = ACTIONS(3069), + [anon_sym_continue] = ACTIONS(3069), + [anon_sym_LBRACK] = ACTIONS(3071), + [anon_sym_this] = ACTIONS(3069), + [anon_sym_AT] = ACTIONS(3069), + [anon_sym_AT_COLON] = ACTIONS(3071), + [anon_sym_try] = ACTIONS(3069), + [anon_sym_catch] = ACTIONS(3069), + [anon_sym_else] = ACTIONS(3069), + [anon_sym_if] = ACTIONS(3069), + [anon_sym_while] = ACTIONS(3069), + [anon_sym_do] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3069), + [anon_sym_TILDE] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3069), + [anon_sym_DASH] = ACTIONS(3069), + [anon_sym_PLUS_PLUS] = ACTIONS(3071), + [anon_sym_DASH_DASH] = ACTIONS(3071), + [anon_sym_PERCENT] = ACTIONS(3071), + [anon_sym_SLASH] = ACTIONS(3069), + [anon_sym_PLUS] = ACTIONS(3069), + [anon_sym_LT_LT] = ACTIONS(3071), + [anon_sym_GT_GT] = ACTIONS(3069), + [anon_sym_GT_GT_GT] = ACTIONS(3071), + [anon_sym_AMP] = ACTIONS(3069), + [anon_sym_PIPE] = ACTIONS(3069), + [anon_sym_CARET] = ACTIONS(3071), + [anon_sym_AMP_AMP] = ACTIONS(3071), + [anon_sym_PIPE_PIPE] = ACTIONS(3071), + [anon_sym_EQ_EQ] = ACTIONS(3071), + [anon_sym_BANG_EQ] = ACTIONS(3071), + [anon_sym_LT] = ACTIONS(3069), + [anon_sym_LT_EQ] = ACTIONS(3071), + [anon_sym_GT] = ACTIONS(3069), + [anon_sym_GT_EQ] = ACTIONS(3071), + [anon_sym_EQ_GT] = ACTIONS(3071), + [anon_sym_QMARK_QMARK] = ACTIONS(3071), + [anon_sym_EQ] = ACTIONS(3069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3071), + [anon_sym_null] = ACTIONS(3069), + [anon_sym_macro] = ACTIONS(3069), + [anon_sym_abstract] = ACTIONS(3069), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_extern] = ACTIONS(3069), + [anon_sym_inline] = ACTIONS(3069), + [anon_sym_overload] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_final] = ACTIONS(3069), + [anon_sym_class] = ACTIONS(3069), + [anon_sym_interface] = ACTIONS(3069), + [anon_sym_enum] = ACTIONS(3069), + [anon_sym_typedef] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3069), + [anon_sym_var] = ACTIONS(3069), + [aux_sym_integer_token1] = ACTIONS(3069), + [aux_sym_integer_token2] = ACTIONS(3071), + [aux_sym_float_token1] = ACTIONS(3069), + [aux_sym_float_token2] = ACTIONS(3071), + [anon_sym_true] = ACTIONS(3069), + [anon_sym_false] = ACTIONS(3069), + [aux_sym_string_token1] = ACTIONS(3071), + [aux_sym_string_token3] = ACTIONS(3071), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [688] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2375), - [sym_integer] = STATE(2375), - [sym_float] = STATE(2375), - [sym_bool] = STATE(2375), - [sym_string] = STATE(1926), - [sym_null] = STATE(2375), - [sym_array] = STATE(2375), - [sym_map] = STATE(2375), - [sym_object] = STATE(2375), - [sym_pair] = STATE(2375), - [aux_sym_member_expression_repeat1] = STATE(690), - [sym_identifier] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(524), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_DOLLARtype] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_untyped] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(524), - [anon_sym_DASH_GT] = ACTIONS(522), - [anon_sym_new] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(522), - [anon_sym_QMARK_QMARK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [sym__rangeOperator] = ACTIONS(522), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3075), + [sym_identifier] = ACTIONS(3073), + [anon_sym_POUND] = ACTIONS(3075), + [anon_sym_package] = ACTIONS(3073), + [anon_sym_import] = ACTIONS(3073), + [anon_sym_STAR] = ACTIONS(3075), + [anon_sym_using] = ACTIONS(3073), + [anon_sym_throw] = ACTIONS(3073), + [anon_sym_LPAREN] = ACTIONS(3075), + [anon_sym_switch] = ACTIONS(3073), + [anon_sym_LBRACE] = ACTIONS(3075), + [anon_sym_cast] = ACTIONS(3073), + [anon_sym_DOLLARtype] = ACTIONS(3075), + [anon_sym_for] = ACTIONS(3073), + [anon_sym_return] = ACTIONS(3073), + [anon_sym_untyped] = ACTIONS(3073), + [anon_sym_break] = ACTIONS(3073), + [anon_sym_continue] = ACTIONS(3073), + [anon_sym_LBRACK] = ACTIONS(3075), + [anon_sym_this] = ACTIONS(3073), + [anon_sym_AT] = ACTIONS(3073), + [anon_sym_AT_COLON] = ACTIONS(3075), + [anon_sym_try] = ACTIONS(3073), + [anon_sym_catch] = ACTIONS(3073), + [anon_sym_else] = ACTIONS(3073), + [anon_sym_if] = ACTIONS(3073), + [anon_sym_while] = ACTIONS(3073), + [anon_sym_do] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3073), + [anon_sym_TILDE] = ACTIONS(3075), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_DASH] = ACTIONS(3073), + [anon_sym_PLUS_PLUS] = ACTIONS(3075), + [anon_sym_DASH_DASH] = ACTIONS(3075), + [anon_sym_PERCENT] = ACTIONS(3075), + [anon_sym_SLASH] = ACTIONS(3073), + [anon_sym_PLUS] = ACTIONS(3073), + [anon_sym_LT_LT] = ACTIONS(3075), + [anon_sym_GT_GT] = ACTIONS(3073), + [anon_sym_GT_GT_GT] = ACTIONS(3075), + [anon_sym_AMP] = ACTIONS(3073), + [anon_sym_PIPE] = ACTIONS(3073), + [anon_sym_CARET] = ACTIONS(3075), + [anon_sym_AMP_AMP] = ACTIONS(3075), + [anon_sym_PIPE_PIPE] = ACTIONS(3075), + [anon_sym_EQ_EQ] = ACTIONS(3075), + [anon_sym_BANG_EQ] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(3073), + [anon_sym_LT_EQ] = ACTIONS(3075), + [anon_sym_GT] = ACTIONS(3073), + [anon_sym_GT_EQ] = ACTIONS(3075), + [anon_sym_EQ_GT] = ACTIONS(3075), + [anon_sym_QMARK_QMARK] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(3073), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3075), + [anon_sym_null] = ACTIONS(3073), + [anon_sym_macro] = ACTIONS(3073), + [anon_sym_abstract] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3073), + [anon_sym_public] = ACTIONS(3073), + [anon_sym_private] = ACTIONS(3073), + [anon_sym_extern] = ACTIONS(3073), + [anon_sym_inline] = ACTIONS(3073), + [anon_sym_overload] = ACTIONS(3073), + [anon_sym_override] = ACTIONS(3073), + [anon_sym_final] = ACTIONS(3073), + [anon_sym_class] = ACTIONS(3073), + [anon_sym_interface] = ACTIONS(3073), + [anon_sym_enum] = ACTIONS(3073), + [anon_sym_typedef] = ACTIONS(3073), + [anon_sym_function] = ACTIONS(3073), + [anon_sym_var] = ACTIONS(3073), + [aux_sym_integer_token1] = ACTIONS(3073), + [aux_sym_integer_token2] = ACTIONS(3075), + [aux_sym_float_token1] = ACTIONS(3073), + [aux_sym_float_token2] = ACTIONS(3075), + [anon_sym_true] = ACTIONS(3073), + [anon_sym_false] = ACTIONS(3073), + [aux_sym_string_token1] = ACTIONS(3075), + [aux_sym_string_token3] = ACTIONS(3075), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [689] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2375), - [sym_integer] = STATE(2375), - [sym_float] = STATE(2375), - [sym_bool] = STATE(2375), - [sym_string] = STATE(1926), - [sym_null] = STATE(2375), - [sym_array] = STATE(2375), - [sym_map] = STATE(2375), - [sym_object] = STATE(2375), - [sym_pair] = STATE(2375), - [aux_sym_member_expression_repeat1] = STATE(690), - [sym_identifier] = ACTIONS(2376), - [anon_sym_DOT] = ACTIONS(520), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_DOLLARtype] = ACTIONS(518), - [anon_sym_return] = ACTIONS(520), - [anon_sym_untyped] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(412), - [anon_sym_QMARK] = ACTIONS(520), - [anon_sym_DASH_GT] = ACTIONS(518), - [anon_sym_new] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [sym__rangeOperator] = ACTIONS(518), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3079), + [sym_identifier] = ACTIONS(3077), + [anon_sym_POUND] = ACTIONS(3079), + [anon_sym_package] = ACTIONS(3077), + [anon_sym_import] = ACTIONS(3077), + [anon_sym_STAR] = ACTIONS(3079), + [anon_sym_using] = ACTIONS(3077), + [anon_sym_throw] = ACTIONS(3077), + [anon_sym_LPAREN] = ACTIONS(3079), + [anon_sym_switch] = ACTIONS(3077), + [anon_sym_LBRACE] = ACTIONS(3079), + [anon_sym_cast] = ACTIONS(3077), + [anon_sym_DOLLARtype] = ACTIONS(3079), + [anon_sym_for] = ACTIONS(3077), + [anon_sym_return] = ACTIONS(3077), + [anon_sym_untyped] = ACTIONS(3077), + [anon_sym_break] = ACTIONS(3077), + [anon_sym_continue] = ACTIONS(3077), + [anon_sym_LBRACK] = ACTIONS(3079), + [anon_sym_this] = ACTIONS(3077), + [anon_sym_AT] = ACTIONS(3077), + [anon_sym_AT_COLON] = ACTIONS(3079), + [anon_sym_try] = ACTIONS(3077), + [anon_sym_catch] = ACTIONS(3077), + [anon_sym_else] = ACTIONS(3077), + [anon_sym_if] = ACTIONS(3077), + [anon_sym_while] = ACTIONS(3077), + [anon_sym_do] = ACTIONS(3077), + [anon_sym_new] = ACTIONS(3077), + [anon_sym_TILDE] = ACTIONS(3079), + [anon_sym_BANG] = ACTIONS(3077), + [anon_sym_DASH] = ACTIONS(3077), + [anon_sym_PLUS_PLUS] = ACTIONS(3079), + [anon_sym_DASH_DASH] = ACTIONS(3079), + [anon_sym_PERCENT] = ACTIONS(3079), + [anon_sym_SLASH] = ACTIONS(3077), + [anon_sym_PLUS] = ACTIONS(3077), + [anon_sym_LT_LT] = ACTIONS(3079), + [anon_sym_GT_GT] = ACTIONS(3077), + [anon_sym_GT_GT_GT] = ACTIONS(3079), + [anon_sym_AMP] = ACTIONS(3077), + [anon_sym_PIPE] = ACTIONS(3077), + [anon_sym_CARET] = ACTIONS(3079), + [anon_sym_AMP_AMP] = ACTIONS(3079), + [anon_sym_PIPE_PIPE] = ACTIONS(3079), + [anon_sym_EQ_EQ] = ACTIONS(3079), + [anon_sym_BANG_EQ] = ACTIONS(3079), + [anon_sym_LT] = ACTIONS(3077), + [anon_sym_LT_EQ] = ACTIONS(3079), + [anon_sym_GT] = ACTIONS(3077), + [anon_sym_GT_EQ] = ACTIONS(3079), + [anon_sym_EQ_GT] = ACTIONS(3079), + [anon_sym_QMARK_QMARK] = ACTIONS(3079), + [anon_sym_EQ] = ACTIONS(3077), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3079), + [anon_sym_null] = ACTIONS(3077), + [anon_sym_macro] = ACTIONS(3077), + [anon_sym_abstract] = ACTIONS(3077), + [anon_sym_static] = ACTIONS(3077), + [anon_sym_public] = ACTIONS(3077), + [anon_sym_private] = ACTIONS(3077), + [anon_sym_extern] = ACTIONS(3077), + [anon_sym_inline] = ACTIONS(3077), + [anon_sym_overload] = ACTIONS(3077), + [anon_sym_override] = ACTIONS(3077), + [anon_sym_final] = ACTIONS(3077), + [anon_sym_class] = ACTIONS(3077), + [anon_sym_interface] = ACTIONS(3077), + [anon_sym_enum] = ACTIONS(3077), + [anon_sym_typedef] = ACTIONS(3077), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_var] = ACTIONS(3077), + [aux_sym_integer_token1] = ACTIONS(3077), + [aux_sym_integer_token2] = ACTIONS(3079), + [aux_sym_float_token1] = ACTIONS(3077), + [aux_sym_float_token2] = ACTIONS(3079), + [anon_sym_true] = ACTIONS(3077), + [anon_sym_false] = ACTIONS(3077), + [aux_sym_string_token1] = ACTIONS(3079), + [aux_sym_string_token3] = ACTIONS(3079), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [690] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2375), - [sym_integer] = STATE(2375), - [sym_float] = STATE(2375), - [sym_bool] = STATE(2375), - [sym_string] = STATE(1926), - [sym_null] = STATE(2375), - [sym_array] = STATE(2375), - [sym_map] = STATE(2375), - [sym_object] = STATE(2375), - [sym_pair] = STATE(2375), - [aux_sym_member_expression_repeat1] = STATE(690), - [sym_identifier] = ACTIONS(2378), - [anon_sym_DOT] = ACTIONS(483), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_DOLLARtype] = ACTIONS(478), - [anon_sym_return] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_this] = ACTIONS(2381), - [anon_sym_QMARK] = ACTIONS(483), - [anon_sym_DASH_GT] = ACTIONS(478), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK_QMARK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(478), - [anon_sym_null] = ACTIONS(494), - [aux_sym_integer_token1] = ACTIONS(497), - [aux_sym_integer_token2] = ACTIONS(500), - [aux_sym_float_token1] = ACTIONS(503), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [aux_sym_string_token1] = ACTIONS(512), - [aux_sym_string_token3] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(1566), + [sym_identifier] = ACTIONS(1564), + [anon_sym_POUND] = ACTIONS(1566), + [anon_sym_package] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(1566), + [anon_sym_using] = ACTIONS(1564), + [anon_sym_throw] = ACTIONS(1564), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1566), + [anon_sym_for] = ACTIONS(1564), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_untyped] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_this] = ACTIONS(1564), + [anon_sym_AT] = ACTIONS(1564), + [anon_sym_AT_COLON] = ACTIONS(1566), + [anon_sym_try] = ACTIONS(1564), + [anon_sym_catch] = ACTIONS(1564), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_if] = ACTIONS(1564), + [anon_sym_while] = ACTIONS(1564), + [anon_sym_do] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1564), + [anon_sym_DASH] = ACTIONS(1564), + [anon_sym_PLUS_PLUS] = ACTIONS(1566), + [anon_sym_DASH_DASH] = ACTIONS(1566), + [anon_sym_PERCENT] = ACTIONS(1566), + [anon_sym_SLASH] = ACTIONS(1564), + [anon_sym_PLUS] = ACTIONS(1564), + [anon_sym_LT_LT] = ACTIONS(1566), + [anon_sym_GT_GT] = ACTIONS(1564), + [anon_sym_GT_GT_GT] = ACTIONS(1566), + [anon_sym_AMP] = ACTIONS(1564), + [anon_sym_PIPE] = ACTIONS(1564), + [anon_sym_CARET] = ACTIONS(1566), + [anon_sym_AMP_AMP] = ACTIONS(1566), + [anon_sym_PIPE_PIPE] = ACTIONS(1566), + [anon_sym_EQ_EQ] = ACTIONS(1566), + [anon_sym_BANG_EQ] = ACTIONS(1566), + [anon_sym_LT] = ACTIONS(1564), + [anon_sym_LT_EQ] = ACTIONS(1566), + [anon_sym_GT] = ACTIONS(1564), + [anon_sym_GT_EQ] = ACTIONS(1566), + [anon_sym_EQ_GT] = ACTIONS(1566), + [anon_sym_QMARK_QMARK] = ACTIONS(1566), + [anon_sym_EQ] = ACTIONS(1564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1566), + [anon_sym_null] = ACTIONS(1564), + [anon_sym_macro] = ACTIONS(1564), + [anon_sym_abstract] = ACTIONS(1564), + [anon_sym_static] = ACTIONS(1564), + [anon_sym_public] = ACTIONS(1564), + [anon_sym_private] = ACTIONS(1564), + [anon_sym_extern] = ACTIONS(1564), + [anon_sym_inline] = ACTIONS(1564), + [anon_sym_overload] = ACTIONS(1564), + [anon_sym_override] = ACTIONS(1564), + [anon_sym_final] = ACTIONS(1564), + [anon_sym_class] = ACTIONS(1564), + [anon_sym_interface] = ACTIONS(1564), + [anon_sym_enum] = ACTIONS(1564), + [anon_sym_typedef] = ACTIONS(1564), + [anon_sym_function] = ACTIONS(1564), + [anon_sym_var] = ACTIONS(1564), + [aux_sym_integer_token1] = ACTIONS(1564), + [aux_sym_integer_token2] = ACTIONS(1566), + [aux_sym_float_token1] = ACTIONS(1564), + [aux_sym_float_token2] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [aux_sym_string_token1] = ACTIONS(1566), + [aux_sym_string_token3] = ACTIONS(1566), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [691] = { - [sym__rhs_expression] = STATE(770), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(770), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [sym_identifier] = ACTIONS(2384), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2391), - [anon_sym_cast] = ACTIONS(2389), - [anon_sym_DOLLARtype] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_untyped] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2394), - [anon_sym_this] = ACTIONS(2397), - [anon_sym_new] = ACTIONS(2400), - [anon_sym_TILDE] = ACTIONS(2387), - [anon_sym_BANG] = ACTIONS(2389), - [anon_sym_DASH] = ACTIONS(2389), - [anon_sym_PLUS_PLUS] = ACTIONS(2387), - [anon_sym_DASH_DASH] = ACTIONS(2387), - [anon_sym_PERCENT] = ACTIONS(2387), - [anon_sym_STAR] = ACTIONS(2387), - [anon_sym_SLASH] = ACTIONS(2389), - [anon_sym_PLUS] = ACTIONS(2389), - [anon_sym_LT_LT] = ACTIONS(2387), - [anon_sym_GT_GT] = ACTIONS(2389), - [anon_sym_GT_GT_GT] = ACTIONS(2387), - [anon_sym_AMP] = ACTIONS(2389), - [anon_sym_PIPE] = ACTIONS(2389), - [anon_sym_CARET] = ACTIONS(2387), - [anon_sym_AMP_AMP] = ACTIONS(2387), - [anon_sym_PIPE_PIPE] = ACTIONS(2387), - [anon_sym_EQ_EQ] = ACTIONS(2387), - [anon_sym_BANG_EQ] = ACTIONS(2387), - [anon_sym_LT] = ACTIONS(2389), - [anon_sym_LT_EQ] = ACTIONS(2387), - [anon_sym_GT] = ACTIONS(2389), - [anon_sym_GT_EQ] = ACTIONS(2387), - [anon_sym_EQ_GT] = ACTIONS(2387), - [anon_sym_QMARK_QMARK] = ACTIONS(2387), - [anon_sym_EQ] = ACTIONS(2389), - [sym__rangeOperator] = ACTIONS(2387), - [anon_sym_null] = ACTIONS(2403), - [aux_sym_integer_token1] = ACTIONS(2406), - [aux_sym_integer_token2] = ACTIONS(2409), - [aux_sym_float_token1] = ACTIONS(2412), - [aux_sym_float_token2] = ACTIONS(2415), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [aux_sym_string_token1] = ACTIONS(2421), - [aux_sym_string_token3] = ACTIONS(2424), + [ts_builtin_sym_end] = ACTIONS(3083), + [sym_identifier] = ACTIONS(3081), + [anon_sym_POUND] = ACTIONS(3083), + [anon_sym_package] = ACTIONS(3081), + [anon_sym_import] = ACTIONS(3081), + [anon_sym_STAR] = ACTIONS(3083), + [anon_sym_using] = ACTIONS(3081), + [anon_sym_throw] = ACTIONS(3081), + [anon_sym_LPAREN] = ACTIONS(3083), + [anon_sym_switch] = ACTIONS(3081), + [anon_sym_LBRACE] = ACTIONS(3083), + [anon_sym_cast] = ACTIONS(3081), + [anon_sym_DOLLARtype] = ACTIONS(3083), + [anon_sym_for] = ACTIONS(3081), + [anon_sym_return] = ACTIONS(3081), + [anon_sym_untyped] = ACTIONS(3081), + [anon_sym_break] = ACTIONS(3081), + [anon_sym_continue] = ACTIONS(3081), + [anon_sym_LBRACK] = ACTIONS(3083), + [anon_sym_this] = ACTIONS(3081), + [anon_sym_AT] = ACTIONS(3081), + [anon_sym_AT_COLON] = ACTIONS(3083), + [anon_sym_try] = ACTIONS(3081), + [anon_sym_catch] = ACTIONS(3081), + [anon_sym_else] = ACTIONS(3081), + [anon_sym_if] = ACTIONS(3081), + [anon_sym_while] = ACTIONS(3081), + [anon_sym_do] = ACTIONS(3081), + [anon_sym_new] = ACTIONS(3081), + [anon_sym_TILDE] = ACTIONS(3083), + [anon_sym_BANG] = ACTIONS(3081), + [anon_sym_DASH] = ACTIONS(3081), + [anon_sym_PLUS_PLUS] = ACTIONS(3083), + [anon_sym_DASH_DASH] = ACTIONS(3083), + [anon_sym_PERCENT] = ACTIONS(3083), + [anon_sym_SLASH] = ACTIONS(3081), + [anon_sym_PLUS] = ACTIONS(3081), + [anon_sym_LT_LT] = ACTIONS(3083), + [anon_sym_GT_GT] = ACTIONS(3081), + [anon_sym_GT_GT_GT] = ACTIONS(3083), + [anon_sym_AMP] = ACTIONS(3081), + [anon_sym_PIPE] = ACTIONS(3081), + [anon_sym_CARET] = ACTIONS(3083), + [anon_sym_AMP_AMP] = ACTIONS(3083), + [anon_sym_PIPE_PIPE] = ACTIONS(3083), + [anon_sym_EQ_EQ] = ACTIONS(3083), + [anon_sym_BANG_EQ] = ACTIONS(3083), + [anon_sym_LT] = ACTIONS(3081), + [anon_sym_LT_EQ] = ACTIONS(3083), + [anon_sym_GT] = ACTIONS(3081), + [anon_sym_GT_EQ] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(3083), + [anon_sym_QMARK_QMARK] = ACTIONS(3083), + [anon_sym_EQ] = ACTIONS(3081), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3083), + [anon_sym_null] = ACTIONS(3081), + [anon_sym_macro] = ACTIONS(3081), + [anon_sym_abstract] = ACTIONS(3081), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_extern] = ACTIONS(3081), + [anon_sym_inline] = ACTIONS(3081), + [anon_sym_overload] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_final] = ACTIONS(3081), + [anon_sym_class] = ACTIONS(3081), + [anon_sym_interface] = ACTIONS(3081), + [anon_sym_enum] = ACTIONS(3081), + [anon_sym_typedef] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3081), + [anon_sym_var] = ACTIONS(3081), + [aux_sym_integer_token1] = ACTIONS(3081), + [aux_sym_integer_token2] = ACTIONS(3083), + [aux_sym_float_token1] = ACTIONS(3081), + [aux_sym_float_token2] = ACTIONS(3083), + [anon_sym_true] = ACTIONS(3081), + [anon_sym_false] = ACTIONS(3081), + [aux_sym_string_token1] = ACTIONS(3083), + [aux_sym_string_token3] = ACTIONS(3083), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [692] = { - [sym__rhs_expression] = STATE(214), - [sym_member_expression] = STATE(201), - [sym__lhs_expression] = STATE(2148), - [sym__call] = STATE(226), - [sym__constructor_call] = STATE(224), - [sym_call_expression] = STATE(214), - [sym__literal] = STATE(769), - [sym_integer] = STATE(769), - [sym_float] = STATE(769), - [sym_bool] = STATE(769), - [sym_string] = STATE(765), - [sym_null] = STATE(769), - [sym_array] = STATE(769), - [sym_map] = STATE(769), - [sym_object] = STATE(769), - [sym_pair] = STATE(769), - [sym_identifier] = ACTIONS(526), - [anon_sym_LPAREN] = ACTIONS(528), - [anon_sym_RPAREN] = ACTIONS(528), - [anon_sym_switch] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(528), - [anon_sym_cast] = ACTIONS(526), - [anon_sym_DOLLARtype] = ACTIONS(528), - [anon_sym_return] = ACTIONS(526), - [anon_sym_untyped] = ACTIONS(526), - [anon_sym_break] = ACTIONS(526), - [anon_sym_continue] = ACTIONS(526), - [anon_sym_LBRACK] = ACTIONS(528), - [anon_sym_this] = ACTIONS(526), - [anon_sym_new] = ACTIONS(526), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(526), - [aux_sym_integer_token1] = ACTIONS(526), - [aux_sym_integer_token2] = ACTIONS(528), - [aux_sym_float_token1] = ACTIONS(526), - [aux_sym_float_token2] = ACTIONS(528), - [anon_sym_true] = ACTIONS(526), - [anon_sym_false] = ACTIONS(526), - [aux_sym_string_token1] = ACTIONS(528), - [aux_sym_string_token3] = ACTIONS(528), + [ts_builtin_sym_end] = ACTIONS(3087), + [sym_identifier] = ACTIONS(3085), + [anon_sym_POUND] = ACTIONS(3087), + [anon_sym_package] = ACTIONS(3085), + [anon_sym_import] = ACTIONS(3085), + [anon_sym_STAR] = ACTIONS(3087), + [anon_sym_using] = ACTIONS(3085), + [anon_sym_throw] = ACTIONS(3085), + [anon_sym_LPAREN] = ACTIONS(3087), + [anon_sym_switch] = ACTIONS(3085), + [anon_sym_LBRACE] = ACTIONS(3087), + [anon_sym_cast] = ACTIONS(3085), + [anon_sym_DOLLARtype] = ACTIONS(3087), + [anon_sym_for] = ACTIONS(3085), + [anon_sym_return] = ACTIONS(3085), + [anon_sym_untyped] = ACTIONS(3085), + [anon_sym_break] = ACTIONS(3085), + [anon_sym_continue] = ACTIONS(3085), + [anon_sym_LBRACK] = ACTIONS(3087), + [anon_sym_this] = ACTIONS(3085), + [anon_sym_AT] = ACTIONS(3085), + [anon_sym_AT_COLON] = ACTIONS(3087), + [anon_sym_try] = ACTIONS(3085), + [anon_sym_catch] = ACTIONS(3085), + [anon_sym_else] = ACTIONS(3085), + [anon_sym_if] = ACTIONS(3085), + [anon_sym_while] = ACTIONS(3085), + [anon_sym_do] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3085), + [anon_sym_TILDE] = ACTIONS(3087), + [anon_sym_BANG] = ACTIONS(3085), + [anon_sym_DASH] = ACTIONS(3085), + [anon_sym_PLUS_PLUS] = ACTIONS(3087), + [anon_sym_DASH_DASH] = ACTIONS(3087), + [anon_sym_PERCENT] = ACTIONS(3087), + [anon_sym_SLASH] = ACTIONS(3085), + [anon_sym_PLUS] = ACTIONS(3085), + [anon_sym_LT_LT] = ACTIONS(3087), + [anon_sym_GT_GT] = ACTIONS(3085), + [anon_sym_GT_GT_GT] = ACTIONS(3087), + [anon_sym_AMP] = ACTIONS(3085), + [anon_sym_PIPE] = ACTIONS(3085), + [anon_sym_CARET] = ACTIONS(3087), + [anon_sym_AMP_AMP] = ACTIONS(3087), + [anon_sym_PIPE_PIPE] = ACTIONS(3087), + [anon_sym_EQ_EQ] = ACTIONS(3087), + [anon_sym_BANG_EQ] = ACTIONS(3087), + [anon_sym_LT] = ACTIONS(3085), + [anon_sym_LT_EQ] = ACTIONS(3087), + [anon_sym_GT] = ACTIONS(3085), + [anon_sym_GT_EQ] = ACTIONS(3087), + [anon_sym_EQ_GT] = ACTIONS(3087), + [anon_sym_QMARK_QMARK] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(3085), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3087), + [anon_sym_null] = ACTIONS(3085), + [anon_sym_macro] = ACTIONS(3085), + [anon_sym_abstract] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3085), + [anon_sym_public] = ACTIONS(3085), + [anon_sym_private] = ACTIONS(3085), + [anon_sym_extern] = ACTIONS(3085), + [anon_sym_inline] = ACTIONS(3085), + [anon_sym_overload] = ACTIONS(3085), + [anon_sym_override] = ACTIONS(3085), + [anon_sym_final] = ACTIONS(3085), + [anon_sym_class] = ACTIONS(3085), + [anon_sym_interface] = ACTIONS(3085), + [anon_sym_enum] = ACTIONS(3085), + [anon_sym_typedef] = ACTIONS(3085), + [anon_sym_function] = ACTIONS(3085), + [anon_sym_var] = ACTIONS(3085), + [aux_sym_integer_token1] = ACTIONS(3085), + [aux_sym_integer_token2] = ACTIONS(3087), + [aux_sym_float_token1] = ACTIONS(3085), + [aux_sym_float_token2] = ACTIONS(3087), + [anon_sym_true] = ACTIONS(3085), + [anon_sym_false] = ACTIONS(3085), + [aux_sym_string_token1] = ACTIONS(3087), + [aux_sym_string_token3] = ACTIONS(3087), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [693] = { - [sym_operator] = STATE(1594), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(693), - [sym_identifier] = ACTIONS(592), - [anon_sym_DOT] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(599), - [sym__rangeOperator] = ACTIONS(596), - [anon_sym_null] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), + [ts_builtin_sym_end] = ACTIONS(3091), + [sym_identifier] = ACTIONS(3089), + [anon_sym_POUND] = ACTIONS(3091), + [anon_sym_package] = ACTIONS(3089), + [anon_sym_import] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(3091), + [anon_sym_using] = ACTIONS(3089), + [anon_sym_throw] = ACTIONS(3089), + [anon_sym_LPAREN] = ACTIONS(3091), + [anon_sym_switch] = ACTIONS(3089), + [anon_sym_LBRACE] = ACTIONS(3091), + [anon_sym_cast] = ACTIONS(3089), + [anon_sym_DOLLARtype] = ACTIONS(3091), + [anon_sym_for] = ACTIONS(3089), + [anon_sym_return] = ACTIONS(3089), + [anon_sym_untyped] = ACTIONS(3089), + [anon_sym_break] = ACTIONS(3089), + [anon_sym_continue] = ACTIONS(3089), + [anon_sym_LBRACK] = ACTIONS(3091), + [anon_sym_this] = ACTIONS(3089), + [anon_sym_AT] = ACTIONS(3089), + [anon_sym_AT_COLON] = ACTIONS(3091), + [anon_sym_try] = ACTIONS(3089), + [anon_sym_catch] = ACTIONS(3089), + [anon_sym_else] = ACTIONS(3089), + [anon_sym_if] = ACTIONS(3089), + [anon_sym_while] = ACTIONS(3089), + [anon_sym_do] = ACTIONS(3089), + [anon_sym_new] = ACTIONS(3089), + [anon_sym_TILDE] = ACTIONS(3091), + [anon_sym_BANG] = ACTIONS(3089), + [anon_sym_DASH] = ACTIONS(3089), + [anon_sym_PLUS_PLUS] = ACTIONS(3091), + [anon_sym_DASH_DASH] = ACTIONS(3091), + [anon_sym_PERCENT] = ACTIONS(3091), + [anon_sym_SLASH] = ACTIONS(3089), + [anon_sym_PLUS] = ACTIONS(3089), + [anon_sym_LT_LT] = ACTIONS(3091), + [anon_sym_GT_GT] = ACTIONS(3089), + [anon_sym_GT_GT_GT] = ACTIONS(3091), + [anon_sym_AMP] = ACTIONS(3089), + [anon_sym_PIPE] = ACTIONS(3089), + [anon_sym_CARET] = ACTIONS(3091), + [anon_sym_AMP_AMP] = ACTIONS(3091), + [anon_sym_PIPE_PIPE] = ACTIONS(3091), + [anon_sym_EQ_EQ] = ACTIONS(3091), + [anon_sym_BANG_EQ] = ACTIONS(3091), + [anon_sym_LT] = ACTIONS(3089), + [anon_sym_LT_EQ] = ACTIONS(3091), + [anon_sym_GT] = ACTIONS(3089), + [anon_sym_GT_EQ] = ACTIONS(3091), + [anon_sym_EQ_GT] = ACTIONS(3091), + [anon_sym_QMARK_QMARK] = ACTIONS(3091), + [anon_sym_EQ] = ACTIONS(3089), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3091), + [anon_sym_null] = ACTIONS(3089), + [anon_sym_macro] = ACTIONS(3089), + [anon_sym_abstract] = ACTIONS(3089), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_public] = ACTIONS(3089), + [anon_sym_private] = ACTIONS(3089), + [anon_sym_extern] = ACTIONS(3089), + [anon_sym_inline] = ACTIONS(3089), + [anon_sym_overload] = ACTIONS(3089), + [anon_sym_override] = ACTIONS(3089), + [anon_sym_final] = ACTIONS(3089), + [anon_sym_class] = ACTIONS(3089), + [anon_sym_interface] = ACTIONS(3089), + [anon_sym_enum] = ACTIONS(3089), + [anon_sym_typedef] = ACTIONS(3089), + [anon_sym_function] = ACTIONS(3089), + [anon_sym_var] = ACTIONS(3089), + [aux_sym_integer_token1] = ACTIONS(3089), + [aux_sym_integer_token2] = ACTIONS(3091), + [aux_sym_float_token1] = ACTIONS(3089), + [aux_sym_float_token2] = ACTIONS(3091), + [anon_sym_true] = ACTIONS(3089), + [anon_sym_false] = ACTIONS(3089), + [aux_sym_string_token1] = ACTIONS(3091), + [aux_sym_string_token3] = ACTIONS(3091), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [694] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2386), - [sym_integer] = STATE(2386), - [sym_float] = STATE(2386), - [sym_bool] = STATE(2386), - [sym_string] = STATE(1926), - [sym_null] = STATE(2386), - [sym_array] = STATE(2386), - [sym_map] = STATE(2386), - [sym_object] = STATE(2386), - [sym_pair] = STATE(2386), - [aux_sym_member_expression_repeat1] = STATE(698), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(466), - [anon_sym_RPAREN] = ACTIONS(466), - [anon_sym_switch] = ACTIONS(470), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(470), - [anon_sym_COMMA] = ACTIONS(466), - [anon_sym_DOLLARtype] = ACTIONS(466), - [anon_sym_return] = ACTIONS(470), - [anon_sym_untyped] = ACTIONS(470), - [anon_sym_break] = ACTIONS(470), - [anon_sym_continue] = ACTIONS(470), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(466), - [anon_sym_new] = ACTIONS(470), - [anon_sym_TILDE] = ACTIONS(466), - [anon_sym_BANG] = ACTIONS(470), - [anon_sym_DASH] = ACTIONS(470), - [anon_sym_PLUS_PLUS] = ACTIONS(466), - [anon_sym_DASH_DASH] = ACTIONS(466), - [anon_sym_PERCENT] = ACTIONS(466), - [anon_sym_STAR] = ACTIONS(466), - [anon_sym_SLASH] = ACTIONS(470), - [anon_sym_PLUS] = ACTIONS(470), - [anon_sym_LT_LT] = ACTIONS(466), - [anon_sym_GT_GT] = ACTIONS(470), - [anon_sym_GT_GT_GT] = ACTIONS(466), - [anon_sym_AMP] = ACTIONS(470), - [anon_sym_PIPE] = ACTIONS(470), - [anon_sym_CARET] = ACTIONS(466), - [anon_sym_AMP_AMP] = ACTIONS(466), - [anon_sym_PIPE_PIPE] = ACTIONS(466), - [anon_sym_EQ_EQ] = ACTIONS(466), - [anon_sym_BANG_EQ] = ACTIONS(466), - [anon_sym_LT] = ACTIONS(470), - [anon_sym_LT_EQ] = ACTIONS(466), - [anon_sym_GT] = ACTIONS(470), - [anon_sym_GT_EQ] = ACTIONS(466), - [anon_sym_EQ_GT] = ACTIONS(466), - [anon_sym_QMARK_QMARK] = ACTIONS(466), - [anon_sym_EQ] = ACTIONS(470), - [sym__rangeOperator] = ACTIONS(466), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3095), + [sym_identifier] = ACTIONS(3093), + [anon_sym_POUND] = ACTIONS(3095), + [anon_sym_package] = ACTIONS(3093), + [anon_sym_import] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(3095), + [anon_sym_using] = ACTIONS(3093), + [anon_sym_throw] = ACTIONS(3093), + [anon_sym_LPAREN] = ACTIONS(3095), + [anon_sym_switch] = ACTIONS(3093), + [anon_sym_LBRACE] = ACTIONS(3095), + [anon_sym_cast] = ACTIONS(3093), + [anon_sym_DOLLARtype] = ACTIONS(3095), + [anon_sym_for] = ACTIONS(3093), + [anon_sym_return] = ACTIONS(3093), + [anon_sym_untyped] = ACTIONS(3093), + [anon_sym_break] = ACTIONS(3093), + [anon_sym_continue] = ACTIONS(3093), + [anon_sym_LBRACK] = ACTIONS(3095), + [anon_sym_this] = ACTIONS(3093), + [anon_sym_AT] = ACTIONS(3093), + [anon_sym_AT_COLON] = ACTIONS(3095), + [anon_sym_try] = ACTIONS(3093), + [anon_sym_catch] = ACTIONS(3093), + [anon_sym_else] = ACTIONS(3093), + [anon_sym_if] = ACTIONS(3093), + [anon_sym_while] = ACTIONS(3093), + [anon_sym_do] = ACTIONS(3093), + [anon_sym_new] = ACTIONS(3093), + [anon_sym_TILDE] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(3093), + [anon_sym_DASH] = ACTIONS(3093), + [anon_sym_PLUS_PLUS] = ACTIONS(3095), + [anon_sym_DASH_DASH] = ACTIONS(3095), + [anon_sym_PERCENT] = ACTIONS(3095), + [anon_sym_SLASH] = ACTIONS(3093), + [anon_sym_PLUS] = ACTIONS(3093), + [anon_sym_LT_LT] = ACTIONS(3095), + [anon_sym_GT_GT] = ACTIONS(3093), + [anon_sym_GT_GT_GT] = ACTIONS(3095), + [anon_sym_AMP] = ACTIONS(3093), + [anon_sym_PIPE] = ACTIONS(3093), + [anon_sym_CARET] = ACTIONS(3095), + [anon_sym_AMP_AMP] = ACTIONS(3095), + [anon_sym_PIPE_PIPE] = ACTIONS(3095), + [anon_sym_EQ_EQ] = ACTIONS(3095), + [anon_sym_BANG_EQ] = ACTIONS(3095), + [anon_sym_LT] = ACTIONS(3093), + [anon_sym_LT_EQ] = ACTIONS(3095), + [anon_sym_GT] = ACTIONS(3093), + [anon_sym_GT_EQ] = ACTIONS(3095), + [anon_sym_EQ_GT] = ACTIONS(3095), + [anon_sym_QMARK_QMARK] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(3093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3095), + [anon_sym_null] = ACTIONS(3093), + [anon_sym_macro] = ACTIONS(3093), + [anon_sym_abstract] = ACTIONS(3093), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_public] = ACTIONS(3093), + [anon_sym_private] = ACTIONS(3093), + [anon_sym_extern] = ACTIONS(3093), + [anon_sym_inline] = ACTIONS(3093), + [anon_sym_overload] = ACTIONS(3093), + [anon_sym_override] = ACTIONS(3093), + [anon_sym_final] = ACTIONS(3093), + [anon_sym_class] = ACTIONS(3093), + [anon_sym_interface] = ACTIONS(3093), + [anon_sym_enum] = ACTIONS(3093), + [anon_sym_typedef] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3093), + [anon_sym_var] = ACTIONS(3093), + [aux_sym_integer_token1] = ACTIONS(3093), + [aux_sym_integer_token2] = ACTIONS(3095), + [aux_sym_float_token1] = ACTIONS(3093), + [aux_sym_float_token2] = ACTIONS(3095), + [anon_sym_true] = ACTIONS(3093), + [anon_sym_false] = ACTIONS(3093), + [aux_sym_string_token1] = ACTIONS(3095), + [aux_sym_string_token3] = ACTIONS(3095), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [695] = { - [sym_operator] = STATE(1594), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(693), - [sym_identifier] = ACTIONS(580), - [anon_sym_DOT] = ACTIONS(580), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_RPAREN] = ACTIONS(578), - [anon_sym_switch] = ACTIONS(580), - [anon_sym_LBRACE] = ACTIONS(578), - [anon_sym_cast] = ACTIONS(580), - [anon_sym_DOLLARtype] = ACTIONS(578), - [anon_sym_return] = ACTIONS(580), - [anon_sym_untyped] = ACTIONS(580), - [anon_sym_break] = ACTIONS(580), - [anon_sym_continue] = ACTIONS(580), - [anon_sym_LBRACK] = ACTIONS(578), - [anon_sym_this] = ACTIONS(580), - [anon_sym_QMARK] = ACTIONS(580), - [anon_sym_new] = ACTIONS(580), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(51), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(55), - [anon_sym_STAR] = ACTIONS(55), - [anon_sym_SLASH] = ACTIONS(57), - [anon_sym_PLUS] = ACTIONS(57), - [anon_sym_LT_LT] = ACTIONS(55), - [anon_sym_GT_GT] = ACTIONS(57), - [anon_sym_GT_GT_GT] = ACTIONS(55), - [anon_sym_AMP] = ACTIONS(57), - [anon_sym_PIPE] = ACTIONS(57), - [anon_sym_CARET] = ACTIONS(55), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(580), - [aux_sym_integer_token1] = ACTIONS(580), - [aux_sym_integer_token2] = ACTIONS(578), - [aux_sym_float_token1] = ACTIONS(580), - [aux_sym_float_token2] = ACTIONS(578), - [anon_sym_true] = ACTIONS(580), - [anon_sym_false] = ACTIONS(580), - [aux_sym_string_token1] = ACTIONS(578), - [aux_sym_string_token3] = ACTIONS(578), + [ts_builtin_sym_end] = ACTIONS(3099), + [sym_identifier] = ACTIONS(3097), + [anon_sym_POUND] = ACTIONS(3099), + [anon_sym_package] = ACTIONS(3097), + [anon_sym_import] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(3099), + [anon_sym_using] = ACTIONS(3097), + [anon_sym_throw] = ACTIONS(3097), + [anon_sym_LPAREN] = ACTIONS(3099), + [anon_sym_switch] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(3099), + [anon_sym_cast] = ACTIONS(3097), + [anon_sym_DOLLARtype] = ACTIONS(3099), + [anon_sym_for] = ACTIONS(3097), + [anon_sym_return] = ACTIONS(3097), + [anon_sym_untyped] = ACTIONS(3097), + [anon_sym_break] = ACTIONS(3097), + [anon_sym_continue] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_this] = ACTIONS(3097), + [anon_sym_AT] = ACTIONS(3097), + [anon_sym_AT_COLON] = ACTIONS(3099), + [anon_sym_try] = ACTIONS(3097), + [anon_sym_catch] = ACTIONS(3097), + [anon_sym_else] = ACTIONS(3097), + [anon_sym_if] = ACTIONS(3097), + [anon_sym_while] = ACTIONS(3097), + [anon_sym_do] = ACTIONS(3097), + [anon_sym_new] = ACTIONS(3097), + [anon_sym_TILDE] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(3097), + [anon_sym_DASH] = ACTIONS(3097), + [anon_sym_PLUS_PLUS] = ACTIONS(3099), + [anon_sym_DASH_DASH] = ACTIONS(3099), + [anon_sym_PERCENT] = ACTIONS(3099), + [anon_sym_SLASH] = ACTIONS(3097), + [anon_sym_PLUS] = ACTIONS(3097), + [anon_sym_LT_LT] = ACTIONS(3099), + [anon_sym_GT_GT] = ACTIONS(3097), + [anon_sym_GT_GT_GT] = ACTIONS(3099), + [anon_sym_AMP] = ACTIONS(3097), + [anon_sym_PIPE] = ACTIONS(3097), + [anon_sym_CARET] = ACTIONS(3099), + [anon_sym_AMP_AMP] = ACTIONS(3099), + [anon_sym_PIPE_PIPE] = ACTIONS(3099), + [anon_sym_EQ_EQ] = ACTIONS(3099), + [anon_sym_BANG_EQ] = ACTIONS(3099), + [anon_sym_LT] = ACTIONS(3097), + [anon_sym_LT_EQ] = ACTIONS(3099), + [anon_sym_GT] = ACTIONS(3097), + [anon_sym_GT_EQ] = ACTIONS(3099), + [anon_sym_EQ_GT] = ACTIONS(3099), + [anon_sym_QMARK_QMARK] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(3097), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3099), + [anon_sym_null] = ACTIONS(3097), + [anon_sym_macro] = ACTIONS(3097), + [anon_sym_abstract] = ACTIONS(3097), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_public] = ACTIONS(3097), + [anon_sym_private] = ACTIONS(3097), + [anon_sym_extern] = ACTIONS(3097), + [anon_sym_inline] = ACTIONS(3097), + [anon_sym_overload] = ACTIONS(3097), + [anon_sym_override] = ACTIONS(3097), + [anon_sym_final] = ACTIONS(3097), + [anon_sym_class] = ACTIONS(3097), + [anon_sym_interface] = ACTIONS(3097), + [anon_sym_enum] = ACTIONS(3097), + [anon_sym_typedef] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3097), + [anon_sym_var] = ACTIONS(3097), + [aux_sym_integer_token1] = ACTIONS(3097), + [aux_sym_integer_token2] = ACTIONS(3099), + [aux_sym_float_token1] = ACTIONS(3097), + [aux_sym_float_token2] = ACTIONS(3099), + [anon_sym_true] = ACTIONS(3097), + [anon_sym_false] = ACTIONS(3097), + [aux_sym_string_token1] = ACTIONS(3099), + [aux_sym_string_token3] = ACTIONS(3099), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [696] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2386), - [sym_integer] = STATE(2386), - [sym_float] = STATE(2386), - [sym_bool] = STATE(2386), - [sym_string] = STATE(1926), - [sym_null] = STATE(2386), - [sym_array] = STATE(2386), - [sym_map] = STATE(2386), - [sym_object] = STATE(2386), - [sym_pair] = STATE(2386), - [aux_sym_member_expression_repeat1] = STATE(698), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(522), - [anon_sym_RPAREN] = ACTIONS(522), - [anon_sym_switch] = ACTIONS(524), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(524), - [anon_sym_COMMA] = ACTIONS(522), - [anon_sym_DOLLARtype] = ACTIONS(522), - [anon_sym_return] = ACTIONS(524), - [anon_sym_untyped] = ACTIONS(524), - [anon_sym_break] = ACTIONS(524), - [anon_sym_continue] = ACTIONS(524), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(522), - [anon_sym_new] = ACTIONS(524), - [anon_sym_TILDE] = ACTIONS(522), - [anon_sym_BANG] = ACTIONS(524), - [anon_sym_DASH] = ACTIONS(524), - [anon_sym_PLUS_PLUS] = ACTIONS(522), - [anon_sym_DASH_DASH] = ACTIONS(522), - [anon_sym_PERCENT] = ACTIONS(522), - [anon_sym_STAR] = ACTIONS(522), - [anon_sym_SLASH] = ACTIONS(524), - [anon_sym_PLUS] = ACTIONS(524), - [anon_sym_LT_LT] = ACTIONS(522), - [anon_sym_GT_GT] = ACTIONS(524), - [anon_sym_GT_GT_GT] = ACTIONS(522), - [anon_sym_AMP] = ACTIONS(524), - [anon_sym_PIPE] = ACTIONS(524), - [anon_sym_CARET] = ACTIONS(522), - [anon_sym_AMP_AMP] = ACTIONS(522), - [anon_sym_PIPE_PIPE] = ACTIONS(522), - [anon_sym_EQ_EQ] = ACTIONS(522), - [anon_sym_BANG_EQ] = ACTIONS(522), - [anon_sym_LT] = ACTIONS(524), - [anon_sym_LT_EQ] = ACTIONS(522), - [anon_sym_GT] = ACTIONS(524), - [anon_sym_GT_EQ] = ACTIONS(522), - [anon_sym_EQ_GT] = ACTIONS(522), - [anon_sym_QMARK_QMARK] = ACTIONS(522), - [anon_sym_EQ] = ACTIONS(524), - [sym__rangeOperator] = ACTIONS(522), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3103), + [sym_identifier] = ACTIONS(3101), + [anon_sym_POUND] = ACTIONS(3103), + [anon_sym_package] = ACTIONS(3101), + [anon_sym_import] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_using] = ACTIONS(3101), + [anon_sym_throw] = ACTIONS(3101), + [anon_sym_LPAREN] = ACTIONS(3103), + [anon_sym_switch] = ACTIONS(3101), + [anon_sym_LBRACE] = ACTIONS(3103), + [anon_sym_cast] = ACTIONS(3101), + [anon_sym_DOLLARtype] = ACTIONS(3103), + [anon_sym_for] = ACTIONS(3101), + [anon_sym_return] = ACTIONS(3101), + [anon_sym_untyped] = ACTIONS(3101), + [anon_sym_break] = ACTIONS(3101), + [anon_sym_continue] = ACTIONS(3101), + [anon_sym_LBRACK] = ACTIONS(3103), + [anon_sym_this] = ACTIONS(3101), + [anon_sym_AT] = ACTIONS(3101), + [anon_sym_AT_COLON] = ACTIONS(3103), + [anon_sym_try] = ACTIONS(3101), + [anon_sym_catch] = ACTIONS(3101), + [anon_sym_else] = ACTIONS(3101), + [anon_sym_if] = ACTIONS(3101), + [anon_sym_while] = ACTIONS(3101), + [anon_sym_do] = ACTIONS(3101), + [anon_sym_new] = ACTIONS(3101), + [anon_sym_TILDE] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(3101), + [anon_sym_DASH] = ACTIONS(3101), + [anon_sym_PLUS_PLUS] = ACTIONS(3103), + [anon_sym_DASH_DASH] = ACTIONS(3103), + [anon_sym_PERCENT] = ACTIONS(3103), + [anon_sym_SLASH] = ACTIONS(3101), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_LT_LT] = ACTIONS(3103), + [anon_sym_GT_GT] = ACTIONS(3101), + [anon_sym_GT_GT_GT] = ACTIONS(3103), + [anon_sym_AMP] = ACTIONS(3101), + [anon_sym_PIPE] = ACTIONS(3101), + [anon_sym_CARET] = ACTIONS(3103), + [anon_sym_AMP_AMP] = ACTIONS(3103), + [anon_sym_PIPE_PIPE] = ACTIONS(3103), + [anon_sym_EQ_EQ] = ACTIONS(3103), + [anon_sym_BANG_EQ] = ACTIONS(3103), + [anon_sym_LT] = ACTIONS(3101), + [anon_sym_LT_EQ] = ACTIONS(3103), + [anon_sym_GT] = ACTIONS(3101), + [anon_sym_GT_EQ] = ACTIONS(3103), + [anon_sym_EQ_GT] = ACTIONS(3103), + [anon_sym_QMARK_QMARK] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(3101), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3103), + [anon_sym_null] = ACTIONS(3101), + [anon_sym_macro] = ACTIONS(3101), + [anon_sym_abstract] = ACTIONS(3101), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_extern] = ACTIONS(3101), + [anon_sym_inline] = ACTIONS(3101), + [anon_sym_overload] = ACTIONS(3101), + [anon_sym_override] = ACTIONS(3101), + [anon_sym_final] = ACTIONS(3101), + [anon_sym_class] = ACTIONS(3101), + [anon_sym_interface] = ACTIONS(3101), + [anon_sym_enum] = ACTIONS(3101), + [anon_sym_typedef] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3101), + [anon_sym_var] = ACTIONS(3101), + [aux_sym_integer_token1] = ACTIONS(3101), + [aux_sym_integer_token2] = ACTIONS(3103), + [aux_sym_float_token1] = ACTIONS(3101), + [aux_sym_float_token2] = ACTIONS(3103), + [anon_sym_true] = ACTIONS(3101), + [anon_sym_false] = ACTIONS(3101), + [aux_sym_string_token1] = ACTIONS(3103), + [aux_sym_string_token3] = ACTIONS(3103), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [697] = { - [sym_operator] = STATE(685), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(218), - [sym__bitwiseOperator] = STATE(218), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(695), - [sym_identifier] = ACTIONS(544), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_LPAREN] = ACTIONS(542), - [anon_sym_RPAREN] = ACTIONS(542), - [anon_sym_switch] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(542), - [anon_sym_cast] = ACTIONS(544), - [anon_sym_DOLLARtype] = ACTIONS(542), - [anon_sym_return] = ACTIONS(544), - [anon_sym_untyped] = ACTIONS(544), - [anon_sym_break] = ACTIONS(544), - [anon_sym_continue] = ACTIONS(544), - [anon_sym_LBRACK] = ACTIONS(542), - [anon_sym_this] = ACTIONS(544), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_new] = ACTIONS(544), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(47), - [anon_sym_STAR] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(47), - [anon_sym_GT_GT] = ACTIONS(49), - [anon_sym_GT_GT_GT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(544), - [aux_sym_integer_token1] = ACTIONS(544), - [aux_sym_integer_token2] = ACTIONS(542), - [aux_sym_float_token1] = ACTIONS(544), - [aux_sym_float_token2] = ACTIONS(542), - [anon_sym_true] = ACTIONS(544), - [anon_sym_false] = ACTIONS(544), - [aux_sym_string_token1] = ACTIONS(542), - [aux_sym_string_token3] = ACTIONS(542), + [ts_builtin_sym_end] = ACTIONS(3107), + [sym_identifier] = ACTIONS(3105), + [anon_sym_POUND] = ACTIONS(3107), + [anon_sym_package] = ACTIONS(3105), + [anon_sym_import] = ACTIONS(3105), + [anon_sym_STAR] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3105), + [anon_sym_throw] = ACTIONS(3105), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3105), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_cast] = ACTIONS(3105), + [anon_sym_DOLLARtype] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3105), + [anon_sym_return] = ACTIONS(3105), + [anon_sym_untyped] = ACTIONS(3105), + [anon_sym_break] = ACTIONS(3105), + [anon_sym_continue] = ACTIONS(3105), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_this] = ACTIONS(3105), + [anon_sym_AT] = ACTIONS(3105), + [anon_sym_AT_COLON] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3105), + [anon_sym_catch] = ACTIONS(3105), + [anon_sym_else] = ACTIONS(3105), + [anon_sym_if] = ACTIONS(3105), + [anon_sym_while] = ACTIONS(3105), + [anon_sym_do] = ACTIONS(3105), + [anon_sym_new] = ACTIONS(3105), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3105), + [anon_sym_DASH] = ACTIONS(3105), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [anon_sym_PERCENT] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3105), + [anon_sym_PLUS] = ACTIONS(3105), + [anon_sym_LT_LT] = ACTIONS(3107), + [anon_sym_GT_GT] = ACTIONS(3105), + [anon_sym_GT_GT_GT] = ACTIONS(3107), + [anon_sym_AMP] = ACTIONS(3105), + [anon_sym_PIPE] = ACTIONS(3105), + [anon_sym_CARET] = ACTIONS(3107), + [anon_sym_AMP_AMP] = ACTIONS(3107), + [anon_sym_PIPE_PIPE] = ACTIONS(3107), + [anon_sym_EQ_EQ] = ACTIONS(3107), + [anon_sym_BANG_EQ] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3105), + [anon_sym_LT_EQ] = ACTIONS(3107), + [anon_sym_GT] = ACTIONS(3105), + [anon_sym_GT_EQ] = ACTIONS(3107), + [anon_sym_EQ_GT] = ACTIONS(3107), + [anon_sym_QMARK_QMARK] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(3105), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3107), + [anon_sym_null] = ACTIONS(3105), + [anon_sym_macro] = ACTIONS(3105), + [anon_sym_abstract] = ACTIONS(3105), + [anon_sym_static] = ACTIONS(3105), + [anon_sym_public] = ACTIONS(3105), + [anon_sym_private] = ACTIONS(3105), + [anon_sym_extern] = ACTIONS(3105), + [anon_sym_inline] = ACTIONS(3105), + [anon_sym_overload] = ACTIONS(3105), + [anon_sym_override] = ACTIONS(3105), + [anon_sym_final] = ACTIONS(3105), + [anon_sym_class] = ACTIONS(3105), + [anon_sym_interface] = ACTIONS(3105), + [anon_sym_enum] = ACTIONS(3105), + [anon_sym_typedef] = ACTIONS(3105), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_var] = ACTIONS(3105), + [aux_sym_integer_token1] = ACTIONS(3105), + [aux_sym_integer_token2] = ACTIONS(3107), + [aux_sym_float_token1] = ACTIONS(3105), + [aux_sym_float_token2] = ACTIONS(3107), + [anon_sym_true] = ACTIONS(3105), + [anon_sym_false] = ACTIONS(3105), + [aux_sym_string_token1] = ACTIONS(3107), + [aux_sym_string_token3] = ACTIONS(3107), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [698] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2386), - [sym_integer] = STATE(2386), - [sym_float] = STATE(2386), - [sym_bool] = STATE(2386), - [sym_string] = STATE(1926), - [sym_null] = STATE(2386), - [sym_array] = STATE(2386), - [sym_map] = STATE(2386), - [sym_object] = STATE(2386), - [sym_pair] = STATE(2386), - [aux_sym_member_expression_repeat1] = STATE(698), - [sym_identifier] = ACTIONS(2429), - [anon_sym_LPAREN] = ACTIONS(478), - [anon_sym_RPAREN] = ACTIONS(478), - [anon_sym_switch] = ACTIONS(483), - [anon_sym_LBRACE] = ACTIONS(485), - [anon_sym_cast] = ACTIONS(483), - [anon_sym_COMMA] = ACTIONS(478), - [anon_sym_DOLLARtype] = ACTIONS(478), - [anon_sym_return] = ACTIONS(483), - [anon_sym_untyped] = ACTIONS(483), - [anon_sym_break] = ACTIONS(483), - [anon_sym_continue] = ACTIONS(483), - [anon_sym_LBRACK] = ACTIONS(488), - [anon_sym_this] = ACTIONS(2432), - [anon_sym_DASH_GT] = ACTIONS(478), - [anon_sym_new] = ACTIONS(483), - [anon_sym_TILDE] = ACTIONS(478), - [anon_sym_BANG] = ACTIONS(483), - [anon_sym_DASH] = ACTIONS(483), - [anon_sym_PLUS_PLUS] = ACTIONS(478), - [anon_sym_DASH_DASH] = ACTIONS(478), - [anon_sym_PERCENT] = ACTIONS(478), - [anon_sym_STAR] = ACTIONS(478), - [anon_sym_SLASH] = ACTIONS(483), - [anon_sym_PLUS] = ACTIONS(483), - [anon_sym_LT_LT] = ACTIONS(478), - [anon_sym_GT_GT] = ACTIONS(483), - [anon_sym_GT_GT_GT] = ACTIONS(478), - [anon_sym_AMP] = ACTIONS(483), - [anon_sym_PIPE] = ACTIONS(483), - [anon_sym_CARET] = ACTIONS(478), - [anon_sym_AMP_AMP] = ACTIONS(478), - [anon_sym_PIPE_PIPE] = ACTIONS(478), - [anon_sym_EQ_EQ] = ACTIONS(478), - [anon_sym_BANG_EQ] = ACTIONS(478), - [anon_sym_LT] = ACTIONS(483), - [anon_sym_LT_EQ] = ACTIONS(478), - [anon_sym_GT] = ACTIONS(483), - [anon_sym_GT_EQ] = ACTIONS(478), - [anon_sym_EQ_GT] = ACTIONS(478), - [anon_sym_QMARK_QMARK] = ACTIONS(478), - [anon_sym_EQ] = ACTIONS(483), - [sym__rangeOperator] = ACTIONS(478), - [anon_sym_null] = ACTIONS(494), - [aux_sym_integer_token1] = ACTIONS(497), - [aux_sym_integer_token2] = ACTIONS(500), - [aux_sym_float_token1] = ACTIONS(503), - [aux_sym_float_token2] = ACTIONS(506), - [anon_sym_true] = ACTIONS(509), - [anon_sym_false] = ACTIONS(509), - [aux_sym_string_token1] = ACTIONS(512), - [aux_sym_string_token3] = ACTIONS(515), + [ts_builtin_sym_end] = ACTIONS(3111), + [sym_identifier] = ACTIONS(3109), + [anon_sym_POUND] = ACTIONS(3111), + [anon_sym_package] = ACTIONS(3109), + [anon_sym_import] = ACTIONS(3109), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_using] = ACTIONS(3109), + [anon_sym_throw] = ACTIONS(3109), + [anon_sym_LPAREN] = ACTIONS(3111), + [anon_sym_switch] = ACTIONS(3109), + [anon_sym_LBRACE] = ACTIONS(3111), + [anon_sym_cast] = ACTIONS(3109), + [anon_sym_DOLLARtype] = ACTIONS(3111), + [anon_sym_for] = ACTIONS(3109), + [anon_sym_return] = ACTIONS(3109), + [anon_sym_untyped] = ACTIONS(3109), + [anon_sym_break] = ACTIONS(3109), + [anon_sym_continue] = ACTIONS(3109), + [anon_sym_LBRACK] = ACTIONS(3111), + [anon_sym_this] = ACTIONS(3109), + [anon_sym_AT] = ACTIONS(3109), + [anon_sym_AT_COLON] = ACTIONS(3111), + [anon_sym_try] = ACTIONS(3109), + [anon_sym_catch] = ACTIONS(3109), + [anon_sym_else] = ACTIONS(3109), + [anon_sym_if] = ACTIONS(3109), + [anon_sym_while] = ACTIONS(3109), + [anon_sym_do] = ACTIONS(3109), + [anon_sym_new] = ACTIONS(3109), + [anon_sym_TILDE] = ACTIONS(3111), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_DASH] = ACTIONS(3109), + [anon_sym_PLUS_PLUS] = ACTIONS(3111), + [anon_sym_DASH_DASH] = ACTIONS(3111), + [anon_sym_PERCENT] = ACTIONS(3111), + [anon_sym_SLASH] = ACTIONS(3109), + [anon_sym_PLUS] = ACTIONS(3109), + [anon_sym_LT_LT] = ACTIONS(3111), + [anon_sym_GT_GT] = ACTIONS(3109), + [anon_sym_GT_GT_GT] = ACTIONS(3111), + [anon_sym_AMP] = ACTIONS(3109), + [anon_sym_PIPE] = ACTIONS(3109), + [anon_sym_CARET] = ACTIONS(3111), + [anon_sym_AMP_AMP] = ACTIONS(3111), + [anon_sym_PIPE_PIPE] = ACTIONS(3111), + [anon_sym_EQ_EQ] = ACTIONS(3111), + [anon_sym_BANG_EQ] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(3109), + [anon_sym_LT_EQ] = ACTIONS(3111), + [anon_sym_GT] = ACTIONS(3109), + [anon_sym_GT_EQ] = ACTIONS(3111), + [anon_sym_EQ_GT] = ACTIONS(3111), + [anon_sym_QMARK_QMARK] = ACTIONS(3111), + [anon_sym_EQ] = ACTIONS(3109), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3111), + [anon_sym_null] = ACTIONS(3109), + [anon_sym_macro] = ACTIONS(3109), + [anon_sym_abstract] = ACTIONS(3109), + [anon_sym_static] = ACTIONS(3109), + [anon_sym_public] = ACTIONS(3109), + [anon_sym_private] = ACTIONS(3109), + [anon_sym_extern] = ACTIONS(3109), + [anon_sym_inline] = ACTIONS(3109), + [anon_sym_overload] = ACTIONS(3109), + [anon_sym_override] = ACTIONS(3109), + [anon_sym_final] = ACTIONS(3109), + [anon_sym_class] = ACTIONS(3109), + [anon_sym_interface] = ACTIONS(3109), + [anon_sym_enum] = ACTIONS(3109), + [anon_sym_typedef] = ACTIONS(3109), + [anon_sym_function] = ACTIONS(3109), + [anon_sym_var] = ACTIONS(3109), + [aux_sym_integer_token1] = ACTIONS(3109), + [aux_sym_integer_token2] = ACTIONS(3111), + [aux_sym_float_token1] = ACTIONS(3109), + [aux_sym_float_token2] = ACTIONS(3111), + [anon_sym_true] = ACTIONS(3109), + [anon_sym_false] = ACTIONS(3109), + [aux_sym_string_token1] = ACTIONS(3111), + [aux_sym_string_token3] = ACTIONS(3111), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [699] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2386), - [sym_integer] = STATE(2386), - [sym_float] = STATE(2386), - [sym_bool] = STATE(2386), - [sym_string] = STATE(1926), - [sym_null] = STATE(2386), - [sym_array] = STATE(2386), - [sym_map] = STATE(2386), - [sym_object] = STATE(2386), - [sym_pair] = STATE(2386), - [aux_sym_member_expression_repeat1] = STATE(698), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(474), - [anon_sym_RPAREN] = ACTIONS(474), - [anon_sym_switch] = ACTIONS(476), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(476), - [anon_sym_COMMA] = ACTIONS(474), - [anon_sym_DOLLARtype] = ACTIONS(474), - [anon_sym_return] = ACTIONS(476), - [anon_sym_untyped] = ACTIONS(476), - [anon_sym_break] = ACTIONS(476), - [anon_sym_continue] = ACTIONS(476), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(474), - [anon_sym_new] = ACTIONS(476), - [anon_sym_TILDE] = ACTIONS(474), - [anon_sym_BANG] = ACTIONS(476), - [anon_sym_DASH] = ACTIONS(476), - [anon_sym_PLUS_PLUS] = ACTIONS(474), - [anon_sym_DASH_DASH] = ACTIONS(474), - [anon_sym_PERCENT] = ACTIONS(474), - [anon_sym_STAR] = ACTIONS(474), - [anon_sym_SLASH] = ACTIONS(476), - [anon_sym_PLUS] = ACTIONS(476), - [anon_sym_LT_LT] = ACTIONS(474), - [anon_sym_GT_GT] = ACTIONS(476), - [anon_sym_GT_GT_GT] = ACTIONS(474), - [anon_sym_AMP] = ACTIONS(476), - [anon_sym_PIPE] = ACTIONS(476), - [anon_sym_CARET] = ACTIONS(474), - [anon_sym_AMP_AMP] = ACTIONS(474), - [anon_sym_PIPE_PIPE] = ACTIONS(474), - [anon_sym_EQ_EQ] = ACTIONS(474), - [anon_sym_BANG_EQ] = ACTIONS(474), - [anon_sym_LT] = ACTIONS(476), - [anon_sym_LT_EQ] = ACTIONS(474), - [anon_sym_GT] = ACTIONS(476), - [anon_sym_GT_EQ] = ACTIONS(474), - [anon_sym_EQ_GT] = ACTIONS(474), - [anon_sym_QMARK_QMARK] = ACTIONS(474), - [anon_sym_EQ] = ACTIONS(476), - [sym__rangeOperator] = ACTIONS(474), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3115), + [sym_identifier] = ACTIONS(3113), + [anon_sym_POUND] = ACTIONS(3115), + [anon_sym_package] = ACTIONS(3113), + [anon_sym_import] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3115), + [anon_sym_using] = ACTIONS(3113), + [anon_sym_throw] = ACTIONS(3113), + [anon_sym_LPAREN] = ACTIONS(3115), + [anon_sym_switch] = ACTIONS(3113), + [anon_sym_LBRACE] = ACTIONS(3115), + [anon_sym_cast] = ACTIONS(3113), + [anon_sym_DOLLARtype] = ACTIONS(3115), + [anon_sym_for] = ACTIONS(3113), + [anon_sym_return] = ACTIONS(3113), + [anon_sym_untyped] = ACTIONS(3113), + [anon_sym_break] = ACTIONS(3113), + [anon_sym_continue] = ACTIONS(3113), + [anon_sym_LBRACK] = ACTIONS(3115), + [anon_sym_this] = ACTIONS(3113), + [anon_sym_AT] = ACTIONS(3113), + [anon_sym_AT_COLON] = ACTIONS(3115), + [anon_sym_try] = ACTIONS(3113), + [anon_sym_catch] = ACTIONS(3113), + [anon_sym_else] = ACTIONS(3113), + [anon_sym_if] = ACTIONS(3113), + [anon_sym_while] = ACTIONS(3113), + [anon_sym_do] = ACTIONS(3113), + [anon_sym_new] = ACTIONS(3113), + [anon_sym_TILDE] = ACTIONS(3115), + [anon_sym_BANG] = ACTIONS(3113), + [anon_sym_DASH] = ACTIONS(3113), + [anon_sym_PLUS_PLUS] = ACTIONS(3115), + [anon_sym_DASH_DASH] = ACTIONS(3115), + [anon_sym_PERCENT] = ACTIONS(3115), + [anon_sym_SLASH] = ACTIONS(3113), + [anon_sym_PLUS] = ACTIONS(3113), + [anon_sym_LT_LT] = ACTIONS(3115), + [anon_sym_GT_GT] = ACTIONS(3113), + [anon_sym_GT_GT_GT] = ACTIONS(3115), + [anon_sym_AMP] = ACTIONS(3113), + [anon_sym_PIPE] = ACTIONS(3113), + [anon_sym_CARET] = ACTIONS(3115), + [anon_sym_AMP_AMP] = ACTIONS(3115), + [anon_sym_PIPE_PIPE] = ACTIONS(3115), + [anon_sym_EQ_EQ] = ACTIONS(3115), + [anon_sym_BANG_EQ] = ACTIONS(3115), + [anon_sym_LT] = ACTIONS(3113), + [anon_sym_LT_EQ] = ACTIONS(3115), + [anon_sym_GT] = ACTIONS(3113), + [anon_sym_GT_EQ] = ACTIONS(3115), + [anon_sym_EQ_GT] = ACTIONS(3115), + [anon_sym_QMARK_QMARK] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(3113), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3115), + [anon_sym_null] = ACTIONS(3113), + [anon_sym_macro] = ACTIONS(3113), + [anon_sym_abstract] = ACTIONS(3113), + [anon_sym_static] = ACTIONS(3113), + [anon_sym_public] = ACTIONS(3113), + [anon_sym_private] = ACTIONS(3113), + [anon_sym_extern] = ACTIONS(3113), + [anon_sym_inline] = ACTIONS(3113), + [anon_sym_overload] = ACTIONS(3113), + [anon_sym_override] = ACTIONS(3113), + [anon_sym_final] = ACTIONS(3113), + [anon_sym_class] = ACTIONS(3113), + [anon_sym_interface] = ACTIONS(3113), + [anon_sym_enum] = ACTIONS(3113), + [anon_sym_typedef] = ACTIONS(3113), + [anon_sym_function] = ACTIONS(3113), + [anon_sym_var] = ACTIONS(3113), + [aux_sym_integer_token1] = ACTIONS(3113), + [aux_sym_integer_token2] = ACTIONS(3115), + [aux_sym_float_token1] = ACTIONS(3113), + [aux_sym_float_token2] = ACTIONS(3115), + [anon_sym_true] = ACTIONS(3113), + [anon_sym_false] = ACTIONS(3113), + [aux_sym_string_token1] = ACTIONS(3115), + [aux_sym_string_token3] = ACTIONS(3115), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [700] = { - [sym_member_expression] = STATE(759), - [sym__lhs_expression] = STATE(757), - [sym__literal] = STATE(2386), - [sym_integer] = STATE(2386), - [sym_float] = STATE(2386), - [sym_bool] = STATE(2386), - [sym_string] = STATE(1926), - [sym_null] = STATE(2386), - [sym_array] = STATE(2386), - [sym_map] = STATE(2386), - [sym_object] = STATE(2386), - [sym_pair] = STATE(2386), - [aux_sym_member_expression_repeat1] = STATE(698), - [sym_identifier] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(518), - [anon_sym_RPAREN] = ACTIONS(518), - [anon_sym_switch] = ACTIONS(520), - [anon_sym_LBRACE] = ACTIONS(362), - [anon_sym_cast] = ACTIONS(520), - [anon_sym_COMMA] = ACTIONS(518), - [anon_sym_DOLLARtype] = ACTIONS(518), - [anon_sym_return] = ACTIONS(520), - [anon_sym_untyped] = ACTIONS(520), - [anon_sym_break] = ACTIONS(520), - [anon_sym_continue] = ACTIONS(520), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_this] = ACTIONS(376), - [anon_sym_DASH_GT] = ACTIONS(518), - [anon_sym_new] = ACTIONS(520), - [anon_sym_TILDE] = ACTIONS(518), - [anon_sym_BANG] = ACTIONS(520), - [anon_sym_DASH] = ACTIONS(520), - [anon_sym_PLUS_PLUS] = ACTIONS(518), - [anon_sym_DASH_DASH] = ACTIONS(518), - [anon_sym_PERCENT] = ACTIONS(518), - [anon_sym_STAR] = ACTIONS(518), - [anon_sym_SLASH] = ACTIONS(520), - [anon_sym_PLUS] = ACTIONS(520), - [anon_sym_LT_LT] = ACTIONS(518), - [anon_sym_GT_GT] = ACTIONS(520), - [anon_sym_GT_GT_GT] = ACTIONS(518), - [anon_sym_AMP] = ACTIONS(520), - [anon_sym_PIPE] = ACTIONS(520), - [anon_sym_CARET] = ACTIONS(518), - [anon_sym_AMP_AMP] = ACTIONS(518), - [anon_sym_PIPE_PIPE] = ACTIONS(518), - [anon_sym_EQ_EQ] = ACTIONS(518), - [anon_sym_BANG_EQ] = ACTIONS(518), - [anon_sym_LT] = ACTIONS(520), - [anon_sym_LT_EQ] = ACTIONS(518), - [anon_sym_GT] = ACTIONS(520), - [anon_sym_GT_EQ] = ACTIONS(518), - [anon_sym_EQ_GT] = ACTIONS(518), - [anon_sym_QMARK_QMARK] = ACTIONS(518), - [anon_sym_EQ] = ACTIONS(520), - [sym__rangeOperator] = ACTIONS(518), - [anon_sym_null] = ACTIONS(382), - [aux_sym_integer_token1] = ACTIONS(384), - [aux_sym_integer_token2] = ACTIONS(386), - [aux_sym_float_token1] = ACTIONS(388), - [aux_sym_float_token2] = ACTIONS(390), - [anon_sym_true] = ACTIONS(392), - [anon_sym_false] = ACTIONS(392), - [aux_sym_string_token1] = ACTIONS(394), - [aux_sym_string_token3] = ACTIONS(396), + [ts_builtin_sym_end] = ACTIONS(3119), + [sym_identifier] = ACTIONS(3117), + [anon_sym_POUND] = ACTIONS(3119), + [anon_sym_package] = ACTIONS(3117), + [anon_sym_import] = ACTIONS(3117), + [anon_sym_STAR] = ACTIONS(3119), + [anon_sym_using] = ACTIONS(3117), + [anon_sym_throw] = ACTIONS(3117), + [anon_sym_LPAREN] = ACTIONS(3119), + [anon_sym_switch] = ACTIONS(3117), + [anon_sym_LBRACE] = ACTIONS(3119), + [anon_sym_cast] = ACTIONS(3117), + [anon_sym_DOLLARtype] = ACTIONS(3119), + [anon_sym_for] = ACTIONS(3117), + [anon_sym_return] = ACTIONS(3117), + [anon_sym_untyped] = ACTIONS(3117), + [anon_sym_break] = ACTIONS(3117), + [anon_sym_continue] = ACTIONS(3117), + [anon_sym_LBRACK] = ACTIONS(3119), + [anon_sym_this] = ACTIONS(3117), + [anon_sym_AT] = ACTIONS(3117), + [anon_sym_AT_COLON] = ACTIONS(3119), + [anon_sym_try] = ACTIONS(3117), + [anon_sym_catch] = ACTIONS(3117), + [anon_sym_else] = ACTIONS(3117), + [anon_sym_if] = ACTIONS(3117), + [anon_sym_while] = ACTIONS(3117), + [anon_sym_do] = ACTIONS(3117), + [anon_sym_new] = ACTIONS(3117), + [anon_sym_TILDE] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(3117), + [anon_sym_DASH] = ACTIONS(3117), + [anon_sym_PLUS_PLUS] = ACTIONS(3119), + [anon_sym_DASH_DASH] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), + [anon_sym_SLASH] = ACTIONS(3117), + [anon_sym_PLUS] = ACTIONS(3117), + [anon_sym_LT_LT] = ACTIONS(3119), + [anon_sym_GT_GT] = ACTIONS(3117), + [anon_sym_GT_GT_GT] = ACTIONS(3119), + [anon_sym_AMP] = ACTIONS(3117), + [anon_sym_PIPE] = ACTIONS(3117), + [anon_sym_CARET] = ACTIONS(3119), + [anon_sym_AMP_AMP] = ACTIONS(3119), + [anon_sym_PIPE_PIPE] = ACTIONS(3119), + [anon_sym_EQ_EQ] = ACTIONS(3119), + [anon_sym_BANG_EQ] = ACTIONS(3119), + [anon_sym_LT] = ACTIONS(3117), + [anon_sym_LT_EQ] = ACTIONS(3119), + [anon_sym_GT] = ACTIONS(3117), + [anon_sym_GT_EQ] = ACTIONS(3119), + [anon_sym_EQ_GT] = ACTIONS(3119), + [anon_sym_QMARK_QMARK] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(3117), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3119), + [anon_sym_null] = ACTIONS(3117), + [anon_sym_macro] = ACTIONS(3117), + [anon_sym_abstract] = ACTIONS(3117), + [anon_sym_static] = ACTIONS(3117), + [anon_sym_public] = ACTIONS(3117), + [anon_sym_private] = ACTIONS(3117), + [anon_sym_extern] = ACTIONS(3117), + [anon_sym_inline] = ACTIONS(3117), + [anon_sym_overload] = ACTIONS(3117), + [anon_sym_override] = ACTIONS(3117), + [anon_sym_final] = ACTIONS(3117), + [anon_sym_class] = ACTIONS(3117), + [anon_sym_interface] = ACTIONS(3117), + [anon_sym_enum] = ACTIONS(3117), + [anon_sym_typedef] = ACTIONS(3117), + [anon_sym_function] = ACTIONS(3117), + [anon_sym_var] = ACTIONS(3117), + [aux_sym_integer_token1] = ACTIONS(3117), + [aux_sym_integer_token2] = ACTIONS(3119), + [aux_sym_float_token1] = ACTIONS(3117), + [aux_sym_float_token2] = ACTIONS(3119), + [anon_sym_true] = ACTIONS(3117), + [anon_sym_false] = ACTIONS(3117), + [aux_sym_string_token1] = ACTIONS(3119), + [aux_sym_string_token3] = ACTIONS(3119), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [701] = { - [sym__rhs_expression] = STATE(282), - [sym_member_expression] = STATE(259), - [sym__lhs_expression] = STATE(2181), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(282), - [sym__literal] = STATE(1198), - [sym_integer] = STATE(1198), - [sym_float] = STATE(1198), - [sym_bool] = STATE(1198), - [sym_string] = STATE(1175), - [sym_null] = STATE(1198), - [sym_array] = STATE(1198), - [sym_map] = STATE(1198), - [sym_object] = STATE(1198), - [sym_pair] = STATE(1198), - [sym_identifier] = ACTIONS(2435), - [anon_sym_DOT] = ACTIONS(544), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_case] = ACTIONS(544), - [anon_sym_default] = ACTIONS(544), - [anon_sym_COMMA] = ACTIONS(542), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(544), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(542), - [anon_sym_BANG] = ACTIONS(544), - [anon_sym_DASH] = ACTIONS(544), - [anon_sym_PLUS_PLUS] = ACTIONS(542), - [anon_sym_DASH_DASH] = ACTIONS(542), - [anon_sym_PERCENT] = ACTIONS(542), - [anon_sym_STAR] = ACTIONS(542), - [anon_sym_SLASH] = ACTIONS(544), - [anon_sym_PLUS] = ACTIONS(544), - [anon_sym_LT_LT] = ACTIONS(542), - [anon_sym_GT_GT] = ACTIONS(544), - [anon_sym_GT_GT_GT] = ACTIONS(542), - [anon_sym_AMP] = ACTIONS(544), - [anon_sym_PIPE] = ACTIONS(544), - [anon_sym_CARET] = ACTIONS(542), - [anon_sym_AMP_AMP] = ACTIONS(542), - [anon_sym_PIPE_PIPE] = ACTIONS(542), - [anon_sym_EQ_EQ] = ACTIONS(542), - [anon_sym_BANG_EQ] = ACTIONS(542), - [anon_sym_LT] = ACTIONS(544), - [anon_sym_LT_EQ] = ACTIONS(542), - [anon_sym_GT] = ACTIONS(544), - [anon_sym_GT_EQ] = ACTIONS(542), - [anon_sym_EQ_GT] = ACTIONS(542), - [anon_sym_QMARK_QMARK] = ACTIONS(542), - [anon_sym_EQ] = ACTIONS(544), - [sym__rangeOperator] = ACTIONS(542), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(542), + [ts_builtin_sym_end] = ACTIONS(3123), + [sym_identifier] = ACTIONS(3121), + [anon_sym_POUND] = ACTIONS(3123), + [anon_sym_package] = ACTIONS(3121), + [anon_sym_import] = ACTIONS(3121), + [anon_sym_STAR] = ACTIONS(3123), + [anon_sym_using] = ACTIONS(3121), + [anon_sym_throw] = ACTIONS(3121), + [anon_sym_LPAREN] = ACTIONS(3123), + [anon_sym_switch] = ACTIONS(3121), + [anon_sym_LBRACE] = ACTIONS(3123), + [anon_sym_cast] = ACTIONS(3121), + [anon_sym_DOLLARtype] = ACTIONS(3123), + [anon_sym_for] = ACTIONS(3121), + [anon_sym_return] = ACTIONS(3121), + [anon_sym_untyped] = ACTIONS(3121), + [anon_sym_break] = ACTIONS(3121), + [anon_sym_continue] = ACTIONS(3121), + [anon_sym_LBRACK] = ACTIONS(3123), + [anon_sym_this] = ACTIONS(3121), + [anon_sym_AT] = ACTIONS(3121), + [anon_sym_AT_COLON] = ACTIONS(3123), + [anon_sym_try] = ACTIONS(3121), + [anon_sym_catch] = ACTIONS(3121), + [anon_sym_else] = ACTIONS(3121), + [anon_sym_if] = ACTIONS(3121), + [anon_sym_while] = ACTIONS(3121), + [anon_sym_do] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3121), + [anon_sym_TILDE] = ACTIONS(3123), + [anon_sym_BANG] = ACTIONS(3121), + [anon_sym_DASH] = ACTIONS(3121), + [anon_sym_PLUS_PLUS] = ACTIONS(3123), + [anon_sym_DASH_DASH] = ACTIONS(3123), + [anon_sym_PERCENT] = ACTIONS(3123), + [anon_sym_SLASH] = ACTIONS(3121), + [anon_sym_PLUS] = ACTIONS(3121), + [anon_sym_LT_LT] = ACTIONS(3123), + [anon_sym_GT_GT] = ACTIONS(3121), + [anon_sym_GT_GT_GT] = ACTIONS(3123), + [anon_sym_AMP] = ACTIONS(3121), + [anon_sym_PIPE] = ACTIONS(3121), + [anon_sym_CARET] = ACTIONS(3123), + [anon_sym_AMP_AMP] = ACTIONS(3123), + [anon_sym_PIPE_PIPE] = ACTIONS(3123), + [anon_sym_EQ_EQ] = ACTIONS(3123), + [anon_sym_BANG_EQ] = ACTIONS(3123), + [anon_sym_LT] = ACTIONS(3121), + [anon_sym_LT_EQ] = ACTIONS(3123), + [anon_sym_GT] = ACTIONS(3121), + [anon_sym_GT_EQ] = ACTIONS(3123), + [anon_sym_EQ_GT] = ACTIONS(3123), + [anon_sym_QMARK_QMARK] = ACTIONS(3123), + [anon_sym_EQ] = ACTIONS(3121), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3123), + [anon_sym_null] = ACTIONS(3121), + [anon_sym_macro] = ACTIONS(3121), + [anon_sym_abstract] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3121), + [anon_sym_public] = ACTIONS(3121), + [anon_sym_private] = ACTIONS(3121), + [anon_sym_extern] = ACTIONS(3121), + [anon_sym_inline] = ACTIONS(3121), + [anon_sym_overload] = ACTIONS(3121), + [anon_sym_override] = ACTIONS(3121), + [anon_sym_final] = ACTIONS(3121), + [anon_sym_class] = ACTIONS(3121), + [anon_sym_interface] = ACTIONS(3121), + [anon_sym_enum] = ACTIONS(3121), + [anon_sym_typedef] = ACTIONS(3121), + [anon_sym_function] = ACTIONS(3121), + [anon_sym_var] = ACTIONS(3121), + [aux_sym_integer_token1] = ACTIONS(3121), + [aux_sym_integer_token2] = ACTIONS(3123), + [aux_sym_float_token1] = ACTIONS(3121), + [aux_sym_float_token2] = ACTIONS(3123), + [anon_sym_true] = ACTIONS(3121), + [anon_sym_false] = ACTIONS(3121), + [aux_sym_string_token1] = ACTIONS(3123), + [aux_sym_string_token3] = ACTIONS(3123), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [702] = { - [sym_operator] = STATE(1530), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(703), - [sym_identifier] = ACTIONS(2437), - [anon_sym_LPAREN] = ACTIONS(644), - [anon_sym_RPAREN] = ACTIONS(644), - [anon_sym_switch] = ACTIONS(2437), - [anon_sym_LBRACE] = ACTIONS(644), - [anon_sym_cast] = ACTIONS(2437), - [anon_sym_DOLLARtype] = ACTIONS(644), - [anon_sym_return] = ACTIONS(2437), - [anon_sym_untyped] = ACTIONS(2437), - [anon_sym_break] = ACTIONS(2437), - [anon_sym_continue] = ACTIONS(2437), - [anon_sym_LBRACK] = ACTIONS(644), - [anon_sym_this] = ACTIONS(2437), - [anon_sym_new] = ACTIONS(2437), - [anon_sym_TILDE] = ACTIONS(644), - [anon_sym_BANG] = ACTIONS(2437), - [anon_sym_DASH] = ACTIONS(2437), - [anon_sym_PLUS_PLUS] = ACTIONS(644), - [anon_sym_DASH_DASH] = ACTIONS(644), - [anon_sym_PERCENT] = ACTIONS(644), - [anon_sym_STAR] = ACTIONS(644), - [anon_sym_SLASH] = ACTIONS(2437), - [anon_sym_PLUS] = ACTIONS(2437), - [anon_sym_LT_LT] = ACTIONS(644), - [anon_sym_GT_GT] = ACTIONS(2437), - [anon_sym_GT_GT_GT] = ACTIONS(644), - [anon_sym_AMP] = ACTIONS(2437), - [anon_sym_PIPE] = ACTIONS(2437), - [anon_sym_CARET] = ACTIONS(644), - [anon_sym_AMP_AMP] = ACTIONS(644), - [anon_sym_PIPE_PIPE] = ACTIONS(644), - [anon_sym_EQ_EQ] = ACTIONS(644), - [anon_sym_BANG_EQ] = ACTIONS(644), - [anon_sym_LT] = ACTIONS(2437), - [anon_sym_LT_EQ] = ACTIONS(644), - [anon_sym_GT] = ACTIONS(2437), - [anon_sym_GT_EQ] = ACTIONS(644), - [anon_sym_EQ_GT] = ACTIONS(644), - [anon_sym_QMARK_QMARK] = ACTIONS(644), - [anon_sym_EQ] = ACTIONS(2437), - [sym__rangeOperator] = ACTIONS(644), - [anon_sym_null] = ACTIONS(2437), - [aux_sym_integer_token1] = ACTIONS(2437), - [aux_sym_integer_token2] = ACTIONS(644), - [aux_sym_float_token1] = ACTIONS(2437), - [aux_sym_float_token2] = ACTIONS(644), - [anon_sym_true] = ACTIONS(2437), - [anon_sym_false] = ACTIONS(2437), - [aux_sym_string_token1] = ACTIONS(644), - [aux_sym_string_token3] = ACTIONS(644), + [ts_builtin_sym_end] = ACTIONS(3127), + [sym_identifier] = ACTIONS(3125), + [anon_sym_POUND] = ACTIONS(3127), + [anon_sym_package] = ACTIONS(3125), + [anon_sym_import] = ACTIONS(3125), + [anon_sym_STAR] = ACTIONS(3127), + [anon_sym_using] = ACTIONS(3125), + [anon_sym_throw] = ACTIONS(3125), + [anon_sym_LPAREN] = ACTIONS(3127), + [anon_sym_switch] = ACTIONS(3125), + [anon_sym_LBRACE] = ACTIONS(3127), + [anon_sym_cast] = ACTIONS(3125), + [anon_sym_DOLLARtype] = ACTIONS(3127), + [anon_sym_for] = ACTIONS(3125), + [anon_sym_return] = ACTIONS(3125), + [anon_sym_untyped] = ACTIONS(3125), + [anon_sym_break] = ACTIONS(3125), + [anon_sym_continue] = ACTIONS(3125), + [anon_sym_LBRACK] = ACTIONS(3127), + [anon_sym_this] = ACTIONS(3125), + [anon_sym_AT] = ACTIONS(3125), + [anon_sym_AT_COLON] = ACTIONS(3127), + [anon_sym_try] = ACTIONS(3125), + [anon_sym_catch] = ACTIONS(3125), + [anon_sym_else] = ACTIONS(3125), + [anon_sym_if] = ACTIONS(3125), + [anon_sym_while] = ACTIONS(3125), + [anon_sym_do] = ACTIONS(3125), + [anon_sym_new] = ACTIONS(3125), + [anon_sym_TILDE] = ACTIONS(3127), + [anon_sym_BANG] = ACTIONS(3125), + [anon_sym_DASH] = ACTIONS(3125), + [anon_sym_PLUS_PLUS] = ACTIONS(3127), + [anon_sym_DASH_DASH] = ACTIONS(3127), + [anon_sym_PERCENT] = ACTIONS(3127), + [anon_sym_SLASH] = ACTIONS(3125), + [anon_sym_PLUS] = ACTIONS(3125), + [anon_sym_LT_LT] = ACTIONS(3127), + [anon_sym_GT_GT] = ACTIONS(3125), + [anon_sym_GT_GT_GT] = ACTIONS(3127), + [anon_sym_AMP] = ACTIONS(3125), + [anon_sym_PIPE] = ACTIONS(3125), + [anon_sym_CARET] = ACTIONS(3127), + [anon_sym_AMP_AMP] = ACTIONS(3127), + [anon_sym_PIPE_PIPE] = ACTIONS(3127), + [anon_sym_EQ_EQ] = ACTIONS(3127), + [anon_sym_BANG_EQ] = ACTIONS(3127), + [anon_sym_LT] = ACTIONS(3125), + [anon_sym_LT_EQ] = ACTIONS(3127), + [anon_sym_GT] = ACTIONS(3125), + [anon_sym_GT_EQ] = ACTIONS(3127), + [anon_sym_EQ_GT] = ACTIONS(3127), + [anon_sym_QMARK_QMARK] = ACTIONS(3127), + [anon_sym_EQ] = ACTIONS(3125), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3127), + [anon_sym_null] = ACTIONS(3125), + [anon_sym_macro] = ACTIONS(3125), + [anon_sym_abstract] = ACTIONS(3125), + [anon_sym_static] = ACTIONS(3125), + [anon_sym_public] = ACTIONS(3125), + [anon_sym_private] = ACTIONS(3125), + [anon_sym_extern] = ACTIONS(3125), + [anon_sym_inline] = ACTIONS(3125), + [anon_sym_overload] = ACTIONS(3125), + [anon_sym_override] = ACTIONS(3125), + [anon_sym_final] = ACTIONS(3125), + [anon_sym_class] = ACTIONS(3125), + [anon_sym_interface] = ACTIONS(3125), + [anon_sym_enum] = ACTIONS(3125), + [anon_sym_typedef] = ACTIONS(3125), + [anon_sym_function] = ACTIONS(3125), + [anon_sym_var] = ACTIONS(3125), + [aux_sym_integer_token1] = ACTIONS(3125), + [aux_sym_integer_token2] = ACTIONS(3127), + [aux_sym_float_token1] = ACTIONS(3125), + [aux_sym_float_token2] = ACTIONS(3127), + [anon_sym_true] = ACTIONS(3125), + [anon_sym_false] = ACTIONS(3125), + [aux_sym_string_token1] = ACTIONS(3127), + [aux_sym_string_token3] = ACTIONS(3127), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [703] = { - [sym_operator] = STATE(1530), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(1857), - [sym__bitwiseOperator] = STATE(1857), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(703), - [sym_identifier] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(594), - [anon_sym_switch] = ACTIONS(592), - [anon_sym_LBRACE] = ACTIONS(594), - [anon_sym_cast] = ACTIONS(592), - [anon_sym_DOLLARtype] = ACTIONS(594), - [anon_sym_return] = ACTIONS(592), - [anon_sym_untyped] = ACTIONS(592), - [anon_sym_break] = ACTIONS(592), - [anon_sym_continue] = ACTIONS(592), - [anon_sym_LBRACK] = ACTIONS(594), - [anon_sym_this] = ACTIONS(592), - [anon_sym_new] = ACTIONS(592), - [anon_sym_TILDE] = ACTIONS(596), - [anon_sym_BANG] = ACTIONS(599), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_PLUS_PLUS] = ACTIONS(605), - [anon_sym_DASH_DASH] = ACTIONS(605), - [anon_sym_PERCENT] = ACTIONS(608), - [anon_sym_STAR] = ACTIONS(608), - [anon_sym_SLASH] = ACTIONS(611), - [anon_sym_PLUS] = ACTIONS(611), - [anon_sym_LT_LT] = ACTIONS(608), - [anon_sym_GT_GT] = ACTIONS(611), - [anon_sym_GT_GT_GT] = ACTIONS(608), - [anon_sym_AMP] = ACTIONS(611), - [anon_sym_PIPE] = ACTIONS(611), - [anon_sym_CARET] = ACTIONS(608), - [anon_sym_AMP_AMP] = ACTIONS(596), - [anon_sym_PIPE_PIPE] = ACTIONS(596), - [anon_sym_EQ_EQ] = ACTIONS(596), - [anon_sym_BANG_EQ] = ACTIONS(596), - [anon_sym_LT] = ACTIONS(599), - [anon_sym_LT_EQ] = ACTIONS(596), - [anon_sym_GT] = ACTIONS(599), - [anon_sym_GT_EQ] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(596), - [anon_sym_QMARK_QMARK] = ACTIONS(596), - [anon_sym_EQ] = ACTIONS(599), - [sym__rangeOperator] = ACTIONS(596), - [anon_sym_null] = ACTIONS(592), - [aux_sym_integer_token1] = ACTIONS(592), - [aux_sym_integer_token2] = ACTIONS(594), - [aux_sym_float_token1] = ACTIONS(592), - [aux_sym_float_token2] = ACTIONS(594), - [anon_sym_true] = ACTIONS(592), - [anon_sym_false] = ACTIONS(592), - [aux_sym_string_token1] = ACTIONS(594), - [aux_sym_string_token3] = ACTIONS(594), + [ts_builtin_sym_end] = ACTIONS(3131), + [sym_identifier] = ACTIONS(3129), + [anon_sym_POUND] = ACTIONS(3131), + [anon_sym_package] = ACTIONS(3129), + [anon_sym_import] = ACTIONS(3129), + [anon_sym_STAR] = ACTIONS(3131), + [anon_sym_using] = ACTIONS(3129), + [anon_sym_throw] = ACTIONS(3129), + [anon_sym_LPAREN] = ACTIONS(3131), + [anon_sym_switch] = ACTIONS(3129), + [anon_sym_LBRACE] = ACTIONS(3131), + [anon_sym_cast] = ACTIONS(3129), + [anon_sym_DOLLARtype] = ACTIONS(3131), + [anon_sym_for] = ACTIONS(3129), + [anon_sym_return] = ACTIONS(3129), + [anon_sym_untyped] = ACTIONS(3129), + [anon_sym_break] = ACTIONS(3129), + [anon_sym_continue] = ACTIONS(3129), + [anon_sym_LBRACK] = ACTIONS(3131), + [anon_sym_this] = ACTIONS(3129), + [anon_sym_AT] = ACTIONS(3129), + [anon_sym_AT_COLON] = ACTIONS(3131), + [anon_sym_try] = ACTIONS(3129), + [anon_sym_catch] = ACTIONS(3129), + [anon_sym_else] = ACTIONS(3129), + [anon_sym_if] = ACTIONS(3129), + [anon_sym_while] = ACTIONS(3129), + [anon_sym_do] = ACTIONS(3129), + [anon_sym_new] = ACTIONS(3129), + [anon_sym_TILDE] = ACTIONS(3131), + [anon_sym_BANG] = ACTIONS(3129), + [anon_sym_DASH] = ACTIONS(3129), + [anon_sym_PLUS_PLUS] = ACTIONS(3131), + [anon_sym_DASH_DASH] = ACTIONS(3131), + [anon_sym_PERCENT] = ACTIONS(3131), + [anon_sym_SLASH] = ACTIONS(3129), + [anon_sym_PLUS] = ACTIONS(3129), + [anon_sym_LT_LT] = ACTIONS(3131), + [anon_sym_GT_GT] = ACTIONS(3129), + [anon_sym_GT_GT_GT] = ACTIONS(3131), + [anon_sym_AMP] = ACTIONS(3129), + [anon_sym_PIPE] = ACTIONS(3129), + [anon_sym_CARET] = ACTIONS(3131), + [anon_sym_AMP_AMP] = ACTIONS(3131), + [anon_sym_PIPE_PIPE] = ACTIONS(3131), + [anon_sym_EQ_EQ] = ACTIONS(3131), + [anon_sym_BANG_EQ] = ACTIONS(3131), + [anon_sym_LT] = ACTIONS(3129), + [anon_sym_LT_EQ] = ACTIONS(3131), + [anon_sym_GT] = ACTIONS(3129), + [anon_sym_GT_EQ] = ACTIONS(3131), + [anon_sym_EQ_GT] = ACTIONS(3131), + [anon_sym_QMARK_QMARK] = ACTIONS(3131), + [anon_sym_EQ] = ACTIONS(3129), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3131), + [anon_sym_null] = ACTIONS(3129), + [anon_sym_macro] = ACTIONS(3129), + [anon_sym_abstract] = ACTIONS(3129), + [anon_sym_static] = ACTIONS(3129), + [anon_sym_public] = ACTIONS(3129), + [anon_sym_private] = ACTIONS(3129), + [anon_sym_extern] = ACTIONS(3129), + [anon_sym_inline] = ACTIONS(3129), + [anon_sym_overload] = ACTIONS(3129), + [anon_sym_override] = ACTIONS(3129), + [anon_sym_final] = ACTIONS(3129), + [anon_sym_class] = ACTIONS(3129), + [anon_sym_interface] = ACTIONS(3129), + [anon_sym_enum] = ACTIONS(3129), + [anon_sym_typedef] = ACTIONS(3129), + [anon_sym_function] = ACTIONS(3129), + [anon_sym_var] = ACTIONS(3129), + [aux_sym_integer_token1] = ACTIONS(3129), + [aux_sym_integer_token2] = ACTIONS(3131), + [aux_sym_float_token1] = ACTIONS(3129), + [aux_sym_float_token2] = ACTIONS(3131), + [anon_sym_true] = ACTIONS(3129), + [anon_sym_false] = ACTIONS(3129), + [aux_sym_string_token1] = ACTIONS(3131), + [aux_sym_string_token3] = ACTIONS(3131), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [704] = { - [sym__rhs_expression] = STATE(281), - [sym_member_expression] = STATE(259), - [sym__lhs_expression] = STATE(2181), - [sym__call] = STATE(262), - [sym__constructor_call] = STATE(261), - [sym_call_expression] = STATE(281), - [sym__literal] = STATE(1198), - [sym_integer] = STATE(1198), - [sym_float] = STATE(1198), - [sym_bool] = STATE(1198), - [sym_string] = STATE(1175), - [sym_null] = STATE(1198), - [sym_array] = STATE(1198), - [sym_map] = STATE(1198), - [sym_object] = STATE(1198), - [sym_pair] = STATE(1198), - [sym_identifier] = ACTIONS(2435), - [anon_sym_DOT] = ACTIONS(526), - [anon_sym_LBRACE] = ACTIONS(430), - [anon_sym_case] = ACTIONS(526), - [anon_sym_default] = ACTIONS(526), - [anon_sym_COMMA] = ACTIONS(528), - [anon_sym_LBRACK] = ACTIONS(442), - [anon_sym_this] = ACTIONS(538), - [anon_sym_QMARK] = ACTIONS(526), - [anon_sym_new] = ACTIONS(448), - [anon_sym_TILDE] = ACTIONS(528), - [anon_sym_BANG] = ACTIONS(526), - [anon_sym_DASH] = ACTIONS(526), - [anon_sym_PLUS_PLUS] = ACTIONS(528), - [anon_sym_DASH_DASH] = ACTIONS(528), - [anon_sym_PERCENT] = ACTIONS(528), - [anon_sym_STAR] = ACTIONS(528), - [anon_sym_SLASH] = ACTIONS(526), - [anon_sym_PLUS] = ACTIONS(526), - [anon_sym_LT_LT] = ACTIONS(528), - [anon_sym_GT_GT] = ACTIONS(526), - [anon_sym_GT_GT_GT] = ACTIONS(528), - [anon_sym_AMP] = ACTIONS(526), - [anon_sym_PIPE] = ACTIONS(526), - [anon_sym_CARET] = ACTIONS(528), - [anon_sym_AMP_AMP] = ACTIONS(528), - [anon_sym_PIPE_PIPE] = ACTIONS(528), - [anon_sym_EQ_EQ] = ACTIONS(528), - [anon_sym_BANG_EQ] = ACTIONS(528), - [anon_sym_LT] = ACTIONS(526), - [anon_sym_LT_EQ] = ACTIONS(528), - [anon_sym_GT] = ACTIONS(526), - [anon_sym_GT_EQ] = ACTIONS(528), - [anon_sym_EQ_GT] = ACTIONS(528), - [anon_sym_QMARK_QMARK] = ACTIONS(528), - [anon_sym_EQ] = ACTIONS(526), - [sym__rangeOperator] = ACTIONS(528), - [anon_sym_null] = ACTIONS(450), - [aux_sym_integer_token1] = ACTIONS(452), - [aux_sym_integer_token2] = ACTIONS(454), - [aux_sym_float_token1] = ACTIONS(456), - [aux_sym_float_token2] = ACTIONS(458), - [anon_sym_true] = ACTIONS(460), - [anon_sym_false] = ACTIONS(460), - [aux_sym_string_token1] = ACTIONS(462), - [aux_sym_string_token3] = ACTIONS(464), - [sym_comment] = ACTIONS(3), - [sym__closing_brace_marker] = ACTIONS(528), + [ts_builtin_sym_end] = ACTIONS(3135), + [sym_identifier] = ACTIONS(3133), + [anon_sym_POUND] = ACTIONS(3135), + [anon_sym_package] = ACTIONS(3133), + [anon_sym_import] = ACTIONS(3133), + [anon_sym_STAR] = ACTIONS(3135), + [anon_sym_using] = ACTIONS(3133), + [anon_sym_throw] = ACTIONS(3133), + [anon_sym_LPAREN] = ACTIONS(3135), + [anon_sym_switch] = ACTIONS(3133), + [anon_sym_LBRACE] = ACTIONS(3135), + [anon_sym_cast] = ACTIONS(3133), + [anon_sym_DOLLARtype] = ACTIONS(3135), + [anon_sym_for] = ACTIONS(3133), + [anon_sym_return] = ACTIONS(3133), + [anon_sym_untyped] = ACTIONS(3133), + [anon_sym_break] = ACTIONS(3133), + [anon_sym_continue] = ACTIONS(3133), + [anon_sym_LBRACK] = ACTIONS(3135), + [anon_sym_this] = ACTIONS(3133), + [anon_sym_AT] = ACTIONS(3133), + [anon_sym_AT_COLON] = ACTIONS(3135), + [anon_sym_try] = ACTIONS(3133), + [anon_sym_catch] = ACTIONS(3133), + [anon_sym_else] = ACTIONS(3133), + [anon_sym_if] = ACTIONS(3133), + [anon_sym_while] = ACTIONS(3133), + [anon_sym_do] = ACTIONS(3133), + [anon_sym_new] = ACTIONS(3133), + [anon_sym_TILDE] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(3133), + [anon_sym_DASH] = ACTIONS(3133), + [anon_sym_PLUS_PLUS] = ACTIONS(3135), + [anon_sym_DASH_DASH] = ACTIONS(3135), + [anon_sym_PERCENT] = ACTIONS(3135), + [anon_sym_SLASH] = ACTIONS(3133), + [anon_sym_PLUS] = ACTIONS(3133), + [anon_sym_LT_LT] = ACTIONS(3135), + [anon_sym_GT_GT] = ACTIONS(3133), + [anon_sym_GT_GT_GT] = ACTIONS(3135), + [anon_sym_AMP] = ACTIONS(3133), + [anon_sym_PIPE] = ACTIONS(3133), + [anon_sym_CARET] = ACTIONS(3135), + [anon_sym_AMP_AMP] = ACTIONS(3135), + [anon_sym_PIPE_PIPE] = ACTIONS(3135), + [anon_sym_EQ_EQ] = ACTIONS(3135), + [anon_sym_BANG_EQ] = ACTIONS(3135), + [anon_sym_LT] = ACTIONS(3133), + [anon_sym_LT_EQ] = ACTIONS(3135), + [anon_sym_GT] = ACTIONS(3133), + [anon_sym_GT_EQ] = ACTIONS(3135), + [anon_sym_EQ_GT] = ACTIONS(3135), + [anon_sym_QMARK_QMARK] = ACTIONS(3135), + [anon_sym_EQ] = ACTIONS(3133), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3135), + [anon_sym_null] = ACTIONS(3133), + [anon_sym_macro] = ACTIONS(3133), + [anon_sym_abstract] = ACTIONS(3133), + [anon_sym_static] = ACTIONS(3133), + [anon_sym_public] = ACTIONS(3133), + [anon_sym_private] = ACTIONS(3133), + [anon_sym_extern] = ACTIONS(3133), + [anon_sym_inline] = ACTIONS(3133), + [anon_sym_overload] = ACTIONS(3133), + [anon_sym_override] = ACTIONS(3133), + [anon_sym_final] = ACTIONS(3133), + [anon_sym_class] = ACTIONS(3133), + [anon_sym_interface] = ACTIONS(3133), + [anon_sym_enum] = ACTIONS(3133), + [anon_sym_typedef] = ACTIONS(3133), + [anon_sym_function] = ACTIONS(3133), + [anon_sym_var] = ACTIONS(3133), + [aux_sym_integer_token1] = ACTIONS(3133), + [aux_sym_integer_token2] = ACTIONS(3135), + [aux_sym_float_token1] = ACTIONS(3133), + [aux_sym_float_token2] = ACTIONS(3135), + [anon_sym_true] = ACTIONS(3133), + [anon_sym_false] = ACTIONS(3133), + [aux_sym_string_token1] = ACTIONS(3135), + [aux_sym_string_token3] = ACTIONS(3135), + [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, [705] = { - [sym_operator] = STATE(692), - [sym__unaryOperator] = STATE(218), - [sym__prefixUnaryOperator] = STATE(218), - [sym__postfixUnaryOperator] = STATE(218), - [sym__binaryOperator] = STATE(218), - [sym__arithmeticOperator] = STATE(218), - [sym__bitwiseOperator] = STATE(218), - [sym__logicalOperator] = STATE(218), - [sym__comparisonOperator] = STATE(218), - [sym__miscOperator] = STATE(218), - [sym__assignmentOperator] = STATE(218), - [sym__compoundAssignmentOperator] = STATE(218), - [aux_sym_expression_repeat1] = STATE(702), - [sym_identifier] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_RPAREN] = ACTIONS(2387), - [anon_sym_switch] = ACTIONS(2389), - [anon_sym_LBRACE] = ACTIONS(2387), - [anon_sym_cast] = ACTIONS(2389), - [anon_sym_DOLLARtype] = ACTIONS(2387), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_untyped] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_LBRACK] = ACTIONS(2387), - [anon_sym_this] = ACTIONS(2389), - [anon_sym_new] = ACTIONS(2389), - [anon_sym_TILDE] = ACTIONS(47), - [anon_sym_BANG] = ACTIONS(49), - [anon_sym_DASH] = ACTIONS(582), - [anon_sym_PLUS_PLUS] = ACTIONS(53), - [anon_sym_DASH_DASH] = ACTIONS(53), - [anon_sym_PERCENT] = ACTIONS(47), - [anon_sym_STAR] = ACTIONS(47), - [anon_sym_SLASH] = ACTIONS(49), - [anon_sym_PLUS] = ACTIONS(49), - [anon_sym_LT_LT] = ACTIONS(47), - [anon_sym_GT_GT] = ACTIONS(49), - [anon_sym_GT_GT_GT] = ACTIONS(47), - [anon_sym_AMP] = ACTIONS(49), - [anon_sym_PIPE] = ACTIONS(49), - [anon_sym_CARET] = ACTIONS(47), - [anon_sym_AMP_AMP] = ACTIONS(47), - [anon_sym_PIPE_PIPE] = ACTIONS(47), - [anon_sym_EQ_EQ] = ACTIONS(47), - [anon_sym_BANG_EQ] = ACTIONS(47), - [anon_sym_LT] = ACTIONS(49), - [anon_sym_LT_EQ] = ACTIONS(47), - [anon_sym_GT] = ACTIONS(49), - [anon_sym_GT_EQ] = ACTIONS(47), - [anon_sym_EQ_GT] = ACTIONS(47), - [anon_sym_QMARK_QMARK] = ACTIONS(47), - [anon_sym_EQ] = ACTIONS(49), - [sym__rangeOperator] = ACTIONS(47), - [anon_sym_null] = ACTIONS(2389), - [aux_sym_integer_token1] = ACTIONS(2389), - [aux_sym_integer_token2] = ACTIONS(2387), - [aux_sym_float_token1] = ACTIONS(2389), - [aux_sym_float_token2] = ACTIONS(2387), - [anon_sym_true] = ACTIONS(2389), - [anon_sym_false] = ACTIONS(2389), - [aux_sym_string_token1] = ACTIONS(2387), - [aux_sym_string_token3] = ACTIONS(2387), + [ts_builtin_sym_end] = ACTIONS(3139), + [sym_identifier] = ACTIONS(3137), + [anon_sym_POUND] = ACTIONS(3139), + [anon_sym_package] = ACTIONS(3137), + [anon_sym_import] = ACTIONS(3137), + [anon_sym_STAR] = ACTIONS(3139), + [anon_sym_using] = ACTIONS(3137), + [anon_sym_throw] = ACTIONS(3137), + [anon_sym_LPAREN] = ACTIONS(3139), + [anon_sym_switch] = ACTIONS(3137), + [anon_sym_LBRACE] = ACTIONS(3139), + [anon_sym_cast] = ACTIONS(3137), + [anon_sym_DOLLARtype] = ACTIONS(3139), + [anon_sym_for] = ACTIONS(3137), + [anon_sym_return] = ACTIONS(3137), + [anon_sym_untyped] = ACTIONS(3137), + [anon_sym_break] = ACTIONS(3137), + [anon_sym_continue] = ACTIONS(3137), + [anon_sym_LBRACK] = ACTIONS(3139), + [anon_sym_this] = ACTIONS(3137), + [anon_sym_AT] = ACTIONS(3137), + [anon_sym_AT_COLON] = ACTIONS(3139), + [anon_sym_try] = ACTIONS(3137), + [anon_sym_catch] = ACTIONS(3137), + [anon_sym_else] = ACTIONS(3137), + [anon_sym_if] = ACTIONS(3137), + [anon_sym_while] = ACTIONS(3137), + [anon_sym_do] = ACTIONS(3137), + [anon_sym_new] = ACTIONS(3137), + [anon_sym_TILDE] = ACTIONS(3139), + [anon_sym_BANG] = ACTIONS(3137), + [anon_sym_DASH] = ACTIONS(3137), + [anon_sym_PLUS_PLUS] = ACTIONS(3139), + [anon_sym_DASH_DASH] = ACTIONS(3139), + [anon_sym_PERCENT] = ACTIONS(3139), + [anon_sym_SLASH] = ACTIONS(3137), + [anon_sym_PLUS] = ACTIONS(3137), + [anon_sym_LT_LT] = ACTIONS(3139), + [anon_sym_GT_GT] = ACTIONS(3137), + [anon_sym_GT_GT_GT] = ACTIONS(3139), + [anon_sym_AMP] = ACTIONS(3137), + [anon_sym_PIPE] = ACTIONS(3137), + [anon_sym_CARET] = ACTIONS(3139), + [anon_sym_AMP_AMP] = ACTIONS(3139), + [anon_sym_PIPE_PIPE] = ACTIONS(3139), + [anon_sym_EQ_EQ] = ACTIONS(3139), + [anon_sym_BANG_EQ] = ACTIONS(3139), + [anon_sym_LT] = ACTIONS(3137), + [anon_sym_LT_EQ] = ACTIONS(3139), + [anon_sym_GT] = ACTIONS(3137), + [anon_sym_GT_EQ] = ACTIONS(3139), + [anon_sym_EQ_GT] = ACTIONS(3139), + [anon_sym_QMARK_QMARK] = ACTIONS(3139), + [anon_sym_EQ] = ACTIONS(3137), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3139), + [anon_sym_null] = ACTIONS(3137), + [anon_sym_macro] = ACTIONS(3137), + [anon_sym_abstract] = ACTIONS(3137), + [anon_sym_static] = ACTIONS(3137), + [anon_sym_public] = ACTIONS(3137), + [anon_sym_private] = ACTIONS(3137), + [anon_sym_extern] = ACTIONS(3137), + [anon_sym_inline] = ACTIONS(3137), + [anon_sym_overload] = ACTIONS(3137), + [anon_sym_override] = ACTIONS(3137), + [anon_sym_final] = ACTIONS(3137), + [anon_sym_class] = ACTIONS(3137), + [anon_sym_interface] = ACTIONS(3137), + [anon_sym_enum] = ACTIONS(3137), + [anon_sym_typedef] = ACTIONS(3137), + [anon_sym_function] = ACTIONS(3137), + [anon_sym_var] = ACTIONS(3137), + [aux_sym_integer_token1] = ACTIONS(3137), + [aux_sym_integer_token2] = ACTIONS(3139), + [aux_sym_float_token1] = ACTIONS(3137), + [aux_sym_float_token2] = ACTIONS(3139), + [anon_sym_true] = ACTIONS(3137), + [anon_sym_false] = ACTIONS(3137), + [aux_sym_string_token1] = ACTIONS(3139), + [aux_sym_string_token3] = ACTIONS(3139), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [706] = { + [ts_builtin_sym_end] = ACTIONS(3253), + [sym_identifier] = ACTIONS(3251), + [anon_sym_POUND] = ACTIONS(3253), + [anon_sym_package] = ACTIONS(3251), + [anon_sym_import] = ACTIONS(3251), + [anon_sym_STAR] = ACTIONS(3253), + [anon_sym_using] = ACTIONS(3251), + [anon_sym_throw] = ACTIONS(3251), + [anon_sym_LPAREN] = ACTIONS(3253), + [anon_sym_switch] = ACTIONS(3251), + [anon_sym_LBRACE] = ACTIONS(3253), + [anon_sym_cast] = ACTIONS(3251), + [anon_sym_DOLLARtype] = ACTIONS(3253), + [anon_sym_for] = ACTIONS(3251), + [anon_sym_return] = ACTIONS(3251), + [anon_sym_untyped] = ACTIONS(3251), + [anon_sym_break] = ACTIONS(3251), + [anon_sym_continue] = ACTIONS(3251), + [anon_sym_LBRACK] = ACTIONS(3253), + [anon_sym_this] = ACTIONS(3251), + [anon_sym_AT] = ACTIONS(3251), + [anon_sym_AT_COLON] = ACTIONS(3253), + [anon_sym_try] = ACTIONS(3251), + [anon_sym_catch] = ACTIONS(3251), + [anon_sym_else] = ACTIONS(3251), + [anon_sym_if] = ACTIONS(3251), + [anon_sym_while] = ACTIONS(3251), + [anon_sym_do] = ACTIONS(3251), + [anon_sym_new] = ACTIONS(3251), + [anon_sym_TILDE] = ACTIONS(3253), + [anon_sym_BANG] = ACTIONS(3251), + [anon_sym_DASH] = ACTIONS(3251), + [anon_sym_PLUS_PLUS] = ACTIONS(3253), + [anon_sym_DASH_DASH] = ACTIONS(3253), + [anon_sym_PERCENT] = ACTIONS(3253), + [anon_sym_SLASH] = ACTIONS(3251), + [anon_sym_PLUS] = ACTIONS(3251), + [anon_sym_LT_LT] = ACTIONS(3253), + [anon_sym_GT_GT] = ACTIONS(3251), + [anon_sym_GT_GT_GT] = ACTIONS(3253), + [anon_sym_AMP] = ACTIONS(3251), + [anon_sym_PIPE] = ACTIONS(3251), + [anon_sym_CARET] = ACTIONS(3253), + [anon_sym_AMP_AMP] = ACTIONS(3253), + [anon_sym_PIPE_PIPE] = ACTIONS(3253), + [anon_sym_EQ_EQ] = ACTIONS(3253), + [anon_sym_BANG_EQ] = ACTIONS(3253), + [anon_sym_LT] = ACTIONS(3251), + [anon_sym_LT_EQ] = ACTIONS(3253), + [anon_sym_GT] = ACTIONS(3251), + [anon_sym_GT_EQ] = ACTIONS(3253), + [anon_sym_EQ_GT] = ACTIONS(3253), + [anon_sym_QMARK_QMARK] = ACTIONS(3253), + [anon_sym_EQ] = ACTIONS(3251), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3253), + [anon_sym_null] = ACTIONS(3251), + [anon_sym_macro] = ACTIONS(3251), + [anon_sym_abstract] = ACTIONS(3251), + [anon_sym_static] = ACTIONS(3251), + [anon_sym_public] = ACTIONS(3251), + [anon_sym_private] = ACTIONS(3251), + [anon_sym_extern] = ACTIONS(3251), + [anon_sym_inline] = ACTIONS(3251), + [anon_sym_overload] = ACTIONS(3251), + [anon_sym_override] = ACTIONS(3251), + [anon_sym_final] = ACTIONS(3251), + [anon_sym_class] = ACTIONS(3251), + [anon_sym_interface] = ACTIONS(3251), + [anon_sym_enum] = ACTIONS(3251), + [anon_sym_typedef] = ACTIONS(3251), + [anon_sym_function] = ACTIONS(3251), + [anon_sym_var] = ACTIONS(3251), + [aux_sym_integer_token1] = ACTIONS(3251), + [aux_sym_integer_token2] = ACTIONS(3253), + [aux_sym_float_token1] = ACTIONS(3251), + [aux_sym_float_token2] = ACTIONS(3253), + [anon_sym_true] = ACTIONS(3251), + [anon_sym_false] = ACTIONS(3251), + [aux_sym_string_token1] = ACTIONS(3253), + [aux_sym_string_token3] = ACTIONS(3253), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [707] = { + [ts_builtin_sym_end] = ACTIONS(3143), + [sym_identifier] = ACTIONS(3141), + [anon_sym_POUND] = ACTIONS(3143), + [anon_sym_package] = ACTIONS(3141), + [anon_sym_import] = ACTIONS(3141), + [anon_sym_STAR] = ACTIONS(3143), + [anon_sym_using] = ACTIONS(3141), + [anon_sym_throw] = ACTIONS(3141), + [anon_sym_LPAREN] = ACTIONS(3143), + [anon_sym_switch] = ACTIONS(3141), + [anon_sym_LBRACE] = ACTIONS(3143), + [anon_sym_cast] = ACTIONS(3141), + [anon_sym_DOLLARtype] = ACTIONS(3143), + [anon_sym_for] = ACTIONS(3141), + [anon_sym_return] = ACTIONS(3141), + [anon_sym_untyped] = ACTIONS(3141), + [anon_sym_break] = ACTIONS(3141), + [anon_sym_continue] = ACTIONS(3141), + [anon_sym_LBRACK] = ACTIONS(3143), + [anon_sym_this] = ACTIONS(3141), + [anon_sym_AT] = ACTIONS(3141), + [anon_sym_AT_COLON] = ACTIONS(3143), + [anon_sym_try] = ACTIONS(3141), + [anon_sym_catch] = ACTIONS(3141), + [anon_sym_else] = ACTIONS(3141), + [anon_sym_if] = ACTIONS(3141), + [anon_sym_while] = ACTIONS(3141), + [anon_sym_do] = ACTIONS(3141), + [anon_sym_new] = ACTIONS(3141), + [anon_sym_TILDE] = ACTIONS(3143), + [anon_sym_BANG] = ACTIONS(3141), + [anon_sym_DASH] = ACTIONS(3141), + [anon_sym_PLUS_PLUS] = ACTIONS(3143), + [anon_sym_DASH_DASH] = ACTIONS(3143), + [anon_sym_PERCENT] = ACTIONS(3143), + [anon_sym_SLASH] = ACTIONS(3141), + [anon_sym_PLUS] = ACTIONS(3141), + [anon_sym_LT_LT] = ACTIONS(3143), + [anon_sym_GT_GT] = ACTIONS(3141), + [anon_sym_GT_GT_GT] = ACTIONS(3143), + [anon_sym_AMP] = ACTIONS(3141), + [anon_sym_PIPE] = ACTIONS(3141), + [anon_sym_CARET] = ACTIONS(3143), + [anon_sym_AMP_AMP] = ACTIONS(3143), + [anon_sym_PIPE_PIPE] = ACTIONS(3143), + [anon_sym_EQ_EQ] = ACTIONS(3143), + [anon_sym_BANG_EQ] = ACTIONS(3143), + [anon_sym_LT] = ACTIONS(3141), + [anon_sym_LT_EQ] = ACTIONS(3143), + [anon_sym_GT] = ACTIONS(3141), + [anon_sym_GT_EQ] = ACTIONS(3143), + [anon_sym_EQ_GT] = ACTIONS(3143), + [anon_sym_QMARK_QMARK] = ACTIONS(3143), + [anon_sym_EQ] = ACTIONS(3141), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3143), + [anon_sym_null] = ACTIONS(3141), + [anon_sym_macro] = ACTIONS(3141), + [anon_sym_abstract] = ACTIONS(3141), + [anon_sym_static] = ACTIONS(3141), + [anon_sym_public] = ACTIONS(3141), + [anon_sym_private] = ACTIONS(3141), + [anon_sym_extern] = ACTIONS(3141), + [anon_sym_inline] = ACTIONS(3141), + [anon_sym_overload] = ACTIONS(3141), + [anon_sym_override] = ACTIONS(3141), + [anon_sym_final] = ACTIONS(3141), + [anon_sym_class] = ACTIONS(3141), + [anon_sym_interface] = ACTIONS(3141), + [anon_sym_enum] = ACTIONS(3141), + [anon_sym_typedef] = ACTIONS(3141), + [anon_sym_function] = ACTIONS(3141), + [anon_sym_var] = ACTIONS(3141), + [aux_sym_integer_token1] = ACTIONS(3141), + [aux_sym_integer_token2] = ACTIONS(3143), + [aux_sym_float_token1] = ACTIONS(3141), + [aux_sym_float_token2] = ACTIONS(3143), + [anon_sym_true] = ACTIONS(3141), + [anon_sym_false] = ACTIONS(3141), + [aux_sym_string_token1] = ACTIONS(3143), + [aux_sym_string_token3] = ACTIONS(3143), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [708] = { + [ts_builtin_sym_end] = ACTIONS(3147), + [sym_identifier] = ACTIONS(3145), + [anon_sym_POUND] = ACTIONS(3147), + [anon_sym_package] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_STAR] = ACTIONS(3147), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3147), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3147), + [anon_sym_cast] = ACTIONS(3145), + [anon_sym_DOLLARtype] = ACTIONS(3147), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_untyped] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3147), + [anon_sym_this] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_AT_COLON] = ACTIONS(3147), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_catch] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3147), + [anon_sym_DASH_DASH] = ACTIONS(3147), + [anon_sym_PERCENT] = ACTIONS(3147), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_LT_LT] = ACTIONS(3147), + [anon_sym_GT_GT] = ACTIONS(3145), + [anon_sym_GT_GT_GT] = ACTIONS(3147), + [anon_sym_AMP] = ACTIONS(3145), + [anon_sym_PIPE] = ACTIONS(3145), + [anon_sym_CARET] = ACTIONS(3147), + [anon_sym_AMP_AMP] = ACTIONS(3147), + [anon_sym_PIPE_PIPE] = ACTIONS(3147), + [anon_sym_EQ_EQ] = ACTIONS(3147), + [anon_sym_BANG_EQ] = ACTIONS(3147), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_LT_EQ] = ACTIONS(3147), + [anon_sym_GT] = ACTIONS(3145), + [anon_sym_GT_EQ] = ACTIONS(3147), + [anon_sym_EQ_GT] = ACTIONS(3147), + [anon_sym_QMARK_QMARK] = ACTIONS(3147), + [anon_sym_EQ] = ACTIONS(3145), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3147), + [anon_sym_null] = ACTIONS(3145), + [anon_sym_macro] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_extern] = ACTIONS(3145), + [anon_sym_inline] = ACTIONS(3145), + [anon_sym_overload] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_final] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [anon_sym_typedef] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [aux_sym_integer_token1] = ACTIONS(3145), + [aux_sym_integer_token2] = ACTIONS(3147), + [aux_sym_float_token1] = ACTIONS(3145), + [aux_sym_float_token2] = ACTIONS(3147), + [anon_sym_true] = ACTIONS(3145), + [anon_sym_false] = ACTIONS(3145), + [aux_sym_string_token1] = ACTIONS(3147), + [aux_sym_string_token3] = ACTIONS(3147), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [709] = { + [ts_builtin_sym_end] = ACTIONS(3151), + [sym_identifier] = ACTIONS(3149), + [anon_sym_POUND] = ACTIONS(3151), + [anon_sym_package] = ACTIONS(3149), + [anon_sym_import] = ACTIONS(3149), + [anon_sym_STAR] = ACTIONS(3151), + [anon_sym_using] = ACTIONS(3149), + [anon_sym_throw] = ACTIONS(3149), + [anon_sym_LPAREN] = ACTIONS(3151), + [anon_sym_switch] = ACTIONS(3149), + [anon_sym_LBRACE] = ACTIONS(3151), + [anon_sym_cast] = ACTIONS(3149), + [anon_sym_DOLLARtype] = ACTIONS(3151), + [anon_sym_for] = ACTIONS(3149), + [anon_sym_return] = ACTIONS(3149), + [anon_sym_untyped] = ACTIONS(3149), + [anon_sym_break] = ACTIONS(3149), + [anon_sym_continue] = ACTIONS(3149), + [anon_sym_LBRACK] = ACTIONS(3151), + [anon_sym_this] = ACTIONS(3149), + [anon_sym_AT] = ACTIONS(3149), + [anon_sym_AT_COLON] = ACTIONS(3151), + [anon_sym_try] = ACTIONS(3149), + [anon_sym_catch] = ACTIONS(3149), + [anon_sym_else] = ACTIONS(3149), + [anon_sym_if] = ACTIONS(3149), + [anon_sym_while] = ACTIONS(3149), + [anon_sym_do] = ACTIONS(3149), + [anon_sym_new] = ACTIONS(3149), + [anon_sym_TILDE] = ACTIONS(3151), + [anon_sym_BANG] = ACTIONS(3149), + [anon_sym_DASH] = ACTIONS(3149), + [anon_sym_PLUS_PLUS] = ACTIONS(3151), + [anon_sym_DASH_DASH] = ACTIONS(3151), + [anon_sym_PERCENT] = ACTIONS(3151), + [anon_sym_SLASH] = ACTIONS(3149), + [anon_sym_PLUS] = ACTIONS(3149), + [anon_sym_LT_LT] = ACTIONS(3151), + [anon_sym_GT_GT] = ACTIONS(3149), + [anon_sym_GT_GT_GT] = ACTIONS(3151), + [anon_sym_AMP] = ACTIONS(3149), + [anon_sym_PIPE] = ACTIONS(3149), + [anon_sym_CARET] = ACTIONS(3151), + [anon_sym_AMP_AMP] = ACTIONS(3151), + [anon_sym_PIPE_PIPE] = ACTIONS(3151), + [anon_sym_EQ_EQ] = ACTIONS(3151), + [anon_sym_BANG_EQ] = ACTIONS(3151), + [anon_sym_LT] = ACTIONS(3149), + [anon_sym_LT_EQ] = ACTIONS(3151), + [anon_sym_GT] = ACTIONS(3149), + [anon_sym_GT_EQ] = ACTIONS(3151), + [anon_sym_EQ_GT] = ACTIONS(3151), + [anon_sym_QMARK_QMARK] = ACTIONS(3151), + [anon_sym_EQ] = ACTIONS(3149), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3151), + [anon_sym_null] = ACTIONS(3149), + [anon_sym_macro] = ACTIONS(3149), + [anon_sym_abstract] = ACTIONS(3149), + [anon_sym_static] = ACTIONS(3149), + [anon_sym_public] = ACTIONS(3149), + [anon_sym_private] = ACTIONS(3149), + [anon_sym_extern] = ACTIONS(3149), + [anon_sym_inline] = ACTIONS(3149), + [anon_sym_overload] = ACTIONS(3149), + [anon_sym_override] = ACTIONS(3149), + [anon_sym_final] = ACTIONS(3149), + [anon_sym_class] = ACTIONS(3149), + [anon_sym_interface] = ACTIONS(3149), + [anon_sym_enum] = ACTIONS(3149), + [anon_sym_typedef] = ACTIONS(3149), + [anon_sym_function] = ACTIONS(3149), + [anon_sym_var] = ACTIONS(3149), + [aux_sym_integer_token1] = ACTIONS(3149), + [aux_sym_integer_token2] = ACTIONS(3151), + [aux_sym_float_token1] = ACTIONS(3149), + [aux_sym_float_token2] = ACTIONS(3151), + [anon_sym_true] = ACTIONS(3149), + [anon_sym_false] = ACTIONS(3149), + [aux_sym_string_token1] = ACTIONS(3151), + [aux_sym_string_token3] = ACTIONS(3151), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [710] = { + [ts_builtin_sym_end] = ACTIONS(3155), + [sym_identifier] = ACTIONS(3153), + [anon_sym_POUND] = ACTIONS(3155), + [anon_sym_package] = ACTIONS(3153), + [anon_sym_import] = ACTIONS(3153), + [anon_sym_STAR] = ACTIONS(3155), + [anon_sym_using] = ACTIONS(3153), + [anon_sym_throw] = ACTIONS(3153), + [anon_sym_LPAREN] = ACTIONS(3155), + [anon_sym_switch] = ACTIONS(3153), + [anon_sym_LBRACE] = ACTIONS(3155), + [anon_sym_cast] = ACTIONS(3153), + [anon_sym_DOLLARtype] = ACTIONS(3155), + [anon_sym_for] = ACTIONS(3153), + [anon_sym_return] = ACTIONS(3153), + [anon_sym_untyped] = ACTIONS(3153), + [anon_sym_break] = ACTIONS(3153), + [anon_sym_continue] = ACTIONS(3153), + [anon_sym_LBRACK] = ACTIONS(3155), + [anon_sym_this] = ACTIONS(3153), + [anon_sym_AT] = ACTIONS(3153), + [anon_sym_AT_COLON] = ACTIONS(3155), + [anon_sym_try] = ACTIONS(3153), + [anon_sym_catch] = ACTIONS(3153), + [anon_sym_else] = ACTIONS(3153), + [anon_sym_if] = ACTIONS(3153), + [anon_sym_while] = ACTIONS(3153), + [anon_sym_do] = ACTIONS(3153), + [anon_sym_new] = ACTIONS(3153), + [anon_sym_TILDE] = ACTIONS(3155), + [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_DASH] = ACTIONS(3153), + [anon_sym_PLUS_PLUS] = ACTIONS(3155), + [anon_sym_DASH_DASH] = ACTIONS(3155), + [anon_sym_PERCENT] = ACTIONS(3155), + [anon_sym_SLASH] = ACTIONS(3153), + [anon_sym_PLUS] = ACTIONS(3153), + [anon_sym_LT_LT] = ACTIONS(3155), + [anon_sym_GT_GT] = ACTIONS(3153), + [anon_sym_GT_GT_GT] = ACTIONS(3155), + [anon_sym_AMP] = ACTIONS(3153), + [anon_sym_PIPE] = ACTIONS(3153), + [anon_sym_CARET] = ACTIONS(3155), + [anon_sym_AMP_AMP] = ACTIONS(3155), + [anon_sym_PIPE_PIPE] = ACTIONS(3155), + [anon_sym_EQ_EQ] = ACTIONS(3155), + [anon_sym_BANG_EQ] = ACTIONS(3155), + [anon_sym_LT] = ACTIONS(3153), + [anon_sym_LT_EQ] = ACTIONS(3155), + [anon_sym_GT] = ACTIONS(3153), + [anon_sym_GT_EQ] = ACTIONS(3155), + [anon_sym_EQ_GT] = ACTIONS(3155), + [anon_sym_QMARK_QMARK] = ACTIONS(3155), + [anon_sym_EQ] = ACTIONS(3153), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3155), + [anon_sym_null] = ACTIONS(3153), + [anon_sym_macro] = ACTIONS(3153), + [anon_sym_abstract] = ACTIONS(3153), + [anon_sym_static] = ACTIONS(3153), + [anon_sym_public] = ACTIONS(3153), + [anon_sym_private] = ACTIONS(3153), + [anon_sym_extern] = ACTIONS(3153), + [anon_sym_inline] = ACTIONS(3153), + [anon_sym_overload] = ACTIONS(3153), + [anon_sym_override] = ACTIONS(3153), + [anon_sym_final] = ACTIONS(3153), + [anon_sym_class] = ACTIONS(3153), + [anon_sym_interface] = ACTIONS(3153), + [anon_sym_enum] = ACTIONS(3153), + [anon_sym_typedef] = ACTIONS(3153), + [anon_sym_function] = ACTIONS(3153), + [anon_sym_var] = ACTIONS(3153), + [aux_sym_integer_token1] = ACTIONS(3153), + [aux_sym_integer_token2] = ACTIONS(3155), + [aux_sym_float_token1] = ACTIONS(3153), + [aux_sym_float_token2] = ACTIONS(3155), + [anon_sym_true] = ACTIONS(3153), + [anon_sym_false] = ACTIONS(3153), + [aux_sym_string_token1] = ACTIONS(3155), + [aux_sym_string_token3] = ACTIONS(3155), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [711] = { + [ts_builtin_sym_end] = ACTIONS(3159), + [sym_identifier] = ACTIONS(3157), + [anon_sym_POUND] = ACTIONS(3159), + [anon_sym_package] = ACTIONS(3157), + [anon_sym_import] = ACTIONS(3157), + [anon_sym_STAR] = ACTIONS(3159), + [anon_sym_using] = ACTIONS(3157), + [anon_sym_throw] = ACTIONS(3157), + [anon_sym_LPAREN] = ACTIONS(3159), + [anon_sym_switch] = ACTIONS(3157), + [anon_sym_LBRACE] = ACTIONS(3159), + [anon_sym_cast] = ACTIONS(3157), + [anon_sym_DOLLARtype] = ACTIONS(3159), + [anon_sym_for] = ACTIONS(3157), + [anon_sym_return] = ACTIONS(3157), + [anon_sym_untyped] = ACTIONS(3157), + [anon_sym_break] = ACTIONS(3157), + [anon_sym_continue] = ACTIONS(3157), + [anon_sym_LBRACK] = ACTIONS(3159), + [anon_sym_this] = ACTIONS(3157), + [anon_sym_AT] = ACTIONS(3157), + [anon_sym_AT_COLON] = ACTIONS(3159), + [anon_sym_try] = ACTIONS(3157), + [anon_sym_catch] = ACTIONS(3157), + [anon_sym_else] = ACTIONS(3157), + [anon_sym_if] = ACTIONS(3157), + [anon_sym_while] = ACTIONS(3157), + [anon_sym_do] = ACTIONS(3157), + [anon_sym_new] = ACTIONS(3157), + [anon_sym_TILDE] = ACTIONS(3159), + [anon_sym_BANG] = ACTIONS(3157), + [anon_sym_DASH] = ACTIONS(3157), + [anon_sym_PLUS_PLUS] = ACTIONS(3159), + [anon_sym_DASH_DASH] = ACTIONS(3159), + [anon_sym_PERCENT] = ACTIONS(3159), + [anon_sym_SLASH] = ACTIONS(3157), + [anon_sym_PLUS] = ACTIONS(3157), + [anon_sym_LT_LT] = ACTIONS(3159), + [anon_sym_GT_GT] = ACTIONS(3157), + [anon_sym_GT_GT_GT] = ACTIONS(3159), + [anon_sym_AMP] = ACTIONS(3157), + [anon_sym_PIPE] = ACTIONS(3157), + [anon_sym_CARET] = ACTIONS(3159), + [anon_sym_AMP_AMP] = ACTIONS(3159), + [anon_sym_PIPE_PIPE] = ACTIONS(3159), + [anon_sym_EQ_EQ] = ACTIONS(3159), + [anon_sym_BANG_EQ] = ACTIONS(3159), + [anon_sym_LT] = ACTIONS(3157), + [anon_sym_LT_EQ] = ACTIONS(3159), + [anon_sym_GT] = ACTIONS(3157), + [anon_sym_GT_EQ] = ACTIONS(3159), + [anon_sym_EQ_GT] = ACTIONS(3159), + [anon_sym_QMARK_QMARK] = ACTIONS(3159), + [anon_sym_EQ] = ACTIONS(3157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), + [anon_sym_null] = ACTIONS(3157), + [anon_sym_macro] = ACTIONS(3157), + [anon_sym_abstract] = ACTIONS(3157), + [anon_sym_static] = ACTIONS(3157), + [anon_sym_public] = ACTIONS(3157), + [anon_sym_private] = ACTIONS(3157), + [anon_sym_extern] = ACTIONS(3157), + [anon_sym_inline] = ACTIONS(3157), + [anon_sym_overload] = ACTIONS(3157), + [anon_sym_override] = ACTIONS(3157), + [anon_sym_final] = ACTIONS(3157), + [anon_sym_class] = ACTIONS(3157), + [anon_sym_interface] = ACTIONS(3157), + [anon_sym_enum] = ACTIONS(3157), + [anon_sym_typedef] = ACTIONS(3157), + [anon_sym_function] = ACTIONS(3157), + [anon_sym_var] = ACTIONS(3157), + [aux_sym_integer_token1] = ACTIONS(3157), + [aux_sym_integer_token2] = ACTIONS(3159), + [aux_sym_float_token1] = ACTIONS(3157), + [aux_sym_float_token2] = ACTIONS(3159), + [anon_sym_true] = ACTIONS(3157), + [anon_sym_false] = ACTIONS(3157), + [aux_sym_string_token1] = ACTIONS(3159), + [aux_sym_string_token3] = ACTIONS(3159), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [712] = { + [ts_builtin_sym_end] = ACTIONS(3163), + [sym_identifier] = ACTIONS(3161), + [anon_sym_POUND] = ACTIONS(3163), + [anon_sym_package] = ACTIONS(3161), + [anon_sym_import] = ACTIONS(3161), + [anon_sym_STAR] = ACTIONS(3163), + [anon_sym_using] = ACTIONS(3161), + [anon_sym_throw] = ACTIONS(3161), + [anon_sym_LPAREN] = ACTIONS(3163), + [anon_sym_switch] = ACTIONS(3161), + [anon_sym_LBRACE] = ACTIONS(3163), + [anon_sym_cast] = ACTIONS(3161), + [anon_sym_DOLLARtype] = ACTIONS(3163), + [anon_sym_for] = ACTIONS(3161), + [anon_sym_return] = ACTIONS(3161), + [anon_sym_untyped] = ACTIONS(3161), + [anon_sym_break] = ACTIONS(3161), + [anon_sym_continue] = ACTIONS(3161), + [anon_sym_LBRACK] = ACTIONS(3163), + [anon_sym_this] = ACTIONS(3161), + [anon_sym_AT] = ACTIONS(3161), + [anon_sym_AT_COLON] = ACTIONS(3163), + [anon_sym_try] = ACTIONS(3161), + [anon_sym_catch] = ACTIONS(3161), + [anon_sym_else] = ACTIONS(3161), + [anon_sym_if] = ACTIONS(3161), + [anon_sym_while] = ACTIONS(3161), + [anon_sym_do] = ACTIONS(3161), + [anon_sym_new] = ACTIONS(3161), + [anon_sym_TILDE] = ACTIONS(3163), + [anon_sym_BANG] = ACTIONS(3161), + [anon_sym_DASH] = ACTIONS(3161), + [anon_sym_PLUS_PLUS] = ACTIONS(3163), + [anon_sym_DASH_DASH] = ACTIONS(3163), + [anon_sym_PERCENT] = ACTIONS(3163), + [anon_sym_SLASH] = ACTIONS(3161), + [anon_sym_PLUS] = ACTIONS(3161), + [anon_sym_LT_LT] = ACTIONS(3163), + [anon_sym_GT_GT] = ACTIONS(3161), + [anon_sym_GT_GT_GT] = ACTIONS(3163), + [anon_sym_AMP] = ACTIONS(3161), + [anon_sym_PIPE] = ACTIONS(3161), + [anon_sym_CARET] = ACTIONS(3163), + [anon_sym_AMP_AMP] = ACTIONS(3163), + [anon_sym_PIPE_PIPE] = ACTIONS(3163), + [anon_sym_EQ_EQ] = ACTIONS(3163), + [anon_sym_BANG_EQ] = ACTIONS(3163), + [anon_sym_LT] = ACTIONS(3161), + [anon_sym_LT_EQ] = ACTIONS(3163), + [anon_sym_GT] = ACTIONS(3161), + [anon_sym_GT_EQ] = ACTIONS(3163), + [anon_sym_EQ_GT] = ACTIONS(3163), + [anon_sym_QMARK_QMARK] = ACTIONS(3163), + [anon_sym_EQ] = ACTIONS(3161), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3163), + [anon_sym_null] = ACTIONS(3161), + [anon_sym_macro] = ACTIONS(3161), + [anon_sym_abstract] = ACTIONS(3161), + [anon_sym_static] = ACTIONS(3161), + [anon_sym_public] = ACTIONS(3161), + [anon_sym_private] = ACTIONS(3161), + [anon_sym_extern] = ACTIONS(3161), + [anon_sym_inline] = ACTIONS(3161), + [anon_sym_overload] = ACTIONS(3161), + [anon_sym_override] = ACTIONS(3161), + [anon_sym_final] = ACTIONS(3161), + [anon_sym_class] = ACTIONS(3161), + [anon_sym_interface] = ACTIONS(3161), + [anon_sym_enum] = ACTIONS(3161), + [anon_sym_typedef] = ACTIONS(3161), + [anon_sym_function] = ACTIONS(3161), + [anon_sym_var] = ACTIONS(3161), + [aux_sym_integer_token1] = ACTIONS(3161), + [aux_sym_integer_token2] = ACTIONS(3163), + [aux_sym_float_token1] = ACTIONS(3161), + [aux_sym_float_token2] = ACTIONS(3163), + [anon_sym_true] = ACTIONS(3161), + [anon_sym_false] = ACTIONS(3161), + [aux_sym_string_token1] = ACTIONS(3163), + [aux_sym_string_token3] = ACTIONS(3163), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [713] = { + [ts_builtin_sym_end] = ACTIONS(3167), + [sym_identifier] = ACTIONS(3165), + [anon_sym_POUND] = ACTIONS(3167), + [anon_sym_package] = ACTIONS(3165), + [anon_sym_import] = ACTIONS(3165), + [anon_sym_STAR] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3165), + [anon_sym_throw] = ACTIONS(3165), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3165), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_cast] = ACTIONS(3165), + [anon_sym_DOLLARtype] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3165), + [anon_sym_return] = ACTIONS(3165), + [anon_sym_untyped] = ACTIONS(3165), + [anon_sym_break] = ACTIONS(3165), + [anon_sym_continue] = ACTIONS(3165), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_this] = ACTIONS(3165), + [anon_sym_AT] = ACTIONS(3165), + [anon_sym_AT_COLON] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3165), + [anon_sym_catch] = ACTIONS(3165), + [anon_sym_else] = ACTIONS(3165), + [anon_sym_if] = ACTIONS(3165), + [anon_sym_while] = ACTIONS(3165), + [anon_sym_do] = ACTIONS(3165), + [anon_sym_new] = ACTIONS(3165), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3165), + [anon_sym_DASH] = ACTIONS(3165), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), + [anon_sym_PERCENT] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3165), + [anon_sym_PLUS] = ACTIONS(3165), + [anon_sym_LT_LT] = ACTIONS(3167), + [anon_sym_GT_GT] = ACTIONS(3165), + [anon_sym_GT_GT_GT] = ACTIONS(3167), + [anon_sym_AMP] = ACTIONS(3165), + [anon_sym_PIPE] = ACTIONS(3165), + [anon_sym_CARET] = ACTIONS(3167), + [anon_sym_AMP_AMP] = ACTIONS(3167), + [anon_sym_PIPE_PIPE] = ACTIONS(3167), + [anon_sym_EQ_EQ] = ACTIONS(3167), + [anon_sym_BANG_EQ] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3165), + [anon_sym_LT_EQ] = ACTIONS(3167), + [anon_sym_GT] = ACTIONS(3165), + [anon_sym_GT_EQ] = ACTIONS(3167), + [anon_sym_EQ_GT] = ACTIONS(3167), + [anon_sym_QMARK_QMARK] = ACTIONS(3167), + [anon_sym_EQ] = ACTIONS(3165), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3167), + [anon_sym_null] = ACTIONS(3165), + [anon_sym_macro] = ACTIONS(3165), + [anon_sym_abstract] = ACTIONS(3165), + [anon_sym_static] = ACTIONS(3165), + [anon_sym_public] = ACTIONS(3165), + [anon_sym_private] = ACTIONS(3165), + [anon_sym_extern] = ACTIONS(3165), + [anon_sym_inline] = ACTIONS(3165), + [anon_sym_overload] = ACTIONS(3165), + [anon_sym_override] = ACTIONS(3165), + [anon_sym_final] = ACTIONS(3165), + [anon_sym_class] = ACTIONS(3165), + [anon_sym_interface] = ACTIONS(3165), + [anon_sym_enum] = ACTIONS(3165), + [anon_sym_typedef] = ACTIONS(3165), + [anon_sym_function] = ACTIONS(3165), + [anon_sym_var] = ACTIONS(3165), + [aux_sym_integer_token1] = ACTIONS(3165), + [aux_sym_integer_token2] = ACTIONS(3167), + [aux_sym_float_token1] = ACTIONS(3165), + [aux_sym_float_token2] = ACTIONS(3167), + [anon_sym_true] = ACTIONS(3165), + [anon_sym_false] = ACTIONS(3165), + [aux_sym_string_token1] = ACTIONS(3167), + [aux_sym_string_token3] = ACTIONS(3167), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [714] = { + [ts_builtin_sym_end] = ACTIONS(3171), + [sym_identifier] = ACTIONS(3169), + [anon_sym_POUND] = ACTIONS(3171), + [anon_sym_package] = ACTIONS(3169), + [anon_sym_import] = ACTIONS(3169), + [anon_sym_STAR] = ACTIONS(3171), + [anon_sym_using] = ACTIONS(3169), + [anon_sym_throw] = ACTIONS(3169), + [anon_sym_LPAREN] = ACTIONS(3171), + [anon_sym_switch] = ACTIONS(3169), + [anon_sym_LBRACE] = ACTIONS(3171), + [anon_sym_cast] = ACTIONS(3169), + [anon_sym_DOLLARtype] = ACTIONS(3171), + [anon_sym_for] = ACTIONS(3169), + [anon_sym_return] = ACTIONS(3169), + [anon_sym_untyped] = ACTIONS(3169), + [anon_sym_break] = ACTIONS(3169), + [anon_sym_continue] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(3171), + [anon_sym_this] = ACTIONS(3169), + [anon_sym_AT] = ACTIONS(3169), + [anon_sym_AT_COLON] = ACTIONS(3171), + [anon_sym_try] = ACTIONS(3169), + [anon_sym_catch] = ACTIONS(3169), + [anon_sym_else] = ACTIONS(3169), + [anon_sym_if] = ACTIONS(3169), + [anon_sym_while] = ACTIONS(3169), + [anon_sym_do] = ACTIONS(3169), + [anon_sym_new] = ACTIONS(3169), + [anon_sym_TILDE] = ACTIONS(3171), + [anon_sym_BANG] = ACTIONS(3169), + [anon_sym_DASH] = ACTIONS(3169), + [anon_sym_PLUS_PLUS] = ACTIONS(3171), + [anon_sym_DASH_DASH] = ACTIONS(3171), + [anon_sym_PERCENT] = ACTIONS(3171), + [anon_sym_SLASH] = ACTIONS(3169), + [anon_sym_PLUS] = ACTIONS(3169), + [anon_sym_LT_LT] = ACTIONS(3171), + [anon_sym_GT_GT] = ACTIONS(3169), + [anon_sym_GT_GT_GT] = ACTIONS(3171), + [anon_sym_AMP] = ACTIONS(3169), + [anon_sym_PIPE] = ACTIONS(3169), + [anon_sym_CARET] = ACTIONS(3171), + [anon_sym_AMP_AMP] = ACTIONS(3171), + [anon_sym_PIPE_PIPE] = ACTIONS(3171), + [anon_sym_EQ_EQ] = ACTIONS(3171), + [anon_sym_BANG_EQ] = ACTIONS(3171), + [anon_sym_LT] = ACTIONS(3169), + [anon_sym_LT_EQ] = ACTIONS(3171), + [anon_sym_GT] = ACTIONS(3169), + [anon_sym_GT_EQ] = ACTIONS(3171), + [anon_sym_EQ_GT] = ACTIONS(3171), + [anon_sym_QMARK_QMARK] = ACTIONS(3171), + [anon_sym_EQ] = ACTIONS(3169), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3171), + [anon_sym_null] = ACTIONS(3169), + [anon_sym_macro] = ACTIONS(3169), + [anon_sym_abstract] = ACTIONS(3169), + [anon_sym_static] = ACTIONS(3169), + [anon_sym_public] = ACTIONS(3169), + [anon_sym_private] = ACTIONS(3169), + [anon_sym_extern] = ACTIONS(3169), + [anon_sym_inline] = ACTIONS(3169), + [anon_sym_overload] = ACTIONS(3169), + [anon_sym_override] = ACTIONS(3169), + [anon_sym_final] = ACTIONS(3169), + [anon_sym_class] = ACTIONS(3169), + [anon_sym_interface] = ACTIONS(3169), + [anon_sym_enum] = ACTIONS(3169), + [anon_sym_typedef] = ACTIONS(3169), + [anon_sym_function] = ACTIONS(3169), + [anon_sym_var] = ACTIONS(3169), + [aux_sym_integer_token1] = ACTIONS(3169), + [aux_sym_integer_token2] = ACTIONS(3171), + [aux_sym_float_token1] = ACTIONS(3169), + [aux_sym_float_token2] = ACTIONS(3171), + [anon_sym_true] = ACTIONS(3169), + [anon_sym_false] = ACTIONS(3169), + [aux_sym_string_token1] = ACTIONS(3171), + [aux_sym_string_token3] = ACTIONS(3171), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [715] = { + [ts_builtin_sym_end] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3173), + [anon_sym_POUND] = ACTIONS(3175), + [anon_sym_package] = ACTIONS(3173), + [anon_sym_import] = ACTIONS(3173), + [anon_sym_STAR] = ACTIONS(3175), + [anon_sym_using] = ACTIONS(3173), + [anon_sym_throw] = ACTIONS(3173), + [anon_sym_LPAREN] = ACTIONS(3175), + [anon_sym_switch] = ACTIONS(3173), + [anon_sym_LBRACE] = ACTIONS(3175), + [anon_sym_cast] = ACTIONS(3173), + [anon_sym_DOLLARtype] = ACTIONS(3175), + [anon_sym_for] = ACTIONS(3173), + [anon_sym_return] = ACTIONS(3173), + [anon_sym_untyped] = ACTIONS(3173), + [anon_sym_break] = ACTIONS(3173), + [anon_sym_continue] = ACTIONS(3173), + [anon_sym_LBRACK] = ACTIONS(3175), + [anon_sym_this] = ACTIONS(3173), + [anon_sym_AT] = ACTIONS(3173), + [anon_sym_AT_COLON] = ACTIONS(3175), + [anon_sym_try] = ACTIONS(3173), + [anon_sym_catch] = ACTIONS(3173), + [anon_sym_else] = ACTIONS(3173), + [anon_sym_if] = ACTIONS(3173), + [anon_sym_while] = ACTIONS(3173), + [anon_sym_do] = ACTIONS(3173), + [anon_sym_new] = ACTIONS(3173), + [anon_sym_TILDE] = ACTIONS(3175), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_DASH] = ACTIONS(3173), + [anon_sym_PLUS_PLUS] = ACTIONS(3175), + [anon_sym_DASH_DASH] = ACTIONS(3175), + [anon_sym_PERCENT] = ACTIONS(3175), + [anon_sym_SLASH] = ACTIONS(3173), + [anon_sym_PLUS] = ACTIONS(3173), + [anon_sym_LT_LT] = ACTIONS(3175), + [anon_sym_GT_GT] = ACTIONS(3173), + [anon_sym_GT_GT_GT] = ACTIONS(3175), + [anon_sym_AMP] = ACTIONS(3173), + [anon_sym_PIPE] = ACTIONS(3173), + [anon_sym_CARET] = ACTIONS(3175), + [anon_sym_AMP_AMP] = ACTIONS(3175), + [anon_sym_PIPE_PIPE] = ACTIONS(3175), + [anon_sym_EQ_EQ] = ACTIONS(3175), + [anon_sym_BANG_EQ] = ACTIONS(3175), + [anon_sym_LT] = ACTIONS(3173), + [anon_sym_LT_EQ] = ACTIONS(3175), + [anon_sym_GT] = ACTIONS(3173), + [anon_sym_GT_EQ] = ACTIONS(3175), + [anon_sym_EQ_GT] = ACTIONS(3175), + [anon_sym_QMARK_QMARK] = ACTIONS(3175), + [anon_sym_EQ] = ACTIONS(3173), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3175), + [anon_sym_null] = ACTIONS(3173), + [anon_sym_macro] = ACTIONS(3173), + [anon_sym_abstract] = ACTIONS(3173), + [anon_sym_static] = ACTIONS(3173), + [anon_sym_public] = ACTIONS(3173), + [anon_sym_private] = ACTIONS(3173), + [anon_sym_extern] = ACTIONS(3173), + [anon_sym_inline] = ACTIONS(3173), + [anon_sym_overload] = ACTIONS(3173), + [anon_sym_override] = ACTIONS(3173), + [anon_sym_final] = ACTIONS(3173), + [anon_sym_class] = ACTIONS(3173), + [anon_sym_interface] = ACTIONS(3173), + [anon_sym_enum] = ACTIONS(3173), + [anon_sym_typedef] = ACTIONS(3173), + [anon_sym_function] = ACTIONS(3173), + [anon_sym_var] = ACTIONS(3173), + [aux_sym_integer_token1] = ACTIONS(3173), + [aux_sym_integer_token2] = ACTIONS(3175), + [aux_sym_float_token1] = ACTIONS(3173), + [aux_sym_float_token2] = ACTIONS(3175), + [anon_sym_true] = ACTIONS(3173), + [anon_sym_false] = ACTIONS(3173), + [aux_sym_string_token1] = ACTIONS(3175), + [aux_sym_string_token3] = ACTIONS(3175), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [716] = { + [ts_builtin_sym_end] = ACTIONS(3179), + [sym_identifier] = ACTIONS(3177), + [anon_sym_POUND] = ACTIONS(3179), + [anon_sym_package] = ACTIONS(3177), + [anon_sym_import] = ACTIONS(3177), + [anon_sym_STAR] = ACTIONS(3179), + [anon_sym_using] = ACTIONS(3177), + [anon_sym_throw] = ACTIONS(3177), + [anon_sym_LPAREN] = ACTIONS(3179), + [anon_sym_switch] = ACTIONS(3177), + [anon_sym_LBRACE] = ACTIONS(3179), + [anon_sym_cast] = ACTIONS(3177), + [anon_sym_DOLLARtype] = ACTIONS(3179), + [anon_sym_for] = ACTIONS(3177), + [anon_sym_return] = ACTIONS(3177), + [anon_sym_untyped] = ACTIONS(3177), + [anon_sym_break] = ACTIONS(3177), + [anon_sym_continue] = ACTIONS(3177), + [anon_sym_LBRACK] = ACTIONS(3179), + [anon_sym_this] = ACTIONS(3177), + [anon_sym_AT] = ACTIONS(3177), + [anon_sym_AT_COLON] = ACTIONS(3179), + [anon_sym_try] = ACTIONS(3177), + [anon_sym_catch] = ACTIONS(3177), + [anon_sym_else] = ACTIONS(3177), + [anon_sym_if] = ACTIONS(3177), + [anon_sym_while] = ACTIONS(3177), + [anon_sym_do] = ACTIONS(3177), + [anon_sym_new] = ACTIONS(3177), + [anon_sym_TILDE] = ACTIONS(3179), + [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_DASH] = ACTIONS(3177), + [anon_sym_PLUS_PLUS] = ACTIONS(3179), + [anon_sym_DASH_DASH] = ACTIONS(3179), + [anon_sym_PERCENT] = ACTIONS(3179), + [anon_sym_SLASH] = ACTIONS(3177), + [anon_sym_PLUS] = ACTIONS(3177), + [anon_sym_LT_LT] = ACTIONS(3179), + [anon_sym_GT_GT] = ACTIONS(3177), + [anon_sym_GT_GT_GT] = ACTIONS(3179), + [anon_sym_AMP] = ACTIONS(3177), + [anon_sym_PIPE] = ACTIONS(3177), + [anon_sym_CARET] = ACTIONS(3179), + [anon_sym_AMP_AMP] = ACTIONS(3179), + [anon_sym_PIPE_PIPE] = ACTIONS(3179), + [anon_sym_EQ_EQ] = ACTIONS(3179), + [anon_sym_BANG_EQ] = ACTIONS(3179), + [anon_sym_LT] = ACTIONS(3177), + [anon_sym_LT_EQ] = ACTIONS(3179), + [anon_sym_GT] = ACTIONS(3177), + [anon_sym_GT_EQ] = ACTIONS(3179), + [anon_sym_EQ_GT] = ACTIONS(3179), + [anon_sym_QMARK_QMARK] = ACTIONS(3179), + [anon_sym_EQ] = ACTIONS(3177), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), + [anon_sym_null] = ACTIONS(3177), + [anon_sym_macro] = ACTIONS(3177), + [anon_sym_abstract] = ACTIONS(3177), + [anon_sym_static] = ACTIONS(3177), + [anon_sym_public] = ACTIONS(3177), + [anon_sym_private] = ACTIONS(3177), + [anon_sym_extern] = ACTIONS(3177), + [anon_sym_inline] = ACTIONS(3177), + [anon_sym_overload] = ACTIONS(3177), + [anon_sym_override] = ACTIONS(3177), + [anon_sym_final] = ACTIONS(3177), + [anon_sym_class] = ACTIONS(3177), + [anon_sym_interface] = ACTIONS(3177), + [anon_sym_enum] = ACTIONS(3177), + [anon_sym_typedef] = ACTIONS(3177), + [anon_sym_function] = ACTIONS(3177), + [anon_sym_var] = ACTIONS(3177), + [aux_sym_integer_token1] = ACTIONS(3177), + [aux_sym_integer_token2] = ACTIONS(3179), + [aux_sym_float_token1] = ACTIONS(3177), + [aux_sym_float_token2] = ACTIONS(3179), + [anon_sym_true] = ACTIONS(3177), + [anon_sym_false] = ACTIONS(3177), + [aux_sym_string_token1] = ACTIONS(3179), + [aux_sym_string_token3] = ACTIONS(3179), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [717] = { + [ts_builtin_sym_end] = ACTIONS(3183), + [sym_identifier] = ACTIONS(3181), + [anon_sym_POUND] = ACTIONS(3183), + [anon_sym_package] = ACTIONS(3181), + [anon_sym_import] = ACTIONS(3181), + [anon_sym_STAR] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3181), + [anon_sym_throw] = ACTIONS(3181), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3181), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_cast] = ACTIONS(3181), + [anon_sym_DOLLARtype] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3181), + [anon_sym_return] = ACTIONS(3181), + [anon_sym_untyped] = ACTIONS(3181), + [anon_sym_break] = ACTIONS(3181), + [anon_sym_continue] = ACTIONS(3181), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_this] = ACTIONS(3181), + [anon_sym_AT] = ACTIONS(3181), + [anon_sym_AT_COLON] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3181), + [anon_sym_catch] = ACTIONS(3181), + [anon_sym_else] = ACTIONS(3181), + [anon_sym_if] = ACTIONS(3181), + [anon_sym_while] = ACTIONS(3181), + [anon_sym_do] = ACTIONS(3181), + [anon_sym_new] = ACTIONS(3181), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3181), + [anon_sym_DASH] = ACTIONS(3181), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [anon_sym_PERCENT] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3181), + [anon_sym_PLUS] = ACTIONS(3181), + [anon_sym_LT_LT] = ACTIONS(3183), + [anon_sym_GT_GT] = ACTIONS(3181), + [anon_sym_GT_GT_GT] = ACTIONS(3183), + [anon_sym_AMP] = ACTIONS(3181), + [anon_sym_PIPE] = ACTIONS(3181), + [anon_sym_CARET] = ACTIONS(3183), + [anon_sym_AMP_AMP] = ACTIONS(3183), + [anon_sym_PIPE_PIPE] = ACTIONS(3183), + [anon_sym_EQ_EQ] = ACTIONS(3183), + [anon_sym_BANG_EQ] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3181), + [anon_sym_LT_EQ] = ACTIONS(3183), + [anon_sym_GT] = ACTIONS(3181), + [anon_sym_GT_EQ] = ACTIONS(3183), + [anon_sym_EQ_GT] = ACTIONS(3183), + [anon_sym_QMARK_QMARK] = ACTIONS(3183), + [anon_sym_EQ] = ACTIONS(3181), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3183), + [anon_sym_null] = ACTIONS(3181), + [anon_sym_macro] = ACTIONS(3181), + [anon_sym_abstract] = ACTIONS(3181), + [anon_sym_static] = ACTIONS(3181), + [anon_sym_public] = ACTIONS(3181), + [anon_sym_private] = ACTIONS(3181), + [anon_sym_extern] = ACTIONS(3181), + [anon_sym_inline] = ACTIONS(3181), + [anon_sym_overload] = ACTIONS(3181), + [anon_sym_override] = ACTIONS(3181), + [anon_sym_final] = ACTIONS(3181), + [anon_sym_class] = ACTIONS(3181), + [anon_sym_interface] = ACTIONS(3181), + [anon_sym_enum] = ACTIONS(3181), + [anon_sym_typedef] = ACTIONS(3181), + [anon_sym_function] = ACTIONS(3181), + [anon_sym_var] = ACTIONS(3181), + [aux_sym_integer_token1] = ACTIONS(3181), + [aux_sym_integer_token2] = ACTIONS(3183), + [aux_sym_float_token1] = ACTIONS(3181), + [aux_sym_float_token2] = ACTIONS(3183), + [anon_sym_true] = ACTIONS(3181), + [anon_sym_false] = ACTIONS(3181), + [aux_sym_string_token1] = ACTIONS(3183), + [aux_sym_string_token3] = ACTIONS(3183), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [718] = { + [ts_builtin_sym_end] = ACTIONS(3187), + [sym_identifier] = ACTIONS(3185), + [anon_sym_POUND] = ACTIONS(3187), + [anon_sym_package] = ACTIONS(3185), + [anon_sym_import] = ACTIONS(3185), + [anon_sym_STAR] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3185), + [anon_sym_throw] = ACTIONS(3185), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3185), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_cast] = ACTIONS(3185), + [anon_sym_DOLLARtype] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3185), + [anon_sym_return] = ACTIONS(3185), + [anon_sym_untyped] = ACTIONS(3185), + [anon_sym_break] = ACTIONS(3185), + [anon_sym_continue] = ACTIONS(3185), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_this] = ACTIONS(3185), + [anon_sym_AT] = ACTIONS(3185), + [anon_sym_AT_COLON] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3185), + [anon_sym_catch] = ACTIONS(3185), + [anon_sym_else] = ACTIONS(3185), + [anon_sym_if] = ACTIONS(3185), + [anon_sym_while] = ACTIONS(3185), + [anon_sym_do] = ACTIONS(3185), + [anon_sym_new] = ACTIONS(3185), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_DASH] = ACTIONS(3185), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [anon_sym_PERCENT] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3185), + [anon_sym_PLUS] = ACTIONS(3185), + [anon_sym_LT_LT] = ACTIONS(3187), + [anon_sym_GT_GT] = ACTIONS(3185), + [anon_sym_GT_GT_GT] = ACTIONS(3187), + [anon_sym_AMP] = ACTIONS(3185), + [anon_sym_PIPE] = ACTIONS(3185), + [anon_sym_CARET] = ACTIONS(3187), + [anon_sym_AMP_AMP] = ACTIONS(3187), + [anon_sym_PIPE_PIPE] = ACTIONS(3187), + [anon_sym_EQ_EQ] = ACTIONS(3187), + [anon_sym_BANG_EQ] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3185), + [anon_sym_LT_EQ] = ACTIONS(3187), + [anon_sym_GT] = ACTIONS(3185), + [anon_sym_GT_EQ] = ACTIONS(3187), + [anon_sym_EQ_GT] = ACTIONS(3187), + [anon_sym_QMARK_QMARK] = ACTIONS(3187), + [anon_sym_EQ] = ACTIONS(3185), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3187), + [anon_sym_null] = ACTIONS(3185), + [anon_sym_macro] = ACTIONS(3185), + [anon_sym_abstract] = ACTIONS(3185), + [anon_sym_static] = ACTIONS(3185), + [anon_sym_public] = ACTIONS(3185), + [anon_sym_private] = ACTIONS(3185), + [anon_sym_extern] = ACTIONS(3185), + [anon_sym_inline] = ACTIONS(3185), + [anon_sym_overload] = ACTIONS(3185), + [anon_sym_override] = ACTIONS(3185), + [anon_sym_final] = ACTIONS(3185), + [anon_sym_class] = ACTIONS(3185), + [anon_sym_interface] = ACTIONS(3185), + [anon_sym_enum] = ACTIONS(3185), + [anon_sym_typedef] = ACTIONS(3185), + [anon_sym_function] = ACTIONS(3185), + [anon_sym_var] = ACTIONS(3185), + [aux_sym_integer_token1] = ACTIONS(3185), + [aux_sym_integer_token2] = ACTIONS(3187), + [aux_sym_float_token1] = ACTIONS(3185), + [aux_sym_float_token2] = ACTIONS(3187), + [anon_sym_true] = ACTIONS(3185), + [anon_sym_false] = ACTIONS(3185), + [aux_sym_string_token1] = ACTIONS(3187), + [aux_sym_string_token3] = ACTIONS(3187), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [719] = { + [ts_builtin_sym_end] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3255), + [anon_sym_POUND] = ACTIONS(3257), + [anon_sym_package] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_STAR] = ACTIONS(3257), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3257), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3257), + [anon_sym_cast] = ACTIONS(3255), + [anon_sym_DOLLARtype] = ACTIONS(3257), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_untyped] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3257), + [anon_sym_this] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_AT_COLON] = ACTIONS(3257), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_catch] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3257), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3257), + [anon_sym_DASH_DASH] = ACTIONS(3257), + [anon_sym_PERCENT] = ACTIONS(3257), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_LT_LT] = ACTIONS(3257), + [anon_sym_GT_GT] = ACTIONS(3255), + [anon_sym_GT_GT_GT] = ACTIONS(3257), + [anon_sym_AMP] = ACTIONS(3255), + [anon_sym_PIPE] = ACTIONS(3255), + [anon_sym_CARET] = ACTIONS(3257), + [anon_sym_AMP_AMP] = ACTIONS(3257), + [anon_sym_PIPE_PIPE] = ACTIONS(3257), + [anon_sym_EQ_EQ] = ACTIONS(3257), + [anon_sym_BANG_EQ] = ACTIONS(3257), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_LT_EQ] = ACTIONS(3257), + [anon_sym_GT] = ACTIONS(3255), + [anon_sym_GT_EQ] = ACTIONS(3257), + [anon_sym_EQ_GT] = ACTIONS(3257), + [anon_sym_QMARK_QMARK] = ACTIONS(3257), + [anon_sym_EQ] = ACTIONS(3255), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3257), + [anon_sym_null] = ACTIONS(3255), + [anon_sym_macro] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_extern] = ACTIONS(3255), + [anon_sym_inline] = ACTIONS(3255), + [anon_sym_overload] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_final] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [anon_sym_typedef] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [aux_sym_integer_token1] = ACTIONS(3255), + [aux_sym_integer_token2] = ACTIONS(3257), + [aux_sym_float_token1] = ACTIONS(3255), + [aux_sym_float_token2] = ACTIONS(3257), + [anon_sym_true] = ACTIONS(3255), + [anon_sym_false] = ACTIONS(3255), + [aux_sym_string_token1] = ACTIONS(3257), + [aux_sym_string_token3] = ACTIONS(3257), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [720] = { + [ts_builtin_sym_end] = ACTIONS(3261), + [sym_identifier] = ACTIONS(3259), + [anon_sym_POUND] = ACTIONS(3261), + [anon_sym_package] = ACTIONS(3259), + [anon_sym_import] = ACTIONS(3259), + [anon_sym_STAR] = ACTIONS(3261), + [anon_sym_using] = ACTIONS(3259), + [anon_sym_throw] = ACTIONS(3259), + [anon_sym_LPAREN] = ACTIONS(3261), + [anon_sym_switch] = ACTIONS(3259), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_cast] = ACTIONS(3259), + [anon_sym_DOLLARtype] = ACTIONS(3261), + [anon_sym_for] = ACTIONS(3259), + [anon_sym_return] = ACTIONS(3259), + [anon_sym_untyped] = ACTIONS(3259), + [anon_sym_break] = ACTIONS(3259), + [anon_sym_continue] = ACTIONS(3259), + [anon_sym_LBRACK] = ACTIONS(3261), + [anon_sym_this] = ACTIONS(3259), + [anon_sym_AT] = ACTIONS(3259), + [anon_sym_AT_COLON] = ACTIONS(3261), + [anon_sym_try] = ACTIONS(3259), + [anon_sym_catch] = ACTIONS(3259), + [anon_sym_else] = ACTIONS(3259), + [anon_sym_if] = ACTIONS(3259), + [anon_sym_while] = ACTIONS(3259), + [anon_sym_do] = ACTIONS(3259), + [anon_sym_new] = ACTIONS(3259), + [anon_sym_TILDE] = ACTIONS(3261), + [anon_sym_BANG] = ACTIONS(3259), + [anon_sym_DASH] = ACTIONS(3259), + [anon_sym_PLUS_PLUS] = ACTIONS(3261), + [anon_sym_DASH_DASH] = ACTIONS(3261), + [anon_sym_PERCENT] = ACTIONS(3261), + [anon_sym_SLASH] = ACTIONS(3259), + [anon_sym_PLUS] = ACTIONS(3259), + [anon_sym_LT_LT] = ACTIONS(3261), + [anon_sym_GT_GT] = ACTIONS(3259), + [anon_sym_GT_GT_GT] = ACTIONS(3261), + [anon_sym_AMP] = ACTIONS(3259), + [anon_sym_PIPE] = ACTIONS(3259), + [anon_sym_CARET] = ACTIONS(3261), + [anon_sym_AMP_AMP] = ACTIONS(3261), + [anon_sym_PIPE_PIPE] = ACTIONS(3261), + [anon_sym_EQ_EQ] = ACTIONS(3261), + [anon_sym_BANG_EQ] = ACTIONS(3261), + [anon_sym_LT] = ACTIONS(3259), + [anon_sym_LT_EQ] = ACTIONS(3261), + [anon_sym_GT] = ACTIONS(3259), + [anon_sym_GT_EQ] = ACTIONS(3261), + [anon_sym_EQ_GT] = ACTIONS(3261), + [anon_sym_QMARK_QMARK] = ACTIONS(3261), + [anon_sym_EQ] = ACTIONS(3259), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3261), + [anon_sym_null] = ACTIONS(3259), + [anon_sym_macro] = ACTIONS(3259), + [anon_sym_abstract] = ACTIONS(3259), + [anon_sym_static] = ACTIONS(3259), + [anon_sym_public] = ACTIONS(3259), + [anon_sym_private] = ACTIONS(3259), + [anon_sym_extern] = ACTIONS(3259), + [anon_sym_inline] = ACTIONS(3259), + [anon_sym_overload] = ACTIONS(3259), + [anon_sym_override] = ACTIONS(3259), + [anon_sym_final] = ACTIONS(3259), + [anon_sym_class] = ACTIONS(3259), + [anon_sym_interface] = ACTIONS(3259), + [anon_sym_enum] = ACTIONS(3259), + [anon_sym_typedef] = ACTIONS(3259), + [anon_sym_function] = ACTIONS(3259), + [anon_sym_var] = ACTIONS(3259), + [aux_sym_integer_token1] = ACTIONS(3259), + [aux_sym_integer_token2] = ACTIONS(3261), + [aux_sym_float_token1] = ACTIONS(3259), + [aux_sym_float_token2] = ACTIONS(3261), + [anon_sym_true] = ACTIONS(3259), + [anon_sym_false] = ACTIONS(3259), + [aux_sym_string_token1] = ACTIONS(3261), + [aux_sym_string_token3] = ACTIONS(3261), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [721] = { + [ts_builtin_sym_end] = ACTIONS(3265), + [sym_identifier] = ACTIONS(3263), + [anon_sym_POUND] = ACTIONS(3265), + [anon_sym_package] = ACTIONS(3263), + [anon_sym_import] = ACTIONS(3263), + [anon_sym_STAR] = ACTIONS(3265), + [anon_sym_using] = ACTIONS(3263), + [anon_sym_throw] = ACTIONS(3263), + [anon_sym_LPAREN] = ACTIONS(3265), + [anon_sym_switch] = ACTIONS(3263), + [anon_sym_LBRACE] = ACTIONS(3265), + [anon_sym_cast] = ACTIONS(3263), + [anon_sym_DOLLARtype] = ACTIONS(3265), + [anon_sym_for] = ACTIONS(3263), + [anon_sym_return] = ACTIONS(3263), + [anon_sym_untyped] = ACTIONS(3263), + [anon_sym_break] = ACTIONS(3263), + [anon_sym_continue] = ACTIONS(3263), + [anon_sym_LBRACK] = ACTIONS(3265), + [anon_sym_this] = ACTIONS(3263), + [anon_sym_AT] = ACTIONS(3263), + [anon_sym_AT_COLON] = ACTIONS(3265), + [anon_sym_try] = ACTIONS(3263), + [anon_sym_catch] = ACTIONS(3263), + [anon_sym_else] = ACTIONS(3263), + [anon_sym_if] = ACTIONS(3263), + [anon_sym_while] = ACTIONS(3263), + [anon_sym_do] = ACTIONS(3263), + [anon_sym_new] = ACTIONS(3263), + [anon_sym_TILDE] = ACTIONS(3265), + [anon_sym_BANG] = ACTIONS(3263), + [anon_sym_DASH] = ACTIONS(3263), + [anon_sym_PLUS_PLUS] = ACTIONS(3265), + [anon_sym_DASH_DASH] = ACTIONS(3265), + [anon_sym_PERCENT] = ACTIONS(3265), + [anon_sym_SLASH] = ACTIONS(3263), + [anon_sym_PLUS] = ACTIONS(3263), + [anon_sym_LT_LT] = ACTIONS(3265), + [anon_sym_GT_GT] = ACTIONS(3263), + [anon_sym_GT_GT_GT] = ACTIONS(3265), + [anon_sym_AMP] = ACTIONS(3263), + [anon_sym_PIPE] = ACTIONS(3263), + [anon_sym_CARET] = ACTIONS(3265), + [anon_sym_AMP_AMP] = ACTIONS(3265), + [anon_sym_PIPE_PIPE] = ACTIONS(3265), + [anon_sym_EQ_EQ] = ACTIONS(3265), + [anon_sym_BANG_EQ] = ACTIONS(3265), + [anon_sym_LT] = ACTIONS(3263), + [anon_sym_LT_EQ] = ACTIONS(3265), + [anon_sym_GT] = ACTIONS(3263), + [anon_sym_GT_EQ] = ACTIONS(3265), + [anon_sym_EQ_GT] = ACTIONS(3265), + [anon_sym_QMARK_QMARK] = ACTIONS(3265), + [anon_sym_EQ] = ACTIONS(3263), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3265), + [anon_sym_null] = ACTIONS(3263), + [anon_sym_macro] = ACTIONS(3263), + [anon_sym_abstract] = ACTIONS(3263), + [anon_sym_static] = ACTIONS(3263), + [anon_sym_public] = ACTIONS(3263), + [anon_sym_private] = ACTIONS(3263), + [anon_sym_extern] = ACTIONS(3263), + [anon_sym_inline] = ACTIONS(3263), + [anon_sym_overload] = ACTIONS(3263), + [anon_sym_override] = ACTIONS(3263), + [anon_sym_final] = ACTIONS(3263), + [anon_sym_class] = ACTIONS(3263), + [anon_sym_interface] = ACTIONS(3263), + [anon_sym_enum] = ACTIONS(3263), + [anon_sym_typedef] = ACTIONS(3263), + [anon_sym_function] = ACTIONS(3263), + [anon_sym_var] = ACTIONS(3263), + [aux_sym_integer_token1] = ACTIONS(3263), + [aux_sym_integer_token2] = ACTIONS(3265), + [aux_sym_float_token1] = ACTIONS(3263), + [aux_sym_float_token2] = ACTIONS(3265), + [anon_sym_true] = ACTIONS(3263), + [anon_sym_false] = ACTIONS(3263), + [aux_sym_string_token1] = ACTIONS(3265), + [aux_sym_string_token3] = ACTIONS(3265), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [722] = { + [ts_builtin_sym_end] = ACTIONS(1506), + [sym_identifier] = ACTIONS(1510), + [anon_sym_POUND] = ACTIONS(1506), + [anon_sym_package] = ACTIONS(1510), + [anon_sym_import] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1510), + [anon_sym_throw] = ACTIONS(1510), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_AT] = ACTIONS(1510), + [anon_sym_AT_COLON] = ACTIONS(1506), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_macro] = ACTIONS(1510), + [anon_sym_abstract] = ACTIONS(1510), + [anon_sym_static] = ACTIONS(1510), + [anon_sym_public] = ACTIONS(1510), + [anon_sym_private] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_inline] = ACTIONS(1510), + [anon_sym_overload] = ACTIONS(1510), + [anon_sym_override] = ACTIONS(1510), + [anon_sym_final] = ACTIONS(1510), + [anon_sym_class] = ACTIONS(1510), + [anon_sym_interface] = ACTIONS(1510), + [anon_sym_enum] = ACTIONS(1510), + [anon_sym_typedef] = ACTIONS(1510), + [anon_sym_function] = ACTIONS(1510), + [anon_sym_var] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [723] = { + [ts_builtin_sym_end] = ACTIONS(2687), + [sym_identifier] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2687), + [anon_sym_package] = ACTIONS(2685), + [anon_sym_import] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2687), + [anon_sym_using] = ACTIONS(2685), + [anon_sym_throw] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2687), + [anon_sym_switch] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2687), + [anon_sym_cast] = ACTIONS(2685), + [anon_sym_DOLLARtype] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2685), + [anon_sym_return] = ACTIONS(2685), + [anon_sym_untyped] = ACTIONS(2685), + [anon_sym_break] = ACTIONS(2685), + [anon_sym_continue] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2687), + [anon_sym_this] = ACTIONS(2685), + [anon_sym_AT] = ACTIONS(2685), + [anon_sym_AT_COLON] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2685), + [anon_sym_catch] = ACTIONS(2685), + [anon_sym_else] = ACTIONS(2685), + [anon_sym_if] = ACTIONS(2685), + [anon_sym_while] = ACTIONS(2685), + [anon_sym_do] = ACTIONS(2685), + [anon_sym_new] = ACTIONS(2685), + [anon_sym_TILDE] = ACTIONS(2687), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_PLUS_PLUS] = ACTIONS(2687), + [anon_sym_DASH_DASH] = ACTIONS(2687), + [anon_sym_PERCENT] = ACTIONS(2687), + [anon_sym_SLASH] = ACTIONS(2685), + [anon_sym_PLUS] = ACTIONS(2685), + [anon_sym_LT_LT] = ACTIONS(2687), + [anon_sym_GT_GT] = ACTIONS(2685), + [anon_sym_GT_GT_GT] = ACTIONS(2687), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_CARET] = ACTIONS(2687), + [anon_sym_AMP_AMP] = ACTIONS(2687), + [anon_sym_PIPE_PIPE] = ACTIONS(2687), + [anon_sym_EQ_EQ] = ACTIONS(2687), + [anon_sym_BANG_EQ] = ACTIONS(2687), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_LT_EQ] = ACTIONS(2687), + [anon_sym_GT] = ACTIONS(2685), + [anon_sym_GT_EQ] = ACTIONS(2687), + [anon_sym_EQ_GT] = ACTIONS(2687), + [anon_sym_QMARK_QMARK] = ACTIONS(2687), + [anon_sym_EQ] = ACTIONS(2685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2687), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_macro] = ACTIONS(2685), + [anon_sym_abstract] = ACTIONS(2685), + [anon_sym_static] = ACTIONS(2685), + [anon_sym_public] = ACTIONS(2685), + [anon_sym_private] = ACTIONS(2685), + [anon_sym_extern] = ACTIONS(2685), + [anon_sym_inline] = ACTIONS(2685), + [anon_sym_overload] = ACTIONS(2685), + [anon_sym_override] = ACTIONS(2685), + [anon_sym_final] = ACTIONS(2685), + [anon_sym_class] = ACTIONS(2685), + [anon_sym_interface] = ACTIONS(2685), + [anon_sym_enum] = ACTIONS(2685), + [anon_sym_typedef] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2685), + [anon_sym_var] = ACTIONS(2685), + [aux_sym_integer_token1] = ACTIONS(2685), + [aux_sym_integer_token2] = ACTIONS(2687), + [aux_sym_float_token1] = ACTIONS(2685), + [aux_sym_float_token2] = ACTIONS(2687), + [anon_sym_true] = ACTIONS(2685), + [anon_sym_false] = ACTIONS(2685), + [aux_sym_string_token1] = ACTIONS(2687), + [aux_sym_string_token3] = ACTIONS(2687), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [724] = { + [ts_builtin_sym_end] = ACTIONS(2875), + [sym_identifier] = ACTIONS(2873), + [anon_sym_POUND] = ACTIONS(2875), + [anon_sym_package] = ACTIONS(2873), + [anon_sym_import] = ACTIONS(2873), + [anon_sym_STAR] = ACTIONS(2875), + [anon_sym_using] = ACTIONS(2873), + [anon_sym_throw] = ACTIONS(2873), + [anon_sym_LPAREN] = ACTIONS(2875), + [anon_sym_switch] = ACTIONS(2873), + [anon_sym_LBRACE] = ACTIONS(2875), + [anon_sym_cast] = ACTIONS(2873), + [anon_sym_DOLLARtype] = ACTIONS(2875), + [anon_sym_for] = ACTIONS(2873), + [anon_sym_return] = ACTIONS(2873), + [anon_sym_untyped] = ACTIONS(2873), + [anon_sym_break] = ACTIONS(2873), + [anon_sym_continue] = ACTIONS(2873), + [anon_sym_LBRACK] = ACTIONS(2875), + [anon_sym_this] = ACTIONS(2873), + [anon_sym_AT] = ACTIONS(2873), + [anon_sym_AT_COLON] = ACTIONS(2875), + [anon_sym_try] = ACTIONS(2873), + [anon_sym_catch] = ACTIONS(2873), + [anon_sym_else] = ACTIONS(2873), + [anon_sym_if] = ACTIONS(2873), + [anon_sym_while] = ACTIONS(2873), + [anon_sym_do] = ACTIONS(2873), + [anon_sym_new] = ACTIONS(2873), + [anon_sym_TILDE] = ACTIONS(2875), + [anon_sym_BANG] = ACTIONS(2873), + [anon_sym_DASH] = ACTIONS(2873), + [anon_sym_PLUS_PLUS] = ACTIONS(2875), + [anon_sym_DASH_DASH] = ACTIONS(2875), + [anon_sym_PERCENT] = ACTIONS(2875), + [anon_sym_SLASH] = ACTIONS(2873), + [anon_sym_PLUS] = ACTIONS(2873), + [anon_sym_LT_LT] = ACTIONS(2875), + [anon_sym_GT_GT] = ACTIONS(2873), + [anon_sym_GT_GT_GT] = ACTIONS(2875), + [anon_sym_AMP] = ACTIONS(2873), + [anon_sym_PIPE] = ACTIONS(2873), + [anon_sym_CARET] = ACTIONS(2875), + [anon_sym_AMP_AMP] = ACTIONS(2875), + [anon_sym_PIPE_PIPE] = ACTIONS(2875), + [anon_sym_EQ_EQ] = ACTIONS(2875), + [anon_sym_BANG_EQ] = ACTIONS(2875), + [anon_sym_LT] = ACTIONS(2873), + [anon_sym_LT_EQ] = ACTIONS(2875), + [anon_sym_GT] = ACTIONS(2873), + [anon_sym_GT_EQ] = ACTIONS(2875), + [anon_sym_EQ_GT] = ACTIONS(2875), + [anon_sym_QMARK_QMARK] = ACTIONS(2875), + [anon_sym_EQ] = ACTIONS(2873), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2875), + [anon_sym_null] = ACTIONS(2873), + [anon_sym_macro] = ACTIONS(2873), + [anon_sym_abstract] = ACTIONS(2873), + [anon_sym_static] = ACTIONS(2873), + [anon_sym_public] = ACTIONS(2873), + [anon_sym_private] = ACTIONS(2873), + [anon_sym_extern] = ACTIONS(2873), + [anon_sym_inline] = ACTIONS(2873), + [anon_sym_overload] = ACTIONS(2873), + [anon_sym_override] = ACTIONS(2873), + [anon_sym_final] = ACTIONS(2873), + [anon_sym_class] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2873), + [anon_sym_enum] = ACTIONS(2873), + [anon_sym_typedef] = ACTIONS(2873), + [anon_sym_function] = ACTIONS(2873), + [anon_sym_var] = ACTIONS(2873), + [aux_sym_integer_token1] = ACTIONS(2873), + [aux_sym_integer_token2] = ACTIONS(2875), + [aux_sym_float_token1] = ACTIONS(2873), + [aux_sym_float_token2] = ACTIONS(2875), + [anon_sym_true] = ACTIONS(2873), + [anon_sym_false] = ACTIONS(2873), + [aux_sym_string_token1] = ACTIONS(2875), + [aux_sym_string_token3] = ACTIONS(2875), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [725] = { + [ts_builtin_sym_end] = ACTIONS(2811), + [sym_identifier] = ACTIONS(2809), + [anon_sym_POUND] = ACTIONS(2811), + [anon_sym_package] = ACTIONS(2809), + [anon_sym_import] = ACTIONS(2809), + [anon_sym_STAR] = ACTIONS(2811), + [anon_sym_using] = ACTIONS(2809), + [anon_sym_throw] = ACTIONS(2809), + [anon_sym_LPAREN] = ACTIONS(2811), + [anon_sym_switch] = ACTIONS(2809), + [anon_sym_LBRACE] = ACTIONS(2811), + [anon_sym_cast] = ACTIONS(2809), + [anon_sym_DOLLARtype] = ACTIONS(2811), + [anon_sym_for] = ACTIONS(2809), + [anon_sym_return] = ACTIONS(2809), + [anon_sym_untyped] = ACTIONS(2809), + [anon_sym_break] = ACTIONS(2809), + [anon_sym_continue] = ACTIONS(2809), + [anon_sym_LBRACK] = ACTIONS(2811), + [anon_sym_this] = ACTIONS(2809), + [anon_sym_AT] = ACTIONS(2809), + [anon_sym_AT_COLON] = ACTIONS(2811), + [anon_sym_try] = ACTIONS(2809), + [anon_sym_catch] = ACTIONS(2809), + [anon_sym_else] = ACTIONS(2809), + [anon_sym_if] = ACTIONS(2809), + [anon_sym_while] = ACTIONS(2809), + [anon_sym_do] = ACTIONS(2809), + [anon_sym_new] = ACTIONS(2809), + [anon_sym_TILDE] = ACTIONS(2811), + [anon_sym_BANG] = ACTIONS(2809), + [anon_sym_DASH] = ACTIONS(2809), + [anon_sym_PLUS_PLUS] = ACTIONS(2811), + [anon_sym_DASH_DASH] = ACTIONS(2811), + [anon_sym_PERCENT] = ACTIONS(2811), + [anon_sym_SLASH] = ACTIONS(2809), + [anon_sym_PLUS] = ACTIONS(2809), + [anon_sym_LT_LT] = ACTIONS(2811), + [anon_sym_GT_GT] = ACTIONS(2809), + [anon_sym_GT_GT_GT] = ACTIONS(2811), + [anon_sym_AMP] = ACTIONS(2809), + [anon_sym_PIPE] = ACTIONS(2809), + [anon_sym_CARET] = ACTIONS(2811), + [anon_sym_AMP_AMP] = ACTIONS(2811), + [anon_sym_PIPE_PIPE] = ACTIONS(2811), + [anon_sym_EQ_EQ] = ACTIONS(2811), + [anon_sym_BANG_EQ] = ACTIONS(2811), + [anon_sym_LT] = ACTIONS(2809), + [anon_sym_LT_EQ] = ACTIONS(2811), + [anon_sym_GT] = ACTIONS(2809), + [anon_sym_GT_EQ] = ACTIONS(2811), + [anon_sym_EQ_GT] = ACTIONS(2811), + [anon_sym_QMARK_QMARK] = ACTIONS(2811), + [anon_sym_EQ] = ACTIONS(2809), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2811), + [anon_sym_null] = ACTIONS(2809), + [anon_sym_macro] = ACTIONS(2809), + [anon_sym_abstract] = ACTIONS(2809), + [anon_sym_static] = ACTIONS(2809), + [anon_sym_public] = ACTIONS(2809), + [anon_sym_private] = ACTIONS(2809), + [anon_sym_extern] = ACTIONS(2809), + [anon_sym_inline] = ACTIONS(2809), + [anon_sym_overload] = ACTIONS(2809), + [anon_sym_override] = ACTIONS(2809), + [anon_sym_final] = ACTIONS(2809), + [anon_sym_class] = ACTIONS(2809), + [anon_sym_interface] = ACTIONS(2809), + [anon_sym_enum] = ACTIONS(2809), + [anon_sym_typedef] = ACTIONS(2809), + [anon_sym_function] = ACTIONS(2809), + [anon_sym_var] = ACTIONS(2809), + [aux_sym_integer_token1] = ACTIONS(2809), + [aux_sym_integer_token2] = ACTIONS(2811), + [aux_sym_float_token1] = ACTIONS(2809), + [aux_sym_float_token2] = ACTIONS(2811), + [anon_sym_true] = ACTIONS(2809), + [anon_sym_false] = ACTIONS(2809), + [aux_sym_string_token1] = ACTIONS(2811), + [aux_sym_string_token3] = ACTIONS(2811), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [726] = { + [sym_else_clause] = STATE(758), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_package] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_cast] = ACTIONS(2667), + [anon_sym_DOLLARtype] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_untyped] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_this] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_AT_COLON] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_EQ_GT] = ACTIONS(2669), + [anon_sym_QMARK_QMARK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_null] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym_overload] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_final] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [aux_sym_integer_token1] = ACTIONS(2667), + [aux_sym_integer_token2] = ACTIONS(2669), + [aux_sym_float_token1] = ACTIONS(2667), + [aux_sym_float_token2] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym_string_token1] = ACTIONS(2669), + [aux_sym_string_token3] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [727] = { + [ts_builtin_sym_end] = ACTIONS(2879), + [sym_identifier] = ACTIONS(2877), + [anon_sym_POUND] = ACTIONS(2879), + [anon_sym_package] = ACTIONS(2877), + [anon_sym_import] = ACTIONS(2877), + [anon_sym_STAR] = ACTIONS(2879), + [anon_sym_using] = ACTIONS(2877), + [anon_sym_throw] = ACTIONS(2877), + [anon_sym_LPAREN] = ACTIONS(2879), + [anon_sym_switch] = ACTIONS(2877), + [anon_sym_LBRACE] = ACTIONS(2879), + [anon_sym_cast] = ACTIONS(2877), + [anon_sym_DOLLARtype] = ACTIONS(2879), + [anon_sym_for] = ACTIONS(2877), + [anon_sym_return] = ACTIONS(2877), + [anon_sym_untyped] = ACTIONS(2877), + [anon_sym_break] = ACTIONS(2877), + [anon_sym_continue] = ACTIONS(2877), + [anon_sym_LBRACK] = ACTIONS(2879), + [anon_sym_this] = ACTIONS(2877), + [anon_sym_AT] = ACTIONS(2877), + [anon_sym_AT_COLON] = ACTIONS(2879), + [anon_sym_try] = ACTIONS(2877), + [anon_sym_catch] = ACTIONS(2877), + [anon_sym_else] = ACTIONS(2877), + [anon_sym_if] = ACTIONS(2877), + [anon_sym_while] = ACTIONS(2877), + [anon_sym_do] = ACTIONS(2877), + [anon_sym_new] = ACTIONS(2877), + [anon_sym_TILDE] = ACTIONS(2879), + [anon_sym_BANG] = ACTIONS(2877), + [anon_sym_DASH] = ACTIONS(2877), + [anon_sym_PLUS_PLUS] = ACTIONS(2879), + [anon_sym_DASH_DASH] = ACTIONS(2879), + [anon_sym_PERCENT] = ACTIONS(2879), + [anon_sym_SLASH] = ACTIONS(2877), + [anon_sym_PLUS] = ACTIONS(2877), + [anon_sym_LT_LT] = ACTIONS(2879), + [anon_sym_GT_GT] = ACTIONS(2877), + [anon_sym_GT_GT_GT] = ACTIONS(2879), + [anon_sym_AMP] = ACTIONS(2877), + [anon_sym_PIPE] = ACTIONS(2877), + [anon_sym_CARET] = ACTIONS(2879), + [anon_sym_AMP_AMP] = ACTIONS(2879), + [anon_sym_PIPE_PIPE] = ACTIONS(2879), + [anon_sym_EQ_EQ] = ACTIONS(2879), + [anon_sym_BANG_EQ] = ACTIONS(2879), + [anon_sym_LT] = ACTIONS(2877), + [anon_sym_LT_EQ] = ACTIONS(2879), + [anon_sym_GT] = ACTIONS(2877), + [anon_sym_GT_EQ] = ACTIONS(2879), + [anon_sym_EQ_GT] = ACTIONS(2879), + [anon_sym_QMARK_QMARK] = ACTIONS(2879), + [anon_sym_EQ] = ACTIONS(2877), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2879), + [anon_sym_null] = ACTIONS(2877), + [anon_sym_macro] = ACTIONS(2877), + [anon_sym_abstract] = ACTIONS(2877), + [anon_sym_static] = ACTIONS(2877), + [anon_sym_public] = ACTIONS(2877), + [anon_sym_private] = ACTIONS(2877), + [anon_sym_extern] = ACTIONS(2877), + [anon_sym_inline] = ACTIONS(2877), + [anon_sym_overload] = ACTIONS(2877), + [anon_sym_override] = ACTIONS(2877), + [anon_sym_final] = ACTIONS(2877), + [anon_sym_class] = ACTIONS(2877), + [anon_sym_interface] = ACTIONS(2877), + [anon_sym_enum] = ACTIONS(2877), + [anon_sym_typedef] = ACTIONS(2877), + [anon_sym_function] = ACTIONS(2877), + [anon_sym_var] = ACTIONS(2877), + [aux_sym_integer_token1] = ACTIONS(2877), + [aux_sym_integer_token2] = ACTIONS(2879), + [aux_sym_float_token1] = ACTIONS(2877), + [aux_sym_float_token2] = ACTIONS(2879), + [anon_sym_true] = ACTIONS(2877), + [anon_sym_false] = ACTIONS(2877), + [aux_sym_string_token1] = ACTIONS(2879), + [aux_sym_string_token3] = ACTIONS(2879), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [728] = { + [ts_builtin_sym_end] = ACTIONS(2883), + [sym_identifier] = ACTIONS(2881), + [anon_sym_POUND] = ACTIONS(2883), + [anon_sym_package] = ACTIONS(2881), + [anon_sym_import] = ACTIONS(2881), + [anon_sym_STAR] = ACTIONS(2883), + [anon_sym_using] = ACTIONS(2881), + [anon_sym_throw] = ACTIONS(2881), + [anon_sym_LPAREN] = ACTIONS(2883), + [anon_sym_switch] = ACTIONS(2881), + [anon_sym_LBRACE] = ACTIONS(2883), + [anon_sym_cast] = ACTIONS(2881), + [anon_sym_DOLLARtype] = ACTIONS(2883), + [anon_sym_for] = ACTIONS(2881), + [anon_sym_return] = ACTIONS(2881), + [anon_sym_untyped] = ACTIONS(2881), + [anon_sym_break] = ACTIONS(2881), + [anon_sym_continue] = ACTIONS(2881), + [anon_sym_LBRACK] = ACTIONS(2883), + [anon_sym_this] = ACTIONS(2881), + [anon_sym_AT] = ACTIONS(2881), + [anon_sym_AT_COLON] = ACTIONS(2883), + [anon_sym_try] = ACTIONS(2881), + [anon_sym_catch] = ACTIONS(2881), + [anon_sym_else] = ACTIONS(2881), + [anon_sym_if] = ACTIONS(2881), + [anon_sym_while] = ACTIONS(2881), + [anon_sym_do] = ACTIONS(2881), + [anon_sym_new] = ACTIONS(2881), + [anon_sym_TILDE] = ACTIONS(2883), + [anon_sym_BANG] = ACTIONS(2881), + [anon_sym_DASH] = ACTIONS(2881), + [anon_sym_PLUS_PLUS] = ACTIONS(2883), + [anon_sym_DASH_DASH] = ACTIONS(2883), + [anon_sym_PERCENT] = ACTIONS(2883), + [anon_sym_SLASH] = ACTIONS(2881), + [anon_sym_PLUS] = ACTIONS(2881), + [anon_sym_LT_LT] = ACTIONS(2883), + [anon_sym_GT_GT] = ACTIONS(2881), + [anon_sym_GT_GT_GT] = ACTIONS(2883), + [anon_sym_AMP] = ACTIONS(2881), + [anon_sym_PIPE] = ACTIONS(2881), + [anon_sym_CARET] = ACTIONS(2883), + [anon_sym_AMP_AMP] = ACTIONS(2883), + [anon_sym_PIPE_PIPE] = ACTIONS(2883), + [anon_sym_EQ_EQ] = ACTIONS(2883), + [anon_sym_BANG_EQ] = ACTIONS(2883), + [anon_sym_LT] = ACTIONS(2881), + [anon_sym_LT_EQ] = ACTIONS(2883), + [anon_sym_GT] = ACTIONS(2881), + [anon_sym_GT_EQ] = ACTIONS(2883), + [anon_sym_EQ_GT] = ACTIONS(2883), + [anon_sym_QMARK_QMARK] = ACTIONS(2883), + [anon_sym_EQ] = ACTIONS(2881), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2883), + [anon_sym_null] = ACTIONS(2881), + [anon_sym_macro] = ACTIONS(2881), + [anon_sym_abstract] = ACTIONS(2881), + [anon_sym_static] = ACTIONS(2881), + [anon_sym_public] = ACTIONS(2881), + [anon_sym_private] = ACTIONS(2881), + [anon_sym_extern] = ACTIONS(2881), + [anon_sym_inline] = ACTIONS(2881), + [anon_sym_overload] = ACTIONS(2881), + [anon_sym_override] = ACTIONS(2881), + [anon_sym_final] = ACTIONS(2881), + [anon_sym_class] = ACTIONS(2881), + [anon_sym_interface] = ACTIONS(2881), + [anon_sym_enum] = ACTIONS(2881), + [anon_sym_typedef] = ACTIONS(2881), + [anon_sym_function] = ACTIONS(2881), + [anon_sym_var] = ACTIONS(2881), + [aux_sym_integer_token1] = ACTIONS(2881), + [aux_sym_integer_token2] = ACTIONS(2883), + [aux_sym_float_token1] = ACTIONS(2881), + [aux_sym_float_token2] = ACTIONS(2883), + [anon_sym_true] = ACTIONS(2881), + [anon_sym_false] = ACTIONS(2881), + [aux_sym_string_token1] = ACTIONS(2883), + [aux_sym_string_token3] = ACTIONS(2883), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [729] = { + [ts_builtin_sym_end] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3275), + [anon_sym_POUND] = ACTIONS(3277), + [anon_sym_package] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_STAR] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_cast] = ACTIONS(3275), + [anon_sym_DOLLARtype] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_untyped] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_this] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_AT_COLON] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_catch] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [anon_sym_PERCENT] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_LT_LT] = ACTIONS(3277), + [anon_sym_GT_GT] = ACTIONS(3275), + [anon_sym_GT_GT_GT] = ACTIONS(3277), + [anon_sym_AMP] = ACTIONS(3275), + [anon_sym_PIPE] = ACTIONS(3275), + [anon_sym_CARET] = ACTIONS(3277), + [anon_sym_AMP_AMP] = ACTIONS(3277), + [anon_sym_PIPE_PIPE] = ACTIONS(3277), + [anon_sym_EQ_EQ] = ACTIONS(3277), + [anon_sym_BANG_EQ] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_LT_EQ] = ACTIONS(3277), + [anon_sym_GT] = ACTIONS(3275), + [anon_sym_GT_EQ] = ACTIONS(3277), + [anon_sym_EQ_GT] = ACTIONS(3277), + [anon_sym_QMARK_QMARK] = ACTIONS(3277), + [anon_sym_EQ] = ACTIONS(3275), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3277), + [anon_sym_null] = ACTIONS(3275), + [anon_sym_macro] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_extern] = ACTIONS(3275), + [anon_sym_inline] = ACTIONS(3275), + [anon_sym_overload] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_final] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [anon_sym_typedef] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [aux_sym_integer_token1] = ACTIONS(3275), + [aux_sym_integer_token2] = ACTIONS(3277), + [aux_sym_float_token1] = ACTIONS(3275), + [aux_sym_float_token2] = ACTIONS(3277), + [anon_sym_true] = ACTIONS(3275), + [anon_sym_false] = ACTIONS(3275), + [aux_sym_string_token1] = ACTIONS(3277), + [aux_sym_string_token3] = ACTIONS(3277), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [730] = { + [ts_builtin_sym_end] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3279), + [anon_sym_POUND] = ACTIONS(3281), + [anon_sym_package] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_STAR] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_cast] = ACTIONS(3279), + [anon_sym_DOLLARtype] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_untyped] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_this] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_AT_COLON] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_catch] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [anon_sym_PERCENT] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_LT_LT] = ACTIONS(3281), + [anon_sym_GT_GT] = ACTIONS(3279), + [anon_sym_GT_GT_GT] = ACTIONS(3281), + [anon_sym_AMP] = ACTIONS(3279), + [anon_sym_PIPE] = ACTIONS(3279), + [anon_sym_CARET] = ACTIONS(3281), + [anon_sym_AMP_AMP] = ACTIONS(3281), + [anon_sym_PIPE_PIPE] = ACTIONS(3281), + [anon_sym_EQ_EQ] = ACTIONS(3281), + [anon_sym_BANG_EQ] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_LT_EQ] = ACTIONS(3281), + [anon_sym_GT] = ACTIONS(3279), + [anon_sym_GT_EQ] = ACTIONS(3281), + [anon_sym_EQ_GT] = ACTIONS(3281), + [anon_sym_QMARK_QMARK] = ACTIONS(3281), + [anon_sym_EQ] = ACTIONS(3279), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3281), + [anon_sym_null] = ACTIONS(3279), + [anon_sym_macro] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_extern] = ACTIONS(3279), + [anon_sym_inline] = ACTIONS(3279), + [anon_sym_overload] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_final] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [anon_sym_typedef] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [aux_sym_integer_token1] = ACTIONS(3279), + [aux_sym_integer_token2] = ACTIONS(3281), + [aux_sym_float_token1] = ACTIONS(3279), + [aux_sym_float_token2] = ACTIONS(3281), + [anon_sym_true] = ACTIONS(3279), + [anon_sym_false] = ACTIONS(3279), + [aux_sym_string_token1] = ACTIONS(3281), + [aux_sym_string_token3] = ACTIONS(3281), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [731] = { + [ts_builtin_sym_end] = ACTIONS(3285), + [sym_identifier] = ACTIONS(3283), + [anon_sym_POUND] = ACTIONS(3285), + [anon_sym_package] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_STAR] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_cast] = ACTIONS(3283), + [anon_sym_DOLLARtype] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_untyped] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_this] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_AT_COLON] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_catch] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [anon_sym_PERCENT] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_LT_LT] = ACTIONS(3285), + [anon_sym_GT_GT] = ACTIONS(3283), + [anon_sym_GT_GT_GT] = ACTIONS(3285), + [anon_sym_AMP] = ACTIONS(3283), + [anon_sym_PIPE] = ACTIONS(3283), + [anon_sym_CARET] = ACTIONS(3285), + [anon_sym_AMP_AMP] = ACTIONS(3285), + [anon_sym_PIPE_PIPE] = ACTIONS(3285), + [anon_sym_EQ_EQ] = ACTIONS(3285), + [anon_sym_BANG_EQ] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_LT_EQ] = ACTIONS(3285), + [anon_sym_GT] = ACTIONS(3283), + [anon_sym_GT_EQ] = ACTIONS(3285), + [anon_sym_EQ_GT] = ACTIONS(3285), + [anon_sym_QMARK_QMARK] = ACTIONS(3285), + [anon_sym_EQ] = ACTIONS(3283), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3285), + [anon_sym_null] = ACTIONS(3283), + [anon_sym_macro] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_extern] = ACTIONS(3283), + [anon_sym_inline] = ACTIONS(3283), + [anon_sym_overload] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_final] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [anon_sym_typedef] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [aux_sym_integer_token1] = ACTIONS(3283), + [aux_sym_integer_token2] = ACTIONS(3285), + [aux_sym_float_token1] = ACTIONS(3283), + [aux_sym_float_token2] = ACTIONS(3285), + [anon_sym_true] = ACTIONS(3283), + [anon_sym_false] = ACTIONS(3283), + [aux_sym_string_token1] = ACTIONS(3285), + [aux_sym_string_token3] = ACTIONS(3285), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [732] = { + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3207), + [anon_sym_POUND] = ACTIONS(3209), + [anon_sym_package] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_STAR] = ACTIONS(3209), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3209), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3209), + [anon_sym_cast] = ACTIONS(3207), + [anon_sym_DOLLARtype] = ACTIONS(3209), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_untyped] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3209), + [anon_sym_this] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_AT_COLON] = ACTIONS(3209), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_catch] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3209), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3209), + [anon_sym_DASH_DASH] = ACTIONS(3209), + [anon_sym_PERCENT] = ACTIONS(3209), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_LT_LT] = ACTIONS(3209), + [anon_sym_GT_GT] = ACTIONS(3207), + [anon_sym_GT_GT_GT] = ACTIONS(3209), + [anon_sym_AMP] = ACTIONS(3207), + [anon_sym_PIPE] = ACTIONS(3207), + [anon_sym_CARET] = ACTIONS(3209), + [anon_sym_AMP_AMP] = ACTIONS(3209), + [anon_sym_PIPE_PIPE] = ACTIONS(3209), + [anon_sym_EQ_EQ] = ACTIONS(3209), + [anon_sym_BANG_EQ] = ACTIONS(3209), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_LT_EQ] = ACTIONS(3209), + [anon_sym_GT] = ACTIONS(3207), + [anon_sym_GT_EQ] = ACTIONS(3209), + [anon_sym_EQ_GT] = ACTIONS(3209), + [anon_sym_QMARK_QMARK] = ACTIONS(3209), + [anon_sym_EQ] = ACTIONS(3207), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3209), + [anon_sym_null] = ACTIONS(3207), + [anon_sym_macro] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_extern] = ACTIONS(3207), + [anon_sym_inline] = ACTIONS(3207), + [anon_sym_overload] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_final] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [anon_sym_typedef] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [aux_sym_integer_token1] = ACTIONS(3207), + [aux_sym_integer_token2] = ACTIONS(3209), + [aux_sym_float_token1] = ACTIONS(3207), + [aux_sym_float_token2] = ACTIONS(3209), + [anon_sym_true] = ACTIONS(3207), + [anon_sym_false] = ACTIONS(3207), + [aux_sym_string_token1] = ACTIONS(3209), + [aux_sym_string_token3] = ACTIONS(3209), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [733] = { + [ts_builtin_sym_end] = ACTIONS(2625), + [sym_identifier] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(2625), + [anon_sym_package] = ACTIONS(2623), + [anon_sym_import] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2625), + [anon_sym_using] = ACTIONS(2623), + [anon_sym_throw] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2625), + [anon_sym_switch] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2625), + [anon_sym_cast] = ACTIONS(2623), + [anon_sym_DOLLARtype] = ACTIONS(2625), + [anon_sym_for] = ACTIONS(2623), + [anon_sym_return] = ACTIONS(2623), + [anon_sym_untyped] = ACTIONS(2623), + [anon_sym_break] = ACTIONS(2623), + [anon_sym_continue] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2625), + [anon_sym_this] = ACTIONS(2623), + [anon_sym_AT] = ACTIONS(2623), + [anon_sym_AT_COLON] = ACTIONS(2625), + [anon_sym_try] = ACTIONS(2623), + [anon_sym_catch] = ACTIONS(2623), + [anon_sym_else] = ACTIONS(2623), + [anon_sym_if] = ACTIONS(2623), + [anon_sym_while] = ACTIONS(2623), + [anon_sym_do] = ACTIONS(2623), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_TILDE] = ACTIONS(2625), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_PLUS_PLUS] = ACTIONS(2625), + [anon_sym_DASH_DASH] = ACTIONS(2625), + [anon_sym_PERCENT] = ACTIONS(2625), + [anon_sym_SLASH] = ACTIONS(2623), + [anon_sym_PLUS] = ACTIONS(2623), + [anon_sym_LT_LT] = ACTIONS(2625), + [anon_sym_GT_GT] = ACTIONS(2623), + [anon_sym_GT_GT_GT] = ACTIONS(2625), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_CARET] = ACTIONS(2625), + [anon_sym_AMP_AMP] = ACTIONS(2625), + [anon_sym_PIPE_PIPE] = ACTIONS(2625), + [anon_sym_EQ_EQ] = ACTIONS(2625), + [anon_sym_BANG_EQ] = ACTIONS(2625), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_LT_EQ] = ACTIONS(2625), + [anon_sym_GT] = ACTIONS(2623), + [anon_sym_GT_EQ] = ACTIONS(2625), + [anon_sym_EQ_GT] = ACTIONS(2625), + [anon_sym_QMARK_QMARK] = ACTIONS(2625), + [anon_sym_EQ] = ACTIONS(2623), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2625), + [anon_sym_null] = ACTIONS(2623), + [anon_sym_macro] = ACTIONS(2623), + [anon_sym_abstract] = ACTIONS(2623), + [anon_sym_static] = ACTIONS(2623), + [anon_sym_public] = ACTIONS(2623), + [anon_sym_private] = ACTIONS(2623), + [anon_sym_extern] = ACTIONS(2623), + [anon_sym_inline] = ACTIONS(2623), + [anon_sym_overload] = ACTIONS(2623), + [anon_sym_override] = ACTIONS(2623), + [anon_sym_final] = ACTIONS(2623), + [anon_sym_class] = ACTIONS(2623), + [anon_sym_interface] = ACTIONS(2623), + [anon_sym_enum] = ACTIONS(2623), + [anon_sym_typedef] = ACTIONS(2623), + [anon_sym_function] = ACTIONS(2623), + [anon_sym_var] = ACTIONS(2623), + [aux_sym_integer_token1] = ACTIONS(2623), + [aux_sym_integer_token2] = ACTIONS(2625), + [aux_sym_float_token1] = ACTIONS(2623), + [aux_sym_float_token2] = ACTIONS(2625), + [anon_sym_true] = ACTIONS(2623), + [anon_sym_false] = ACTIONS(2623), + [aux_sym_string_token1] = ACTIONS(2625), + [aux_sym_string_token3] = ACTIONS(2625), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [734] = { + [ts_builtin_sym_end] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3287), + [anon_sym_POUND] = ACTIONS(3289), + [anon_sym_package] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_STAR] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_cast] = ACTIONS(3287), + [anon_sym_DOLLARtype] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_untyped] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_this] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_AT_COLON] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_catch] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [anon_sym_PERCENT] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_LT_LT] = ACTIONS(3289), + [anon_sym_GT_GT] = ACTIONS(3287), + [anon_sym_GT_GT_GT] = ACTIONS(3289), + [anon_sym_AMP] = ACTIONS(3287), + [anon_sym_PIPE] = ACTIONS(3287), + [anon_sym_CARET] = ACTIONS(3289), + [anon_sym_AMP_AMP] = ACTIONS(3289), + [anon_sym_PIPE_PIPE] = ACTIONS(3289), + [anon_sym_EQ_EQ] = ACTIONS(3289), + [anon_sym_BANG_EQ] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_LT_EQ] = ACTIONS(3289), + [anon_sym_GT] = ACTIONS(3287), + [anon_sym_GT_EQ] = ACTIONS(3289), + [anon_sym_EQ_GT] = ACTIONS(3289), + [anon_sym_QMARK_QMARK] = ACTIONS(3289), + [anon_sym_EQ] = ACTIONS(3287), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3289), + [anon_sym_null] = ACTIONS(3287), + [anon_sym_macro] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_extern] = ACTIONS(3287), + [anon_sym_inline] = ACTIONS(3287), + [anon_sym_overload] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_final] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), + [anon_sym_typedef] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [aux_sym_integer_token1] = ACTIONS(3287), + [aux_sym_integer_token2] = ACTIONS(3289), + [aux_sym_float_token1] = ACTIONS(3287), + [aux_sym_float_token2] = ACTIONS(3289), + [anon_sym_true] = ACTIONS(3287), + [anon_sym_false] = ACTIONS(3287), + [aux_sym_string_token1] = ACTIONS(3289), + [aux_sym_string_token3] = ACTIONS(3289), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [735] = { + [ts_builtin_sym_end] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3291), + [anon_sym_POUND] = ACTIONS(3293), + [anon_sym_package] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_STAR] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_cast] = ACTIONS(3291), + [anon_sym_DOLLARtype] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_untyped] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_this] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_AT_COLON] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_catch] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [anon_sym_PERCENT] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_LT_LT] = ACTIONS(3293), + [anon_sym_GT_GT] = ACTIONS(3291), + [anon_sym_GT_GT_GT] = ACTIONS(3293), + [anon_sym_AMP] = ACTIONS(3291), + [anon_sym_PIPE] = ACTIONS(3291), + [anon_sym_CARET] = ACTIONS(3293), + [anon_sym_AMP_AMP] = ACTIONS(3293), + [anon_sym_PIPE_PIPE] = ACTIONS(3293), + [anon_sym_EQ_EQ] = ACTIONS(3293), + [anon_sym_BANG_EQ] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_LT_EQ] = ACTIONS(3293), + [anon_sym_GT] = ACTIONS(3291), + [anon_sym_GT_EQ] = ACTIONS(3293), + [anon_sym_EQ_GT] = ACTIONS(3293), + [anon_sym_QMARK_QMARK] = ACTIONS(3293), + [anon_sym_EQ] = ACTIONS(3291), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3293), + [anon_sym_null] = ACTIONS(3291), + [anon_sym_macro] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_extern] = ACTIONS(3291), + [anon_sym_inline] = ACTIONS(3291), + [anon_sym_overload] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_final] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [anon_sym_typedef] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [aux_sym_integer_token1] = ACTIONS(3291), + [aux_sym_integer_token2] = ACTIONS(3293), + [aux_sym_float_token1] = ACTIONS(3291), + [aux_sym_float_token2] = ACTIONS(3293), + [anon_sym_true] = ACTIONS(3291), + [anon_sym_false] = ACTIONS(3291), + [aux_sym_string_token1] = ACTIONS(3293), + [aux_sym_string_token3] = ACTIONS(3293), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [736] = { + [ts_builtin_sym_end] = ACTIONS(3297), + [sym_identifier] = ACTIONS(3295), + [anon_sym_POUND] = ACTIONS(3297), + [anon_sym_package] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_STAR] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_cast] = ACTIONS(3295), + [anon_sym_DOLLARtype] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_untyped] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_this] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_AT_COLON] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_catch] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [anon_sym_PERCENT] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_LT_LT] = ACTIONS(3297), + [anon_sym_GT_GT] = ACTIONS(3295), + [anon_sym_GT_GT_GT] = ACTIONS(3297), + [anon_sym_AMP] = ACTIONS(3295), + [anon_sym_PIPE] = ACTIONS(3295), + [anon_sym_CARET] = ACTIONS(3297), + [anon_sym_AMP_AMP] = ACTIONS(3297), + [anon_sym_PIPE_PIPE] = ACTIONS(3297), + [anon_sym_EQ_EQ] = ACTIONS(3297), + [anon_sym_BANG_EQ] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_LT_EQ] = ACTIONS(3297), + [anon_sym_GT] = ACTIONS(3295), + [anon_sym_GT_EQ] = ACTIONS(3297), + [anon_sym_EQ_GT] = ACTIONS(3297), + [anon_sym_QMARK_QMARK] = ACTIONS(3297), + [anon_sym_EQ] = ACTIONS(3295), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3297), + [anon_sym_null] = ACTIONS(3295), + [anon_sym_macro] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_extern] = ACTIONS(3295), + [anon_sym_inline] = ACTIONS(3295), + [anon_sym_overload] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_final] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [anon_sym_typedef] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [aux_sym_integer_token1] = ACTIONS(3295), + [aux_sym_integer_token2] = ACTIONS(3297), + [aux_sym_float_token1] = ACTIONS(3295), + [aux_sym_float_token2] = ACTIONS(3297), + [anon_sym_true] = ACTIONS(3295), + [anon_sym_false] = ACTIONS(3295), + [aux_sym_string_token1] = ACTIONS(3297), + [aux_sym_string_token3] = ACTIONS(3297), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [737] = { + [ts_builtin_sym_end] = ACTIONS(3301), + [sym_identifier] = ACTIONS(3299), + [anon_sym_POUND] = ACTIONS(3301), + [anon_sym_package] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_STAR] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_cast] = ACTIONS(3299), + [anon_sym_DOLLARtype] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_untyped] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_this] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_AT_COLON] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_catch] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_LT_LT] = ACTIONS(3301), + [anon_sym_GT_GT] = ACTIONS(3299), + [anon_sym_GT_GT_GT] = ACTIONS(3301), + [anon_sym_AMP] = ACTIONS(3299), + [anon_sym_PIPE] = ACTIONS(3299), + [anon_sym_CARET] = ACTIONS(3301), + [anon_sym_AMP_AMP] = ACTIONS(3301), + [anon_sym_PIPE_PIPE] = ACTIONS(3301), + [anon_sym_EQ_EQ] = ACTIONS(3301), + [anon_sym_BANG_EQ] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_LT_EQ] = ACTIONS(3301), + [anon_sym_GT] = ACTIONS(3299), + [anon_sym_GT_EQ] = ACTIONS(3301), + [anon_sym_EQ_GT] = ACTIONS(3301), + [anon_sym_QMARK_QMARK] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3299), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3301), + [anon_sym_null] = ACTIONS(3299), + [anon_sym_macro] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_extern] = ACTIONS(3299), + [anon_sym_inline] = ACTIONS(3299), + [anon_sym_overload] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_final] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [anon_sym_typedef] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [aux_sym_integer_token1] = ACTIONS(3299), + [aux_sym_integer_token2] = ACTIONS(3301), + [aux_sym_float_token1] = ACTIONS(3299), + [aux_sym_float_token2] = ACTIONS(3301), + [anon_sym_true] = ACTIONS(3299), + [anon_sym_false] = ACTIONS(3299), + [aux_sym_string_token1] = ACTIONS(3301), + [aux_sym_string_token3] = ACTIONS(3301), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [738] = { + [ts_builtin_sym_end] = ACTIONS(3305), + [sym_identifier] = ACTIONS(3303), + [anon_sym_POUND] = ACTIONS(3305), + [anon_sym_package] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_STAR] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_cast] = ACTIONS(3303), + [anon_sym_DOLLARtype] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_untyped] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_this] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_AT_COLON] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_catch] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [anon_sym_PERCENT] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_LT_LT] = ACTIONS(3305), + [anon_sym_GT_GT] = ACTIONS(3303), + [anon_sym_GT_GT_GT] = ACTIONS(3305), + [anon_sym_AMP] = ACTIONS(3303), + [anon_sym_PIPE] = ACTIONS(3303), + [anon_sym_CARET] = ACTIONS(3305), + [anon_sym_AMP_AMP] = ACTIONS(3305), + [anon_sym_PIPE_PIPE] = ACTIONS(3305), + [anon_sym_EQ_EQ] = ACTIONS(3305), + [anon_sym_BANG_EQ] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_LT_EQ] = ACTIONS(3305), + [anon_sym_GT] = ACTIONS(3303), + [anon_sym_GT_EQ] = ACTIONS(3305), + [anon_sym_EQ_GT] = ACTIONS(3305), + [anon_sym_QMARK_QMARK] = ACTIONS(3305), + [anon_sym_EQ] = ACTIONS(3303), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3305), + [anon_sym_null] = ACTIONS(3303), + [anon_sym_macro] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_extern] = ACTIONS(3303), + [anon_sym_inline] = ACTIONS(3303), + [anon_sym_overload] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_final] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), + [anon_sym_typedef] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [aux_sym_integer_token1] = ACTIONS(3303), + [aux_sym_integer_token2] = ACTIONS(3305), + [aux_sym_float_token1] = ACTIONS(3303), + [aux_sym_float_token2] = ACTIONS(3305), + [anon_sym_true] = ACTIONS(3303), + [anon_sym_false] = ACTIONS(3303), + [aux_sym_string_token1] = ACTIONS(3305), + [aux_sym_string_token3] = ACTIONS(3305), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [739] = { + [ts_builtin_sym_end] = ACTIONS(2863), + [sym_identifier] = ACTIONS(2861), + [anon_sym_POUND] = ACTIONS(2863), + [anon_sym_package] = ACTIONS(2861), + [anon_sym_import] = ACTIONS(2861), + [anon_sym_STAR] = ACTIONS(2863), + [anon_sym_using] = ACTIONS(2861), + [anon_sym_throw] = ACTIONS(2861), + [anon_sym_LPAREN] = ACTIONS(2863), + [anon_sym_switch] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_cast] = ACTIONS(2861), + [anon_sym_DOLLARtype] = ACTIONS(2863), + [anon_sym_for] = ACTIONS(2861), + [anon_sym_return] = ACTIONS(2861), + [anon_sym_untyped] = ACTIONS(2861), + [anon_sym_break] = ACTIONS(2861), + [anon_sym_continue] = ACTIONS(2861), + [anon_sym_LBRACK] = ACTIONS(2863), + [anon_sym_this] = ACTIONS(2861), + [anon_sym_AT] = ACTIONS(2861), + [anon_sym_AT_COLON] = ACTIONS(2863), + [anon_sym_try] = ACTIONS(2861), + [anon_sym_catch] = ACTIONS(2861), + [anon_sym_else] = ACTIONS(2861), + [anon_sym_if] = ACTIONS(2861), + [anon_sym_while] = ACTIONS(2861), + [anon_sym_do] = ACTIONS(2861), + [anon_sym_new] = ACTIONS(2861), + [anon_sym_TILDE] = ACTIONS(2863), + [anon_sym_BANG] = ACTIONS(2861), + [anon_sym_DASH] = ACTIONS(2861), + [anon_sym_PLUS_PLUS] = ACTIONS(2863), + [anon_sym_DASH_DASH] = ACTIONS(2863), + [anon_sym_PERCENT] = ACTIONS(2863), + [anon_sym_SLASH] = ACTIONS(2861), + [anon_sym_PLUS] = ACTIONS(2861), + [anon_sym_LT_LT] = ACTIONS(2863), + [anon_sym_GT_GT] = ACTIONS(2861), + [anon_sym_GT_GT_GT] = ACTIONS(2863), + [anon_sym_AMP] = ACTIONS(2861), + [anon_sym_PIPE] = ACTIONS(2861), + [anon_sym_CARET] = ACTIONS(2863), + [anon_sym_AMP_AMP] = ACTIONS(2863), + [anon_sym_PIPE_PIPE] = ACTIONS(2863), + [anon_sym_EQ_EQ] = ACTIONS(2863), + [anon_sym_BANG_EQ] = ACTIONS(2863), + [anon_sym_LT] = ACTIONS(2861), + [anon_sym_LT_EQ] = ACTIONS(2863), + [anon_sym_GT] = ACTIONS(2861), + [anon_sym_GT_EQ] = ACTIONS(2863), + [anon_sym_EQ_GT] = ACTIONS(2863), + [anon_sym_QMARK_QMARK] = ACTIONS(2863), + [anon_sym_EQ] = ACTIONS(2861), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2863), + [anon_sym_null] = ACTIONS(2861), + [anon_sym_macro] = ACTIONS(2861), + [anon_sym_abstract] = ACTIONS(2861), + [anon_sym_static] = ACTIONS(2861), + [anon_sym_public] = ACTIONS(2861), + [anon_sym_private] = ACTIONS(2861), + [anon_sym_extern] = ACTIONS(2861), + [anon_sym_inline] = ACTIONS(2861), + [anon_sym_overload] = ACTIONS(2861), + [anon_sym_override] = ACTIONS(2861), + [anon_sym_final] = ACTIONS(2861), + [anon_sym_class] = ACTIONS(2861), + [anon_sym_interface] = ACTIONS(2861), + [anon_sym_enum] = ACTIONS(2861), + [anon_sym_typedef] = ACTIONS(2861), + [anon_sym_function] = ACTIONS(2861), + [anon_sym_var] = ACTIONS(2861), + [aux_sym_integer_token1] = ACTIONS(2861), + [aux_sym_integer_token2] = ACTIONS(2863), + [aux_sym_float_token1] = ACTIONS(2861), + [aux_sym_float_token2] = ACTIONS(2863), + [anon_sym_true] = ACTIONS(2861), + [anon_sym_false] = ACTIONS(2861), + [aux_sym_string_token1] = ACTIONS(2863), + [aux_sym_string_token3] = ACTIONS(2863), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [740] = { + [ts_builtin_sym_end] = ACTIONS(2699), + [sym_identifier] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2699), + [anon_sym_package] = ACTIONS(2697), + [anon_sym_import] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2699), + [anon_sym_using] = ACTIONS(2697), + [anon_sym_throw] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2699), + [anon_sym_switch] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2699), + [anon_sym_cast] = ACTIONS(2697), + [anon_sym_DOLLARtype] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2697), + [anon_sym_return] = ACTIONS(2697), + [anon_sym_untyped] = ACTIONS(2697), + [anon_sym_break] = ACTIONS(2697), + [anon_sym_continue] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2699), + [anon_sym_this] = ACTIONS(2697), + [anon_sym_AT] = ACTIONS(2697), + [anon_sym_AT_COLON] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2697), + [anon_sym_catch] = ACTIONS(2697), + [anon_sym_else] = ACTIONS(2697), + [anon_sym_if] = ACTIONS(2697), + [anon_sym_while] = ACTIONS(2697), + [anon_sym_do] = ACTIONS(2697), + [anon_sym_new] = ACTIONS(2697), + [anon_sym_TILDE] = ACTIONS(2699), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_PLUS_PLUS] = ACTIONS(2699), + [anon_sym_DASH_DASH] = ACTIONS(2699), + [anon_sym_PERCENT] = ACTIONS(2699), + [anon_sym_SLASH] = ACTIONS(2697), + [anon_sym_PLUS] = ACTIONS(2697), + [anon_sym_LT_LT] = ACTIONS(2699), + [anon_sym_GT_GT] = ACTIONS(2697), + [anon_sym_GT_GT_GT] = ACTIONS(2699), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_CARET] = ACTIONS(2699), + [anon_sym_AMP_AMP] = ACTIONS(2699), + [anon_sym_PIPE_PIPE] = ACTIONS(2699), + [anon_sym_EQ_EQ] = ACTIONS(2699), + [anon_sym_BANG_EQ] = ACTIONS(2699), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_LT_EQ] = ACTIONS(2699), + [anon_sym_GT] = ACTIONS(2697), + [anon_sym_GT_EQ] = ACTIONS(2699), + [anon_sym_EQ_GT] = ACTIONS(2699), + [anon_sym_QMARK_QMARK] = ACTIONS(2699), + [anon_sym_EQ] = ACTIONS(2697), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2699), + [anon_sym_null] = ACTIONS(2697), + [anon_sym_macro] = ACTIONS(2697), + [anon_sym_abstract] = ACTIONS(2697), + [anon_sym_static] = ACTIONS(2697), + [anon_sym_public] = ACTIONS(2697), + [anon_sym_private] = ACTIONS(2697), + [anon_sym_extern] = ACTIONS(2697), + [anon_sym_inline] = ACTIONS(2697), + [anon_sym_overload] = ACTIONS(2697), + [anon_sym_override] = ACTIONS(2697), + [anon_sym_final] = ACTIONS(2697), + [anon_sym_class] = ACTIONS(2697), + [anon_sym_interface] = ACTIONS(2697), + [anon_sym_enum] = ACTIONS(2697), + [anon_sym_typedef] = ACTIONS(2697), + [anon_sym_function] = ACTIONS(2697), + [anon_sym_var] = ACTIONS(2697), + [aux_sym_integer_token1] = ACTIONS(2697), + [aux_sym_integer_token2] = ACTIONS(2699), + [aux_sym_float_token1] = ACTIONS(2697), + [aux_sym_float_token2] = ACTIONS(2699), + [anon_sym_true] = ACTIONS(2697), + [anon_sym_false] = ACTIONS(2697), + [aux_sym_string_token1] = ACTIONS(2699), + [aux_sym_string_token3] = ACTIONS(2699), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [741] = { + [ts_builtin_sym_end] = ACTIONS(2703), + [sym_identifier] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2703), + [anon_sym_package] = ACTIONS(2701), + [anon_sym_import] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2703), + [anon_sym_using] = ACTIONS(2701), + [anon_sym_throw] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2703), + [anon_sym_switch] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2703), + [anon_sym_cast] = ACTIONS(2701), + [anon_sym_DOLLARtype] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2701), + [anon_sym_return] = ACTIONS(2701), + [anon_sym_untyped] = ACTIONS(2701), + [anon_sym_break] = ACTIONS(2701), + [anon_sym_continue] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2703), + [anon_sym_this] = ACTIONS(2701), + [anon_sym_AT] = ACTIONS(2701), + [anon_sym_AT_COLON] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2701), + [anon_sym_catch] = ACTIONS(2701), + [anon_sym_else] = ACTIONS(2701), + [anon_sym_if] = ACTIONS(2701), + [anon_sym_while] = ACTIONS(2701), + [anon_sym_do] = ACTIONS(2701), + [anon_sym_new] = ACTIONS(2701), + [anon_sym_TILDE] = ACTIONS(2703), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_PLUS_PLUS] = ACTIONS(2703), + [anon_sym_DASH_DASH] = ACTIONS(2703), + [anon_sym_PERCENT] = ACTIONS(2703), + [anon_sym_SLASH] = ACTIONS(2701), + [anon_sym_PLUS] = ACTIONS(2701), + [anon_sym_LT_LT] = ACTIONS(2703), + [anon_sym_GT_GT] = ACTIONS(2701), + [anon_sym_GT_GT_GT] = ACTIONS(2703), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_CARET] = ACTIONS(2703), + [anon_sym_AMP_AMP] = ACTIONS(2703), + [anon_sym_PIPE_PIPE] = ACTIONS(2703), + [anon_sym_EQ_EQ] = ACTIONS(2703), + [anon_sym_BANG_EQ] = ACTIONS(2703), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_LT_EQ] = ACTIONS(2703), + [anon_sym_GT] = ACTIONS(2701), + [anon_sym_GT_EQ] = ACTIONS(2703), + [anon_sym_EQ_GT] = ACTIONS(2703), + [anon_sym_QMARK_QMARK] = ACTIONS(2703), + [anon_sym_EQ] = ACTIONS(2701), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2703), + [anon_sym_null] = ACTIONS(2701), + [anon_sym_macro] = ACTIONS(2701), + [anon_sym_abstract] = ACTIONS(2701), + [anon_sym_static] = ACTIONS(2701), + [anon_sym_public] = ACTIONS(2701), + [anon_sym_private] = ACTIONS(2701), + [anon_sym_extern] = ACTIONS(2701), + [anon_sym_inline] = ACTIONS(2701), + [anon_sym_overload] = ACTIONS(2701), + [anon_sym_override] = ACTIONS(2701), + [anon_sym_final] = ACTIONS(2701), + [anon_sym_class] = ACTIONS(2701), + [anon_sym_interface] = ACTIONS(2701), + [anon_sym_enum] = ACTIONS(2701), + [anon_sym_typedef] = ACTIONS(2701), + [anon_sym_function] = ACTIONS(2701), + [anon_sym_var] = ACTIONS(2701), + [aux_sym_integer_token1] = ACTIONS(2701), + [aux_sym_integer_token2] = ACTIONS(2703), + [aux_sym_float_token1] = ACTIONS(2701), + [aux_sym_float_token2] = ACTIONS(2703), + [anon_sym_true] = ACTIONS(2701), + [anon_sym_false] = ACTIONS(2701), + [aux_sym_string_token1] = ACTIONS(2703), + [aux_sym_string_token3] = ACTIONS(2703), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [742] = { + [ts_builtin_sym_end] = ACTIONS(3213), + [sym_identifier] = ACTIONS(3211), + [anon_sym_POUND] = ACTIONS(3213), + [anon_sym_package] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_STAR] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_cast] = ACTIONS(3211), + [anon_sym_DOLLARtype] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_untyped] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_this] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_AT_COLON] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_catch] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [anon_sym_PERCENT] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_LT_LT] = ACTIONS(3213), + [anon_sym_GT_GT] = ACTIONS(3211), + [anon_sym_GT_GT_GT] = ACTIONS(3213), + [anon_sym_AMP] = ACTIONS(3211), + [anon_sym_PIPE] = ACTIONS(3211), + [anon_sym_CARET] = ACTIONS(3213), + [anon_sym_AMP_AMP] = ACTIONS(3213), + [anon_sym_PIPE_PIPE] = ACTIONS(3213), + [anon_sym_EQ_EQ] = ACTIONS(3213), + [anon_sym_BANG_EQ] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_LT_EQ] = ACTIONS(3213), + [anon_sym_GT] = ACTIONS(3211), + [anon_sym_GT_EQ] = ACTIONS(3213), + [anon_sym_EQ_GT] = ACTIONS(3213), + [anon_sym_QMARK_QMARK] = ACTIONS(3213), + [anon_sym_EQ] = ACTIONS(3211), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3213), + [anon_sym_null] = ACTIONS(3211), + [anon_sym_macro] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_extern] = ACTIONS(3211), + [anon_sym_inline] = ACTIONS(3211), + [anon_sym_overload] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_final] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [anon_sym_typedef] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [aux_sym_integer_token1] = ACTIONS(3211), + [aux_sym_integer_token2] = ACTIONS(3213), + [aux_sym_float_token1] = ACTIONS(3211), + [aux_sym_float_token2] = ACTIONS(3213), + [anon_sym_true] = ACTIONS(3211), + [anon_sym_false] = ACTIONS(3211), + [aux_sym_string_token1] = ACTIONS(3213), + [aux_sym_string_token3] = ACTIONS(3213), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [743] = { + [ts_builtin_sym_end] = ACTIONS(2707), + [sym_identifier] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2707), + [anon_sym_package] = ACTIONS(2705), + [anon_sym_import] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2707), + [anon_sym_using] = ACTIONS(2705), + [anon_sym_throw] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2707), + [anon_sym_switch] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2707), + [anon_sym_cast] = ACTIONS(2705), + [anon_sym_DOLLARtype] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2705), + [anon_sym_return] = ACTIONS(2705), + [anon_sym_untyped] = ACTIONS(2705), + [anon_sym_break] = ACTIONS(2705), + [anon_sym_continue] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2707), + [anon_sym_this] = ACTIONS(2705), + [anon_sym_AT] = ACTIONS(2705), + [anon_sym_AT_COLON] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2705), + [anon_sym_catch] = ACTIONS(2705), + [anon_sym_else] = ACTIONS(2705), + [anon_sym_if] = ACTIONS(2705), + [anon_sym_while] = ACTIONS(2705), + [anon_sym_do] = ACTIONS(2705), + [anon_sym_new] = ACTIONS(2705), + [anon_sym_TILDE] = ACTIONS(2707), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_PLUS_PLUS] = ACTIONS(2707), + [anon_sym_DASH_DASH] = ACTIONS(2707), + [anon_sym_PERCENT] = ACTIONS(2707), + [anon_sym_SLASH] = ACTIONS(2705), + [anon_sym_PLUS] = ACTIONS(2705), + [anon_sym_LT_LT] = ACTIONS(2707), + [anon_sym_GT_GT] = ACTIONS(2705), + [anon_sym_GT_GT_GT] = ACTIONS(2707), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_CARET] = ACTIONS(2707), + [anon_sym_AMP_AMP] = ACTIONS(2707), + [anon_sym_PIPE_PIPE] = ACTIONS(2707), + [anon_sym_EQ_EQ] = ACTIONS(2707), + [anon_sym_BANG_EQ] = ACTIONS(2707), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_LT_EQ] = ACTIONS(2707), + [anon_sym_GT] = ACTIONS(2705), + [anon_sym_GT_EQ] = ACTIONS(2707), + [anon_sym_EQ_GT] = ACTIONS(2707), + [anon_sym_QMARK_QMARK] = ACTIONS(2707), + [anon_sym_EQ] = ACTIONS(2705), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2707), + [anon_sym_null] = ACTIONS(2705), + [anon_sym_macro] = ACTIONS(2705), + [anon_sym_abstract] = ACTIONS(2705), + [anon_sym_static] = ACTIONS(2705), + [anon_sym_public] = ACTIONS(2705), + [anon_sym_private] = ACTIONS(2705), + [anon_sym_extern] = ACTIONS(2705), + [anon_sym_inline] = ACTIONS(2705), + [anon_sym_overload] = ACTIONS(2705), + [anon_sym_override] = ACTIONS(2705), + [anon_sym_final] = ACTIONS(2705), + [anon_sym_class] = ACTIONS(2705), + [anon_sym_interface] = ACTIONS(2705), + [anon_sym_enum] = ACTIONS(2705), + [anon_sym_typedef] = ACTIONS(2705), + [anon_sym_function] = ACTIONS(2705), + [anon_sym_var] = ACTIONS(2705), + [aux_sym_integer_token1] = ACTIONS(2705), + [aux_sym_integer_token2] = ACTIONS(2707), + [aux_sym_float_token1] = ACTIONS(2705), + [aux_sym_float_token2] = ACTIONS(2707), + [anon_sym_true] = ACTIONS(2705), + [anon_sym_false] = ACTIONS(2705), + [aux_sym_string_token1] = ACTIONS(2707), + [aux_sym_string_token3] = ACTIONS(2707), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [744] = { + [ts_builtin_sym_end] = ACTIONS(3309), + [sym_identifier] = ACTIONS(3307), + [anon_sym_POUND] = ACTIONS(3309), + [anon_sym_package] = ACTIONS(3307), + [anon_sym_import] = ACTIONS(3307), + [anon_sym_STAR] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3307), + [anon_sym_throw] = ACTIONS(3307), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3307), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_cast] = ACTIONS(3307), + [anon_sym_DOLLARtype] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3307), + [anon_sym_return] = ACTIONS(3307), + [anon_sym_untyped] = ACTIONS(3307), + [anon_sym_break] = ACTIONS(3307), + [anon_sym_continue] = ACTIONS(3307), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_this] = ACTIONS(3307), + [anon_sym_AT] = ACTIONS(3307), + [anon_sym_AT_COLON] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3307), + [anon_sym_catch] = ACTIONS(3307), + [anon_sym_else] = ACTIONS(3307), + [anon_sym_if] = ACTIONS(3307), + [anon_sym_while] = ACTIONS(3307), + [anon_sym_do] = ACTIONS(3307), + [anon_sym_new] = ACTIONS(3307), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3307), + [anon_sym_DASH] = ACTIONS(3307), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3307), + [anon_sym_PLUS] = ACTIONS(3307), + [anon_sym_LT_LT] = ACTIONS(3309), + [anon_sym_GT_GT] = ACTIONS(3307), + [anon_sym_GT_GT_GT] = ACTIONS(3309), + [anon_sym_AMP] = ACTIONS(3307), + [anon_sym_PIPE] = ACTIONS(3307), + [anon_sym_CARET] = ACTIONS(3309), + [anon_sym_AMP_AMP] = ACTIONS(3309), + [anon_sym_PIPE_PIPE] = ACTIONS(3309), + [anon_sym_EQ_EQ] = ACTIONS(3309), + [anon_sym_BANG_EQ] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3307), + [anon_sym_LT_EQ] = ACTIONS(3309), + [anon_sym_GT] = ACTIONS(3307), + [anon_sym_GT_EQ] = ACTIONS(3309), + [anon_sym_EQ_GT] = ACTIONS(3309), + [anon_sym_QMARK_QMARK] = ACTIONS(3309), + [anon_sym_EQ] = ACTIONS(3307), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3309), + [anon_sym_null] = ACTIONS(3307), + [anon_sym_macro] = ACTIONS(3307), + [anon_sym_abstract] = ACTIONS(3307), + [anon_sym_static] = ACTIONS(3307), + [anon_sym_public] = ACTIONS(3307), + [anon_sym_private] = ACTIONS(3307), + [anon_sym_extern] = ACTIONS(3307), + [anon_sym_inline] = ACTIONS(3307), + [anon_sym_overload] = ACTIONS(3307), + [anon_sym_override] = ACTIONS(3307), + [anon_sym_final] = ACTIONS(3307), + [anon_sym_class] = ACTIONS(3307), + [anon_sym_interface] = ACTIONS(3307), + [anon_sym_enum] = ACTIONS(3307), + [anon_sym_typedef] = ACTIONS(3307), + [anon_sym_function] = ACTIONS(3307), + [anon_sym_var] = ACTIONS(3307), + [aux_sym_integer_token1] = ACTIONS(3307), + [aux_sym_integer_token2] = ACTIONS(3309), + [aux_sym_float_token1] = ACTIONS(3307), + [aux_sym_float_token2] = ACTIONS(3309), + [anon_sym_true] = ACTIONS(3307), + [anon_sym_false] = ACTIONS(3307), + [aux_sym_string_token1] = ACTIONS(3309), + [aux_sym_string_token3] = ACTIONS(3309), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [745] = { + [ts_builtin_sym_end] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3215), + [anon_sym_POUND] = ACTIONS(3217), + [anon_sym_package] = ACTIONS(3215), + [anon_sym_import] = ACTIONS(3215), + [anon_sym_STAR] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3215), + [anon_sym_throw] = ACTIONS(3215), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3215), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_cast] = ACTIONS(3215), + [anon_sym_DOLLARtype] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3215), + [anon_sym_return] = ACTIONS(3215), + [anon_sym_untyped] = ACTIONS(3215), + [anon_sym_break] = ACTIONS(3215), + [anon_sym_continue] = ACTIONS(3215), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_this] = ACTIONS(3215), + [anon_sym_AT] = ACTIONS(3215), + [anon_sym_AT_COLON] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3215), + [anon_sym_catch] = ACTIONS(3215), + [anon_sym_else] = ACTIONS(3215), + [anon_sym_if] = ACTIONS(3215), + [anon_sym_while] = ACTIONS(3215), + [anon_sym_do] = ACTIONS(3215), + [anon_sym_new] = ACTIONS(3215), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3215), + [anon_sym_DASH] = ACTIONS(3215), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_PERCENT] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3215), + [anon_sym_PLUS] = ACTIONS(3215), + [anon_sym_LT_LT] = ACTIONS(3217), + [anon_sym_GT_GT] = ACTIONS(3215), + [anon_sym_GT_GT_GT] = ACTIONS(3217), + [anon_sym_AMP] = ACTIONS(3215), + [anon_sym_PIPE] = ACTIONS(3215), + [anon_sym_CARET] = ACTIONS(3217), + [anon_sym_AMP_AMP] = ACTIONS(3217), + [anon_sym_PIPE_PIPE] = ACTIONS(3217), + [anon_sym_EQ_EQ] = ACTIONS(3217), + [anon_sym_BANG_EQ] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3215), + [anon_sym_LT_EQ] = ACTIONS(3217), + [anon_sym_GT] = ACTIONS(3215), + [anon_sym_GT_EQ] = ACTIONS(3217), + [anon_sym_EQ_GT] = ACTIONS(3217), + [anon_sym_QMARK_QMARK] = ACTIONS(3217), + [anon_sym_EQ] = ACTIONS(3215), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3217), + [anon_sym_null] = ACTIONS(3215), + [anon_sym_macro] = ACTIONS(3215), + [anon_sym_abstract] = ACTIONS(3215), + [anon_sym_static] = ACTIONS(3215), + [anon_sym_public] = ACTIONS(3215), + [anon_sym_private] = ACTIONS(3215), + [anon_sym_extern] = ACTIONS(3215), + [anon_sym_inline] = ACTIONS(3215), + [anon_sym_overload] = ACTIONS(3215), + [anon_sym_override] = ACTIONS(3215), + [anon_sym_final] = ACTIONS(3215), + [anon_sym_class] = ACTIONS(3215), + [anon_sym_interface] = ACTIONS(3215), + [anon_sym_enum] = ACTIONS(3215), + [anon_sym_typedef] = ACTIONS(3215), + [anon_sym_function] = ACTIONS(3215), + [anon_sym_var] = ACTIONS(3215), + [aux_sym_integer_token1] = ACTIONS(3215), + [aux_sym_integer_token2] = ACTIONS(3217), + [aux_sym_float_token1] = ACTIONS(3215), + [aux_sym_float_token2] = ACTIONS(3217), + [anon_sym_true] = ACTIONS(3215), + [anon_sym_false] = ACTIONS(3215), + [aux_sym_string_token1] = ACTIONS(3217), + [aux_sym_string_token3] = ACTIONS(3217), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [746] = { + [ts_builtin_sym_end] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3311), + [anon_sym_POUND] = ACTIONS(3313), + [anon_sym_package] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_STAR] = ACTIONS(3313), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3313), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3313), + [anon_sym_cast] = ACTIONS(3311), + [anon_sym_DOLLARtype] = ACTIONS(3313), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_untyped] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3313), + [anon_sym_this] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_AT_COLON] = ACTIONS(3313), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_catch] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3313), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3313), + [anon_sym_DASH_DASH] = ACTIONS(3313), + [anon_sym_PERCENT] = ACTIONS(3313), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_LT_LT] = ACTIONS(3313), + [anon_sym_GT_GT] = ACTIONS(3311), + [anon_sym_GT_GT_GT] = ACTIONS(3313), + [anon_sym_AMP] = ACTIONS(3311), + [anon_sym_PIPE] = ACTIONS(3311), + [anon_sym_CARET] = ACTIONS(3313), + [anon_sym_AMP_AMP] = ACTIONS(3313), + [anon_sym_PIPE_PIPE] = ACTIONS(3313), + [anon_sym_EQ_EQ] = ACTIONS(3313), + [anon_sym_BANG_EQ] = ACTIONS(3313), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_LT_EQ] = ACTIONS(3313), + [anon_sym_GT] = ACTIONS(3311), + [anon_sym_GT_EQ] = ACTIONS(3313), + [anon_sym_EQ_GT] = ACTIONS(3313), + [anon_sym_QMARK_QMARK] = ACTIONS(3313), + [anon_sym_EQ] = ACTIONS(3311), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3313), + [anon_sym_null] = ACTIONS(3311), + [anon_sym_macro] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_extern] = ACTIONS(3311), + [anon_sym_inline] = ACTIONS(3311), + [anon_sym_overload] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_final] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [anon_sym_typedef] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [aux_sym_integer_token1] = ACTIONS(3311), + [aux_sym_integer_token2] = ACTIONS(3313), + [aux_sym_float_token1] = ACTIONS(3311), + [aux_sym_float_token2] = ACTIONS(3313), + [anon_sym_true] = ACTIONS(3311), + [anon_sym_false] = ACTIONS(3311), + [aux_sym_string_token1] = ACTIONS(3313), + [aux_sym_string_token3] = ACTIONS(3313), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [747] = { + [ts_builtin_sym_end] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3315), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_package] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_STAR] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_cast] = ACTIONS(3315), + [anon_sym_DOLLARtype] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_untyped] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_this] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_AT_COLON] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_catch] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [anon_sym_PERCENT] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_LT_LT] = ACTIONS(3317), + [anon_sym_GT_GT] = ACTIONS(3315), + [anon_sym_GT_GT_GT] = ACTIONS(3317), + [anon_sym_AMP] = ACTIONS(3315), + [anon_sym_PIPE] = ACTIONS(3315), + [anon_sym_CARET] = ACTIONS(3317), + [anon_sym_AMP_AMP] = ACTIONS(3317), + [anon_sym_PIPE_PIPE] = ACTIONS(3317), + [anon_sym_EQ_EQ] = ACTIONS(3317), + [anon_sym_BANG_EQ] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_LT_EQ] = ACTIONS(3317), + [anon_sym_GT] = ACTIONS(3315), + [anon_sym_GT_EQ] = ACTIONS(3317), + [anon_sym_EQ_GT] = ACTIONS(3317), + [anon_sym_QMARK_QMARK] = ACTIONS(3317), + [anon_sym_EQ] = ACTIONS(3315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3317), + [anon_sym_null] = ACTIONS(3315), + [anon_sym_macro] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_extern] = ACTIONS(3315), + [anon_sym_inline] = ACTIONS(3315), + [anon_sym_overload] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_final] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [anon_sym_typedef] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [aux_sym_integer_token1] = ACTIONS(3315), + [aux_sym_integer_token2] = ACTIONS(3317), + [aux_sym_float_token1] = ACTIONS(3315), + [aux_sym_float_token2] = ACTIONS(3317), + [anon_sym_true] = ACTIONS(3315), + [anon_sym_false] = ACTIONS(3315), + [aux_sym_string_token1] = ACTIONS(3317), + [aux_sym_string_token3] = ACTIONS(3317), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [748] = { + [ts_builtin_sym_end] = ACTIONS(2711), + [sym_identifier] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2711), + [anon_sym_package] = ACTIONS(2709), + [anon_sym_import] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2711), + [anon_sym_using] = ACTIONS(2709), + [anon_sym_throw] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2711), + [anon_sym_switch] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2711), + [anon_sym_cast] = ACTIONS(2709), + [anon_sym_DOLLARtype] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2709), + [anon_sym_return] = ACTIONS(2709), + [anon_sym_untyped] = ACTIONS(2709), + [anon_sym_break] = ACTIONS(2709), + [anon_sym_continue] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2711), + [anon_sym_this] = ACTIONS(2709), + [anon_sym_AT] = ACTIONS(2709), + [anon_sym_AT_COLON] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2709), + [anon_sym_catch] = ACTIONS(2709), + [anon_sym_else] = ACTIONS(2709), + [anon_sym_if] = ACTIONS(2709), + [anon_sym_while] = ACTIONS(2709), + [anon_sym_do] = ACTIONS(2709), + [anon_sym_new] = ACTIONS(2709), + [anon_sym_TILDE] = ACTIONS(2711), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_PLUS_PLUS] = ACTIONS(2711), + [anon_sym_DASH_DASH] = ACTIONS(2711), + [anon_sym_PERCENT] = ACTIONS(2711), + [anon_sym_SLASH] = ACTIONS(2709), + [anon_sym_PLUS] = ACTIONS(2709), + [anon_sym_LT_LT] = ACTIONS(2711), + [anon_sym_GT_GT] = ACTIONS(2709), + [anon_sym_GT_GT_GT] = ACTIONS(2711), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_CARET] = ACTIONS(2711), + [anon_sym_AMP_AMP] = ACTIONS(2711), + [anon_sym_PIPE_PIPE] = ACTIONS(2711), + [anon_sym_EQ_EQ] = ACTIONS(2711), + [anon_sym_BANG_EQ] = ACTIONS(2711), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_LT_EQ] = ACTIONS(2711), + [anon_sym_GT] = ACTIONS(2709), + [anon_sym_GT_EQ] = ACTIONS(2711), + [anon_sym_EQ_GT] = ACTIONS(2711), + [anon_sym_QMARK_QMARK] = ACTIONS(2711), + [anon_sym_EQ] = ACTIONS(2709), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2711), + [anon_sym_null] = ACTIONS(2709), + [anon_sym_macro] = ACTIONS(2709), + [anon_sym_abstract] = ACTIONS(2709), + [anon_sym_static] = ACTIONS(2709), + [anon_sym_public] = ACTIONS(2709), + [anon_sym_private] = ACTIONS(2709), + [anon_sym_extern] = ACTIONS(2709), + [anon_sym_inline] = ACTIONS(2709), + [anon_sym_overload] = ACTIONS(2709), + [anon_sym_override] = ACTIONS(2709), + [anon_sym_final] = ACTIONS(2709), + [anon_sym_class] = ACTIONS(2709), + [anon_sym_interface] = ACTIONS(2709), + [anon_sym_enum] = ACTIONS(2709), + [anon_sym_typedef] = ACTIONS(2709), + [anon_sym_function] = ACTIONS(2709), + [anon_sym_var] = ACTIONS(2709), + [aux_sym_integer_token1] = ACTIONS(2709), + [aux_sym_integer_token2] = ACTIONS(2711), + [aux_sym_float_token1] = ACTIONS(2709), + [aux_sym_float_token2] = ACTIONS(2711), + [anon_sym_true] = ACTIONS(2709), + [anon_sym_false] = ACTIONS(2709), + [aux_sym_string_token1] = ACTIONS(2711), + [aux_sym_string_token3] = ACTIONS(2711), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [749] = { + [ts_builtin_sym_end] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3319), + [anon_sym_POUND] = ACTIONS(3321), + [anon_sym_package] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_STAR] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_cast] = ACTIONS(3319), + [anon_sym_DOLLARtype] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_untyped] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_this] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_AT_COLON] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_catch] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [anon_sym_PERCENT] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_LT_LT] = ACTIONS(3321), + [anon_sym_GT_GT] = ACTIONS(3319), + [anon_sym_GT_GT_GT] = ACTIONS(3321), + [anon_sym_AMP] = ACTIONS(3319), + [anon_sym_PIPE] = ACTIONS(3319), + [anon_sym_CARET] = ACTIONS(3321), + [anon_sym_AMP_AMP] = ACTIONS(3321), + [anon_sym_PIPE_PIPE] = ACTIONS(3321), + [anon_sym_EQ_EQ] = ACTIONS(3321), + [anon_sym_BANG_EQ] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_LT_EQ] = ACTIONS(3321), + [anon_sym_GT] = ACTIONS(3319), + [anon_sym_GT_EQ] = ACTIONS(3321), + [anon_sym_EQ_GT] = ACTIONS(3321), + [anon_sym_QMARK_QMARK] = ACTIONS(3321), + [anon_sym_EQ] = ACTIONS(3319), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3321), + [anon_sym_null] = ACTIONS(3319), + [anon_sym_macro] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_extern] = ACTIONS(3319), + [anon_sym_inline] = ACTIONS(3319), + [anon_sym_overload] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_final] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [anon_sym_typedef] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [aux_sym_integer_token1] = ACTIONS(3319), + [aux_sym_integer_token2] = ACTIONS(3321), + [aux_sym_float_token1] = ACTIONS(3319), + [aux_sym_float_token2] = ACTIONS(3321), + [anon_sym_true] = ACTIONS(3319), + [anon_sym_false] = ACTIONS(3319), + [aux_sym_string_token1] = ACTIONS(3321), + [aux_sym_string_token3] = ACTIONS(3321), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [750] = { + [ts_builtin_sym_end] = ACTIONS(3325), + [sym_identifier] = ACTIONS(3323), + [anon_sym_POUND] = ACTIONS(3325), + [anon_sym_package] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_STAR] = ACTIONS(3325), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3325), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3325), + [anon_sym_cast] = ACTIONS(3323), + [anon_sym_DOLLARtype] = ACTIONS(3325), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_untyped] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3325), + [anon_sym_this] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_AT_COLON] = ACTIONS(3325), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_catch] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3325), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3325), + [anon_sym_DASH_DASH] = ACTIONS(3325), + [anon_sym_PERCENT] = ACTIONS(3325), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_LT_LT] = ACTIONS(3325), + [anon_sym_GT_GT] = ACTIONS(3323), + [anon_sym_GT_GT_GT] = ACTIONS(3325), + [anon_sym_AMP] = ACTIONS(3323), + [anon_sym_PIPE] = ACTIONS(3323), + [anon_sym_CARET] = ACTIONS(3325), + [anon_sym_AMP_AMP] = ACTIONS(3325), + [anon_sym_PIPE_PIPE] = ACTIONS(3325), + [anon_sym_EQ_EQ] = ACTIONS(3325), + [anon_sym_BANG_EQ] = ACTIONS(3325), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_LT_EQ] = ACTIONS(3325), + [anon_sym_GT] = ACTIONS(3323), + [anon_sym_GT_EQ] = ACTIONS(3325), + [anon_sym_EQ_GT] = ACTIONS(3325), + [anon_sym_QMARK_QMARK] = ACTIONS(3325), + [anon_sym_EQ] = ACTIONS(3323), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3325), + [anon_sym_null] = ACTIONS(3323), + [anon_sym_macro] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_extern] = ACTIONS(3323), + [anon_sym_inline] = ACTIONS(3323), + [anon_sym_overload] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_final] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [anon_sym_typedef] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [aux_sym_integer_token1] = ACTIONS(3323), + [aux_sym_integer_token2] = ACTIONS(3325), + [aux_sym_float_token1] = ACTIONS(3323), + [aux_sym_float_token2] = ACTIONS(3325), + [anon_sym_true] = ACTIONS(3323), + [anon_sym_false] = ACTIONS(3323), + [aux_sym_string_token1] = ACTIONS(3325), + [aux_sym_string_token3] = ACTIONS(3325), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [751] = { + [ts_builtin_sym_end] = ACTIONS(2691), + [sym_identifier] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2691), + [anon_sym_package] = ACTIONS(2689), + [anon_sym_import] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2691), + [anon_sym_using] = ACTIONS(2689), + [anon_sym_throw] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2691), + [anon_sym_switch] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2691), + [anon_sym_cast] = ACTIONS(2689), + [anon_sym_DOLLARtype] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2689), + [anon_sym_return] = ACTIONS(2689), + [anon_sym_untyped] = ACTIONS(2689), + [anon_sym_break] = ACTIONS(2689), + [anon_sym_continue] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2691), + [anon_sym_this] = ACTIONS(2689), + [anon_sym_AT] = ACTIONS(2689), + [anon_sym_AT_COLON] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2689), + [anon_sym_catch] = ACTIONS(2689), + [anon_sym_else] = ACTIONS(2689), + [anon_sym_if] = ACTIONS(2689), + [anon_sym_while] = ACTIONS(2689), + [anon_sym_do] = ACTIONS(2689), + [anon_sym_new] = ACTIONS(2689), + [anon_sym_TILDE] = ACTIONS(2691), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_PLUS_PLUS] = ACTIONS(2691), + [anon_sym_DASH_DASH] = ACTIONS(2691), + [anon_sym_PERCENT] = ACTIONS(2691), + [anon_sym_SLASH] = ACTIONS(2689), + [anon_sym_PLUS] = ACTIONS(2689), + [anon_sym_LT_LT] = ACTIONS(2691), + [anon_sym_GT_GT] = ACTIONS(2689), + [anon_sym_GT_GT_GT] = ACTIONS(2691), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_CARET] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(2691), + [anon_sym_PIPE_PIPE] = ACTIONS(2691), + [anon_sym_EQ_EQ] = ACTIONS(2691), + [anon_sym_BANG_EQ] = ACTIONS(2691), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_LT_EQ] = ACTIONS(2691), + [anon_sym_GT] = ACTIONS(2689), + [anon_sym_GT_EQ] = ACTIONS(2691), + [anon_sym_EQ_GT] = ACTIONS(2691), + [anon_sym_QMARK_QMARK] = ACTIONS(2691), + [anon_sym_EQ] = ACTIONS(2689), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2691), + [anon_sym_null] = ACTIONS(2689), + [anon_sym_macro] = ACTIONS(2689), + [anon_sym_abstract] = ACTIONS(2689), + [anon_sym_static] = ACTIONS(2689), + [anon_sym_public] = ACTIONS(2689), + [anon_sym_private] = ACTIONS(2689), + [anon_sym_extern] = ACTIONS(2689), + [anon_sym_inline] = ACTIONS(2689), + [anon_sym_overload] = ACTIONS(2689), + [anon_sym_override] = ACTIONS(2689), + [anon_sym_final] = ACTIONS(2689), + [anon_sym_class] = ACTIONS(2689), + [anon_sym_interface] = ACTIONS(2689), + [anon_sym_enum] = ACTIONS(2689), + [anon_sym_typedef] = ACTIONS(2689), + [anon_sym_function] = ACTIONS(2689), + [anon_sym_var] = ACTIONS(2689), + [aux_sym_integer_token1] = ACTIONS(2689), + [aux_sym_integer_token2] = ACTIONS(2691), + [aux_sym_float_token1] = ACTIONS(2689), + [aux_sym_float_token2] = ACTIONS(2691), + [anon_sym_true] = ACTIONS(2689), + [anon_sym_false] = ACTIONS(2689), + [aux_sym_string_token1] = ACTIONS(2691), + [aux_sym_string_token3] = ACTIONS(2691), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [752] = { + [sym_else_clause] = STATE(572), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2629), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [753] = { + [ts_builtin_sym_end] = ACTIONS(2887), + [sym_identifier] = ACTIONS(2885), + [anon_sym_POUND] = ACTIONS(2887), + [anon_sym_package] = ACTIONS(2885), + [anon_sym_import] = ACTIONS(2885), + [anon_sym_STAR] = ACTIONS(2887), + [anon_sym_using] = ACTIONS(2885), + [anon_sym_throw] = ACTIONS(2885), + [anon_sym_LPAREN] = ACTIONS(2887), + [anon_sym_switch] = ACTIONS(2885), + [anon_sym_LBRACE] = ACTIONS(2887), + [anon_sym_cast] = ACTIONS(2885), + [anon_sym_DOLLARtype] = ACTIONS(2887), + [anon_sym_for] = ACTIONS(2885), + [anon_sym_return] = ACTIONS(2885), + [anon_sym_untyped] = ACTIONS(2885), + [anon_sym_break] = ACTIONS(2885), + [anon_sym_continue] = ACTIONS(2885), + [anon_sym_LBRACK] = ACTIONS(2887), + [anon_sym_this] = ACTIONS(2885), + [anon_sym_AT] = ACTIONS(2885), + [anon_sym_AT_COLON] = ACTIONS(2887), + [anon_sym_try] = ACTIONS(2885), + [anon_sym_catch] = ACTIONS(2885), + [anon_sym_else] = ACTIONS(2885), + [anon_sym_if] = ACTIONS(2885), + [anon_sym_while] = ACTIONS(2885), + [anon_sym_do] = ACTIONS(2885), + [anon_sym_new] = ACTIONS(2885), + [anon_sym_TILDE] = ACTIONS(2887), + [anon_sym_BANG] = ACTIONS(2885), + [anon_sym_DASH] = ACTIONS(2885), + [anon_sym_PLUS_PLUS] = ACTIONS(2887), + [anon_sym_DASH_DASH] = ACTIONS(2887), + [anon_sym_PERCENT] = ACTIONS(2887), + [anon_sym_SLASH] = ACTIONS(2885), + [anon_sym_PLUS] = ACTIONS(2885), + [anon_sym_LT_LT] = ACTIONS(2887), + [anon_sym_GT_GT] = ACTIONS(2885), + [anon_sym_GT_GT_GT] = ACTIONS(2887), + [anon_sym_AMP] = ACTIONS(2885), + [anon_sym_PIPE] = ACTIONS(2885), + [anon_sym_CARET] = ACTIONS(2887), + [anon_sym_AMP_AMP] = ACTIONS(2887), + [anon_sym_PIPE_PIPE] = ACTIONS(2887), + [anon_sym_EQ_EQ] = ACTIONS(2887), + [anon_sym_BANG_EQ] = ACTIONS(2887), + [anon_sym_LT] = ACTIONS(2885), + [anon_sym_LT_EQ] = ACTIONS(2887), + [anon_sym_GT] = ACTIONS(2885), + [anon_sym_GT_EQ] = ACTIONS(2887), + [anon_sym_EQ_GT] = ACTIONS(2887), + [anon_sym_QMARK_QMARK] = ACTIONS(2887), + [anon_sym_EQ] = ACTIONS(2885), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2887), + [anon_sym_null] = ACTIONS(2885), + [anon_sym_macro] = ACTIONS(2885), + [anon_sym_abstract] = ACTIONS(2885), + [anon_sym_static] = ACTIONS(2885), + [anon_sym_public] = ACTIONS(2885), + [anon_sym_private] = ACTIONS(2885), + [anon_sym_extern] = ACTIONS(2885), + [anon_sym_inline] = ACTIONS(2885), + [anon_sym_overload] = ACTIONS(2885), + [anon_sym_override] = ACTIONS(2885), + [anon_sym_final] = ACTIONS(2885), + [anon_sym_class] = ACTIONS(2885), + [anon_sym_interface] = ACTIONS(2885), + [anon_sym_enum] = ACTIONS(2885), + [anon_sym_typedef] = ACTIONS(2885), + [anon_sym_function] = ACTIONS(2885), + [anon_sym_var] = ACTIONS(2885), + [aux_sym_integer_token1] = ACTIONS(2885), + [aux_sym_integer_token2] = ACTIONS(2887), + [aux_sym_float_token1] = ACTIONS(2885), + [aux_sym_float_token2] = ACTIONS(2887), + [anon_sym_true] = ACTIONS(2885), + [anon_sym_false] = ACTIONS(2885), + [aux_sym_string_token1] = ACTIONS(2887), + [aux_sym_string_token3] = ACTIONS(2887), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [754] = { + [ts_builtin_sym_end] = ACTIONS(3221), + [sym_identifier] = ACTIONS(3219), + [anon_sym_POUND] = ACTIONS(3221), + [anon_sym_package] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_STAR] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_cast] = ACTIONS(3219), + [anon_sym_DOLLARtype] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_untyped] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_this] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_AT_COLON] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_catch] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), + [anon_sym_PERCENT] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_LT_LT] = ACTIONS(3221), + [anon_sym_GT_GT] = ACTIONS(3219), + [anon_sym_GT_GT_GT] = ACTIONS(3221), + [anon_sym_AMP] = ACTIONS(3219), + [anon_sym_PIPE] = ACTIONS(3219), + [anon_sym_CARET] = ACTIONS(3221), + [anon_sym_AMP_AMP] = ACTIONS(3221), + [anon_sym_PIPE_PIPE] = ACTIONS(3221), + [anon_sym_EQ_EQ] = ACTIONS(3221), + [anon_sym_BANG_EQ] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_LT_EQ] = ACTIONS(3221), + [anon_sym_GT] = ACTIONS(3219), + [anon_sym_GT_EQ] = ACTIONS(3221), + [anon_sym_EQ_GT] = ACTIONS(3221), + [anon_sym_QMARK_QMARK] = ACTIONS(3221), + [anon_sym_EQ] = ACTIONS(3219), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3221), + [anon_sym_null] = ACTIONS(3219), + [anon_sym_macro] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_extern] = ACTIONS(3219), + [anon_sym_inline] = ACTIONS(3219), + [anon_sym_overload] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_final] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), + [anon_sym_typedef] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [aux_sym_integer_token1] = ACTIONS(3219), + [aux_sym_integer_token2] = ACTIONS(3221), + [aux_sym_float_token1] = ACTIONS(3219), + [aux_sym_float_token2] = ACTIONS(3221), + [anon_sym_true] = ACTIONS(3219), + [anon_sym_false] = ACTIONS(3219), + [aux_sym_string_token1] = ACTIONS(3221), + [aux_sym_string_token3] = ACTIONS(3221), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [755] = { + [ts_builtin_sym_end] = ACTIONS(2715), + [sym_identifier] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2715), + [anon_sym_package] = ACTIONS(2713), + [anon_sym_import] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2715), + [anon_sym_using] = ACTIONS(2713), + [anon_sym_throw] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2715), + [anon_sym_switch] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2715), + [anon_sym_cast] = ACTIONS(2713), + [anon_sym_DOLLARtype] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2713), + [anon_sym_return] = ACTIONS(2713), + [anon_sym_untyped] = ACTIONS(2713), + [anon_sym_break] = ACTIONS(2713), + [anon_sym_continue] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2715), + [anon_sym_this] = ACTIONS(2713), + [anon_sym_AT] = ACTIONS(2713), + [anon_sym_AT_COLON] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2713), + [anon_sym_catch] = ACTIONS(2713), + [anon_sym_else] = ACTIONS(2713), + [anon_sym_if] = ACTIONS(2713), + [anon_sym_while] = ACTIONS(2713), + [anon_sym_do] = ACTIONS(2713), + [anon_sym_new] = ACTIONS(2713), + [anon_sym_TILDE] = ACTIONS(2715), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_PLUS_PLUS] = ACTIONS(2715), + [anon_sym_DASH_DASH] = ACTIONS(2715), + [anon_sym_PERCENT] = ACTIONS(2715), + [anon_sym_SLASH] = ACTIONS(2713), + [anon_sym_PLUS] = ACTIONS(2713), + [anon_sym_LT_LT] = ACTIONS(2715), + [anon_sym_GT_GT] = ACTIONS(2713), + [anon_sym_GT_GT_GT] = ACTIONS(2715), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_CARET] = ACTIONS(2715), + [anon_sym_AMP_AMP] = ACTIONS(2715), + [anon_sym_PIPE_PIPE] = ACTIONS(2715), + [anon_sym_EQ_EQ] = ACTIONS(2715), + [anon_sym_BANG_EQ] = ACTIONS(2715), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_LT_EQ] = ACTIONS(2715), + [anon_sym_GT] = ACTIONS(2713), + [anon_sym_GT_EQ] = ACTIONS(2715), + [anon_sym_EQ_GT] = ACTIONS(2715), + [anon_sym_QMARK_QMARK] = ACTIONS(2715), + [anon_sym_EQ] = ACTIONS(2713), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2715), + [anon_sym_null] = ACTIONS(2713), + [anon_sym_macro] = ACTIONS(2713), + [anon_sym_abstract] = ACTIONS(2713), + [anon_sym_static] = ACTIONS(2713), + [anon_sym_public] = ACTIONS(2713), + [anon_sym_private] = ACTIONS(2713), + [anon_sym_extern] = ACTIONS(2713), + [anon_sym_inline] = ACTIONS(2713), + [anon_sym_overload] = ACTIONS(2713), + [anon_sym_override] = ACTIONS(2713), + [anon_sym_final] = ACTIONS(2713), + [anon_sym_class] = ACTIONS(2713), + [anon_sym_interface] = ACTIONS(2713), + [anon_sym_enum] = ACTIONS(2713), + [anon_sym_typedef] = ACTIONS(2713), + [anon_sym_function] = ACTIONS(2713), + [anon_sym_var] = ACTIONS(2713), + [aux_sym_integer_token1] = ACTIONS(2713), + [aux_sym_integer_token2] = ACTIONS(2715), + [aux_sym_float_token1] = ACTIONS(2713), + [aux_sym_float_token2] = ACTIONS(2715), + [anon_sym_true] = ACTIONS(2713), + [anon_sym_false] = ACTIONS(2713), + [aux_sym_string_token1] = ACTIONS(2715), + [aux_sym_string_token3] = ACTIONS(2715), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [756] = { + [ts_builtin_sym_end] = ACTIONS(2719), + [sym_identifier] = ACTIONS(2717), + [anon_sym_POUND] = ACTIONS(2719), + [anon_sym_package] = ACTIONS(2717), + [anon_sym_import] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2719), + [anon_sym_using] = ACTIONS(2717), + [anon_sym_throw] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2719), + [anon_sym_switch] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2719), + [anon_sym_cast] = ACTIONS(2717), + [anon_sym_DOLLARtype] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2717), + [anon_sym_return] = ACTIONS(2717), + [anon_sym_untyped] = ACTIONS(2717), + [anon_sym_break] = ACTIONS(2717), + [anon_sym_continue] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2719), + [anon_sym_this] = ACTIONS(2717), + [anon_sym_AT] = ACTIONS(2717), + [anon_sym_AT_COLON] = ACTIONS(2719), + [anon_sym_try] = ACTIONS(2717), + [anon_sym_catch] = ACTIONS(2717), + [anon_sym_else] = ACTIONS(2717), + [anon_sym_if] = ACTIONS(2717), + [anon_sym_while] = ACTIONS(2717), + [anon_sym_do] = ACTIONS(2717), + [anon_sym_new] = ACTIONS(2717), + [anon_sym_TILDE] = ACTIONS(2719), + [anon_sym_BANG] = ACTIONS(2717), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_PLUS_PLUS] = ACTIONS(2719), + [anon_sym_DASH_DASH] = ACTIONS(2719), + [anon_sym_PERCENT] = ACTIONS(2719), + [anon_sym_SLASH] = ACTIONS(2717), + [anon_sym_PLUS] = ACTIONS(2717), + [anon_sym_LT_LT] = ACTIONS(2719), + [anon_sym_GT_GT] = ACTIONS(2717), + [anon_sym_GT_GT_GT] = ACTIONS(2719), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_CARET] = ACTIONS(2719), + [anon_sym_AMP_AMP] = ACTIONS(2719), + [anon_sym_PIPE_PIPE] = ACTIONS(2719), + [anon_sym_EQ_EQ] = ACTIONS(2719), + [anon_sym_BANG_EQ] = ACTIONS(2719), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_LT_EQ] = ACTIONS(2719), + [anon_sym_GT] = ACTIONS(2717), + [anon_sym_GT_EQ] = ACTIONS(2719), + [anon_sym_EQ_GT] = ACTIONS(2719), + [anon_sym_QMARK_QMARK] = ACTIONS(2719), + [anon_sym_EQ] = ACTIONS(2717), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2719), + [anon_sym_null] = ACTIONS(2717), + [anon_sym_macro] = ACTIONS(2717), + [anon_sym_abstract] = ACTIONS(2717), + [anon_sym_static] = ACTIONS(2717), + [anon_sym_public] = ACTIONS(2717), + [anon_sym_private] = ACTIONS(2717), + [anon_sym_extern] = ACTIONS(2717), + [anon_sym_inline] = ACTIONS(2717), + [anon_sym_overload] = ACTIONS(2717), + [anon_sym_override] = ACTIONS(2717), + [anon_sym_final] = ACTIONS(2717), + [anon_sym_class] = ACTIONS(2717), + [anon_sym_interface] = ACTIONS(2717), + [anon_sym_enum] = ACTIONS(2717), + [anon_sym_typedef] = ACTIONS(2717), + [anon_sym_function] = ACTIONS(2717), + [anon_sym_var] = ACTIONS(2717), + [aux_sym_integer_token1] = ACTIONS(2717), + [aux_sym_integer_token2] = ACTIONS(2719), + [aux_sym_float_token1] = ACTIONS(2717), + [aux_sym_float_token2] = ACTIONS(2719), + [anon_sym_true] = ACTIONS(2717), + [anon_sym_false] = ACTIONS(2717), + [aux_sym_string_token1] = ACTIONS(2719), + [aux_sym_string_token3] = ACTIONS(2719), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [757] = { + [ts_builtin_sym_end] = ACTIONS(2891), + [sym_identifier] = ACTIONS(2889), + [anon_sym_POUND] = ACTIONS(2891), + [anon_sym_package] = ACTIONS(2889), + [anon_sym_import] = ACTIONS(2889), + [anon_sym_STAR] = ACTIONS(2891), + [anon_sym_using] = ACTIONS(2889), + [anon_sym_throw] = ACTIONS(2889), + [anon_sym_LPAREN] = ACTIONS(2891), + [anon_sym_switch] = ACTIONS(2889), + [anon_sym_LBRACE] = ACTIONS(2891), + [anon_sym_cast] = ACTIONS(2889), + [anon_sym_DOLLARtype] = ACTIONS(2891), + [anon_sym_for] = ACTIONS(2889), + [anon_sym_return] = ACTIONS(2889), + [anon_sym_untyped] = ACTIONS(2889), + [anon_sym_break] = ACTIONS(2889), + [anon_sym_continue] = ACTIONS(2889), + [anon_sym_LBRACK] = ACTIONS(2891), + [anon_sym_this] = ACTIONS(2889), + [anon_sym_AT] = ACTIONS(2889), + [anon_sym_AT_COLON] = ACTIONS(2891), + [anon_sym_try] = ACTIONS(2889), + [anon_sym_catch] = ACTIONS(2889), + [anon_sym_else] = ACTIONS(2889), + [anon_sym_if] = ACTIONS(2889), + [anon_sym_while] = ACTIONS(2889), + [anon_sym_do] = ACTIONS(2889), + [anon_sym_new] = ACTIONS(2889), + [anon_sym_TILDE] = ACTIONS(2891), + [anon_sym_BANG] = ACTIONS(2889), + [anon_sym_DASH] = ACTIONS(2889), + [anon_sym_PLUS_PLUS] = ACTIONS(2891), + [anon_sym_DASH_DASH] = ACTIONS(2891), + [anon_sym_PERCENT] = ACTIONS(2891), + [anon_sym_SLASH] = ACTIONS(2889), + [anon_sym_PLUS] = ACTIONS(2889), + [anon_sym_LT_LT] = ACTIONS(2891), + [anon_sym_GT_GT] = ACTIONS(2889), + [anon_sym_GT_GT_GT] = ACTIONS(2891), + [anon_sym_AMP] = ACTIONS(2889), + [anon_sym_PIPE] = ACTIONS(2889), + [anon_sym_CARET] = ACTIONS(2891), + [anon_sym_AMP_AMP] = ACTIONS(2891), + [anon_sym_PIPE_PIPE] = ACTIONS(2891), + [anon_sym_EQ_EQ] = ACTIONS(2891), + [anon_sym_BANG_EQ] = ACTIONS(2891), + [anon_sym_LT] = ACTIONS(2889), + [anon_sym_LT_EQ] = ACTIONS(2891), + [anon_sym_GT] = ACTIONS(2889), + [anon_sym_GT_EQ] = ACTIONS(2891), + [anon_sym_EQ_GT] = ACTIONS(2891), + [anon_sym_QMARK_QMARK] = ACTIONS(2891), + [anon_sym_EQ] = ACTIONS(2889), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2891), + [anon_sym_null] = ACTIONS(2889), + [anon_sym_macro] = ACTIONS(2889), + [anon_sym_abstract] = ACTIONS(2889), + [anon_sym_static] = ACTIONS(2889), + [anon_sym_public] = ACTIONS(2889), + [anon_sym_private] = ACTIONS(2889), + [anon_sym_extern] = ACTIONS(2889), + [anon_sym_inline] = ACTIONS(2889), + [anon_sym_overload] = ACTIONS(2889), + [anon_sym_override] = ACTIONS(2889), + [anon_sym_final] = ACTIONS(2889), + [anon_sym_class] = ACTIONS(2889), + [anon_sym_interface] = ACTIONS(2889), + [anon_sym_enum] = ACTIONS(2889), + [anon_sym_typedef] = ACTIONS(2889), + [anon_sym_function] = ACTIONS(2889), + [anon_sym_var] = ACTIONS(2889), + [aux_sym_integer_token1] = ACTIONS(2889), + [aux_sym_integer_token2] = ACTIONS(2891), + [aux_sym_float_token1] = ACTIONS(2889), + [aux_sym_float_token2] = ACTIONS(2891), + [anon_sym_true] = ACTIONS(2889), + [anon_sym_false] = ACTIONS(2889), + [aux_sym_string_token1] = ACTIONS(2891), + [aux_sym_string_token3] = ACTIONS(2891), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [758] = { + [ts_builtin_sym_end] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3331), + [anon_sym_POUND] = ACTIONS(3333), + [anon_sym_package] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_STAR] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_cast] = ACTIONS(3331), + [anon_sym_DOLLARtype] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_untyped] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_this] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_AT_COLON] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_catch] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [anon_sym_PERCENT] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_LT_LT] = ACTIONS(3333), + [anon_sym_GT_GT] = ACTIONS(3331), + [anon_sym_GT_GT_GT] = ACTIONS(3333), + [anon_sym_AMP] = ACTIONS(3331), + [anon_sym_PIPE] = ACTIONS(3331), + [anon_sym_CARET] = ACTIONS(3333), + [anon_sym_AMP_AMP] = ACTIONS(3333), + [anon_sym_PIPE_PIPE] = ACTIONS(3333), + [anon_sym_EQ_EQ] = ACTIONS(3333), + [anon_sym_BANG_EQ] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_LT_EQ] = ACTIONS(3333), + [anon_sym_GT] = ACTIONS(3331), + [anon_sym_GT_EQ] = ACTIONS(3333), + [anon_sym_EQ_GT] = ACTIONS(3333), + [anon_sym_QMARK_QMARK] = ACTIONS(3333), + [anon_sym_EQ] = ACTIONS(3331), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3333), + [anon_sym_null] = ACTIONS(3331), + [anon_sym_macro] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_extern] = ACTIONS(3331), + [anon_sym_inline] = ACTIONS(3331), + [anon_sym_overload] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_final] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [anon_sym_typedef] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [aux_sym_integer_token1] = ACTIONS(3331), + [aux_sym_integer_token2] = ACTIONS(3333), + [aux_sym_float_token1] = ACTIONS(3331), + [aux_sym_float_token2] = ACTIONS(3333), + [anon_sym_true] = ACTIONS(3331), + [anon_sym_false] = ACTIONS(3331), + [aux_sym_string_token1] = ACTIONS(3333), + [aux_sym_string_token3] = ACTIONS(3333), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [759] = { + [sym_else_clause] = STATE(740), + [ts_builtin_sym_end] = ACTIONS(2679), + [sym_identifier] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_package] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_cast] = ACTIONS(2677), + [anon_sym_DOLLARtype] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_untyped] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_this] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_AT_COLON] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_else] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_QMARK_QMARK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2677), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_overload] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_final] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [aux_sym_integer_token1] = ACTIONS(2677), + [aux_sym_integer_token2] = ACTIONS(2679), + [aux_sym_float_token1] = ACTIONS(2677), + [aux_sym_float_token2] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [aux_sym_string_token1] = ACTIONS(2679), + [aux_sym_string_token3] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [760] = { + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2671), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_package] = ACTIONS(2671), + [anon_sym_import] = ACTIONS(2671), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_using] = ACTIONS(2671), + [anon_sym_throw] = ACTIONS(2671), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_switch] = ACTIONS(2671), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_cast] = ACTIONS(2671), + [anon_sym_DOLLARtype] = ACTIONS(2673), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_untyped] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_this] = ACTIONS(2671), + [anon_sym_AT] = ACTIONS(2671), + [anon_sym_AT_COLON] = ACTIONS(2673), + [anon_sym_try] = ACTIONS(2671), + [anon_sym_catch] = ACTIONS(2671), + [anon_sym_else] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_do] = ACTIONS(2671), + [anon_sym_new] = ACTIONS(2671), + [anon_sym_TILDE] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2671), + [anon_sym_PLUS_PLUS] = ACTIONS(2673), + [anon_sym_DASH_DASH] = ACTIONS(2673), + [anon_sym_PERCENT] = ACTIONS(2673), + [anon_sym_SLASH] = ACTIONS(2671), + [anon_sym_PLUS] = ACTIONS(2671), + [anon_sym_LT_LT] = ACTIONS(2673), + [anon_sym_GT_GT] = ACTIONS(2671), + [anon_sym_GT_GT_GT] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2671), + [anon_sym_PIPE] = ACTIONS(2671), + [anon_sym_CARET] = ACTIONS(2673), + [anon_sym_AMP_AMP] = ACTIONS(2673), + [anon_sym_PIPE_PIPE] = ACTIONS(2673), + [anon_sym_EQ_EQ] = ACTIONS(2673), + [anon_sym_BANG_EQ] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2671), + [anon_sym_LT_EQ] = ACTIONS(2673), + [anon_sym_GT] = ACTIONS(2671), + [anon_sym_GT_EQ] = ACTIONS(2673), + [anon_sym_EQ_GT] = ACTIONS(2673), + [anon_sym_QMARK_QMARK] = ACTIONS(2673), + [anon_sym_EQ] = ACTIONS(2671), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2673), + [anon_sym_null] = ACTIONS(2671), + [anon_sym_macro] = ACTIONS(2671), + [anon_sym_abstract] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_public] = ACTIONS(2671), + [anon_sym_private] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_inline] = ACTIONS(2671), + [anon_sym_overload] = ACTIONS(2671), + [anon_sym_override] = ACTIONS(2671), + [anon_sym_final] = ACTIONS(2671), + [anon_sym_class] = ACTIONS(2671), + [anon_sym_interface] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_typedef] = ACTIONS(2671), + [anon_sym_function] = ACTIONS(2671), + [anon_sym_var] = ACTIONS(2671), + [aux_sym_integer_token1] = ACTIONS(2671), + [aux_sym_integer_token2] = ACTIONS(2673), + [aux_sym_float_token1] = ACTIONS(2671), + [aux_sym_float_token2] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [aux_sym_string_token1] = ACTIONS(2673), + [aux_sym_string_token3] = ACTIONS(2673), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [761] = { + [ts_builtin_sym_end] = ACTIONS(3205), + [sym_identifier] = ACTIONS(3203), + [anon_sym_POUND] = ACTIONS(3205), + [anon_sym_package] = ACTIONS(3203), + [anon_sym_import] = ACTIONS(3203), + [anon_sym_STAR] = ACTIONS(3205), + [anon_sym_using] = ACTIONS(3203), + [anon_sym_throw] = ACTIONS(3203), + [anon_sym_LPAREN] = ACTIONS(3205), + [anon_sym_switch] = ACTIONS(3203), + [anon_sym_LBRACE] = ACTIONS(3205), + [anon_sym_cast] = ACTIONS(3203), + [anon_sym_DOLLARtype] = ACTIONS(3205), + [anon_sym_for] = ACTIONS(3203), + [anon_sym_return] = ACTIONS(3203), + [anon_sym_untyped] = ACTIONS(3203), + [anon_sym_break] = ACTIONS(3203), + [anon_sym_continue] = ACTIONS(3203), + [anon_sym_LBRACK] = ACTIONS(3205), + [anon_sym_this] = ACTIONS(3203), + [anon_sym_AT] = ACTIONS(3203), + [anon_sym_AT_COLON] = ACTIONS(3205), + [anon_sym_try] = ACTIONS(3203), + [anon_sym_catch] = ACTIONS(3203), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3203), + [anon_sym_while] = ACTIONS(3203), + [anon_sym_do] = ACTIONS(3203), + [anon_sym_new] = ACTIONS(3203), + [anon_sym_TILDE] = ACTIONS(3205), + [anon_sym_BANG] = ACTIONS(3203), + [anon_sym_DASH] = ACTIONS(3203), + [anon_sym_PLUS_PLUS] = ACTIONS(3205), + [anon_sym_DASH_DASH] = ACTIONS(3205), + [anon_sym_PERCENT] = ACTIONS(3205), + [anon_sym_SLASH] = ACTIONS(3203), + [anon_sym_PLUS] = ACTIONS(3203), + [anon_sym_LT_LT] = ACTIONS(3205), + [anon_sym_GT_GT] = ACTIONS(3203), + [anon_sym_GT_GT_GT] = ACTIONS(3205), + [anon_sym_AMP] = ACTIONS(3203), + [anon_sym_PIPE] = ACTIONS(3203), + [anon_sym_CARET] = ACTIONS(3205), + [anon_sym_AMP_AMP] = ACTIONS(3205), + [anon_sym_PIPE_PIPE] = ACTIONS(3205), + [anon_sym_EQ_EQ] = ACTIONS(3205), + [anon_sym_BANG_EQ] = ACTIONS(3205), + [anon_sym_LT] = ACTIONS(3203), + [anon_sym_LT_EQ] = ACTIONS(3205), + [anon_sym_GT] = ACTIONS(3203), + [anon_sym_GT_EQ] = ACTIONS(3205), + [anon_sym_EQ_GT] = ACTIONS(3205), + [anon_sym_QMARK_QMARK] = ACTIONS(3205), + [anon_sym_EQ] = ACTIONS(3203), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3205), + [anon_sym_null] = ACTIONS(3203), + [anon_sym_macro] = ACTIONS(3203), + [anon_sym_abstract] = ACTIONS(3203), + [anon_sym_static] = ACTIONS(3203), + [anon_sym_public] = ACTIONS(3203), + [anon_sym_private] = ACTIONS(3203), + [anon_sym_extern] = ACTIONS(3203), + [anon_sym_inline] = ACTIONS(3203), + [anon_sym_overload] = ACTIONS(3203), + [anon_sym_override] = ACTIONS(3203), + [anon_sym_final] = ACTIONS(3203), + [anon_sym_class] = ACTIONS(3203), + [anon_sym_interface] = ACTIONS(3203), + [anon_sym_enum] = ACTIONS(3203), + [anon_sym_typedef] = ACTIONS(3203), + [anon_sym_function] = ACTIONS(3203), + [anon_sym_var] = ACTIONS(3203), + [aux_sym_integer_token1] = ACTIONS(3203), + [aux_sym_integer_token2] = ACTIONS(3205), + [aux_sym_float_token1] = ACTIONS(3203), + [aux_sym_float_token2] = ACTIONS(3205), + [anon_sym_true] = ACTIONS(3203), + [anon_sym_false] = ACTIONS(3203), + [aux_sym_string_token1] = ACTIONS(3205), + [aux_sym_string_token3] = ACTIONS(3205), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [762] = { + [ts_builtin_sym_end] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3335), + [anon_sym_POUND] = ACTIONS(3337), + [anon_sym_package] = ACTIONS(3335), + [anon_sym_import] = ACTIONS(3335), + [anon_sym_STAR] = ACTIONS(3337), + [anon_sym_using] = ACTIONS(3335), + [anon_sym_throw] = ACTIONS(3335), + [anon_sym_LPAREN] = ACTIONS(3337), + [anon_sym_switch] = ACTIONS(3335), + [anon_sym_LBRACE] = ACTIONS(3337), + [anon_sym_cast] = ACTIONS(3335), + [anon_sym_DOLLARtype] = ACTIONS(3337), + [anon_sym_for] = ACTIONS(3335), + [anon_sym_return] = ACTIONS(3335), + [anon_sym_untyped] = ACTIONS(3335), + [anon_sym_break] = ACTIONS(3335), + [anon_sym_continue] = ACTIONS(3335), + [anon_sym_LBRACK] = ACTIONS(3337), + [anon_sym_this] = ACTIONS(3335), + [anon_sym_AT] = ACTIONS(3335), + [anon_sym_AT_COLON] = ACTIONS(3337), + [anon_sym_try] = ACTIONS(3335), + [anon_sym_catch] = ACTIONS(3335), + [anon_sym_else] = ACTIONS(3335), + [anon_sym_if] = ACTIONS(3335), + [anon_sym_while] = ACTIONS(3335), + [anon_sym_do] = ACTIONS(3335), + [anon_sym_new] = ACTIONS(3335), + [anon_sym_TILDE] = ACTIONS(3337), + [anon_sym_BANG] = ACTIONS(3335), + [anon_sym_DASH] = ACTIONS(3335), + [anon_sym_PLUS_PLUS] = ACTIONS(3337), + [anon_sym_DASH_DASH] = ACTIONS(3337), + [anon_sym_PERCENT] = ACTIONS(3337), + [anon_sym_SLASH] = ACTIONS(3335), + [anon_sym_PLUS] = ACTIONS(3335), + [anon_sym_LT_LT] = ACTIONS(3337), + [anon_sym_GT_GT] = ACTIONS(3335), + [anon_sym_GT_GT_GT] = ACTIONS(3337), + [anon_sym_AMP] = ACTIONS(3335), + [anon_sym_PIPE] = ACTIONS(3335), + [anon_sym_CARET] = ACTIONS(3337), + [anon_sym_AMP_AMP] = ACTIONS(3337), + [anon_sym_PIPE_PIPE] = ACTIONS(3337), + [anon_sym_EQ_EQ] = ACTIONS(3337), + [anon_sym_BANG_EQ] = ACTIONS(3337), + [anon_sym_LT] = ACTIONS(3335), + [anon_sym_LT_EQ] = ACTIONS(3337), + [anon_sym_GT] = ACTIONS(3335), + [anon_sym_GT_EQ] = ACTIONS(3337), + [anon_sym_EQ_GT] = ACTIONS(3337), + [anon_sym_QMARK_QMARK] = ACTIONS(3337), + [anon_sym_EQ] = ACTIONS(3335), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3337), + [anon_sym_null] = ACTIONS(3335), + [anon_sym_macro] = ACTIONS(3335), + [anon_sym_abstract] = ACTIONS(3335), + [anon_sym_static] = ACTIONS(3335), + [anon_sym_public] = ACTIONS(3335), + [anon_sym_private] = ACTIONS(3335), + [anon_sym_extern] = ACTIONS(3335), + [anon_sym_inline] = ACTIONS(3335), + [anon_sym_overload] = ACTIONS(3335), + [anon_sym_override] = ACTIONS(3335), + [anon_sym_final] = ACTIONS(3335), + [anon_sym_class] = ACTIONS(3335), + [anon_sym_interface] = ACTIONS(3335), + [anon_sym_enum] = ACTIONS(3335), + [anon_sym_typedef] = ACTIONS(3335), + [anon_sym_function] = ACTIONS(3335), + [anon_sym_var] = ACTIONS(3335), + [aux_sym_integer_token1] = ACTIONS(3335), + [aux_sym_integer_token2] = ACTIONS(3337), + [aux_sym_float_token1] = ACTIONS(3335), + [aux_sym_float_token2] = ACTIONS(3337), + [anon_sym_true] = ACTIONS(3335), + [anon_sym_false] = ACTIONS(3335), + [aux_sym_string_token1] = ACTIONS(3337), + [aux_sym_string_token3] = ACTIONS(3337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [763] = { + [ts_builtin_sym_end] = ACTIONS(2723), + [sym_identifier] = ACTIONS(2721), + [anon_sym_POUND] = ACTIONS(2723), + [anon_sym_package] = ACTIONS(2721), + [anon_sym_import] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2723), + [anon_sym_using] = ACTIONS(2721), + [anon_sym_throw] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2723), + [anon_sym_switch] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2723), + [anon_sym_cast] = ACTIONS(2721), + [anon_sym_DOLLARtype] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2721), + [anon_sym_return] = ACTIONS(2721), + [anon_sym_untyped] = ACTIONS(2721), + [anon_sym_break] = ACTIONS(2721), + [anon_sym_continue] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2723), + [anon_sym_this] = ACTIONS(2721), + [anon_sym_AT] = ACTIONS(2721), + [anon_sym_AT_COLON] = ACTIONS(2723), + [anon_sym_try] = ACTIONS(2721), + [anon_sym_catch] = ACTIONS(2721), + [anon_sym_else] = ACTIONS(2721), + [anon_sym_if] = ACTIONS(2721), + [anon_sym_while] = ACTIONS(2721), + [anon_sym_do] = ACTIONS(2721), + [anon_sym_new] = ACTIONS(2721), + [anon_sym_TILDE] = ACTIONS(2723), + [anon_sym_BANG] = ACTIONS(2721), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_PLUS_PLUS] = ACTIONS(2723), + [anon_sym_DASH_DASH] = ACTIONS(2723), + [anon_sym_PERCENT] = ACTIONS(2723), + [anon_sym_SLASH] = ACTIONS(2721), + [anon_sym_PLUS] = ACTIONS(2721), + [anon_sym_LT_LT] = ACTIONS(2723), + [anon_sym_GT_GT] = ACTIONS(2721), + [anon_sym_GT_GT_GT] = ACTIONS(2723), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2721), + [anon_sym_CARET] = ACTIONS(2723), + [anon_sym_AMP_AMP] = ACTIONS(2723), + [anon_sym_PIPE_PIPE] = ACTIONS(2723), + [anon_sym_EQ_EQ] = ACTIONS(2723), + [anon_sym_BANG_EQ] = ACTIONS(2723), + [anon_sym_LT] = ACTIONS(2721), + [anon_sym_LT_EQ] = ACTIONS(2723), + [anon_sym_GT] = ACTIONS(2721), + [anon_sym_GT_EQ] = ACTIONS(2723), + [anon_sym_EQ_GT] = ACTIONS(2723), + [anon_sym_QMARK_QMARK] = ACTIONS(2723), + [anon_sym_EQ] = ACTIONS(2721), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2723), + [anon_sym_null] = ACTIONS(2721), + [anon_sym_macro] = ACTIONS(2721), + [anon_sym_abstract] = ACTIONS(2721), + [anon_sym_static] = ACTIONS(2721), + [anon_sym_public] = ACTIONS(2721), + [anon_sym_private] = ACTIONS(2721), + [anon_sym_extern] = ACTIONS(2721), + [anon_sym_inline] = ACTIONS(2721), + [anon_sym_overload] = ACTIONS(2721), + [anon_sym_override] = ACTIONS(2721), + [anon_sym_final] = ACTIONS(2721), + [anon_sym_class] = ACTIONS(2721), + [anon_sym_interface] = ACTIONS(2721), + [anon_sym_enum] = ACTIONS(2721), + [anon_sym_typedef] = ACTIONS(2721), + [anon_sym_function] = ACTIONS(2721), + [anon_sym_var] = ACTIONS(2721), + [aux_sym_integer_token1] = ACTIONS(2721), + [aux_sym_integer_token2] = ACTIONS(2723), + [aux_sym_float_token1] = ACTIONS(2721), + [aux_sym_float_token2] = ACTIONS(2723), + [anon_sym_true] = ACTIONS(2721), + [anon_sym_false] = ACTIONS(2721), + [aux_sym_string_token1] = ACTIONS(2723), + [aux_sym_string_token3] = ACTIONS(2723), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [764] = { + [ts_builtin_sym_end] = ACTIONS(2727), + [sym_identifier] = ACTIONS(2725), + [anon_sym_POUND] = ACTIONS(2727), + [anon_sym_package] = ACTIONS(2725), + [anon_sym_import] = ACTIONS(2725), + [anon_sym_STAR] = ACTIONS(2727), + [anon_sym_using] = ACTIONS(2725), + [anon_sym_throw] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2727), + [anon_sym_switch] = ACTIONS(2725), + [anon_sym_LBRACE] = ACTIONS(2727), + [anon_sym_cast] = ACTIONS(2725), + [anon_sym_DOLLARtype] = ACTIONS(2727), + [anon_sym_for] = ACTIONS(2725), + [anon_sym_return] = ACTIONS(2725), + [anon_sym_untyped] = ACTIONS(2725), + [anon_sym_break] = ACTIONS(2725), + [anon_sym_continue] = ACTIONS(2725), + [anon_sym_LBRACK] = ACTIONS(2727), + [anon_sym_this] = ACTIONS(2725), + [anon_sym_AT] = ACTIONS(2725), + [anon_sym_AT_COLON] = ACTIONS(2727), + [anon_sym_try] = ACTIONS(2725), + [anon_sym_catch] = ACTIONS(2725), + [anon_sym_else] = ACTIONS(2725), + [anon_sym_if] = ACTIONS(2725), + [anon_sym_while] = ACTIONS(2725), + [anon_sym_do] = ACTIONS(2725), + [anon_sym_new] = ACTIONS(2725), + [anon_sym_TILDE] = ACTIONS(2727), + [anon_sym_BANG] = ACTIONS(2725), + [anon_sym_DASH] = ACTIONS(2725), + [anon_sym_PLUS_PLUS] = ACTIONS(2727), + [anon_sym_DASH_DASH] = ACTIONS(2727), + [anon_sym_PERCENT] = ACTIONS(2727), + [anon_sym_SLASH] = ACTIONS(2725), + [anon_sym_PLUS] = ACTIONS(2725), + [anon_sym_LT_LT] = ACTIONS(2727), + [anon_sym_GT_GT] = ACTIONS(2725), + [anon_sym_GT_GT_GT] = ACTIONS(2727), + [anon_sym_AMP] = ACTIONS(2725), + [anon_sym_PIPE] = ACTIONS(2725), + [anon_sym_CARET] = ACTIONS(2727), + [anon_sym_AMP_AMP] = ACTIONS(2727), + [anon_sym_PIPE_PIPE] = ACTIONS(2727), + [anon_sym_EQ_EQ] = ACTIONS(2727), + [anon_sym_BANG_EQ] = ACTIONS(2727), + [anon_sym_LT] = ACTIONS(2725), + [anon_sym_LT_EQ] = ACTIONS(2727), + [anon_sym_GT] = ACTIONS(2725), + [anon_sym_GT_EQ] = ACTIONS(2727), + [anon_sym_EQ_GT] = ACTIONS(2727), + [anon_sym_QMARK_QMARK] = ACTIONS(2727), + [anon_sym_EQ] = ACTIONS(2725), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2727), + [anon_sym_null] = ACTIONS(2725), + [anon_sym_macro] = ACTIONS(2725), + [anon_sym_abstract] = ACTIONS(2725), + [anon_sym_static] = ACTIONS(2725), + [anon_sym_public] = ACTIONS(2725), + [anon_sym_private] = ACTIONS(2725), + [anon_sym_extern] = ACTIONS(2725), + [anon_sym_inline] = ACTIONS(2725), + [anon_sym_overload] = ACTIONS(2725), + [anon_sym_override] = ACTIONS(2725), + [anon_sym_final] = ACTIONS(2725), + [anon_sym_class] = ACTIONS(2725), + [anon_sym_interface] = ACTIONS(2725), + [anon_sym_enum] = ACTIONS(2725), + [anon_sym_typedef] = ACTIONS(2725), + [anon_sym_function] = ACTIONS(2725), + [anon_sym_var] = ACTIONS(2725), + [aux_sym_integer_token1] = ACTIONS(2725), + [aux_sym_integer_token2] = ACTIONS(2727), + [aux_sym_float_token1] = ACTIONS(2725), + [aux_sym_float_token2] = ACTIONS(2727), + [anon_sym_true] = ACTIONS(2725), + [anon_sym_false] = ACTIONS(2725), + [aux_sym_string_token1] = ACTIONS(2727), + [aux_sym_string_token3] = ACTIONS(2727), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [765] = { + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3339), + [anon_sym_POUND] = ACTIONS(3341), + [anon_sym_package] = ACTIONS(3339), + [anon_sym_import] = ACTIONS(3339), + [anon_sym_STAR] = ACTIONS(3341), + [anon_sym_using] = ACTIONS(3339), + [anon_sym_throw] = ACTIONS(3339), + [anon_sym_LPAREN] = ACTIONS(3341), + [anon_sym_switch] = ACTIONS(3339), + [anon_sym_LBRACE] = ACTIONS(3341), + [anon_sym_cast] = ACTIONS(3339), + [anon_sym_DOLLARtype] = ACTIONS(3341), + [anon_sym_for] = ACTIONS(3339), + [anon_sym_return] = ACTIONS(3339), + [anon_sym_untyped] = ACTIONS(3339), + [anon_sym_break] = ACTIONS(3339), + [anon_sym_continue] = ACTIONS(3339), + [anon_sym_LBRACK] = ACTIONS(3341), + [anon_sym_this] = ACTIONS(3339), + [anon_sym_AT] = ACTIONS(3339), + [anon_sym_AT_COLON] = ACTIONS(3341), + [anon_sym_try] = ACTIONS(3339), + [anon_sym_catch] = ACTIONS(3339), + [anon_sym_else] = ACTIONS(3339), + [anon_sym_if] = ACTIONS(3339), + [anon_sym_while] = ACTIONS(3339), + [anon_sym_do] = ACTIONS(3339), + [anon_sym_new] = ACTIONS(3339), + [anon_sym_TILDE] = ACTIONS(3341), + [anon_sym_BANG] = ACTIONS(3339), + [anon_sym_DASH] = ACTIONS(3339), + [anon_sym_PLUS_PLUS] = ACTIONS(3341), + [anon_sym_DASH_DASH] = ACTIONS(3341), + [anon_sym_PERCENT] = ACTIONS(3341), + [anon_sym_SLASH] = ACTIONS(3339), + [anon_sym_PLUS] = ACTIONS(3339), + [anon_sym_LT_LT] = ACTIONS(3341), + [anon_sym_GT_GT] = ACTIONS(3339), + [anon_sym_GT_GT_GT] = ACTIONS(3341), + [anon_sym_AMP] = ACTIONS(3339), + [anon_sym_PIPE] = ACTIONS(3339), + [anon_sym_CARET] = ACTIONS(3341), + [anon_sym_AMP_AMP] = ACTIONS(3341), + [anon_sym_PIPE_PIPE] = ACTIONS(3341), + [anon_sym_EQ_EQ] = ACTIONS(3341), + [anon_sym_BANG_EQ] = ACTIONS(3341), + [anon_sym_LT] = ACTIONS(3339), + [anon_sym_LT_EQ] = ACTIONS(3341), + [anon_sym_GT] = ACTIONS(3339), + [anon_sym_GT_EQ] = ACTIONS(3341), + [anon_sym_EQ_GT] = ACTIONS(3341), + [anon_sym_QMARK_QMARK] = ACTIONS(3341), + [anon_sym_EQ] = ACTIONS(3339), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3341), + [anon_sym_null] = ACTIONS(3339), + [anon_sym_macro] = ACTIONS(3339), + [anon_sym_abstract] = ACTIONS(3339), + [anon_sym_static] = ACTIONS(3339), + [anon_sym_public] = ACTIONS(3339), + [anon_sym_private] = ACTIONS(3339), + [anon_sym_extern] = ACTIONS(3339), + [anon_sym_inline] = ACTIONS(3339), + [anon_sym_overload] = ACTIONS(3339), + [anon_sym_override] = ACTIONS(3339), + [anon_sym_final] = ACTIONS(3339), + [anon_sym_class] = ACTIONS(3339), + [anon_sym_interface] = ACTIONS(3339), + [anon_sym_enum] = ACTIONS(3339), + [anon_sym_typedef] = ACTIONS(3339), + [anon_sym_function] = ACTIONS(3339), + [anon_sym_var] = ACTIONS(3339), + [aux_sym_integer_token1] = ACTIONS(3339), + [aux_sym_integer_token2] = ACTIONS(3341), + [aux_sym_float_token1] = ACTIONS(3339), + [aux_sym_float_token2] = ACTIONS(3341), + [anon_sym_true] = ACTIONS(3339), + [anon_sym_false] = ACTIONS(3339), + [aux_sym_string_token1] = ACTIONS(3341), + [aux_sym_string_token3] = ACTIONS(3341), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [766] = { + [ts_builtin_sym_end] = ACTIONS(2731), + [sym_identifier] = ACTIONS(2729), + [anon_sym_POUND] = ACTIONS(2731), + [anon_sym_package] = ACTIONS(2729), + [anon_sym_import] = ACTIONS(2729), + [anon_sym_STAR] = ACTIONS(2731), + [anon_sym_using] = ACTIONS(2729), + [anon_sym_throw] = ACTIONS(2729), + [anon_sym_LPAREN] = ACTIONS(2731), + [anon_sym_switch] = ACTIONS(2729), + [anon_sym_LBRACE] = ACTIONS(2731), + [anon_sym_cast] = ACTIONS(2729), + [anon_sym_DOLLARtype] = ACTIONS(2731), + [anon_sym_for] = ACTIONS(2729), + [anon_sym_return] = ACTIONS(2729), + [anon_sym_untyped] = ACTIONS(2729), + [anon_sym_break] = ACTIONS(2729), + [anon_sym_continue] = ACTIONS(2729), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_this] = ACTIONS(2729), + [anon_sym_AT] = ACTIONS(2729), + [anon_sym_AT_COLON] = ACTIONS(2731), + [anon_sym_try] = ACTIONS(2729), + [anon_sym_catch] = ACTIONS(2729), + [anon_sym_else] = ACTIONS(2729), + [anon_sym_if] = ACTIONS(2729), + [anon_sym_while] = ACTIONS(2729), + [anon_sym_do] = ACTIONS(2729), + [anon_sym_new] = ACTIONS(2729), + [anon_sym_TILDE] = ACTIONS(2731), + [anon_sym_BANG] = ACTIONS(2729), + [anon_sym_DASH] = ACTIONS(2729), + [anon_sym_PLUS_PLUS] = ACTIONS(2731), + [anon_sym_DASH_DASH] = ACTIONS(2731), + [anon_sym_PERCENT] = ACTIONS(2731), + [anon_sym_SLASH] = ACTIONS(2729), + [anon_sym_PLUS] = ACTIONS(2729), + [anon_sym_LT_LT] = ACTIONS(2731), + [anon_sym_GT_GT] = ACTIONS(2729), + [anon_sym_GT_GT_GT] = ACTIONS(2731), + [anon_sym_AMP] = ACTIONS(2729), + [anon_sym_PIPE] = ACTIONS(2729), + [anon_sym_CARET] = ACTIONS(2731), + [anon_sym_AMP_AMP] = ACTIONS(2731), + [anon_sym_PIPE_PIPE] = ACTIONS(2731), + [anon_sym_EQ_EQ] = ACTIONS(2731), + [anon_sym_BANG_EQ] = ACTIONS(2731), + [anon_sym_LT] = ACTIONS(2729), + [anon_sym_LT_EQ] = ACTIONS(2731), + [anon_sym_GT] = ACTIONS(2729), + [anon_sym_GT_EQ] = ACTIONS(2731), + [anon_sym_EQ_GT] = ACTIONS(2731), + [anon_sym_QMARK_QMARK] = ACTIONS(2731), + [anon_sym_EQ] = ACTIONS(2729), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2731), + [anon_sym_null] = ACTIONS(2729), + [anon_sym_macro] = ACTIONS(2729), + [anon_sym_abstract] = ACTIONS(2729), + [anon_sym_static] = ACTIONS(2729), + [anon_sym_public] = ACTIONS(2729), + [anon_sym_private] = ACTIONS(2729), + [anon_sym_extern] = ACTIONS(2729), + [anon_sym_inline] = ACTIONS(2729), + [anon_sym_overload] = ACTIONS(2729), + [anon_sym_override] = ACTIONS(2729), + [anon_sym_final] = ACTIONS(2729), + [anon_sym_class] = ACTIONS(2729), + [anon_sym_interface] = ACTIONS(2729), + [anon_sym_enum] = ACTIONS(2729), + [anon_sym_typedef] = ACTIONS(2729), + [anon_sym_function] = ACTIONS(2729), + [anon_sym_var] = ACTIONS(2729), + [aux_sym_integer_token1] = ACTIONS(2729), + [aux_sym_integer_token2] = ACTIONS(2731), + [aux_sym_float_token1] = ACTIONS(2729), + [aux_sym_float_token2] = ACTIONS(2731), + [anon_sym_true] = ACTIONS(2729), + [anon_sym_false] = ACTIONS(2729), + [aux_sym_string_token1] = ACTIONS(2731), + [aux_sym_string_token3] = ACTIONS(2731), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [767] = { + [ts_builtin_sym_end] = ACTIONS(2735), + [sym_identifier] = ACTIONS(2733), + [anon_sym_POUND] = ACTIONS(2735), + [anon_sym_package] = ACTIONS(2733), + [anon_sym_import] = ACTIONS(2733), + [anon_sym_STAR] = ACTIONS(2735), + [anon_sym_using] = ACTIONS(2733), + [anon_sym_throw] = ACTIONS(2733), + [anon_sym_LPAREN] = ACTIONS(2735), + [anon_sym_switch] = ACTIONS(2733), + [anon_sym_LBRACE] = ACTIONS(2735), + [anon_sym_cast] = ACTIONS(2733), + [anon_sym_DOLLARtype] = ACTIONS(2735), + [anon_sym_for] = ACTIONS(2733), + [anon_sym_return] = ACTIONS(2733), + [anon_sym_untyped] = ACTIONS(2733), + [anon_sym_break] = ACTIONS(2733), + [anon_sym_continue] = ACTIONS(2733), + [anon_sym_LBRACK] = ACTIONS(2735), + [anon_sym_this] = ACTIONS(2733), + [anon_sym_AT] = ACTIONS(2733), + [anon_sym_AT_COLON] = ACTIONS(2735), + [anon_sym_try] = ACTIONS(2733), + [anon_sym_catch] = ACTIONS(2733), + [anon_sym_else] = ACTIONS(2733), + [anon_sym_if] = ACTIONS(2733), + [anon_sym_while] = ACTIONS(2733), + [anon_sym_do] = ACTIONS(2733), + [anon_sym_new] = ACTIONS(2733), + [anon_sym_TILDE] = ACTIONS(2735), + [anon_sym_BANG] = ACTIONS(2733), + [anon_sym_DASH] = ACTIONS(2733), + [anon_sym_PLUS_PLUS] = ACTIONS(2735), + [anon_sym_DASH_DASH] = ACTIONS(2735), + [anon_sym_PERCENT] = ACTIONS(2735), + [anon_sym_SLASH] = ACTIONS(2733), + [anon_sym_PLUS] = ACTIONS(2733), + [anon_sym_LT_LT] = ACTIONS(2735), + [anon_sym_GT_GT] = ACTIONS(2733), + [anon_sym_GT_GT_GT] = ACTIONS(2735), + [anon_sym_AMP] = ACTIONS(2733), + [anon_sym_PIPE] = ACTIONS(2733), + [anon_sym_CARET] = ACTIONS(2735), + [anon_sym_AMP_AMP] = ACTIONS(2735), + [anon_sym_PIPE_PIPE] = ACTIONS(2735), + [anon_sym_EQ_EQ] = ACTIONS(2735), + [anon_sym_BANG_EQ] = ACTIONS(2735), + [anon_sym_LT] = ACTIONS(2733), + [anon_sym_LT_EQ] = ACTIONS(2735), + [anon_sym_GT] = ACTIONS(2733), + [anon_sym_GT_EQ] = ACTIONS(2735), + [anon_sym_EQ_GT] = ACTIONS(2735), + [anon_sym_QMARK_QMARK] = ACTIONS(2735), + [anon_sym_EQ] = ACTIONS(2733), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2735), + [anon_sym_null] = ACTIONS(2733), + [anon_sym_macro] = ACTIONS(2733), + [anon_sym_abstract] = ACTIONS(2733), + [anon_sym_static] = ACTIONS(2733), + [anon_sym_public] = ACTIONS(2733), + [anon_sym_private] = ACTIONS(2733), + [anon_sym_extern] = ACTIONS(2733), + [anon_sym_inline] = ACTIONS(2733), + [anon_sym_overload] = ACTIONS(2733), + [anon_sym_override] = ACTIONS(2733), + [anon_sym_final] = ACTIONS(2733), + [anon_sym_class] = ACTIONS(2733), + [anon_sym_interface] = ACTIONS(2733), + [anon_sym_enum] = ACTIONS(2733), + [anon_sym_typedef] = ACTIONS(2733), + [anon_sym_function] = ACTIONS(2733), + [anon_sym_var] = ACTIONS(2733), + [aux_sym_integer_token1] = ACTIONS(2733), + [aux_sym_integer_token2] = ACTIONS(2735), + [aux_sym_float_token1] = ACTIONS(2733), + [aux_sym_float_token2] = ACTIONS(2735), + [anon_sym_true] = ACTIONS(2733), + [anon_sym_false] = ACTIONS(2733), + [aux_sym_string_token1] = ACTIONS(2735), + [aux_sym_string_token3] = ACTIONS(2735), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [768] = { + [ts_builtin_sym_end] = ACTIONS(2739), + [sym_identifier] = ACTIONS(2737), + [anon_sym_POUND] = ACTIONS(2739), + [anon_sym_package] = ACTIONS(2737), + [anon_sym_import] = ACTIONS(2737), + [anon_sym_STAR] = ACTIONS(2739), + [anon_sym_using] = ACTIONS(2737), + [anon_sym_throw] = ACTIONS(2737), + [anon_sym_LPAREN] = ACTIONS(2739), + [anon_sym_switch] = ACTIONS(2737), + [anon_sym_LBRACE] = ACTIONS(2739), + [anon_sym_cast] = ACTIONS(2737), + [anon_sym_DOLLARtype] = ACTIONS(2739), + [anon_sym_for] = ACTIONS(2737), + [anon_sym_return] = ACTIONS(2737), + [anon_sym_untyped] = ACTIONS(2737), + [anon_sym_break] = ACTIONS(2737), + [anon_sym_continue] = ACTIONS(2737), + [anon_sym_LBRACK] = ACTIONS(2739), + [anon_sym_this] = ACTIONS(2737), + [anon_sym_AT] = ACTIONS(2737), + [anon_sym_AT_COLON] = ACTIONS(2739), + [anon_sym_try] = ACTIONS(2737), + [anon_sym_catch] = ACTIONS(2737), + [anon_sym_else] = ACTIONS(2737), + [anon_sym_if] = ACTIONS(2737), + [anon_sym_while] = ACTIONS(2737), + [anon_sym_do] = ACTIONS(2737), + [anon_sym_new] = ACTIONS(2737), + [anon_sym_TILDE] = ACTIONS(2739), + [anon_sym_BANG] = ACTIONS(2737), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_PLUS_PLUS] = ACTIONS(2739), + [anon_sym_DASH_DASH] = ACTIONS(2739), + [anon_sym_PERCENT] = ACTIONS(2739), + [anon_sym_SLASH] = ACTIONS(2737), + [anon_sym_PLUS] = ACTIONS(2737), + [anon_sym_LT_LT] = ACTIONS(2739), + [anon_sym_GT_GT] = ACTIONS(2737), + [anon_sym_GT_GT_GT] = ACTIONS(2739), + [anon_sym_AMP] = ACTIONS(2737), + [anon_sym_PIPE] = ACTIONS(2737), + [anon_sym_CARET] = ACTIONS(2739), + [anon_sym_AMP_AMP] = ACTIONS(2739), + [anon_sym_PIPE_PIPE] = ACTIONS(2739), + [anon_sym_EQ_EQ] = ACTIONS(2739), + [anon_sym_BANG_EQ] = ACTIONS(2739), + [anon_sym_LT] = ACTIONS(2737), + [anon_sym_LT_EQ] = ACTIONS(2739), + [anon_sym_GT] = ACTIONS(2737), + [anon_sym_GT_EQ] = ACTIONS(2739), + [anon_sym_EQ_GT] = ACTIONS(2739), + [anon_sym_QMARK_QMARK] = ACTIONS(2739), + [anon_sym_EQ] = ACTIONS(2737), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2739), + [anon_sym_null] = ACTIONS(2737), + [anon_sym_macro] = ACTIONS(2737), + [anon_sym_abstract] = ACTIONS(2737), + [anon_sym_static] = ACTIONS(2737), + [anon_sym_public] = ACTIONS(2737), + [anon_sym_private] = ACTIONS(2737), + [anon_sym_extern] = ACTIONS(2737), + [anon_sym_inline] = ACTIONS(2737), + [anon_sym_overload] = ACTIONS(2737), + [anon_sym_override] = ACTIONS(2737), + [anon_sym_final] = ACTIONS(2737), + [anon_sym_class] = ACTIONS(2737), + [anon_sym_interface] = ACTIONS(2737), + [anon_sym_enum] = ACTIONS(2737), + [anon_sym_typedef] = ACTIONS(2737), + [anon_sym_function] = ACTIONS(2737), + [anon_sym_var] = ACTIONS(2737), + [aux_sym_integer_token1] = ACTIONS(2737), + [aux_sym_integer_token2] = ACTIONS(2739), + [aux_sym_float_token1] = ACTIONS(2737), + [aux_sym_float_token2] = ACTIONS(2739), + [anon_sym_true] = ACTIONS(2737), + [anon_sym_false] = ACTIONS(2737), + [aux_sym_string_token1] = ACTIONS(2739), + [aux_sym_string_token3] = ACTIONS(2739), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [769] = { + [ts_builtin_sym_end] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3347), + [anon_sym_POUND] = ACTIONS(3349), + [anon_sym_package] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_STAR] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_cast] = ACTIONS(3347), + [anon_sym_DOLLARtype] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_untyped] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_this] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_AT_COLON] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_catch] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [anon_sym_PERCENT] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_LT_LT] = ACTIONS(3349), + [anon_sym_GT_GT] = ACTIONS(3347), + [anon_sym_GT_GT_GT] = ACTIONS(3349), + [anon_sym_AMP] = ACTIONS(3347), + [anon_sym_PIPE] = ACTIONS(3347), + [anon_sym_CARET] = ACTIONS(3349), + [anon_sym_AMP_AMP] = ACTIONS(3349), + [anon_sym_PIPE_PIPE] = ACTIONS(3349), + [anon_sym_EQ_EQ] = ACTIONS(3349), + [anon_sym_BANG_EQ] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_LT_EQ] = ACTIONS(3349), + [anon_sym_GT] = ACTIONS(3347), + [anon_sym_GT_EQ] = ACTIONS(3349), + [anon_sym_EQ_GT] = ACTIONS(3349), + [anon_sym_QMARK_QMARK] = ACTIONS(3349), + [anon_sym_EQ] = ACTIONS(3347), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3349), + [anon_sym_null] = ACTIONS(3347), + [anon_sym_macro] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_extern] = ACTIONS(3347), + [anon_sym_inline] = ACTIONS(3347), + [anon_sym_overload] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_final] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), + [anon_sym_typedef] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [aux_sym_integer_token1] = ACTIONS(3347), + [aux_sym_integer_token2] = ACTIONS(3349), + [aux_sym_float_token1] = ACTIONS(3347), + [aux_sym_float_token2] = ACTIONS(3349), + [anon_sym_true] = ACTIONS(3347), + [anon_sym_false] = ACTIONS(3347), + [aux_sym_string_token1] = ACTIONS(3349), + [aux_sym_string_token3] = ACTIONS(3349), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [770] = { + [ts_builtin_sym_end] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3351), + [anon_sym_POUND] = ACTIONS(3353), + [anon_sym_package] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_STAR] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_cast] = ACTIONS(3351), + [anon_sym_DOLLARtype] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_untyped] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_this] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_AT_COLON] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_catch] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), + [anon_sym_PERCENT] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_LT_LT] = ACTIONS(3353), + [anon_sym_GT_GT] = ACTIONS(3351), + [anon_sym_GT_GT_GT] = ACTIONS(3353), + [anon_sym_AMP] = ACTIONS(3351), + [anon_sym_PIPE] = ACTIONS(3351), + [anon_sym_CARET] = ACTIONS(3353), + [anon_sym_AMP_AMP] = ACTIONS(3353), + [anon_sym_PIPE_PIPE] = ACTIONS(3353), + [anon_sym_EQ_EQ] = ACTIONS(3353), + [anon_sym_BANG_EQ] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_LT_EQ] = ACTIONS(3353), + [anon_sym_GT] = ACTIONS(3351), + [anon_sym_GT_EQ] = ACTIONS(3353), + [anon_sym_EQ_GT] = ACTIONS(3353), + [anon_sym_QMARK_QMARK] = ACTIONS(3353), + [anon_sym_EQ] = ACTIONS(3351), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3353), + [anon_sym_null] = ACTIONS(3351), + [anon_sym_macro] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_extern] = ACTIONS(3351), + [anon_sym_inline] = ACTIONS(3351), + [anon_sym_overload] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_final] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [anon_sym_typedef] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [aux_sym_integer_token1] = ACTIONS(3351), + [aux_sym_integer_token2] = ACTIONS(3353), + [aux_sym_float_token1] = ACTIONS(3351), + [aux_sym_float_token2] = ACTIONS(3353), + [anon_sym_true] = ACTIONS(3351), + [anon_sym_false] = ACTIONS(3351), + [aux_sym_string_token1] = ACTIONS(3353), + [aux_sym_string_token3] = ACTIONS(3353), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [771] = { + [ts_builtin_sym_end] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3377), + [anon_sym_POUND] = ACTIONS(3379), + [anon_sym_package] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_STAR] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_cast] = ACTIONS(3377), + [anon_sym_DOLLARtype] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_untyped] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_this] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_AT_COLON] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_catch] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), + [anon_sym_PERCENT] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_LT_LT] = ACTIONS(3379), + [anon_sym_GT_GT] = ACTIONS(3377), + [anon_sym_GT_GT_GT] = ACTIONS(3379), + [anon_sym_AMP] = ACTIONS(3377), + [anon_sym_PIPE] = ACTIONS(3377), + [anon_sym_CARET] = ACTIONS(3379), + [anon_sym_AMP_AMP] = ACTIONS(3379), + [anon_sym_PIPE_PIPE] = ACTIONS(3379), + [anon_sym_EQ_EQ] = ACTIONS(3379), + [anon_sym_BANG_EQ] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_LT_EQ] = ACTIONS(3379), + [anon_sym_GT] = ACTIONS(3377), + [anon_sym_GT_EQ] = ACTIONS(3379), + [anon_sym_EQ_GT] = ACTIONS(3379), + [anon_sym_QMARK_QMARK] = ACTIONS(3379), + [anon_sym_EQ] = ACTIONS(3377), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3379), + [anon_sym_null] = ACTIONS(3377), + [anon_sym_macro] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_extern] = ACTIONS(3377), + [anon_sym_inline] = ACTIONS(3377), + [anon_sym_overload] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_final] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), + [anon_sym_typedef] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [aux_sym_integer_token1] = ACTIONS(3377), + [aux_sym_integer_token2] = ACTIONS(3379), + [aux_sym_float_token1] = ACTIONS(3377), + [aux_sym_float_token2] = ACTIONS(3379), + [anon_sym_true] = ACTIONS(3377), + [anon_sym_false] = ACTIONS(3377), + [aux_sym_string_token1] = ACTIONS(3379), + [aux_sym_string_token3] = ACTIONS(3379), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [772] = { + [ts_builtin_sym_end] = ACTIONS(3383), + [sym_identifier] = ACTIONS(3381), + [anon_sym_POUND] = ACTIONS(3383), + [anon_sym_package] = ACTIONS(3381), + [anon_sym_import] = ACTIONS(3381), + [anon_sym_STAR] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3381), + [anon_sym_throw] = ACTIONS(3381), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3381), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_cast] = ACTIONS(3381), + [anon_sym_DOLLARtype] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3381), + [anon_sym_return] = ACTIONS(3381), + [anon_sym_untyped] = ACTIONS(3381), + [anon_sym_break] = ACTIONS(3381), + [anon_sym_continue] = ACTIONS(3381), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_this] = ACTIONS(3381), + [anon_sym_AT] = ACTIONS(3381), + [anon_sym_AT_COLON] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3381), + [anon_sym_catch] = ACTIONS(3381), + [anon_sym_else] = ACTIONS(3381), + [anon_sym_if] = ACTIONS(3381), + [anon_sym_while] = ACTIONS(3381), + [anon_sym_do] = ACTIONS(3381), + [anon_sym_new] = ACTIONS(3381), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3381), + [anon_sym_DASH] = ACTIONS(3381), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [anon_sym_PERCENT] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3381), + [anon_sym_PLUS] = ACTIONS(3381), + [anon_sym_LT_LT] = ACTIONS(3383), + [anon_sym_GT_GT] = ACTIONS(3381), + [anon_sym_GT_GT_GT] = ACTIONS(3383), + [anon_sym_AMP] = ACTIONS(3381), + [anon_sym_PIPE] = ACTIONS(3381), + [anon_sym_CARET] = ACTIONS(3383), + [anon_sym_AMP_AMP] = ACTIONS(3383), + [anon_sym_PIPE_PIPE] = ACTIONS(3383), + [anon_sym_EQ_EQ] = ACTIONS(3383), + [anon_sym_BANG_EQ] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3381), + [anon_sym_LT_EQ] = ACTIONS(3383), + [anon_sym_GT] = ACTIONS(3381), + [anon_sym_GT_EQ] = ACTIONS(3383), + [anon_sym_EQ_GT] = ACTIONS(3383), + [anon_sym_QMARK_QMARK] = ACTIONS(3383), + [anon_sym_EQ] = ACTIONS(3381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3383), + [anon_sym_null] = ACTIONS(3381), + [anon_sym_macro] = ACTIONS(3381), + [anon_sym_abstract] = ACTIONS(3381), + [anon_sym_static] = ACTIONS(3381), + [anon_sym_public] = ACTIONS(3381), + [anon_sym_private] = ACTIONS(3381), + [anon_sym_extern] = ACTIONS(3381), + [anon_sym_inline] = ACTIONS(3381), + [anon_sym_overload] = ACTIONS(3381), + [anon_sym_override] = ACTIONS(3381), + [anon_sym_final] = ACTIONS(3381), + [anon_sym_class] = ACTIONS(3381), + [anon_sym_interface] = ACTIONS(3381), + [anon_sym_enum] = ACTIONS(3381), + [anon_sym_typedef] = ACTIONS(3381), + [anon_sym_function] = ACTIONS(3381), + [anon_sym_var] = ACTIONS(3381), + [aux_sym_integer_token1] = ACTIONS(3381), + [aux_sym_integer_token2] = ACTIONS(3383), + [aux_sym_float_token1] = ACTIONS(3381), + [aux_sym_float_token2] = ACTIONS(3383), + [anon_sym_true] = ACTIONS(3381), + [anon_sym_false] = ACTIONS(3381), + [aux_sym_string_token1] = ACTIONS(3383), + [aux_sym_string_token3] = ACTIONS(3383), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [773] = { + [ts_builtin_sym_end] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3385), + [anon_sym_POUND] = ACTIONS(3387), + [anon_sym_package] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_STAR] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_cast] = ACTIONS(3385), + [anon_sym_DOLLARtype] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_untyped] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_this] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_AT_COLON] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_catch] = ACTIONS(3385), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), + [anon_sym_PERCENT] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_LT_LT] = ACTIONS(3387), + [anon_sym_GT_GT] = ACTIONS(3385), + [anon_sym_GT_GT_GT] = ACTIONS(3387), + [anon_sym_AMP] = ACTIONS(3385), + [anon_sym_PIPE] = ACTIONS(3385), + [anon_sym_CARET] = ACTIONS(3387), + [anon_sym_AMP_AMP] = ACTIONS(3387), + [anon_sym_PIPE_PIPE] = ACTIONS(3387), + [anon_sym_EQ_EQ] = ACTIONS(3387), + [anon_sym_BANG_EQ] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_LT_EQ] = ACTIONS(3387), + [anon_sym_GT] = ACTIONS(3385), + [anon_sym_GT_EQ] = ACTIONS(3387), + [anon_sym_EQ_GT] = ACTIONS(3387), + [anon_sym_QMARK_QMARK] = ACTIONS(3387), + [anon_sym_EQ] = ACTIONS(3385), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3387), + [anon_sym_null] = ACTIONS(3385), + [anon_sym_macro] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_extern] = ACTIONS(3385), + [anon_sym_inline] = ACTIONS(3385), + [anon_sym_overload] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_final] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), + [anon_sym_typedef] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [aux_sym_integer_token1] = ACTIONS(3385), + [aux_sym_integer_token2] = ACTIONS(3387), + [aux_sym_float_token1] = ACTIONS(3385), + [aux_sym_float_token2] = ACTIONS(3387), + [anon_sym_true] = ACTIONS(3385), + [anon_sym_false] = ACTIONS(3385), + [aux_sym_string_token1] = ACTIONS(3387), + [aux_sym_string_token3] = ACTIONS(3387), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [774] = { + [ts_builtin_sym_end] = ACTIONS(2743), + [sym_identifier] = ACTIONS(2741), + [anon_sym_POUND] = ACTIONS(2743), + [anon_sym_package] = ACTIONS(2741), + [anon_sym_import] = ACTIONS(2741), + [anon_sym_STAR] = ACTIONS(2743), + [anon_sym_using] = ACTIONS(2741), + [anon_sym_throw] = ACTIONS(2741), + [anon_sym_LPAREN] = ACTIONS(2743), + [anon_sym_switch] = ACTIONS(2741), + [anon_sym_LBRACE] = ACTIONS(2743), + [anon_sym_cast] = ACTIONS(2741), + [anon_sym_DOLLARtype] = ACTIONS(2743), + [anon_sym_for] = ACTIONS(2741), + [anon_sym_return] = ACTIONS(2741), + [anon_sym_untyped] = ACTIONS(2741), + [anon_sym_break] = ACTIONS(2741), + [anon_sym_continue] = ACTIONS(2741), + [anon_sym_LBRACK] = ACTIONS(2743), + [anon_sym_this] = ACTIONS(2741), + [anon_sym_AT] = ACTIONS(2741), + [anon_sym_AT_COLON] = ACTIONS(2743), + [anon_sym_try] = ACTIONS(2741), + [anon_sym_catch] = ACTIONS(2741), + [anon_sym_else] = ACTIONS(2741), + [anon_sym_if] = ACTIONS(2741), + [anon_sym_while] = ACTIONS(2741), + [anon_sym_do] = ACTIONS(2741), + [anon_sym_new] = ACTIONS(2741), + [anon_sym_TILDE] = ACTIONS(2743), + [anon_sym_BANG] = ACTIONS(2741), + [anon_sym_DASH] = ACTIONS(2741), + [anon_sym_PLUS_PLUS] = ACTIONS(2743), + [anon_sym_DASH_DASH] = ACTIONS(2743), + [anon_sym_PERCENT] = ACTIONS(2743), + [anon_sym_SLASH] = ACTIONS(2741), + [anon_sym_PLUS] = ACTIONS(2741), + [anon_sym_LT_LT] = ACTIONS(2743), + [anon_sym_GT_GT] = ACTIONS(2741), + [anon_sym_GT_GT_GT] = ACTIONS(2743), + [anon_sym_AMP] = ACTIONS(2741), + [anon_sym_PIPE] = ACTIONS(2741), + [anon_sym_CARET] = ACTIONS(2743), + [anon_sym_AMP_AMP] = ACTIONS(2743), + [anon_sym_PIPE_PIPE] = ACTIONS(2743), + [anon_sym_EQ_EQ] = ACTIONS(2743), + [anon_sym_BANG_EQ] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2741), + [anon_sym_LT_EQ] = ACTIONS(2743), + [anon_sym_GT] = ACTIONS(2741), + [anon_sym_GT_EQ] = ACTIONS(2743), + [anon_sym_EQ_GT] = ACTIONS(2743), + [anon_sym_QMARK_QMARK] = ACTIONS(2743), + [anon_sym_EQ] = ACTIONS(2741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2743), + [anon_sym_null] = ACTIONS(2741), + [anon_sym_macro] = ACTIONS(2741), + [anon_sym_abstract] = ACTIONS(2741), + [anon_sym_static] = ACTIONS(2741), + [anon_sym_public] = ACTIONS(2741), + [anon_sym_private] = ACTIONS(2741), + [anon_sym_extern] = ACTIONS(2741), + [anon_sym_inline] = ACTIONS(2741), + [anon_sym_overload] = ACTIONS(2741), + [anon_sym_override] = ACTIONS(2741), + [anon_sym_final] = ACTIONS(2741), + [anon_sym_class] = ACTIONS(2741), + [anon_sym_interface] = ACTIONS(2741), + [anon_sym_enum] = ACTIONS(2741), + [anon_sym_typedef] = ACTIONS(2741), + [anon_sym_function] = ACTIONS(2741), + [anon_sym_var] = ACTIONS(2741), + [aux_sym_integer_token1] = ACTIONS(2741), + [aux_sym_integer_token2] = ACTIONS(2743), + [aux_sym_float_token1] = ACTIONS(2741), + [aux_sym_float_token2] = ACTIONS(2743), + [anon_sym_true] = ACTIONS(2741), + [anon_sym_false] = ACTIONS(2741), + [aux_sym_string_token1] = ACTIONS(2743), + [aux_sym_string_token3] = ACTIONS(2743), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [775] = { + [ts_builtin_sym_end] = ACTIONS(2895), + [sym_identifier] = ACTIONS(2893), + [anon_sym_POUND] = ACTIONS(2895), + [anon_sym_package] = ACTIONS(2893), + [anon_sym_import] = ACTIONS(2893), + [anon_sym_STAR] = ACTIONS(2895), + [anon_sym_using] = ACTIONS(2893), + [anon_sym_throw] = ACTIONS(2893), + [anon_sym_LPAREN] = ACTIONS(2895), + [anon_sym_switch] = ACTIONS(2893), + [anon_sym_LBRACE] = ACTIONS(2895), + [anon_sym_cast] = ACTIONS(2893), + [anon_sym_DOLLARtype] = ACTIONS(2895), + [anon_sym_for] = ACTIONS(2893), + [anon_sym_return] = ACTIONS(2893), + [anon_sym_untyped] = ACTIONS(2893), + [anon_sym_break] = ACTIONS(2893), + [anon_sym_continue] = ACTIONS(2893), + [anon_sym_LBRACK] = ACTIONS(2895), + [anon_sym_this] = ACTIONS(2893), + [anon_sym_AT] = ACTIONS(2893), + [anon_sym_AT_COLON] = ACTIONS(2895), + [anon_sym_try] = ACTIONS(2893), + [anon_sym_catch] = ACTIONS(2893), + [anon_sym_else] = ACTIONS(2893), + [anon_sym_if] = ACTIONS(2893), + [anon_sym_while] = ACTIONS(2893), + [anon_sym_do] = ACTIONS(2893), + [anon_sym_new] = ACTIONS(2893), + [anon_sym_TILDE] = ACTIONS(2895), + [anon_sym_BANG] = ACTIONS(2893), + [anon_sym_DASH] = ACTIONS(2893), + [anon_sym_PLUS_PLUS] = ACTIONS(2895), + [anon_sym_DASH_DASH] = ACTIONS(2895), + [anon_sym_PERCENT] = ACTIONS(2895), + [anon_sym_SLASH] = ACTIONS(2893), + [anon_sym_PLUS] = ACTIONS(2893), + [anon_sym_LT_LT] = ACTIONS(2895), + [anon_sym_GT_GT] = ACTIONS(2893), + [anon_sym_GT_GT_GT] = ACTIONS(2895), + [anon_sym_AMP] = ACTIONS(2893), + [anon_sym_PIPE] = ACTIONS(2893), + [anon_sym_CARET] = ACTIONS(2895), + [anon_sym_AMP_AMP] = ACTIONS(2895), + [anon_sym_PIPE_PIPE] = ACTIONS(2895), + [anon_sym_EQ_EQ] = ACTIONS(2895), + [anon_sym_BANG_EQ] = ACTIONS(2895), + [anon_sym_LT] = ACTIONS(2893), + [anon_sym_LT_EQ] = ACTIONS(2895), + [anon_sym_GT] = ACTIONS(2893), + [anon_sym_GT_EQ] = ACTIONS(2895), + [anon_sym_EQ_GT] = ACTIONS(2895), + [anon_sym_QMARK_QMARK] = ACTIONS(2895), + [anon_sym_EQ] = ACTIONS(2893), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2895), + [anon_sym_null] = ACTIONS(2893), + [anon_sym_macro] = ACTIONS(2893), + [anon_sym_abstract] = ACTIONS(2893), + [anon_sym_static] = ACTIONS(2893), + [anon_sym_public] = ACTIONS(2893), + [anon_sym_private] = ACTIONS(2893), + [anon_sym_extern] = ACTIONS(2893), + [anon_sym_inline] = ACTIONS(2893), + [anon_sym_overload] = ACTIONS(2893), + [anon_sym_override] = ACTIONS(2893), + [anon_sym_final] = ACTIONS(2893), + [anon_sym_class] = ACTIONS(2893), + [anon_sym_interface] = ACTIONS(2893), + [anon_sym_enum] = ACTIONS(2893), + [anon_sym_typedef] = ACTIONS(2893), + [anon_sym_function] = ACTIONS(2893), + [anon_sym_var] = ACTIONS(2893), + [aux_sym_integer_token1] = ACTIONS(2893), + [aux_sym_integer_token2] = ACTIONS(2895), + [aux_sym_float_token1] = ACTIONS(2893), + [aux_sym_float_token2] = ACTIONS(2895), + [anon_sym_true] = ACTIONS(2893), + [anon_sym_false] = ACTIONS(2893), + [aux_sym_string_token1] = ACTIONS(2895), + [aux_sym_string_token3] = ACTIONS(2895), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [776] = { + [ts_builtin_sym_end] = ACTIONS(2747), + [sym_identifier] = ACTIONS(2745), + [anon_sym_POUND] = ACTIONS(2747), + [anon_sym_package] = ACTIONS(2745), + [anon_sym_import] = ACTIONS(2745), + [anon_sym_STAR] = ACTIONS(2747), + [anon_sym_using] = ACTIONS(2745), + [anon_sym_throw] = ACTIONS(2745), + [anon_sym_LPAREN] = ACTIONS(2747), + [anon_sym_switch] = ACTIONS(2745), + [anon_sym_LBRACE] = ACTIONS(2747), + [anon_sym_cast] = ACTIONS(2745), + [anon_sym_DOLLARtype] = ACTIONS(2747), + [anon_sym_for] = ACTIONS(2745), + [anon_sym_return] = ACTIONS(2745), + [anon_sym_untyped] = ACTIONS(2745), + [anon_sym_break] = ACTIONS(2745), + [anon_sym_continue] = ACTIONS(2745), + [anon_sym_LBRACK] = ACTIONS(2747), + [anon_sym_this] = ACTIONS(2745), + [anon_sym_AT] = ACTIONS(2745), + [anon_sym_AT_COLON] = ACTIONS(2747), + [anon_sym_try] = ACTIONS(2745), + [anon_sym_catch] = ACTIONS(2745), + [anon_sym_else] = ACTIONS(2745), + [anon_sym_if] = ACTIONS(2745), + [anon_sym_while] = ACTIONS(2745), + [anon_sym_do] = ACTIONS(2745), + [anon_sym_new] = ACTIONS(2745), + [anon_sym_TILDE] = ACTIONS(2747), + [anon_sym_BANG] = ACTIONS(2745), + [anon_sym_DASH] = ACTIONS(2745), + [anon_sym_PLUS_PLUS] = ACTIONS(2747), + [anon_sym_DASH_DASH] = ACTIONS(2747), + [anon_sym_PERCENT] = ACTIONS(2747), + [anon_sym_SLASH] = ACTIONS(2745), + [anon_sym_PLUS] = ACTIONS(2745), + [anon_sym_LT_LT] = ACTIONS(2747), + [anon_sym_GT_GT] = ACTIONS(2745), + [anon_sym_GT_GT_GT] = ACTIONS(2747), + [anon_sym_AMP] = ACTIONS(2745), + [anon_sym_PIPE] = ACTIONS(2745), + [anon_sym_CARET] = ACTIONS(2747), + [anon_sym_AMP_AMP] = ACTIONS(2747), + [anon_sym_PIPE_PIPE] = ACTIONS(2747), + [anon_sym_EQ_EQ] = ACTIONS(2747), + [anon_sym_BANG_EQ] = ACTIONS(2747), + [anon_sym_LT] = ACTIONS(2745), + [anon_sym_LT_EQ] = ACTIONS(2747), + [anon_sym_GT] = ACTIONS(2745), + [anon_sym_GT_EQ] = ACTIONS(2747), + [anon_sym_EQ_GT] = ACTIONS(2747), + [anon_sym_QMARK_QMARK] = ACTIONS(2747), + [anon_sym_EQ] = ACTIONS(2745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2747), + [anon_sym_null] = ACTIONS(2745), + [anon_sym_macro] = ACTIONS(2745), + [anon_sym_abstract] = ACTIONS(2745), + [anon_sym_static] = ACTIONS(2745), + [anon_sym_public] = ACTIONS(2745), + [anon_sym_private] = ACTIONS(2745), + [anon_sym_extern] = ACTIONS(2745), + [anon_sym_inline] = ACTIONS(2745), + [anon_sym_overload] = ACTIONS(2745), + [anon_sym_override] = ACTIONS(2745), + [anon_sym_final] = ACTIONS(2745), + [anon_sym_class] = ACTIONS(2745), + [anon_sym_interface] = ACTIONS(2745), + [anon_sym_enum] = ACTIONS(2745), + [anon_sym_typedef] = ACTIONS(2745), + [anon_sym_function] = ACTIONS(2745), + [anon_sym_var] = ACTIONS(2745), + [aux_sym_integer_token1] = ACTIONS(2745), + [aux_sym_integer_token2] = ACTIONS(2747), + [aux_sym_float_token1] = ACTIONS(2745), + [aux_sym_float_token2] = ACTIONS(2747), + [anon_sym_true] = ACTIONS(2745), + [anon_sym_false] = ACTIONS(2745), + [aux_sym_string_token1] = ACTIONS(2747), + [aux_sym_string_token3] = ACTIONS(2747), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [777] = { + [ts_builtin_sym_end] = ACTIONS(2899), + [sym_identifier] = ACTIONS(2897), + [anon_sym_POUND] = ACTIONS(2899), + [anon_sym_package] = ACTIONS(2897), + [anon_sym_import] = ACTIONS(2897), + [anon_sym_STAR] = ACTIONS(2899), + [anon_sym_using] = ACTIONS(2897), + [anon_sym_throw] = ACTIONS(2897), + [anon_sym_LPAREN] = ACTIONS(2899), + [anon_sym_switch] = ACTIONS(2897), + [anon_sym_LBRACE] = ACTIONS(2899), + [anon_sym_cast] = ACTIONS(2897), + [anon_sym_DOLLARtype] = ACTIONS(2899), + [anon_sym_for] = ACTIONS(2897), + [anon_sym_return] = ACTIONS(2897), + [anon_sym_untyped] = ACTIONS(2897), + [anon_sym_break] = ACTIONS(2897), + [anon_sym_continue] = ACTIONS(2897), + [anon_sym_LBRACK] = ACTIONS(2899), + [anon_sym_this] = ACTIONS(2897), + [anon_sym_AT] = ACTIONS(2897), + [anon_sym_AT_COLON] = ACTIONS(2899), + [anon_sym_try] = ACTIONS(2897), + [anon_sym_catch] = ACTIONS(2897), + [anon_sym_else] = ACTIONS(2897), + [anon_sym_if] = ACTIONS(2897), + [anon_sym_while] = ACTIONS(2897), + [anon_sym_do] = ACTIONS(2897), + [anon_sym_new] = ACTIONS(2897), + [anon_sym_TILDE] = ACTIONS(2899), + [anon_sym_BANG] = ACTIONS(2897), + [anon_sym_DASH] = ACTIONS(2897), + [anon_sym_PLUS_PLUS] = ACTIONS(2899), + [anon_sym_DASH_DASH] = ACTIONS(2899), + [anon_sym_PERCENT] = ACTIONS(2899), + [anon_sym_SLASH] = ACTIONS(2897), + [anon_sym_PLUS] = ACTIONS(2897), + [anon_sym_LT_LT] = ACTIONS(2899), + [anon_sym_GT_GT] = ACTIONS(2897), + [anon_sym_GT_GT_GT] = ACTIONS(2899), + [anon_sym_AMP] = ACTIONS(2897), + [anon_sym_PIPE] = ACTIONS(2897), + [anon_sym_CARET] = ACTIONS(2899), + [anon_sym_AMP_AMP] = ACTIONS(2899), + [anon_sym_PIPE_PIPE] = ACTIONS(2899), + [anon_sym_EQ_EQ] = ACTIONS(2899), + [anon_sym_BANG_EQ] = ACTIONS(2899), + [anon_sym_LT] = ACTIONS(2897), + [anon_sym_LT_EQ] = ACTIONS(2899), + [anon_sym_GT] = ACTIONS(2897), + [anon_sym_GT_EQ] = ACTIONS(2899), + [anon_sym_EQ_GT] = ACTIONS(2899), + [anon_sym_QMARK_QMARK] = ACTIONS(2899), + [anon_sym_EQ] = ACTIONS(2897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2899), + [anon_sym_null] = ACTIONS(2897), + [anon_sym_macro] = ACTIONS(2897), + [anon_sym_abstract] = ACTIONS(2897), + [anon_sym_static] = ACTIONS(2897), + [anon_sym_public] = ACTIONS(2897), + [anon_sym_private] = ACTIONS(2897), + [anon_sym_extern] = ACTIONS(2897), + [anon_sym_inline] = ACTIONS(2897), + [anon_sym_overload] = ACTIONS(2897), + [anon_sym_override] = ACTIONS(2897), + [anon_sym_final] = ACTIONS(2897), + [anon_sym_class] = ACTIONS(2897), + [anon_sym_interface] = ACTIONS(2897), + [anon_sym_enum] = ACTIONS(2897), + [anon_sym_typedef] = ACTIONS(2897), + [anon_sym_function] = ACTIONS(2897), + [anon_sym_var] = ACTIONS(2897), + [aux_sym_integer_token1] = ACTIONS(2897), + [aux_sym_integer_token2] = ACTIONS(2899), + [aux_sym_float_token1] = ACTIONS(2897), + [aux_sym_float_token2] = ACTIONS(2899), + [anon_sym_true] = ACTIONS(2897), + [anon_sym_false] = ACTIONS(2897), + [aux_sym_string_token1] = ACTIONS(2899), + [aux_sym_string_token3] = ACTIONS(2899), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [778] = { + [ts_builtin_sym_end] = ACTIONS(2867), + [sym_identifier] = ACTIONS(2865), + [anon_sym_POUND] = ACTIONS(2867), + [anon_sym_package] = ACTIONS(2865), + [anon_sym_import] = ACTIONS(2865), + [anon_sym_STAR] = ACTIONS(2867), + [anon_sym_using] = ACTIONS(2865), + [anon_sym_throw] = ACTIONS(2865), + [anon_sym_LPAREN] = ACTIONS(2867), + [anon_sym_switch] = ACTIONS(2865), + [anon_sym_LBRACE] = ACTIONS(2867), + [anon_sym_cast] = ACTIONS(2865), + [anon_sym_DOLLARtype] = ACTIONS(2867), + [anon_sym_for] = ACTIONS(2865), + [anon_sym_return] = ACTIONS(2865), + [anon_sym_untyped] = ACTIONS(2865), + [anon_sym_break] = ACTIONS(2865), + [anon_sym_continue] = ACTIONS(2865), + [anon_sym_LBRACK] = ACTIONS(2867), + [anon_sym_this] = ACTIONS(2865), + [anon_sym_AT] = ACTIONS(2865), + [anon_sym_AT_COLON] = ACTIONS(2867), + [anon_sym_try] = ACTIONS(2865), + [anon_sym_catch] = ACTIONS(2865), + [anon_sym_else] = ACTIONS(2865), + [anon_sym_if] = ACTIONS(2865), + [anon_sym_while] = ACTIONS(2865), + [anon_sym_do] = ACTIONS(2865), + [anon_sym_new] = ACTIONS(2865), + [anon_sym_TILDE] = ACTIONS(2867), + [anon_sym_BANG] = ACTIONS(2865), + [anon_sym_DASH] = ACTIONS(2865), + [anon_sym_PLUS_PLUS] = ACTIONS(2867), + [anon_sym_DASH_DASH] = ACTIONS(2867), + [anon_sym_PERCENT] = ACTIONS(2867), + [anon_sym_SLASH] = ACTIONS(2865), + [anon_sym_PLUS] = ACTIONS(2865), + [anon_sym_LT_LT] = ACTIONS(2867), + [anon_sym_GT_GT] = ACTIONS(2865), + [anon_sym_GT_GT_GT] = ACTIONS(2867), + [anon_sym_AMP] = ACTIONS(2865), + [anon_sym_PIPE] = ACTIONS(2865), + [anon_sym_CARET] = ACTIONS(2867), + [anon_sym_AMP_AMP] = ACTIONS(2867), + [anon_sym_PIPE_PIPE] = ACTIONS(2867), + [anon_sym_EQ_EQ] = ACTIONS(2867), + [anon_sym_BANG_EQ] = ACTIONS(2867), + [anon_sym_LT] = ACTIONS(2865), + [anon_sym_LT_EQ] = ACTIONS(2867), + [anon_sym_GT] = ACTIONS(2865), + [anon_sym_GT_EQ] = ACTIONS(2867), + [anon_sym_EQ_GT] = ACTIONS(2867), + [anon_sym_QMARK_QMARK] = ACTIONS(2867), + [anon_sym_EQ] = ACTIONS(2865), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2867), + [anon_sym_null] = ACTIONS(2865), + [anon_sym_macro] = ACTIONS(2865), + [anon_sym_abstract] = ACTIONS(2865), + [anon_sym_static] = ACTIONS(2865), + [anon_sym_public] = ACTIONS(2865), + [anon_sym_private] = ACTIONS(2865), + [anon_sym_extern] = ACTIONS(2865), + [anon_sym_inline] = ACTIONS(2865), + [anon_sym_overload] = ACTIONS(2865), + [anon_sym_override] = ACTIONS(2865), + [anon_sym_final] = ACTIONS(2865), + [anon_sym_class] = ACTIONS(2865), + [anon_sym_interface] = ACTIONS(2865), + [anon_sym_enum] = ACTIONS(2865), + [anon_sym_typedef] = ACTIONS(2865), + [anon_sym_function] = ACTIONS(2865), + [anon_sym_var] = ACTIONS(2865), + [aux_sym_integer_token1] = ACTIONS(2865), + [aux_sym_integer_token2] = ACTIONS(2867), + [aux_sym_float_token1] = ACTIONS(2865), + [aux_sym_float_token2] = ACTIONS(2867), + [anon_sym_true] = ACTIONS(2865), + [anon_sym_false] = ACTIONS(2865), + [aux_sym_string_token1] = ACTIONS(2867), + [aux_sym_string_token3] = ACTIONS(2867), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [779] = { + [sym_else_clause] = STATE(587), + [sym_identifier] = ACTIONS(2667), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_package] = ACTIONS(2667), + [anon_sym_import] = ACTIONS(2667), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_using] = ACTIONS(2667), + [anon_sym_throw] = ACTIONS(2667), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_switch] = ACTIONS(2667), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_cast] = ACTIONS(2667), + [anon_sym_DOLLARtype] = ACTIONS(2669), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_untyped] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_this] = ACTIONS(2667), + [anon_sym_AT] = ACTIONS(2667), + [anon_sym_AT_COLON] = ACTIONS(2669), + [anon_sym_try] = ACTIONS(2667), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_do] = ACTIONS(2667), + [anon_sym_new] = ACTIONS(2667), + [anon_sym_TILDE] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2667), + [anon_sym_PLUS_PLUS] = ACTIONS(2669), + [anon_sym_DASH_DASH] = ACTIONS(2669), + [anon_sym_PERCENT] = ACTIONS(2669), + [anon_sym_SLASH] = ACTIONS(2667), + [anon_sym_PLUS] = ACTIONS(2667), + [anon_sym_LT_LT] = ACTIONS(2669), + [anon_sym_GT_GT] = ACTIONS(2667), + [anon_sym_GT_GT_GT] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2667), + [anon_sym_PIPE] = ACTIONS(2667), + [anon_sym_CARET] = ACTIONS(2669), + [anon_sym_AMP_AMP] = ACTIONS(2669), + [anon_sym_PIPE_PIPE] = ACTIONS(2669), + [anon_sym_EQ_EQ] = ACTIONS(2669), + [anon_sym_BANG_EQ] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2667), + [anon_sym_LT_EQ] = ACTIONS(2669), + [anon_sym_GT] = ACTIONS(2667), + [anon_sym_GT_EQ] = ACTIONS(2669), + [anon_sym_EQ_GT] = ACTIONS(2669), + [anon_sym_QMARK_QMARK] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(2667), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2669), + [anon_sym_null] = ACTIONS(2667), + [anon_sym_macro] = ACTIONS(2667), + [anon_sym_abstract] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_public] = ACTIONS(2667), + [anon_sym_private] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_inline] = ACTIONS(2667), + [anon_sym_overload] = ACTIONS(2667), + [anon_sym_override] = ACTIONS(2667), + [anon_sym_final] = ACTIONS(2667), + [anon_sym_class] = ACTIONS(2667), + [anon_sym_interface] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_typedef] = ACTIONS(2667), + [anon_sym_function] = ACTIONS(2667), + [anon_sym_var] = ACTIONS(2667), + [aux_sym_integer_token1] = ACTIONS(2667), + [aux_sym_integer_token2] = ACTIONS(2669), + [aux_sym_float_token1] = ACTIONS(2667), + [aux_sym_float_token2] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [aux_sym_string_token1] = ACTIONS(2669), + [aux_sym_string_token3] = ACTIONS(2669), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2669), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [780] = { + [ts_builtin_sym_end] = ACTIONS(3201), + [sym_identifier] = ACTIONS(3199), + [anon_sym_POUND] = ACTIONS(3201), + [anon_sym_package] = ACTIONS(3199), + [anon_sym_import] = ACTIONS(3199), + [anon_sym_STAR] = ACTIONS(3201), + [anon_sym_using] = ACTIONS(3199), + [anon_sym_throw] = ACTIONS(3199), + [anon_sym_LPAREN] = ACTIONS(3201), + [anon_sym_switch] = ACTIONS(3199), + [anon_sym_LBRACE] = ACTIONS(3201), + [anon_sym_cast] = ACTIONS(3199), + [anon_sym_DOLLARtype] = ACTIONS(3201), + [anon_sym_for] = ACTIONS(3199), + [anon_sym_return] = ACTIONS(3199), + [anon_sym_untyped] = ACTIONS(3199), + [anon_sym_break] = ACTIONS(3199), + [anon_sym_continue] = ACTIONS(3199), + [anon_sym_LBRACK] = ACTIONS(3201), + [anon_sym_this] = ACTIONS(3199), + [anon_sym_AT] = ACTIONS(3199), + [anon_sym_AT_COLON] = ACTIONS(3201), + [anon_sym_try] = ACTIONS(3199), + [anon_sym_catch] = ACTIONS(3199), + [anon_sym_else] = ACTIONS(3199), + [anon_sym_if] = ACTIONS(3199), + [anon_sym_while] = ACTIONS(3199), + [anon_sym_do] = ACTIONS(3199), + [anon_sym_new] = ACTIONS(3199), + [anon_sym_TILDE] = ACTIONS(3201), + [anon_sym_BANG] = ACTIONS(3199), + [anon_sym_DASH] = ACTIONS(3199), + [anon_sym_PLUS_PLUS] = ACTIONS(3201), + [anon_sym_DASH_DASH] = ACTIONS(3201), + [anon_sym_PERCENT] = ACTIONS(3201), + [anon_sym_SLASH] = ACTIONS(3199), + [anon_sym_PLUS] = ACTIONS(3199), + [anon_sym_LT_LT] = ACTIONS(3201), + [anon_sym_GT_GT] = ACTIONS(3199), + [anon_sym_GT_GT_GT] = ACTIONS(3201), + [anon_sym_AMP] = ACTIONS(3199), + [anon_sym_PIPE] = ACTIONS(3199), + [anon_sym_CARET] = ACTIONS(3201), + [anon_sym_AMP_AMP] = ACTIONS(3201), + [anon_sym_PIPE_PIPE] = ACTIONS(3201), + [anon_sym_EQ_EQ] = ACTIONS(3201), + [anon_sym_BANG_EQ] = ACTIONS(3201), + [anon_sym_LT] = ACTIONS(3199), + [anon_sym_LT_EQ] = ACTIONS(3201), + [anon_sym_GT] = ACTIONS(3199), + [anon_sym_GT_EQ] = ACTIONS(3201), + [anon_sym_EQ_GT] = ACTIONS(3201), + [anon_sym_QMARK_QMARK] = ACTIONS(3201), + [anon_sym_EQ] = ACTIONS(3199), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3201), + [anon_sym_null] = ACTIONS(3199), + [anon_sym_macro] = ACTIONS(3199), + [anon_sym_abstract] = ACTIONS(3199), + [anon_sym_static] = ACTIONS(3199), + [anon_sym_public] = ACTIONS(3199), + [anon_sym_private] = ACTIONS(3199), + [anon_sym_extern] = ACTIONS(3199), + [anon_sym_inline] = ACTIONS(3199), + [anon_sym_overload] = ACTIONS(3199), + [anon_sym_override] = ACTIONS(3199), + [anon_sym_final] = ACTIONS(3199), + [anon_sym_class] = ACTIONS(3199), + [anon_sym_interface] = ACTIONS(3199), + [anon_sym_enum] = ACTIONS(3199), + [anon_sym_typedef] = ACTIONS(3199), + [anon_sym_function] = ACTIONS(3199), + [anon_sym_var] = ACTIONS(3199), + [aux_sym_integer_token1] = ACTIONS(3199), + [aux_sym_integer_token2] = ACTIONS(3201), + [aux_sym_float_token1] = ACTIONS(3199), + [aux_sym_float_token2] = ACTIONS(3201), + [anon_sym_true] = ACTIONS(3199), + [anon_sym_false] = ACTIONS(3199), + [aux_sym_string_token1] = ACTIONS(3201), + [aux_sym_string_token3] = ACTIONS(3201), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [781] = { + [ts_builtin_sym_end] = ACTIONS(2751), + [sym_identifier] = ACTIONS(2749), + [anon_sym_POUND] = ACTIONS(2751), + [anon_sym_package] = ACTIONS(2749), + [anon_sym_import] = ACTIONS(2749), + [anon_sym_STAR] = ACTIONS(2751), + [anon_sym_using] = ACTIONS(2749), + [anon_sym_throw] = ACTIONS(2749), + [anon_sym_LPAREN] = ACTIONS(2751), + [anon_sym_switch] = ACTIONS(2749), + [anon_sym_LBRACE] = ACTIONS(2751), + [anon_sym_cast] = ACTIONS(2749), + [anon_sym_DOLLARtype] = ACTIONS(2751), + [anon_sym_for] = ACTIONS(2749), + [anon_sym_return] = ACTIONS(2749), + [anon_sym_untyped] = ACTIONS(2749), + [anon_sym_break] = ACTIONS(2749), + [anon_sym_continue] = ACTIONS(2749), + [anon_sym_LBRACK] = ACTIONS(2751), + [anon_sym_this] = ACTIONS(2749), + [anon_sym_AT] = ACTIONS(2749), + [anon_sym_AT_COLON] = ACTIONS(2751), + [anon_sym_try] = ACTIONS(2749), + [anon_sym_catch] = ACTIONS(2749), + [anon_sym_else] = ACTIONS(2749), + [anon_sym_if] = ACTIONS(2749), + [anon_sym_while] = ACTIONS(2749), + [anon_sym_do] = ACTIONS(2749), + [anon_sym_new] = ACTIONS(2749), + [anon_sym_TILDE] = ACTIONS(2751), + [anon_sym_BANG] = ACTIONS(2749), + [anon_sym_DASH] = ACTIONS(2749), + [anon_sym_PLUS_PLUS] = ACTIONS(2751), + [anon_sym_DASH_DASH] = ACTIONS(2751), + [anon_sym_PERCENT] = ACTIONS(2751), + [anon_sym_SLASH] = ACTIONS(2749), + [anon_sym_PLUS] = ACTIONS(2749), + [anon_sym_LT_LT] = ACTIONS(2751), + [anon_sym_GT_GT] = ACTIONS(2749), + [anon_sym_GT_GT_GT] = ACTIONS(2751), + [anon_sym_AMP] = ACTIONS(2749), + [anon_sym_PIPE] = ACTIONS(2749), + [anon_sym_CARET] = ACTIONS(2751), + [anon_sym_AMP_AMP] = ACTIONS(2751), + [anon_sym_PIPE_PIPE] = ACTIONS(2751), + [anon_sym_EQ_EQ] = ACTIONS(2751), + [anon_sym_BANG_EQ] = ACTIONS(2751), + [anon_sym_LT] = ACTIONS(2749), + [anon_sym_LT_EQ] = ACTIONS(2751), + [anon_sym_GT] = ACTIONS(2749), + [anon_sym_GT_EQ] = ACTIONS(2751), + [anon_sym_EQ_GT] = ACTIONS(2751), + [anon_sym_QMARK_QMARK] = ACTIONS(2751), + [anon_sym_EQ] = ACTIONS(2749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2751), + [anon_sym_null] = ACTIONS(2749), + [anon_sym_macro] = ACTIONS(2749), + [anon_sym_abstract] = ACTIONS(2749), + [anon_sym_static] = ACTIONS(2749), + [anon_sym_public] = ACTIONS(2749), + [anon_sym_private] = ACTIONS(2749), + [anon_sym_extern] = ACTIONS(2749), + [anon_sym_inline] = ACTIONS(2749), + [anon_sym_overload] = ACTIONS(2749), + [anon_sym_override] = ACTIONS(2749), + [anon_sym_final] = ACTIONS(2749), + [anon_sym_class] = ACTIONS(2749), + [anon_sym_interface] = ACTIONS(2749), + [anon_sym_enum] = ACTIONS(2749), + [anon_sym_typedef] = ACTIONS(2749), + [anon_sym_function] = ACTIONS(2749), + [anon_sym_var] = ACTIONS(2749), + [aux_sym_integer_token1] = ACTIONS(2749), + [aux_sym_integer_token2] = ACTIONS(2751), + [aux_sym_float_token1] = ACTIONS(2749), + [aux_sym_float_token2] = ACTIONS(2751), + [anon_sym_true] = ACTIONS(2749), + [anon_sym_false] = ACTIONS(2749), + [aux_sym_string_token1] = ACTIONS(2751), + [aux_sym_string_token3] = ACTIONS(2751), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [782] = { + [ts_builtin_sym_end] = ACTIONS(3391), + [sym_identifier] = ACTIONS(3389), + [anon_sym_POUND] = ACTIONS(3391), + [anon_sym_package] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_STAR] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_cast] = ACTIONS(3389), + [anon_sym_DOLLARtype] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_untyped] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_this] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_AT_COLON] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_catch] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [anon_sym_PERCENT] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_LT_LT] = ACTIONS(3391), + [anon_sym_GT_GT] = ACTIONS(3389), + [anon_sym_GT_GT_GT] = ACTIONS(3391), + [anon_sym_AMP] = ACTIONS(3389), + [anon_sym_PIPE] = ACTIONS(3389), + [anon_sym_CARET] = ACTIONS(3391), + [anon_sym_AMP_AMP] = ACTIONS(3391), + [anon_sym_PIPE_PIPE] = ACTIONS(3391), + [anon_sym_EQ_EQ] = ACTIONS(3391), + [anon_sym_BANG_EQ] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_LT_EQ] = ACTIONS(3391), + [anon_sym_GT] = ACTIONS(3389), + [anon_sym_GT_EQ] = ACTIONS(3391), + [anon_sym_EQ_GT] = ACTIONS(3391), + [anon_sym_QMARK_QMARK] = ACTIONS(3391), + [anon_sym_EQ] = ACTIONS(3389), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3391), + [anon_sym_null] = ACTIONS(3389), + [anon_sym_macro] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_extern] = ACTIONS(3389), + [anon_sym_inline] = ACTIONS(3389), + [anon_sym_overload] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_final] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), + [anon_sym_typedef] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [aux_sym_integer_token1] = ACTIONS(3389), + [aux_sym_integer_token2] = ACTIONS(3391), + [aux_sym_float_token1] = ACTIONS(3389), + [aux_sym_float_token2] = ACTIONS(3391), + [anon_sym_true] = ACTIONS(3389), + [anon_sym_false] = ACTIONS(3389), + [aux_sym_string_token1] = ACTIONS(3391), + [aux_sym_string_token3] = ACTIONS(3391), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [783] = { + [ts_builtin_sym_end] = ACTIONS(3395), + [sym_identifier] = ACTIONS(3393), + [anon_sym_POUND] = ACTIONS(3395), + [anon_sym_package] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_STAR] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_cast] = ACTIONS(3393), + [anon_sym_DOLLARtype] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_untyped] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_this] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_AT_COLON] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_catch] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [anon_sym_PERCENT] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_LT_LT] = ACTIONS(3395), + [anon_sym_GT_GT] = ACTIONS(3393), + [anon_sym_GT_GT_GT] = ACTIONS(3395), + [anon_sym_AMP] = ACTIONS(3393), + [anon_sym_PIPE] = ACTIONS(3393), + [anon_sym_CARET] = ACTIONS(3395), + [anon_sym_AMP_AMP] = ACTIONS(3395), + [anon_sym_PIPE_PIPE] = ACTIONS(3395), + [anon_sym_EQ_EQ] = ACTIONS(3395), + [anon_sym_BANG_EQ] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_LT_EQ] = ACTIONS(3395), + [anon_sym_GT] = ACTIONS(3393), + [anon_sym_GT_EQ] = ACTIONS(3395), + [anon_sym_EQ_GT] = ACTIONS(3395), + [anon_sym_QMARK_QMARK] = ACTIONS(3395), + [anon_sym_EQ] = ACTIONS(3393), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3395), + [anon_sym_null] = ACTIONS(3393), + [anon_sym_macro] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_extern] = ACTIONS(3393), + [anon_sym_inline] = ACTIONS(3393), + [anon_sym_overload] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_final] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), + [anon_sym_typedef] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [aux_sym_integer_token1] = ACTIONS(3393), + [aux_sym_integer_token2] = ACTIONS(3395), + [aux_sym_float_token1] = ACTIONS(3393), + [aux_sym_float_token2] = ACTIONS(3395), + [anon_sym_true] = ACTIONS(3393), + [anon_sym_false] = ACTIONS(3393), + [aux_sym_string_token1] = ACTIONS(3395), + [aux_sym_string_token3] = ACTIONS(3395), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [784] = { + [ts_builtin_sym_end] = ACTIONS(2755), + [sym_identifier] = ACTIONS(2753), + [anon_sym_POUND] = ACTIONS(2755), + [anon_sym_package] = ACTIONS(2753), + [anon_sym_import] = ACTIONS(2753), + [anon_sym_STAR] = ACTIONS(2755), + [anon_sym_using] = ACTIONS(2753), + [anon_sym_throw] = ACTIONS(2753), + [anon_sym_LPAREN] = ACTIONS(2755), + [anon_sym_switch] = ACTIONS(2753), + [anon_sym_LBRACE] = ACTIONS(2755), + [anon_sym_cast] = ACTIONS(2753), + [anon_sym_DOLLARtype] = ACTIONS(2755), + [anon_sym_for] = ACTIONS(2753), + [anon_sym_return] = ACTIONS(2753), + [anon_sym_untyped] = ACTIONS(2753), + [anon_sym_break] = ACTIONS(2753), + [anon_sym_continue] = ACTIONS(2753), + [anon_sym_LBRACK] = ACTIONS(2755), + [anon_sym_this] = ACTIONS(2753), + [anon_sym_AT] = ACTIONS(2753), + [anon_sym_AT_COLON] = ACTIONS(2755), + [anon_sym_try] = ACTIONS(2753), + [anon_sym_catch] = ACTIONS(2753), + [anon_sym_else] = ACTIONS(2753), + [anon_sym_if] = ACTIONS(2753), + [anon_sym_while] = ACTIONS(2753), + [anon_sym_do] = ACTIONS(2753), + [anon_sym_new] = ACTIONS(2753), + [anon_sym_TILDE] = ACTIONS(2755), + [anon_sym_BANG] = ACTIONS(2753), + [anon_sym_DASH] = ACTIONS(2753), + [anon_sym_PLUS_PLUS] = ACTIONS(2755), + [anon_sym_DASH_DASH] = ACTIONS(2755), + [anon_sym_PERCENT] = ACTIONS(2755), + [anon_sym_SLASH] = ACTIONS(2753), + [anon_sym_PLUS] = ACTIONS(2753), + [anon_sym_LT_LT] = ACTIONS(2755), + [anon_sym_GT_GT] = ACTIONS(2753), + [anon_sym_GT_GT_GT] = ACTIONS(2755), + [anon_sym_AMP] = ACTIONS(2753), + [anon_sym_PIPE] = ACTIONS(2753), + [anon_sym_CARET] = ACTIONS(2755), + [anon_sym_AMP_AMP] = ACTIONS(2755), + [anon_sym_PIPE_PIPE] = ACTIONS(2755), + [anon_sym_EQ_EQ] = ACTIONS(2755), + [anon_sym_BANG_EQ] = ACTIONS(2755), + [anon_sym_LT] = ACTIONS(2753), + [anon_sym_LT_EQ] = ACTIONS(2755), + [anon_sym_GT] = ACTIONS(2753), + [anon_sym_GT_EQ] = ACTIONS(2755), + [anon_sym_EQ_GT] = ACTIONS(2755), + [anon_sym_QMARK_QMARK] = ACTIONS(2755), + [anon_sym_EQ] = ACTIONS(2753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2755), + [anon_sym_null] = ACTIONS(2753), + [anon_sym_macro] = ACTIONS(2753), + [anon_sym_abstract] = ACTIONS(2753), + [anon_sym_static] = ACTIONS(2753), + [anon_sym_public] = ACTIONS(2753), + [anon_sym_private] = ACTIONS(2753), + [anon_sym_extern] = ACTIONS(2753), + [anon_sym_inline] = ACTIONS(2753), + [anon_sym_overload] = ACTIONS(2753), + [anon_sym_override] = ACTIONS(2753), + [anon_sym_final] = ACTIONS(2753), + [anon_sym_class] = ACTIONS(2753), + [anon_sym_interface] = ACTIONS(2753), + [anon_sym_enum] = ACTIONS(2753), + [anon_sym_typedef] = ACTIONS(2753), + [anon_sym_function] = ACTIONS(2753), + [anon_sym_var] = ACTIONS(2753), + [aux_sym_integer_token1] = ACTIONS(2753), + [aux_sym_integer_token2] = ACTIONS(2755), + [aux_sym_float_token1] = ACTIONS(2753), + [aux_sym_float_token2] = ACTIONS(2755), + [anon_sym_true] = ACTIONS(2753), + [anon_sym_false] = ACTIONS(2753), + [aux_sym_string_token1] = ACTIONS(2755), + [aux_sym_string_token3] = ACTIONS(2755), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [785] = { + [ts_builtin_sym_end] = ACTIONS(2759), + [sym_identifier] = ACTIONS(2757), + [anon_sym_POUND] = ACTIONS(2759), + [anon_sym_package] = ACTIONS(2757), + [anon_sym_import] = ACTIONS(2757), + [anon_sym_STAR] = ACTIONS(2759), + [anon_sym_using] = ACTIONS(2757), + [anon_sym_throw] = ACTIONS(2757), + [anon_sym_LPAREN] = ACTIONS(2759), + [anon_sym_switch] = ACTIONS(2757), + [anon_sym_LBRACE] = ACTIONS(2759), + [anon_sym_cast] = ACTIONS(2757), + [anon_sym_DOLLARtype] = ACTIONS(2759), + [anon_sym_for] = ACTIONS(2757), + [anon_sym_return] = ACTIONS(2757), + [anon_sym_untyped] = ACTIONS(2757), + [anon_sym_break] = ACTIONS(2757), + [anon_sym_continue] = ACTIONS(2757), + [anon_sym_LBRACK] = ACTIONS(2759), + [anon_sym_this] = ACTIONS(2757), + [anon_sym_AT] = ACTIONS(2757), + [anon_sym_AT_COLON] = ACTIONS(2759), + [anon_sym_try] = ACTIONS(2757), + [anon_sym_catch] = ACTIONS(2757), + [anon_sym_else] = ACTIONS(2757), + [anon_sym_if] = ACTIONS(2757), + [anon_sym_while] = ACTIONS(2757), + [anon_sym_do] = ACTIONS(2757), + [anon_sym_new] = ACTIONS(2757), + [anon_sym_TILDE] = ACTIONS(2759), + [anon_sym_BANG] = ACTIONS(2757), + [anon_sym_DASH] = ACTIONS(2757), + [anon_sym_PLUS_PLUS] = ACTIONS(2759), + [anon_sym_DASH_DASH] = ACTIONS(2759), + [anon_sym_PERCENT] = ACTIONS(2759), + [anon_sym_SLASH] = ACTIONS(2757), + [anon_sym_PLUS] = ACTIONS(2757), + [anon_sym_LT_LT] = ACTIONS(2759), + [anon_sym_GT_GT] = ACTIONS(2757), + [anon_sym_GT_GT_GT] = ACTIONS(2759), + [anon_sym_AMP] = ACTIONS(2757), + [anon_sym_PIPE] = ACTIONS(2757), + [anon_sym_CARET] = ACTIONS(2759), + [anon_sym_AMP_AMP] = ACTIONS(2759), + [anon_sym_PIPE_PIPE] = ACTIONS(2759), + [anon_sym_EQ_EQ] = ACTIONS(2759), + [anon_sym_BANG_EQ] = ACTIONS(2759), + [anon_sym_LT] = ACTIONS(2757), + [anon_sym_LT_EQ] = ACTIONS(2759), + [anon_sym_GT] = ACTIONS(2757), + [anon_sym_GT_EQ] = ACTIONS(2759), + [anon_sym_EQ_GT] = ACTIONS(2759), + [anon_sym_QMARK_QMARK] = ACTIONS(2759), + [anon_sym_EQ] = ACTIONS(2757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2759), + [anon_sym_null] = ACTIONS(2757), + [anon_sym_macro] = ACTIONS(2757), + [anon_sym_abstract] = ACTIONS(2757), + [anon_sym_static] = ACTIONS(2757), + [anon_sym_public] = ACTIONS(2757), + [anon_sym_private] = ACTIONS(2757), + [anon_sym_extern] = ACTIONS(2757), + [anon_sym_inline] = ACTIONS(2757), + [anon_sym_overload] = ACTIONS(2757), + [anon_sym_override] = ACTIONS(2757), + [anon_sym_final] = ACTIONS(2757), + [anon_sym_class] = ACTIONS(2757), + [anon_sym_interface] = ACTIONS(2757), + [anon_sym_enum] = ACTIONS(2757), + [anon_sym_typedef] = ACTIONS(2757), + [anon_sym_function] = ACTIONS(2757), + [anon_sym_var] = ACTIONS(2757), + [aux_sym_integer_token1] = ACTIONS(2757), + [aux_sym_integer_token2] = ACTIONS(2759), + [aux_sym_float_token1] = ACTIONS(2757), + [aux_sym_float_token2] = ACTIONS(2759), + [anon_sym_true] = ACTIONS(2757), + [anon_sym_false] = ACTIONS(2757), + [aux_sym_string_token1] = ACTIONS(2759), + [aux_sym_string_token3] = ACTIONS(2759), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [786] = { + [ts_builtin_sym_end] = ACTIONS(2763), + [sym_identifier] = ACTIONS(2761), + [anon_sym_POUND] = ACTIONS(2763), + [anon_sym_package] = ACTIONS(2761), + [anon_sym_import] = ACTIONS(2761), + [anon_sym_STAR] = ACTIONS(2763), + [anon_sym_using] = ACTIONS(2761), + [anon_sym_throw] = ACTIONS(2761), + [anon_sym_LPAREN] = ACTIONS(2763), + [anon_sym_switch] = ACTIONS(2761), + [anon_sym_LBRACE] = ACTIONS(2763), + [anon_sym_cast] = ACTIONS(2761), + [anon_sym_DOLLARtype] = ACTIONS(2763), + [anon_sym_for] = ACTIONS(2761), + [anon_sym_return] = ACTIONS(2761), + [anon_sym_untyped] = ACTIONS(2761), + [anon_sym_break] = ACTIONS(2761), + [anon_sym_continue] = ACTIONS(2761), + [anon_sym_LBRACK] = ACTIONS(2763), + [anon_sym_this] = ACTIONS(2761), + [anon_sym_AT] = ACTIONS(2761), + [anon_sym_AT_COLON] = ACTIONS(2763), + [anon_sym_try] = ACTIONS(2761), + [anon_sym_catch] = ACTIONS(2761), + [anon_sym_else] = ACTIONS(2761), + [anon_sym_if] = ACTIONS(2761), + [anon_sym_while] = ACTIONS(2761), + [anon_sym_do] = ACTIONS(2761), + [anon_sym_new] = ACTIONS(2761), + [anon_sym_TILDE] = ACTIONS(2763), + [anon_sym_BANG] = ACTIONS(2761), + [anon_sym_DASH] = ACTIONS(2761), + [anon_sym_PLUS_PLUS] = ACTIONS(2763), + [anon_sym_DASH_DASH] = ACTIONS(2763), + [anon_sym_PERCENT] = ACTIONS(2763), + [anon_sym_SLASH] = ACTIONS(2761), + [anon_sym_PLUS] = ACTIONS(2761), + [anon_sym_LT_LT] = ACTIONS(2763), + [anon_sym_GT_GT] = ACTIONS(2761), + [anon_sym_GT_GT_GT] = ACTIONS(2763), + [anon_sym_AMP] = ACTIONS(2761), + [anon_sym_PIPE] = ACTIONS(2761), + [anon_sym_CARET] = ACTIONS(2763), + [anon_sym_AMP_AMP] = ACTIONS(2763), + [anon_sym_PIPE_PIPE] = ACTIONS(2763), + [anon_sym_EQ_EQ] = ACTIONS(2763), + [anon_sym_BANG_EQ] = ACTIONS(2763), + [anon_sym_LT] = ACTIONS(2761), + [anon_sym_LT_EQ] = ACTIONS(2763), + [anon_sym_GT] = ACTIONS(2761), + [anon_sym_GT_EQ] = ACTIONS(2763), + [anon_sym_EQ_GT] = ACTIONS(2763), + [anon_sym_QMARK_QMARK] = ACTIONS(2763), + [anon_sym_EQ] = ACTIONS(2761), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2763), + [anon_sym_null] = ACTIONS(2761), + [anon_sym_macro] = ACTIONS(2761), + [anon_sym_abstract] = ACTIONS(2761), + [anon_sym_static] = ACTIONS(2761), + [anon_sym_public] = ACTIONS(2761), + [anon_sym_private] = ACTIONS(2761), + [anon_sym_extern] = ACTIONS(2761), + [anon_sym_inline] = ACTIONS(2761), + [anon_sym_overload] = ACTIONS(2761), + [anon_sym_override] = ACTIONS(2761), + [anon_sym_final] = ACTIONS(2761), + [anon_sym_class] = ACTIONS(2761), + [anon_sym_interface] = ACTIONS(2761), + [anon_sym_enum] = ACTIONS(2761), + [anon_sym_typedef] = ACTIONS(2761), + [anon_sym_function] = ACTIONS(2761), + [anon_sym_var] = ACTIONS(2761), + [aux_sym_integer_token1] = ACTIONS(2761), + [aux_sym_integer_token2] = ACTIONS(2763), + [aux_sym_float_token1] = ACTIONS(2761), + [aux_sym_float_token2] = ACTIONS(2763), + [anon_sym_true] = ACTIONS(2761), + [anon_sym_false] = ACTIONS(2761), + [aux_sym_string_token1] = ACTIONS(2763), + [aux_sym_string_token3] = ACTIONS(2763), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [787] = { + [ts_builtin_sym_end] = ACTIONS(2767), + [sym_identifier] = ACTIONS(2765), + [anon_sym_POUND] = ACTIONS(2767), + [anon_sym_package] = ACTIONS(2765), + [anon_sym_import] = ACTIONS(2765), + [anon_sym_STAR] = ACTIONS(2767), + [anon_sym_using] = ACTIONS(2765), + [anon_sym_throw] = ACTIONS(2765), + [anon_sym_LPAREN] = ACTIONS(2767), + [anon_sym_switch] = ACTIONS(2765), + [anon_sym_LBRACE] = ACTIONS(2767), + [anon_sym_cast] = ACTIONS(2765), + [anon_sym_DOLLARtype] = ACTIONS(2767), + [anon_sym_for] = ACTIONS(2765), + [anon_sym_return] = ACTIONS(2765), + [anon_sym_untyped] = ACTIONS(2765), + [anon_sym_break] = ACTIONS(2765), + [anon_sym_continue] = ACTIONS(2765), + [anon_sym_LBRACK] = ACTIONS(2767), + [anon_sym_this] = ACTIONS(2765), + [anon_sym_AT] = ACTIONS(2765), + [anon_sym_AT_COLON] = ACTIONS(2767), + [anon_sym_try] = ACTIONS(2765), + [anon_sym_catch] = ACTIONS(2765), + [anon_sym_else] = ACTIONS(2765), + [anon_sym_if] = ACTIONS(2765), + [anon_sym_while] = ACTIONS(2765), + [anon_sym_do] = ACTIONS(2765), + [anon_sym_new] = ACTIONS(2765), + [anon_sym_TILDE] = ACTIONS(2767), + [anon_sym_BANG] = ACTIONS(2765), + [anon_sym_DASH] = ACTIONS(2765), + [anon_sym_PLUS_PLUS] = ACTIONS(2767), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_PERCENT] = ACTIONS(2767), + [anon_sym_SLASH] = ACTIONS(2765), + [anon_sym_PLUS] = ACTIONS(2765), + [anon_sym_LT_LT] = ACTIONS(2767), + [anon_sym_GT_GT] = ACTIONS(2765), + [anon_sym_GT_GT_GT] = ACTIONS(2767), + [anon_sym_AMP] = ACTIONS(2765), + [anon_sym_PIPE] = ACTIONS(2765), + [anon_sym_CARET] = ACTIONS(2767), + [anon_sym_AMP_AMP] = ACTIONS(2767), + [anon_sym_PIPE_PIPE] = ACTIONS(2767), + [anon_sym_EQ_EQ] = ACTIONS(2767), + [anon_sym_BANG_EQ] = ACTIONS(2767), + [anon_sym_LT] = ACTIONS(2765), + [anon_sym_LT_EQ] = ACTIONS(2767), + [anon_sym_GT] = ACTIONS(2765), + [anon_sym_GT_EQ] = ACTIONS(2767), + [anon_sym_EQ_GT] = ACTIONS(2767), + [anon_sym_QMARK_QMARK] = ACTIONS(2767), + [anon_sym_EQ] = ACTIONS(2765), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2767), + [anon_sym_null] = ACTIONS(2765), + [anon_sym_macro] = ACTIONS(2765), + [anon_sym_abstract] = ACTIONS(2765), + [anon_sym_static] = ACTIONS(2765), + [anon_sym_public] = ACTIONS(2765), + [anon_sym_private] = ACTIONS(2765), + [anon_sym_extern] = ACTIONS(2765), + [anon_sym_inline] = ACTIONS(2765), + [anon_sym_overload] = ACTIONS(2765), + [anon_sym_override] = ACTIONS(2765), + [anon_sym_final] = ACTIONS(2765), + [anon_sym_class] = ACTIONS(2765), + [anon_sym_interface] = ACTIONS(2765), + [anon_sym_enum] = ACTIONS(2765), + [anon_sym_typedef] = ACTIONS(2765), + [anon_sym_function] = ACTIONS(2765), + [anon_sym_var] = ACTIONS(2765), + [aux_sym_integer_token1] = ACTIONS(2765), + [aux_sym_integer_token2] = ACTIONS(2767), + [aux_sym_float_token1] = ACTIONS(2765), + [aux_sym_float_token2] = ACTIONS(2767), + [anon_sym_true] = ACTIONS(2765), + [anon_sym_false] = ACTIONS(2765), + [aux_sym_string_token1] = ACTIONS(2767), + [aux_sym_string_token3] = ACTIONS(2767), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [788] = { + [ts_builtin_sym_end] = ACTIONS(2771), + [sym_identifier] = ACTIONS(2769), + [anon_sym_POUND] = ACTIONS(2771), + [anon_sym_package] = ACTIONS(2769), + [anon_sym_import] = ACTIONS(2769), + [anon_sym_STAR] = ACTIONS(2771), + [anon_sym_using] = ACTIONS(2769), + [anon_sym_throw] = ACTIONS(2769), + [anon_sym_LPAREN] = ACTIONS(2771), + [anon_sym_switch] = ACTIONS(2769), + [anon_sym_LBRACE] = ACTIONS(2771), + [anon_sym_cast] = ACTIONS(2769), + [anon_sym_DOLLARtype] = ACTIONS(2771), + [anon_sym_for] = ACTIONS(2769), + [anon_sym_return] = ACTIONS(2769), + [anon_sym_untyped] = ACTIONS(2769), + [anon_sym_break] = ACTIONS(2769), + [anon_sym_continue] = ACTIONS(2769), + [anon_sym_LBRACK] = ACTIONS(2771), + [anon_sym_this] = ACTIONS(2769), + [anon_sym_AT] = ACTIONS(2769), + [anon_sym_AT_COLON] = ACTIONS(2771), + [anon_sym_try] = ACTIONS(2769), + [anon_sym_catch] = ACTIONS(2769), + [anon_sym_else] = ACTIONS(2769), + [anon_sym_if] = ACTIONS(2769), + [anon_sym_while] = ACTIONS(2769), + [anon_sym_do] = ACTIONS(2769), + [anon_sym_new] = ACTIONS(2769), + [anon_sym_TILDE] = ACTIONS(2771), + [anon_sym_BANG] = ACTIONS(2769), + [anon_sym_DASH] = ACTIONS(2769), + [anon_sym_PLUS_PLUS] = ACTIONS(2771), + [anon_sym_DASH_DASH] = ACTIONS(2771), + [anon_sym_PERCENT] = ACTIONS(2771), + [anon_sym_SLASH] = ACTIONS(2769), + [anon_sym_PLUS] = ACTIONS(2769), + [anon_sym_LT_LT] = ACTIONS(2771), + [anon_sym_GT_GT] = ACTIONS(2769), + [anon_sym_GT_GT_GT] = ACTIONS(2771), + [anon_sym_AMP] = ACTIONS(2769), + [anon_sym_PIPE] = ACTIONS(2769), + [anon_sym_CARET] = ACTIONS(2771), + [anon_sym_AMP_AMP] = ACTIONS(2771), + [anon_sym_PIPE_PIPE] = ACTIONS(2771), + [anon_sym_EQ_EQ] = ACTIONS(2771), + [anon_sym_BANG_EQ] = ACTIONS(2771), + [anon_sym_LT] = ACTIONS(2769), + [anon_sym_LT_EQ] = ACTIONS(2771), + [anon_sym_GT] = ACTIONS(2769), + [anon_sym_GT_EQ] = ACTIONS(2771), + [anon_sym_EQ_GT] = ACTIONS(2771), + [anon_sym_QMARK_QMARK] = ACTIONS(2771), + [anon_sym_EQ] = ACTIONS(2769), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2771), + [anon_sym_null] = ACTIONS(2769), + [anon_sym_macro] = ACTIONS(2769), + [anon_sym_abstract] = ACTIONS(2769), + [anon_sym_static] = ACTIONS(2769), + [anon_sym_public] = ACTIONS(2769), + [anon_sym_private] = ACTIONS(2769), + [anon_sym_extern] = ACTIONS(2769), + [anon_sym_inline] = ACTIONS(2769), + [anon_sym_overload] = ACTIONS(2769), + [anon_sym_override] = ACTIONS(2769), + [anon_sym_final] = ACTIONS(2769), + [anon_sym_class] = ACTIONS(2769), + [anon_sym_interface] = ACTIONS(2769), + [anon_sym_enum] = ACTIONS(2769), + [anon_sym_typedef] = ACTIONS(2769), + [anon_sym_function] = ACTIONS(2769), + [anon_sym_var] = ACTIONS(2769), + [aux_sym_integer_token1] = ACTIONS(2769), + [aux_sym_integer_token2] = ACTIONS(2771), + [aux_sym_float_token1] = ACTIONS(2769), + [aux_sym_float_token2] = ACTIONS(2771), + [anon_sym_true] = ACTIONS(2769), + [anon_sym_false] = ACTIONS(2769), + [aux_sym_string_token1] = ACTIONS(2771), + [aux_sym_string_token3] = ACTIONS(2771), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [789] = { + [ts_builtin_sym_end] = ACTIONS(2775), + [sym_identifier] = ACTIONS(2773), + [anon_sym_POUND] = ACTIONS(2775), + [anon_sym_package] = ACTIONS(2773), + [anon_sym_import] = ACTIONS(2773), + [anon_sym_STAR] = ACTIONS(2775), + [anon_sym_using] = ACTIONS(2773), + [anon_sym_throw] = ACTIONS(2773), + [anon_sym_LPAREN] = ACTIONS(2775), + [anon_sym_switch] = ACTIONS(2773), + [anon_sym_LBRACE] = ACTIONS(2775), + [anon_sym_cast] = ACTIONS(2773), + [anon_sym_DOLLARtype] = ACTIONS(2775), + [anon_sym_for] = ACTIONS(2773), + [anon_sym_return] = ACTIONS(2773), + [anon_sym_untyped] = ACTIONS(2773), + [anon_sym_break] = ACTIONS(2773), + [anon_sym_continue] = ACTIONS(2773), + [anon_sym_LBRACK] = ACTIONS(2775), + [anon_sym_this] = ACTIONS(2773), + [anon_sym_AT] = ACTIONS(2773), + [anon_sym_AT_COLON] = ACTIONS(2775), + [anon_sym_try] = ACTIONS(2773), + [anon_sym_catch] = ACTIONS(2773), + [anon_sym_else] = ACTIONS(2773), + [anon_sym_if] = ACTIONS(2773), + [anon_sym_while] = ACTIONS(2773), + [anon_sym_do] = ACTIONS(2773), + [anon_sym_new] = ACTIONS(2773), + [anon_sym_TILDE] = ACTIONS(2775), + [anon_sym_BANG] = ACTIONS(2773), + [anon_sym_DASH] = ACTIONS(2773), + [anon_sym_PLUS_PLUS] = ACTIONS(2775), + [anon_sym_DASH_DASH] = ACTIONS(2775), + [anon_sym_PERCENT] = ACTIONS(2775), + [anon_sym_SLASH] = ACTIONS(2773), + [anon_sym_PLUS] = ACTIONS(2773), + [anon_sym_LT_LT] = ACTIONS(2775), + [anon_sym_GT_GT] = ACTIONS(2773), + [anon_sym_GT_GT_GT] = ACTIONS(2775), + [anon_sym_AMP] = ACTIONS(2773), + [anon_sym_PIPE] = ACTIONS(2773), + [anon_sym_CARET] = ACTIONS(2775), + [anon_sym_AMP_AMP] = ACTIONS(2775), + [anon_sym_PIPE_PIPE] = ACTIONS(2775), + [anon_sym_EQ_EQ] = ACTIONS(2775), + [anon_sym_BANG_EQ] = ACTIONS(2775), + [anon_sym_LT] = ACTIONS(2773), + [anon_sym_LT_EQ] = ACTIONS(2775), + [anon_sym_GT] = ACTIONS(2773), + [anon_sym_GT_EQ] = ACTIONS(2775), + [anon_sym_EQ_GT] = ACTIONS(2775), + [anon_sym_QMARK_QMARK] = ACTIONS(2775), + [anon_sym_EQ] = ACTIONS(2773), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2775), + [anon_sym_null] = ACTIONS(2773), + [anon_sym_macro] = ACTIONS(2773), + [anon_sym_abstract] = ACTIONS(2773), + [anon_sym_static] = ACTIONS(2773), + [anon_sym_public] = ACTIONS(2773), + [anon_sym_private] = ACTIONS(2773), + [anon_sym_extern] = ACTIONS(2773), + [anon_sym_inline] = ACTIONS(2773), + [anon_sym_overload] = ACTIONS(2773), + [anon_sym_override] = ACTIONS(2773), + [anon_sym_final] = ACTIONS(2773), + [anon_sym_class] = ACTIONS(2773), + [anon_sym_interface] = ACTIONS(2773), + [anon_sym_enum] = ACTIONS(2773), + [anon_sym_typedef] = ACTIONS(2773), + [anon_sym_function] = ACTIONS(2773), + [anon_sym_var] = ACTIONS(2773), + [aux_sym_integer_token1] = ACTIONS(2773), + [aux_sym_integer_token2] = ACTIONS(2775), + [aux_sym_float_token1] = ACTIONS(2773), + [aux_sym_float_token2] = ACTIONS(2775), + [anon_sym_true] = ACTIONS(2773), + [anon_sym_false] = ACTIONS(2773), + [aux_sym_string_token1] = ACTIONS(2775), + [aux_sym_string_token3] = ACTIONS(2775), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [790] = { + [ts_builtin_sym_end] = ACTIONS(2903), + [sym_identifier] = ACTIONS(2901), + [anon_sym_POUND] = ACTIONS(2903), + [anon_sym_package] = ACTIONS(2901), + [anon_sym_import] = ACTIONS(2901), + [anon_sym_STAR] = ACTIONS(2903), + [anon_sym_using] = ACTIONS(2901), + [anon_sym_throw] = ACTIONS(2901), + [anon_sym_LPAREN] = ACTIONS(2903), + [anon_sym_switch] = ACTIONS(2901), + [anon_sym_LBRACE] = ACTIONS(2903), + [anon_sym_cast] = ACTIONS(2901), + [anon_sym_DOLLARtype] = ACTIONS(2903), + [anon_sym_for] = ACTIONS(2901), + [anon_sym_return] = ACTIONS(2901), + [anon_sym_untyped] = ACTIONS(2901), + [anon_sym_break] = ACTIONS(2901), + [anon_sym_continue] = ACTIONS(2901), + [anon_sym_LBRACK] = ACTIONS(2903), + [anon_sym_this] = ACTIONS(2901), + [anon_sym_AT] = ACTIONS(2901), + [anon_sym_AT_COLON] = ACTIONS(2903), + [anon_sym_try] = ACTIONS(2901), + [anon_sym_catch] = ACTIONS(2901), + [anon_sym_else] = ACTIONS(2901), + [anon_sym_if] = ACTIONS(2901), + [anon_sym_while] = ACTIONS(2901), + [anon_sym_do] = ACTIONS(2901), + [anon_sym_new] = ACTIONS(2901), + [anon_sym_TILDE] = ACTIONS(2903), + [anon_sym_BANG] = ACTIONS(2901), + [anon_sym_DASH] = ACTIONS(2901), + [anon_sym_PLUS_PLUS] = ACTIONS(2903), + [anon_sym_DASH_DASH] = ACTIONS(2903), + [anon_sym_PERCENT] = ACTIONS(2903), + [anon_sym_SLASH] = ACTIONS(2901), + [anon_sym_PLUS] = ACTIONS(2901), + [anon_sym_LT_LT] = ACTIONS(2903), + [anon_sym_GT_GT] = ACTIONS(2901), + [anon_sym_GT_GT_GT] = ACTIONS(2903), + [anon_sym_AMP] = ACTIONS(2901), + [anon_sym_PIPE] = ACTIONS(2901), + [anon_sym_CARET] = ACTIONS(2903), + [anon_sym_AMP_AMP] = ACTIONS(2903), + [anon_sym_PIPE_PIPE] = ACTIONS(2903), + [anon_sym_EQ_EQ] = ACTIONS(2903), + [anon_sym_BANG_EQ] = ACTIONS(2903), + [anon_sym_LT] = ACTIONS(2901), + [anon_sym_LT_EQ] = ACTIONS(2903), + [anon_sym_GT] = ACTIONS(2901), + [anon_sym_GT_EQ] = ACTIONS(2903), + [anon_sym_EQ_GT] = ACTIONS(2903), + [anon_sym_QMARK_QMARK] = ACTIONS(2903), + [anon_sym_EQ] = ACTIONS(2901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2903), + [anon_sym_null] = ACTIONS(2901), + [anon_sym_macro] = ACTIONS(2901), + [anon_sym_abstract] = ACTIONS(2901), + [anon_sym_static] = ACTIONS(2901), + [anon_sym_public] = ACTIONS(2901), + [anon_sym_private] = ACTIONS(2901), + [anon_sym_extern] = ACTIONS(2901), + [anon_sym_inline] = ACTIONS(2901), + [anon_sym_overload] = ACTIONS(2901), + [anon_sym_override] = ACTIONS(2901), + [anon_sym_final] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2901), + [anon_sym_interface] = ACTIONS(2901), + [anon_sym_enum] = ACTIONS(2901), + [anon_sym_typedef] = ACTIONS(2901), + [anon_sym_function] = ACTIONS(2901), + [anon_sym_var] = ACTIONS(2901), + [aux_sym_integer_token1] = ACTIONS(2901), + [aux_sym_integer_token2] = ACTIONS(2903), + [aux_sym_float_token1] = ACTIONS(2901), + [aux_sym_float_token2] = ACTIONS(2903), + [anon_sym_true] = ACTIONS(2901), + [anon_sym_false] = ACTIONS(2901), + [aux_sym_string_token1] = ACTIONS(2903), + [aux_sym_string_token3] = ACTIONS(2903), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [791] = { + [ts_builtin_sym_end] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3397), + [anon_sym_POUND] = ACTIONS(3399), + [anon_sym_package] = ACTIONS(3397), + [anon_sym_import] = ACTIONS(3397), + [anon_sym_STAR] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3397), + [anon_sym_throw] = ACTIONS(3397), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3397), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_cast] = ACTIONS(3397), + [anon_sym_DOLLARtype] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3397), + [anon_sym_return] = ACTIONS(3397), + [anon_sym_untyped] = ACTIONS(3397), + [anon_sym_break] = ACTIONS(3397), + [anon_sym_continue] = ACTIONS(3397), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_this] = ACTIONS(3397), + [anon_sym_AT] = ACTIONS(3397), + [anon_sym_AT_COLON] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3397), + [anon_sym_catch] = ACTIONS(3397), + [anon_sym_else] = ACTIONS(3397), + [anon_sym_if] = ACTIONS(3397), + [anon_sym_while] = ACTIONS(3397), + [anon_sym_do] = ACTIONS(3397), + [anon_sym_new] = ACTIONS(3397), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3397), + [anon_sym_DASH] = ACTIONS(3397), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), + [anon_sym_PERCENT] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3397), + [anon_sym_PLUS] = ACTIONS(3397), + [anon_sym_LT_LT] = ACTIONS(3399), + [anon_sym_GT_GT] = ACTIONS(3397), + [anon_sym_GT_GT_GT] = ACTIONS(3399), + [anon_sym_AMP] = ACTIONS(3397), + [anon_sym_PIPE] = ACTIONS(3397), + [anon_sym_CARET] = ACTIONS(3399), + [anon_sym_AMP_AMP] = ACTIONS(3399), + [anon_sym_PIPE_PIPE] = ACTIONS(3399), + [anon_sym_EQ_EQ] = ACTIONS(3399), + [anon_sym_BANG_EQ] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3397), + [anon_sym_LT_EQ] = ACTIONS(3399), + [anon_sym_GT] = ACTIONS(3397), + [anon_sym_GT_EQ] = ACTIONS(3399), + [anon_sym_EQ_GT] = ACTIONS(3399), + [anon_sym_QMARK_QMARK] = ACTIONS(3399), + [anon_sym_EQ] = ACTIONS(3397), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3399), + [anon_sym_null] = ACTIONS(3397), + [anon_sym_macro] = ACTIONS(3397), + [anon_sym_abstract] = ACTIONS(3397), + [anon_sym_static] = ACTIONS(3397), + [anon_sym_public] = ACTIONS(3397), + [anon_sym_private] = ACTIONS(3397), + [anon_sym_extern] = ACTIONS(3397), + [anon_sym_inline] = ACTIONS(3397), + [anon_sym_overload] = ACTIONS(3397), + [anon_sym_override] = ACTIONS(3397), + [anon_sym_final] = ACTIONS(3397), + [anon_sym_class] = ACTIONS(3397), + [anon_sym_interface] = ACTIONS(3397), + [anon_sym_enum] = ACTIONS(3397), + [anon_sym_typedef] = ACTIONS(3397), + [anon_sym_function] = ACTIONS(3397), + [anon_sym_var] = ACTIONS(3397), + [aux_sym_integer_token1] = ACTIONS(3397), + [aux_sym_integer_token2] = ACTIONS(3399), + [aux_sym_float_token1] = ACTIONS(3397), + [aux_sym_float_token2] = ACTIONS(3399), + [anon_sym_true] = ACTIONS(3397), + [anon_sym_false] = ACTIONS(3397), + [aux_sym_string_token1] = ACTIONS(3399), + [aux_sym_string_token3] = ACTIONS(3399), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [792] = { + [ts_builtin_sym_end] = ACTIONS(3403), + [sym_identifier] = ACTIONS(3401), + [anon_sym_POUND] = ACTIONS(3403), + [anon_sym_package] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_STAR] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_cast] = ACTIONS(3401), + [anon_sym_DOLLARtype] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_untyped] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_this] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [anon_sym_AT_COLON] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_catch] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), + [anon_sym_PERCENT] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_LT_LT] = ACTIONS(3403), + [anon_sym_GT_GT] = ACTIONS(3401), + [anon_sym_GT_GT_GT] = ACTIONS(3403), + [anon_sym_AMP] = ACTIONS(3401), + [anon_sym_PIPE] = ACTIONS(3401), + [anon_sym_CARET] = ACTIONS(3403), + [anon_sym_AMP_AMP] = ACTIONS(3403), + [anon_sym_PIPE_PIPE] = ACTIONS(3403), + [anon_sym_EQ_EQ] = ACTIONS(3403), + [anon_sym_BANG_EQ] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_LT_EQ] = ACTIONS(3403), + [anon_sym_GT] = ACTIONS(3401), + [anon_sym_GT_EQ] = ACTIONS(3403), + [anon_sym_EQ_GT] = ACTIONS(3403), + [anon_sym_QMARK_QMARK] = ACTIONS(3403), + [anon_sym_EQ] = ACTIONS(3401), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3403), + [anon_sym_null] = ACTIONS(3401), + [anon_sym_macro] = ACTIONS(3401), + [anon_sym_abstract] = ACTIONS(3401), + [anon_sym_static] = ACTIONS(3401), + [anon_sym_public] = ACTIONS(3401), + [anon_sym_private] = ACTIONS(3401), + [anon_sym_extern] = ACTIONS(3401), + [anon_sym_inline] = ACTIONS(3401), + [anon_sym_overload] = ACTIONS(3401), + [anon_sym_override] = ACTIONS(3401), + [anon_sym_final] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), + [anon_sym_typedef] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [aux_sym_integer_token1] = ACTIONS(3401), + [aux_sym_integer_token2] = ACTIONS(3403), + [aux_sym_float_token1] = ACTIONS(3401), + [aux_sym_float_token2] = ACTIONS(3403), + [anon_sym_true] = ACTIONS(3401), + [anon_sym_false] = ACTIONS(3401), + [aux_sym_string_token1] = ACTIONS(3403), + [aux_sym_string_token3] = ACTIONS(3403), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [793] = { + [ts_builtin_sym_end] = ACTIONS(2779), + [sym_identifier] = ACTIONS(2777), + [anon_sym_POUND] = ACTIONS(2779), + [anon_sym_package] = ACTIONS(2777), + [anon_sym_import] = ACTIONS(2777), + [anon_sym_STAR] = ACTIONS(2779), + [anon_sym_using] = ACTIONS(2777), + [anon_sym_throw] = ACTIONS(2777), + [anon_sym_LPAREN] = ACTIONS(2779), + [anon_sym_switch] = ACTIONS(2777), + [anon_sym_LBRACE] = ACTIONS(2779), + [anon_sym_cast] = ACTIONS(2777), + [anon_sym_DOLLARtype] = ACTIONS(2779), + [anon_sym_for] = ACTIONS(2777), + [anon_sym_return] = ACTIONS(2777), + [anon_sym_untyped] = ACTIONS(2777), + [anon_sym_break] = ACTIONS(2777), + [anon_sym_continue] = ACTIONS(2777), + [anon_sym_LBRACK] = ACTIONS(2779), + [anon_sym_this] = ACTIONS(2777), + [anon_sym_AT] = ACTIONS(2777), + [anon_sym_AT_COLON] = ACTIONS(2779), + [anon_sym_try] = ACTIONS(2777), + [anon_sym_catch] = ACTIONS(2777), + [anon_sym_else] = ACTIONS(2777), + [anon_sym_if] = ACTIONS(2777), + [anon_sym_while] = ACTIONS(2777), + [anon_sym_do] = ACTIONS(2777), + [anon_sym_new] = ACTIONS(2777), + [anon_sym_TILDE] = ACTIONS(2779), + [anon_sym_BANG] = ACTIONS(2777), + [anon_sym_DASH] = ACTIONS(2777), + [anon_sym_PLUS_PLUS] = ACTIONS(2779), + [anon_sym_DASH_DASH] = ACTIONS(2779), + [anon_sym_PERCENT] = ACTIONS(2779), + [anon_sym_SLASH] = ACTIONS(2777), + [anon_sym_PLUS] = ACTIONS(2777), + [anon_sym_LT_LT] = ACTIONS(2779), + [anon_sym_GT_GT] = ACTIONS(2777), + [anon_sym_GT_GT_GT] = ACTIONS(2779), + [anon_sym_AMP] = ACTIONS(2777), + [anon_sym_PIPE] = ACTIONS(2777), + [anon_sym_CARET] = ACTIONS(2779), + [anon_sym_AMP_AMP] = ACTIONS(2779), + [anon_sym_PIPE_PIPE] = ACTIONS(2779), + [anon_sym_EQ_EQ] = ACTIONS(2779), + [anon_sym_BANG_EQ] = ACTIONS(2779), + [anon_sym_LT] = ACTIONS(2777), + [anon_sym_LT_EQ] = ACTIONS(2779), + [anon_sym_GT] = ACTIONS(2777), + [anon_sym_GT_EQ] = ACTIONS(2779), + [anon_sym_EQ_GT] = ACTIONS(2779), + [anon_sym_QMARK_QMARK] = ACTIONS(2779), + [anon_sym_EQ] = ACTIONS(2777), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2779), + [anon_sym_null] = ACTIONS(2777), + [anon_sym_macro] = ACTIONS(2777), + [anon_sym_abstract] = ACTIONS(2777), + [anon_sym_static] = ACTIONS(2777), + [anon_sym_public] = ACTIONS(2777), + [anon_sym_private] = ACTIONS(2777), + [anon_sym_extern] = ACTIONS(2777), + [anon_sym_inline] = ACTIONS(2777), + [anon_sym_overload] = ACTIONS(2777), + [anon_sym_override] = ACTIONS(2777), + [anon_sym_final] = ACTIONS(2777), + [anon_sym_class] = ACTIONS(2777), + [anon_sym_interface] = ACTIONS(2777), + [anon_sym_enum] = ACTIONS(2777), + [anon_sym_typedef] = ACTIONS(2777), + [anon_sym_function] = ACTIONS(2777), + [anon_sym_var] = ACTIONS(2777), + [aux_sym_integer_token1] = ACTIONS(2777), + [aux_sym_integer_token2] = ACTIONS(2779), + [aux_sym_float_token1] = ACTIONS(2777), + [aux_sym_float_token2] = ACTIONS(2779), + [anon_sym_true] = ACTIONS(2777), + [anon_sym_false] = ACTIONS(2777), + [aux_sym_string_token1] = ACTIONS(2779), + [aux_sym_string_token3] = ACTIONS(2779), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [794] = { + [ts_builtin_sym_end] = ACTIONS(2907), + [sym_identifier] = ACTIONS(2905), + [anon_sym_POUND] = ACTIONS(2907), + [anon_sym_package] = ACTIONS(2905), + [anon_sym_import] = ACTIONS(2905), + [anon_sym_STAR] = ACTIONS(2907), + [anon_sym_using] = ACTIONS(2905), + [anon_sym_throw] = ACTIONS(2905), + [anon_sym_LPAREN] = ACTIONS(2907), + [anon_sym_switch] = ACTIONS(2905), + [anon_sym_LBRACE] = ACTIONS(2907), + [anon_sym_cast] = ACTIONS(2905), + [anon_sym_DOLLARtype] = ACTIONS(2907), + [anon_sym_for] = ACTIONS(2905), + [anon_sym_return] = ACTIONS(2905), + [anon_sym_untyped] = ACTIONS(2905), + [anon_sym_break] = ACTIONS(2905), + [anon_sym_continue] = ACTIONS(2905), + [anon_sym_LBRACK] = ACTIONS(2907), + [anon_sym_this] = ACTIONS(2905), + [anon_sym_AT] = ACTIONS(2905), + [anon_sym_AT_COLON] = ACTIONS(2907), + [anon_sym_try] = ACTIONS(2905), + [anon_sym_catch] = ACTIONS(2905), + [anon_sym_else] = ACTIONS(2905), + [anon_sym_if] = ACTIONS(2905), + [anon_sym_while] = ACTIONS(2905), + [anon_sym_do] = ACTIONS(2905), + [anon_sym_new] = ACTIONS(2905), + [anon_sym_TILDE] = ACTIONS(2907), + [anon_sym_BANG] = ACTIONS(2905), + [anon_sym_DASH] = ACTIONS(2905), + [anon_sym_PLUS_PLUS] = ACTIONS(2907), + [anon_sym_DASH_DASH] = ACTIONS(2907), + [anon_sym_PERCENT] = ACTIONS(2907), + [anon_sym_SLASH] = ACTIONS(2905), + [anon_sym_PLUS] = ACTIONS(2905), + [anon_sym_LT_LT] = ACTIONS(2907), + [anon_sym_GT_GT] = ACTIONS(2905), + [anon_sym_GT_GT_GT] = ACTIONS(2907), + [anon_sym_AMP] = ACTIONS(2905), + [anon_sym_PIPE] = ACTIONS(2905), + [anon_sym_CARET] = ACTIONS(2907), + [anon_sym_AMP_AMP] = ACTIONS(2907), + [anon_sym_PIPE_PIPE] = ACTIONS(2907), + [anon_sym_EQ_EQ] = ACTIONS(2907), + [anon_sym_BANG_EQ] = ACTIONS(2907), + [anon_sym_LT] = ACTIONS(2905), + [anon_sym_LT_EQ] = ACTIONS(2907), + [anon_sym_GT] = ACTIONS(2905), + [anon_sym_GT_EQ] = ACTIONS(2907), + [anon_sym_EQ_GT] = ACTIONS(2907), + [anon_sym_QMARK_QMARK] = ACTIONS(2907), + [anon_sym_EQ] = ACTIONS(2905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2907), + [anon_sym_null] = ACTIONS(2905), + [anon_sym_macro] = ACTIONS(2905), + [anon_sym_abstract] = ACTIONS(2905), + [anon_sym_static] = ACTIONS(2905), + [anon_sym_public] = ACTIONS(2905), + [anon_sym_private] = ACTIONS(2905), + [anon_sym_extern] = ACTIONS(2905), + [anon_sym_inline] = ACTIONS(2905), + [anon_sym_overload] = ACTIONS(2905), + [anon_sym_override] = ACTIONS(2905), + [anon_sym_final] = ACTIONS(2905), + [anon_sym_class] = ACTIONS(2905), + [anon_sym_interface] = ACTIONS(2905), + [anon_sym_enum] = ACTIONS(2905), + [anon_sym_typedef] = ACTIONS(2905), + [anon_sym_function] = ACTIONS(2905), + [anon_sym_var] = ACTIONS(2905), + [aux_sym_integer_token1] = ACTIONS(2905), + [aux_sym_integer_token2] = ACTIONS(2907), + [aux_sym_float_token1] = ACTIONS(2905), + [aux_sym_float_token2] = ACTIONS(2907), + [anon_sym_true] = ACTIONS(2905), + [anon_sym_false] = ACTIONS(2905), + [aux_sym_string_token1] = ACTIONS(2907), + [aux_sym_string_token3] = ACTIONS(2907), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [795] = { + [ts_builtin_sym_end] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3227), + [anon_sym_POUND] = ACTIONS(3229), + [anon_sym_package] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_STAR] = ACTIONS(3229), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3229), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3229), + [anon_sym_cast] = ACTIONS(3227), + [anon_sym_DOLLARtype] = ACTIONS(3229), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_untyped] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3229), + [anon_sym_this] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_AT_COLON] = ACTIONS(3229), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_catch] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3229), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3229), + [anon_sym_DASH_DASH] = ACTIONS(3229), + [anon_sym_PERCENT] = ACTIONS(3229), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_LT_LT] = ACTIONS(3229), + [anon_sym_GT_GT] = ACTIONS(3227), + [anon_sym_GT_GT_GT] = ACTIONS(3229), + [anon_sym_AMP] = ACTIONS(3227), + [anon_sym_PIPE] = ACTIONS(3227), + [anon_sym_CARET] = ACTIONS(3229), + [anon_sym_AMP_AMP] = ACTIONS(3229), + [anon_sym_PIPE_PIPE] = ACTIONS(3229), + [anon_sym_EQ_EQ] = ACTIONS(3229), + [anon_sym_BANG_EQ] = ACTIONS(3229), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_LT_EQ] = ACTIONS(3229), + [anon_sym_GT] = ACTIONS(3227), + [anon_sym_GT_EQ] = ACTIONS(3229), + [anon_sym_EQ_GT] = ACTIONS(3229), + [anon_sym_QMARK_QMARK] = ACTIONS(3229), + [anon_sym_EQ] = ACTIONS(3227), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3229), + [anon_sym_null] = ACTIONS(3227), + [anon_sym_macro] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_extern] = ACTIONS(3227), + [anon_sym_inline] = ACTIONS(3227), + [anon_sym_overload] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_final] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [anon_sym_typedef] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [aux_sym_integer_token1] = ACTIONS(3227), + [aux_sym_integer_token2] = ACTIONS(3229), + [aux_sym_float_token1] = ACTIONS(3227), + [aux_sym_float_token2] = ACTIONS(3229), + [anon_sym_true] = ACTIONS(3227), + [anon_sym_false] = ACTIONS(3227), + [aux_sym_string_token1] = ACTIONS(3229), + [aux_sym_string_token3] = ACTIONS(3229), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [796] = { + [ts_builtin_sym_end] = ACTIONS(2783), + [sym_identifier] = ACTIONS(2781), + [anon_sym_POUND] = ACTIONS(2783), + [anon_sym_package] = ACTIONS(2781), + [anon_sym_import] = ACTIONS(2781), + [anon_sym_STAR] = ACTIONS(2783), + [anon_sym_using] = ACTIONS(2781), + [anon_sym_throw] = ACTIONS(2781), + [anon_sym_LPAREN] = ACTIONS(2783), + [anon_sym_switch] = ACTIONS(2781), + [anon_sym_LBRACE] = ACTIONS(2783), + [anon_sym_cast] = ACTIONS(2781), + [anon_sym_DOLLARtype] = ACTIONS(2783), + [anon_sym_for] = ACTIONS(2781), + [anon_sym_return] = ACTIONS(2781), + [anon_sym_untyped] = ACTIONS(2781), + [anon_sym_break] = ACTIONS(2781), + [anon_sym_continue] = ACTIONS(2781), + [anon_sym_LBRACK] = ACTIONS(2783), + [anon_sym_this] = ACTIONS(2781), + [anon_sym_AT] = ACTIONS(2781), + [anon_sym_AT_COLON] = ACTIONS(2783), + [anon_sym_try] = ACTIONS(2781), + [anon_sym_catch] = ACTIONS(2781), + [anon_sym_else] = ACTIONS(2781), + [anon_sym_if] = ACTIONS(2781), + [anon_sym_while] = ACTIONS(2781), + [anon_sym_do] = ACTIONS(2781), + [anon_sym_new] = ACTIONS(2781), + [anon_sym_TILDE] = ACTIONS(2783), + [anon_sym_BANG] = ACTIONS(2781), + [anon_sym_DASH] = ACTIONS(2781), + [anon_sym_PLUS_PLUS] = ACTIONS(2783), + [anon_sym_DASH_DASH] = ACTIONS(2783), + [anon_sym_PERCENT] = ACTIONS(2783), + [anon_sym_SLASH] = ACTIONS(2781), + [anon_sym_PLUS] = ACTIONS(2781), + [anon_sym_LT_LT] = ACTIONS(2783), + [anon_sym_GT_GT] = ACTIONS(2781), + [anon_sym_GT_GT_GT] = ACTIONS(2783), + [anon_sym_AMP] = ACTIONS(2781), + [anon_sym_PIPE] = ACTIONS(2781), + [anon_sym_CARET] = ACTIONS(2783), + [anon_sym_AMP_AMP] = ACTIONS(2783), + [anon_sym_PIPE_PIPE] = ACTIONS(2783), + [anon_sym_EQ_EQ] = ACTIONS(2783), + [anon_sym_BANG_EQ] = ACTIONS(2783), + [anon_sym_LT] = ACTIONS(2781), + [anon_sym_LT_EQ] = ACTIONS(2783), + [anon_sym_GT] = ACTIONS(2781), + [anon_sym_GT_EQ] = ACTIONS(2783), + [anon_sym_EQ_GT] = ACTIONS(2783), + [anon_sym_QMARK_QMARK] = ACTIONS(2783), + [anon_sym_EQ] = ACTIONS(2781), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2783), + [anon_sym_null] = ACTIONS(2781), + [anon_sym_macro] = ACTIONS(2781), + [anon_sym_abstract] = ACTIONS(2781), + [anon_sym_static] = ACTIONS(2781), + [anon_sym_public] = ACTIONS(2781), + [anon_sym_private] = ACTIONS(2781), + [anon_sym_extern] = ACTIONS(2781), + [anon_sym_inline] = ACTIONS(2781), + [anon_sym_overload] = ACTIONS(2781), + [anon_sym_override] = ACTIONS(2781), + [anon_sym_final] = ACTIONS(2781), + [anon_sym_class] = ACTIONS(2781), + [anon_sym_interface] = ACTIONS(2781), + [anon_sym_enum] = ACTIONS(2781), + [anon_sym_typedef] = ACTIONS(2781), + [anon_sym_function] = ACTIONS(2781), + [anon_sym_var] = ACTIONS(2781), + [aux_sym_integer_token1] = ACTIONS(2781), + [aux_sym_integer_token2] = ACTIONS(2783), + [aux_sym_float_token1] = ACTIONS(2781), + [aux_sym_float_token2] = ACTIONS(2783), + [anon_sym_true] = ACTIONS(2781), + [anon_sym_false] = ACTIONS(2781), + [aux_sym_string_token1] = ACTIONS(2783), + [aux_sym_string_token3] = ACTIONS(2783), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [797] = { + [ts_builtin_sym_end] = ACTIONS(2787), + [sym_identifier] = ACTIONS(2785), + [anon_sym_POUND] = ACTIONS(2787), + [anon_sym_package] = ACTIONS(2785), + [anon_sym_import] = ACTIONS(2785), + [anon_sym_STAR] = ACTIONS(2787), + [anon_sym_using] = ACTIONS(2785), + [anon_sym_throw] = ACTIONS(2785), + [anon_sym_LPAREN] = ACTIONS(2787), + [anon_sym_switch] = ACTIONS(2785), + [anon_sym_LBRACE] = ACTIONS(2787), + [anon_sym_cast] = ACTIONS(2785), + [anon_sym_DOLLARtype] = ACTIONS(2787), + [anon_sym_for] = ACTIONS(2785), + [anon_sym_return] = ACTIONS(2785), + [anon_sym_untyped] = ACTIONS(2785), + [anon_sym_break] = ACTIONS(2785), + [anon_sym_continue] = ACTIONS(2785), + [anon_sym_LBRACK] = ACTIONS(2787), + [anon_sym_this] = ACTIONS(2785), + [anon_sym_AT] = ACTIONS(2785), + [anon_sym_AT_COLON] = ACTIONS(2787), + [anon_sym_try] = ACTIONS(2785), + [anon_sym_catch] = ACTIONS(2785), + [anon_sym_else] = ACTIONS(2785), + [anon_sym_if] = ACTIONS(2785), + [anon_sym_while] = ACTIONS(2785), + [anon_sym_do] = ACTIONS(2785), + [anon_sym_new] = ACTIONS(2785), + [anon_sym_TILDE] = ACTIONS(2787), + [anon_sym_BANG] = ACTIONS(2785), + [anon_sym_DASH] = ACTIONS(2785), + [anon_sym_PLUS_PLUS] = ACTIONS(2787), + [anon_sym_DASH_DASH] = ACTIONS(2787), + [anon_sym_PERCENT] = ACTIONS(2787), + [anon_sym_SLASH] = ACTIONS(2785), + [anon_sym_PLUS] = ACTIONS(2785), + [anon_sym_LT_LT] = ACTIONS(2787), + [anon_sym_GT_GT] = ACTIONS(2785), + [anon_sym_GT_GT_GT] = ACTIONS(2787), + [anon_sym_AMP] = ACTIONS(2785), + [anon_sym_PIPE] = ACTIONS(2785), + [anon_sym_CARET] = ACTIONS(2787), + [anon_sym_AMP_AMP] = ACTIONS(2787), + [anon_sym_PIPE_PIPE] = ACTIONS(2787), + [anon_sym_EQ_EQ] = ACTIONS(2787), + [anon_sym_BANG_EQ] = ACTIONS(2787), + [anon_sym_LT] = ACTIONS(2785), + [anon_sym_LT_EQ] = ACTIONS(2787), + [anon_sym_GT] = ACTIONS(2785), + [anon_sym_GT_EQ] = ACTIONS(2787), + [anon_sym_EQ_GT] = ACTIONS(2787), + [anon_sym_QMARK_QMARK] = ACTIONS(2787), + [anon_sym_EQ] = ACTIONS(2785), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2787), + [anon_sym_null] = ACTIONS(2785), + [anon_sym_macro] = ACTIONS(2785), + [anon_sym_abstract] = ACTIONS(2785), + [anon_sym_static] = ACTIONS(2785), + [anon_sym_public] = ACTIONS(2785), + [anon_sym_private] = ACTIONS(2785), + [anon_sym_extern] = ACTIONS(2785), + [anon_sym_inline] = ACTIONS(2785), + [anon_sym_overload] = ACTIONS(2785), + [anon_sym_override] = ACTIONS(2785), + [anon_sym_final] = ACTIONS(2785), + [anon_sym_class] = ACTIONS(2785), + [anon_sym_interface] = ACTIONS(2785), + [anon_sym_enum] = ACTIONS(2785), + [anon_sym_typedef] = ACTIONS(2785), + [anon_sym_function] = ACTIONS(2785), + [anon_sym_var] = ACTIONS(2785), + [aux_sym_integer_token1] = ACTIONS(2785), + [aux_sym_integer_token2] = ACTIONS(2787), + [aux_sym_float_token1] = ACTIONS(2785), + [aux_sym_float_token2] = ACTIONS(2787), + [anon_sym_true] = ACTIONS(2785), + [anon_sym_false] = ACTIONS(2785), + [aux_sym_string_token1] = ACTIONS(2787), + [aux_sym_string_token3] = ACTIONS(2787), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [798] = { + [ts_builtin_sym_end] = ACTIONS(3407), + [sym_identifier] = ACTIONS(3405), + [anon_sym_POUND] = ACTIONS(3407), + [anon_sym_package] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_STAR] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_cast] = ACTIONS(3405), + [anon_sym_DOLLARtype] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_untyped] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_this] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_AT_COLON] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_catch] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [anon_sym_PERCENT] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_LT_LT] = ACTIONS(3407), + [anon_sym_GT_GT] = ACTIONS(3405), + [anon_sym_GT_GT_GT] = ACTIONS(3407), + [anon_sym_AMP] = ACTIONS(3405), + [anon_sym_PIPE] = ACTIONS(3405), + [anon_sym_CARET] = ACTIONS(3407), + [anon_sym_AMP_AMP] = ACTIONS(3407), + [anon_sym_PIPE_PIPE] = ACTIONS(3407), + [anon_sym_EQ_EQ] = ACTIONS(3407), + [anon_sym_BANG_EQ] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_LT_EQ] = ACTIONS(3407), + [anon_sym_GT] = ACTIONS(3405), + [anon_sym_GT_EQ] = ACTIONS(3407), + [anon_sym_EQ_GT] = ACTIONS(3407), + [anon_sym_QMARK_QMARK] = ACTIONS(3407), + [anon_sym_EQ] = ACTIONS(3405), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3407), + [anon_sym_null] = ACTIONS(3405), + [anon_sym_macro] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_extern] = ACTIONS(3405), + [anon_sym_inline] = ACTIONS(3405), + [anon_sym_overload] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_final] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), + [anon_sym_typedef] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [aux_sym_integer_token1] = ACTIONS(3405), + [aux_sym_integer_token2] = ACTIONS(3407), + [aux_sym_float_token1] = ACTIONS(3405), + [aux_sym_float_token2] = ACTIONS(3407), + [anon_sym_true] = ACTIONS(3405), + [anon_sym_false] = ACTIONS(3405), + [aux_sym_string_token1] = ACTIONS(3407), + [aux_sym_string_token3] = ACTIONS(3407), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [799] = { + [ts_builtin_sym_end] = ACTIONS(2911), + [sym_identifier] = ACTIONS(2909), + [anon_sym_POUND] = ACTIONS(2911), + [anon_sym_package] = ACTIONS(2909), + [anon_sym_import] = ACTIONS(2909), + [anon_sym_STAR] = ACTIONS(2911), + [anon_sym_using] = ACTIONS(2909), + [anon_sym_throw] = ACTIONS(2909), + [anon_sym_LPAREN] = ACTIONS(2911), + [anon_sym_switch] = ACTIONS(2909), + [anon_sym_LBRACE] = ACTIONS(2911), + [anon_sym_cast] = ACTIONS(2909), + [anon_sym_DOLLARtype] = ACTIONS(2911), + [anon_sym_for] = ACTIONS(2909), + [anon_sym_return] = ACTIONS(2909), + [anon_sym_untyped] = ACTIONS(2909), + [anon_sym_break] = ACTIONS(2909), + [anon_sym_continue] = ACTIONS(2909), + [anon_sym_LBRACK] = ACTIONS(2911), + [anon_sym_this] = ACTIONS(2909), + [anon_sym_AT] = ACTIONS(2909), + [anon_sym_AT_COLON] = ACTIONS(2911), + [anon_sym_try] = ACTIONS(2909), + [anon_sym_catch] = ACTIONS(2909), + [anon_sym_else] = ACTIONS(2909), + [anon_sym_if] = ACTIONS(2909), + [anon_sym_while] = ACTIONS(2909), + [anon_sym_do] = ACTIONS(2909), + [anon_sym_new] = ACTIONS(2909), + [anon_sym_TILDE] = ACTIONS(2911), + [anon_sym_BANG] = ACTIONS(2909), + [anon_sym_DASH] = ACTIONS(2909), + [anon_sym_PLUS_PLUS] = ACTIONS(2911), + [anon_sym_DASH_DASH] = ACTIONS(2911), + [anon_sym_PERCENT] = ACTIONS(2911), + [anon_sym_SLASH] = ACTIONS(2909), + [anon_sym_PLUS] = ACTIONS(2909), + [anon_sym_LT_LT] = ACTIONS(2911), + [anon_sym_GT_GT] = ACTIONS(2909), + [anon_sym_GT_GT_GT] = ACTIONS(2911), + [anon_sym_AMP] = ACTIONS(2909), + [anon_sym_PIPE] = ACTIONS(2909), + [anon_sym_CARET] = ACTIONS(2911), + [anon_sym_AMP_AMP] = ACTIONS(2911), + [anon_sym_PIPE_PIPE] = ACTIONS(2911), + [anon_sym_EQ_EQ] = ACTIONS(2911), + [anon_sym_BANG_EQ] = ACTIONS(2911), + [anon_sym_LT] = ACTIONS(2909), + [anon_sym_LT_EQ] = ACTIONS(2911), + [anon_sym_GT] = ACTIONS(2909), + [anon_sym_GT_EQ] = ACTIONS(2911), + [anon_sym_EQ_GT] = ACTIONS(2911), + [anon_sym_QMARK_QMARK] = ACTIONS(2911), + [anon_sym_EQ] = ACTIONS(2909), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2911), + [anon_sym_null] = ACTIONS(2909), + [anon_sym_macro] = ACTIONS(2909), + [anon_sym_abstract] = ACTIONS(2909), + [anon_sym_static] = ACTIONS(2909), + [anon_sym_public] = ACTIONS(2909), + [anon_sym_private] = ACTIONS(2909), + [anon_sym_extern] = ACTIONS(2909), + [anon_sym_inline] = ACTIONS(2909), + [anon_sym_overload] = ACTIONS(2909), + [anon_sym_override] = ACTIONS(2909), + [anon_sym_final] = ACTIONS(2909), + [anon_sym_class] = ACTIONS(2909), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2909), + [anon_sym_typedef] = ACTIONS(2909), + [anon_sym_function] = ACTIONS(2909), + [anon_sym_var] = ACTIONS(2909), + [aux_sym_integer_token1] = ACTIONS(2909), + [aux_sym_integer_token2] = ACTIONS(2911), + [aux_sym_float_token1] = ACTIONS(2909), + [aux_sym_float_token2] = ACTIONS(2911), + [anon_sym_true] = ACTIONS(2909), + [anon_sym_false] = ACTIONS(2909), + [aux_sym_string_token1] = ACTIONS(2911), + [aux_sym_string_token3] = ACTIONS(2911), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [800] = { + [sym_else_clause] = STATE(421), + [sym_identifier] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2679), + [anon_sym_package] = ACTIONS(2677), + [anon_sym_import] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2679), + [anon_sym_using] = ACTIONS(2677), + [anon_sym_throw] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2679), + [anon_sym_switch] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2679), + [anon_sym_cast] = ACTIONS(2677), + [anon_sym_DOLLARtype] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2677), + [anon_sym_return] = ACTIONS(2677), + [anon_sym_untyped] = ACTIONS(2677), + [anon_sym_break] = ACTIONS(2677), + [anon_sym_continue] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2679), + [anon_sym_this] = ACTIONS(2677), + [anon_sym_AT] = ACTIONS(2677), + [anon_sym_AT_COLON] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2677), + [anon_sym_else] = ACTIONS(3440), + [anon_sym_if] = ACTIONS(2677), + [anon_sym_while] = ACTIONS(2677), + [anon_sym_do] = ACTIONS(2677), + [anon_sym_new] = ACTIONS(2677), + [anon_sym_TILDE] = ACTIONS(2679), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_PLUS_PLUS] = ACTIONS(2679), + [anon_sym_DASH_DASH] = ACTIONS(2679), + [anon_sym_PERCENT] = ACTIONS(2679), + [anon_sym_SLASH] = ACTIONS(2677), + [anon_sym_PLUS] = ACTIONS(2677), + [anon_sym_LT_LT] = ACTIONS(2679), + [anon_sym_GT_GT] = ACTIONS(2677), + [anon_sym_GT_GT_GT] = ACTIONS(2679), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_CARET] = ACTIONS(2679), + [anon_sym_AMP_AMP] = ACTIONS(2679), + [anon_sym_PIPE_PIPE] = ACTIONS(2679), + [anon_sym_EQ_EQ] = ACTIONS(2679), + [anon_sym_BANG_EQ] = ACTIONS(2679), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_LT_EQ] = ACTIONS(2679), + [anon_sym_GT] = ACTIONS(2677), + [anon_sym_GT_EQ] = ACTIONS(2679), + [anon_sym_EQ_GT] = ACTIONS(2679), + [anon_sym_QMARK_QMARK] = ACTIONS(2679), + [anon_sym_EQ] = ACTIONS(2677), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2679), + [anon_sym_null] = ACTIONS(2677), + [anon_sym_macro] = ACTIONS(2677), + [anon_sym_abstract] = ACTIONS(2677), + [anon_sym_static] = ACTIONS(2677), + [anon_sym_public] = ACTIONS(2677), + [anon_sym_private] = ACTIONS(2677), + [anon_sym_extern] = ACTIONS(2677), + [anon_sym_inline] = ACTIONS(2677), + [anon_sym_overload] = ACTIONS(2677), + [anon_sym_override] = ACTIONS(2677), + [anon_sym_final] = ACTIONS(2677), + [anon_sym_class] = ACTIONS(2677), + [anon_sym_interface] = ACTIONS(2677), + [anon_sym_enum] = ACTIONS(2677), + [anon_sym_typedef] = ACTIONS(2677), + [anon_sym_function] = ACTIONS(2677), + [anon_sym_var] = ACTIONS(2677), + [aux_sym_integer_token1] = ACTIONS(2677), + [aux_sym_integer_token2] = ACTIONS(2679), + [aux_sym_float_token1] = ACTIONS(2677), + [aux_sym_float_token2] = ACTIONS(2679), + [anon_sym_true] = ACTIONS(2677), + [anon_sym_false] = ACTIONS(2677), + [aux_sym_string_token1] = ACTIONS(2679), + [aux_sym_string_token3] = ACTIONS(2679), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(2679), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [801] = { + [ts_builtin_sym_end] = ACTIONS(2791), + [sym_identifier] = ACTIONS(2789), + [anon_sym_POUND] = ACTIONS(2791), + [anon_sym_package] = ACTIONS(2789), + [anon_sym_import] = ACTIONS(2789), + [anon_sym_STAR] = ACTIONS(2791), + [anon_sym_using] = ACTIONS(2789), + [anon_sym_throw] = ACTIONS(2789), + [anon_sym_LPAREN] = ACTIONS(2791), + [anon_sym_switch] = ACTIONS(2789), + [anon_sym_LBRACE] = ACTIONS(2791), + [anon_sym_cast] = ACTIONS(2789), + [anon_sym_DOLLARtype] = ACTIONS(2791), + [anon_sym_for] = ACTIONS(2789), + [anon_sym_return] = ACTIONS(2789), + [anon_sym_untyped] = ACTIONS(2789), + [anon_sym_break] = ACTIONS(2789), + [anon_sym_continue] = ACTIONS(2789), + [anon_sym_LBRACK] = ACTIONS(2791), + [anon_sym_this] = ACTIONS(2789), + [anon_sym_AT] = ACTIONS(2789), + [anon_sym_AT_COLON] = ACTIONS(2791), + [anon_sym_try] = ACTIONS(2789), + [anon_sym_catch] = ACTIONS(2789), + [anon_sym_else] = ACTIONS(2789), + [anon_sym_if] = ACTIONS(2789), + [anon_sym_while] = ACTIONS(2789), + [anon_sym_do] = ACTIONS(2789), + [anon_sym_new] = ACTIONS(2789), + [anon_sym_TILDE] = ACTIONS(2791), + [anon_sym_BANG] = ACTIONS(2789), + [anon_sym_DASH] = ACTIONS(2789), + [anon_sym_PLUS_PLUS] = ACTIONS(2791), + [anon_sym_DASH_DASH] = ACTIONS(2791), + [anon_sym_PERCENT] = ACTIONS(2791), + [anon_sym_SLASH] = ACTIONS(2789), + [anon_sym_PLUS] = ACTIONS(2789), + [anon_sym_LT_LT] = ACTIONS(2791), + [anon_sym_GT_GT] = ACTIONS(2789), + [anon_sym_GT_GT_GT] = ACTIONS(2791), + [anon_sym_AMP] = ACTIONS(2789), + [anon_sym_PIPE] = ACTIONS(2789), + [anon_sym_CARET] = ACTIONS(2791), + [anon_sym_AMP_AMP] = ACTIONS(2791), + [anon_sym_PIPE_PIPE] = ACTIONS(2791), + [anon_sym_EQ_EQ] = ACTIONS(2791), + [anon_sym_BANG_EQ] = ACTIONS(2791), + [anon_sym_LT] = ACTIONS(2789), + [anon_sym_LT_EQ] = ACTIONS(2791), + [anon_sym_GT] = ACTIONS(2789), + [anon_sym_GT_EQ] = ACTIONS(2791), + [anon_sym_EQ_GT] = ACTIONS(2791), + [anon_sym_QMARK_QMARK] = ACTIONS(2791), + [anon_sym_EQ] = ACTIONS(2789), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2791), + [anon_sym_null] = ACTIONS(2789), + [anon_sym_macro] = ACTIONS(2789), + [anon_sym_abstract] = ACTIONS(2789), + [anon_sym_static] = ACTIONS(2789), + [anon_sym_public] = ACTIONS(2789), + [anon_sym_private] = ACTIONS(2789), + [anon_sym_extern] = ACTIONS(2789), + [anon_sym_inline] = ACTIONS(2789), + [anon_sym_overload] = ACTIONS(2789), + [anon_sym_override] = ACTIONS(2789), + [anon_sym_final] = ACTIONS(2789), + [anon_sym_class] = ACTIONS(2789), + [anon_sym_interface] = ACTIONS(2789), + [anon_sym_enum] = ACTIONS(2789), + [anon_sym_typedef] = ACTIONS(2789), + [anon_sym_function] = ACTIONS(2789), + [anon_sym_var] = ACTIONS(2789), + [aux_sym_integer_token1] = ACTIONS(2789), + [aux_sym_integer_token2] = ACTIONS(2791), + [aux_sym_float_token1] = ACTIONS(2789), + [aux_sym_float_token2] = ACTIONS(2791), + [anon_sym_true] = ACTIONS(2789), + [anon_sym_false] = ACTIONS(2789), + [aux_sym_string_token1] = ACTIONS(2791), + [aux_sym_string_token3] = ACTIONS(2791), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [802] = { + [ts_builtin_sym_end] = ACTIONS(3411), + [sym_identifier] = ACTIONS(3409), + [anon_sym_POUND] = ACTIONS(3411), + [anon_sym_package] = ACTIONS(3409), + [anon_sym_import] = ACTIONS(3409), + [anon_sym_STAR] = ACTIONS(3411), + [anon_sym_using] = ACTIONS(3409), + [anon_sym_throw] = ACTIONS(3409), + [anon_sym_LPAREN] = ACTIONS(3411), + [anon_sym_switch] = ACTIONS(3409), + [anon_sym_LBRACE] = ACTIONS(3411), + [anon_sym_cast] = ACTIONS(3409), + [anon_sym_DOLLARtype] = ACTIONS(3411), + [anon_sym_for] = ACTIONS(3409), + [anon_sym_return] = ACTIONS(3409), + [anon_sym_untyped] = ACTIONS(3409), + [anon_sym_break] = ACTIONS(3409), + [anon_sym_continue] = ACTIONS(3409), + [anon_sym_LBRACK] = ACTIONS(3411), + [anon_sym_this] = ACTIONS(3409), + [anon_sym_AT] = ACTIONS(3409), + [anon_sym_AT_COLON] = ACTIONS(3411), + [anon_sym_try] = ACTIONS(3409), + [anon_sym_catch] = ACTIONS(3409), + [anon_sym_else] = ACTIONS(3409), + [anon_sym_if] = ACTIONS(3409), + [anon_sym_while] = ACTIONS(3409), + [anon_sym_do] = ACTIONS(3409), + [anon_sym_new] = ACTIONS(3409), + [anon_sym_TILDE] = ACTIONS(3411), + [anon_sym_BANG] = ACTIONS(3409), + [anon_sym_DASH] = ACTIONS(3409), + [anon_sym_PLUS_PLUS] = ACTIONS(3411), + [anon_sym_DASH_DASH] = ACTIONS(3411), + [anon_sym_PERCENT] = ACTIONS(3411), + [anon_sym_SLASH] = ACTIONS(3409), + [anon_sym_PLUS] = ACTIONS(3409), + [anon_sym_LT_LT] = ACTIONS(3411), + [anon_sym_GT_GT] = ACTIONS(3409), + [anon_sym_GT_GT_GT] = ACTIONS(3411), + [anon_sym_AMP] = ACTIONS(3409), + [anon_sym_PIPE] = ACTIONS(3409), + [anon_sym_CARET] = ACTIONS(3411), + [anon_sym_AMP_AMP] = ACTIONS(3411), + [anon_sym_PIPE_PIPE] = ACTIONS(3411), + [anon_sym_EQ_EQ] = ACTIONS(3411), + [anon_sym_BANG_EQ] = ACTIONS(3411), + [anon_sym_LT] = ACTIONS(3409), + [anon_sym_LT_EQ] = ACTIONS(3411), + [anon_sym_GT] = ACTIONS(3409), + [anon_sym_GT_EQ] = ACTIONS(3411), + [anon_sym_EQ_GT] = ACTIONS(3411), + [anon_sym_QMARK_QMARK] = ACTIONS(3411), + [anon_sym_EQ] = ACTIONS(3409), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3411), + [anon_sym_null] = ACTIONS(3409), + [anon_sym_macro] = ACTIONS(3409), + [anon_sym_abstract] = ACTIONS(3409), + [anon_sym_static] = ACTIONS(3409), + [anon_sym_public] = ACTIONS(3409), + [anon_sym_private] = ACTIONS(3409), + [anon_sym_extern] = ACTIONS(3409), + [anon_sym_inline] = ACTIONS(3409), + [anon_sym_overload] = ACTIONS(3409), + [anon_sym_override] = ACTIONS(3409), + [anon_sym_final] = ACTIONS(3409), + [anon_sym_class] = ACTIONS(3409), + [anon_sym_interface] = ACTIONS(3409), + [anon_sym_enum] = ACTIONS(3409), + [anon_sym_typedef] = ACTIONS(3409), + [anon_sym_function] = ACTIONS(3409), + [anon_sym_var] = ACTIONS(3409), + [aux_sym_integer_token1] = ACTIONS(3409), + [aux_sym_integer_token2] = ACTIONS(3411), + [aux_sym_float_token1] = ACTIONS(3409), + [aux_sym_float_token2] = ACTIONS(3411), + [anon_sym_true] = ACTIONS(3409), + [anon_sym_false] = ACTIONS(3409), + [aux_sym_string_token1] = ACTIONS(3411), + [aux_sym_string_token3] = ACTIONS(3411), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [803] = { + [ts_builtin_sym_end] = ACTIONS(2795), + [sym_identifier] = ACTIONS(2793), + [anon_sym_POUND] = ACTIONS(2795), + [anon_sym_package] = ACTIONS(2793), + [anon_sym_import] = ACTIONS(2793), + [anon_sym_STAR] = ACTIONS(2795), + [anon_sym_using] = ACTIONS(2793), + [anon_sym_throw] = ACTIONS(2793), + [anon_sym_LPAREN] = ACTIONS(2795), + [anon_sym_switch] = ACTIONS(2793), + [anon_sym_LBRACE] = ACTIONS(2795), + [anon_sym_cast] = ACTIONS(2793), + [anon_sym_DOLLARtype] = ACTIONS(2795), + [anon_sym_for] = ACTIONS(2793), + [anon_sym_return] = ACTIONS(2793), + [anon_sym_untyped] = ACTIONS(2793), + [anon_sym_break] = ACTIONS(2793), + [anon_sym_continue] = ACTIONS(2793), + [anon_sym_LBRACK] = ACTIONS(2795), + [anon_sym_this] = ACTIONS(2793), + [anon_sym_AT] = ACTIONS(2793), + [anon_sym_AT_COLON] = ACTIONS(2795), + [anon_sym_try] = ACTIONS(2793), + [anon_sym_catch] = ACTIONS(2793), + [anon_sym_else] = ACTIONS(2793), + [anon_sym_if] = ACTIONS(2793), + [anon_sym_while] = ACTIONS(2793), + [anon_sym_do] = ACTIONS(2793), + [anon_sym_new] = ACTIONS(2793), + [anon_sym_TILDE] = ACTIONS(2795), + [anon_sym_BANG] = ACTIONS(2793), + [anon_sym_DASH] = ACTIONS(2793), + [anon_sym_PLUS_PLUS] = ACTIONS(2795), + [anon_sym_DASH_DASH] = ACTIONS(2795), + [anon_sym_PERCENT] = ACTIONS(2795), + [anon_sym_SLASH] = ACTIONS(2793), + [anon_sym_PLUS] = ACTIONS(2793), + [anon_sym_LT_LT] = ACTIONS(2795), + [anon_sym_GT_GT] = ACTIONS(2793), + [anon_sym_GT_GT_GT] = ACTIONS(2795), + [anon_sym_AMP] = ACTIONS(2793), + [anon_sym_PIPE] = ACTIONS(2793), + [anon_sym_CARET] = ACTIONS(2795), + [anon_sym_AMP_AMP] = ACTIONS(2795), + [anon_sym_PIPE_PIPE] = ACTIONS(2795), + [anon_sym_EQ_EQ] = ACTIONS(2795), + [anon_sym_BANG_EQ] = ACTIONS(2795), + [anon_sym_LT] = ACTIONS(2793), + [anon_sym_LT_EQ] = ACTIONS(2795), + [anon_sym_GT] = ACTIONS(2793), + [anon_sym_GT_EQ] = ACTIONS(2795), + [anon_sym_EQ_GT] = ACTIONS(2795), + [anon_sym_QMARK_QMARK] = ACTIONS(2795), + [anon_sym_EQ] = ACTIONS(2793), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2795), + [anon_sym_null] = ACTIONS(2793), + [anon_sym_macro] = ACTIONS(2793), + [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_static] = ACTIONS(2793), + [anon_sym_public] = ACTIONS(2793), + [anon_sym_private] = ACTIONS(2793), + [anon_sym_extern] = ACTIONS(2793), + [anon_sym_inline] = ACTIONS(2793), + [anon_sym_overload] = ACTIONS(2793), + [anon_sym_override] = ACTIONS(2793), + [anon_sym_final] = ACTIONS(2793), + [anon_sym_class] = ACTIONS(2793), + [anon_sym_interface] = ACTIONS(2793), + [anon_sym_enum] = ACTIONS(2793), + [anon_sym_typedef] = ACTIONS(2793), + [anon_sym_function] = ACTIONS(2793), + [anon_sym_var] = ACTIONS(2793), + [aux_sym_integer_token1] = ACTIONS(2793), + [aux_sym_integer_token2] = ACTIONS(2795), + [aux_sym_float_token1] = ACTIONS(2793), + [aux_sym_float_token2] = ACTIONS(2795), + [anon_sym_true] = ACTIONS(2793), + [anon_sym_false] = ACTIONS(2793), + [aux_sym_string_token1] = ACTIONS(2795), + [aux_sym_string_token3] = ACTIONS(2795), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [804] = { + [ts_builtin_sym_end] = ACTIONS(2799), + [sym_identifier] = ACTIONS(2797), + [anon_sym_POUND] = ACTIONS(2799), + [anon_sym_package] = ACTIONS(2797), + [anon_sym_import] = ACTIONS(2797), + [anon_sym_STAR] = ACTIONS(2799), + [anon_sym_using] = ACTIONS(2797), + [anon_sym_throw] = ACTIONS(2797), + [anon_sym_LPAREN] = ACTIONS(2799), + [anon_sym_switch] = ACTIONS(2797), + [anon_sym_LBRACE] = ACTIONS(2799), + [anon_sym_cast] = ACTIONS(2797), + [anon_sym_DOLLARtype] = ACTIONS(2799), + [anon_sym_for] = ACTIONS(2797), + [anon_sym_return] = ACTIONS(2797), + [anon_sym_untyped] = ACTIONS(2797), + [anon_sym_break] = ACTIONS(2797), + [anon_sym_continue] = ACTIONS(2797), + [anon_sym_LBRACK] = ACTIONS(2799), + [anon_sym_this] = ACTIONS(2797), + [anon_sym_AT] = ACTIONS(2797), + [anon_sym_AT_COLON] = ACTIONS(2799), + [anon_sym_try] = ACTIONS(2797), + [anon_sym_catch] = ACTIONS(2797), + [anon_sym_else] = ACTIONS(2797), + [anon_sym_if] = ACTIONS(2797), + [anon_sym_while] = ACTIONS(2797), + [anon_sym_do] = ACTIONS(2797), + [anon_sym_new] = ACTIONS(2797), + [anon_sym_TILDE] = ACTIONS(2799), + [anon_sym_BANG] = ACTIONS(2797), + [anon_sym_DASH] = ACTIONS(2797), + [anon_sym_PLUS_PLUS] = ACTIONS(2799), + [anon_sym_DASH_DASH] = ACTIONS(2799), + [anon_sym_PERCENT] = ACTIONS(2799), + [anon_sym_SLASH] = ACTIONS(2797), + [anon_sym_PLUS] = ACTIONS(2797), + [anon_sym_LT_LT] = ACTIONS(2799), + [anon_sym_GT_GT] = ACTIONS(2797), + [anon_sym_GT_GT_GT] = ACTIONS(2799), + [anon_sym_AMP] = ACTIONS(2797), + [anon_sym_PIPE] = ACTIONS(2797), + [anon_sym_CARET] = ACTIONS(2799), + [anon_sym_AMP_AMP] = ACTIONS(2799), + [anon_sym_PIPE_PIPE] = ACTIONS(2799), + [anon_sym_EQ_EQ] = ACTIONS(2799), + [anon_sym_BANG_EQ] = ACTIONS(2799), + [anon_sym_LT] = ACTIONS(2797), + [anon_sym_LT_EQ] = ACTIONS(2799), + [anon_sym_GT] = ACTIONS(2797), + [anon_sym_GT_EQ] = ACTIONS(2799), + [anon_sym_EQ_GT] = ACTIONS(2799), + [anon_sym_QMARK_QMARK] = ACTIONS(2799), + [anon_sym_EQ] = ACTIONS(2797), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2799), + [anon_sym_null] = ACTIONS(2797), + [anon_sym_macro] = ACTIONS(2797), + [anon_sym_abstract] = ACTIONS(2797), + [anon_sym_static] = ACTIONS(2797), + [anon_sym_public] = ACTIONS(2797), + [anon_sym_private] = ACTIONS(2797), + [anon_sym_extern] = ACTIONS(2797), + [anon_sym_inline] = ACTIONS(2797), + [anon_sym_overload] = ACTIONS(2797), + [anon_sym_override] = ACTIONS(2797), + [anon_sym_final] = ACTIONS(2797), + [anon_sym_class] = ACTIONS(2797), + [anon_sym_interface] = ACTIONS(2797), + [anon_sym_enum] = ACTIONS(2797), + [anon_sym_typedef] = ACTIONS(2797), + [anon_sym_function] = ACTIONS(2797), + [anon_sym_var] = ACTIONS(2797), + [aux_sym_integer_token1] = ACTIONS(2797), + [aux_sym_integer_token2] = ACTIONS(2799), + [aux_sym_float_token1] = ACTIONS(2797), + [aux_sym_float_token2] = ACTIONS(2799), + [anon_sym_true] = ACTIONS(2797), + [anon_sym_false] = ACTIONS(2797), + [aux_sym_string_token1] = ACTIONS(2799), + [aux_sym_string_token3] = ACTIONS(2799), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [805] = { + [ts_builtin_sym_end] = ACTIONS(3415), + [sym_identifier] = ACTIONS(3413), + [anon_sym_POUND] = ACTIONS(3415), + [anon_sym_package] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_STAR] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_cast] = ACTIONS(3413), + [anon_sym_DOLLARtype] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_untyped] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_this] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_AT_COLON] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_catch] = ACTIONS(3413), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), + [anon_sym_PERCENT] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_LT_LT] = ACTIONS(3415), + [anon_sym_GT_GT] = ACTIONS(3413), + [anon_sym_GT_GT_GT] = ACTIONS(3415), + [anon_sym_AMP] = ACTIONS(3413), + [anon_sym_PIPE] = ACTIONS(3413), + [anon_sym_CARET] = ACTIONS(3415), + [anon_sym_AMP_AMP] = ACTIONS(3415), + [anon_sym_PIPE_PIPE] = ACTIONS(3415), + [anon_sym_EQ_EQ] = ACTIONS(3415), + [anon_sym_BANG_EQ] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_LT_EQ] = ACTIONS(3415), + [anon_sym_GT] = ACTIONS(3413), + [anon_sym_GT_EQ] = ACTIONS(3415), + [anon_sym_EQ_GT] = ACTIONS(3415), + [anon_sym_QMARK_QMARK] = ACTIONS(3415), + [anon_sym_EQ] = ACTIONS(3413), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3415), + [anon_sym_null] = ACTIONS(3413), + [anon_sym_macro] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_extern] = ACTIONS(3413), + [anon_sym_inline] = ACTIONS(3413), + [anon_sym_overload] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_final] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), + [anon_sym_typedef] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [aux_sym_integer_token1] = ACTIONS(3413), + [aux_sym_integer_token2] = ACTIONS(3415), + [aux_sym_float_token1] = ACTIONS(3413), + [aux_sym_float_token2] = ACTIONS(3415), + [anon_sym_true] = ACTIONS(3413), + [anon_sym_false] = ACTIONS(3413), + [aux_sym_string_token1] = ACTIONS(3415), + [aux_sym_string_token3] = ACTIONS(3415), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [806] = { + [ts_builtin_sym_end] = ACTIONS(2871), + [sym_identifier] = ACTIONS(2869), + [anon_sym_POUND] = ACTIONS(2871), + [anon_sym_package] = ACTIONS(2869), + [anon_sym_import] = ACTIONS(2869), + [anon_sym_STAR] = ACTIONS(2871), + [anon_sym_using] = ACTIONS(2869), + [anon_sym_throw] = ACTIONS(2869), + [anon_sym_LPAREN] = ACTIONS(2871), + [anon_sym_switch] = ACTIONS(2869), + [anon_sym_LBRACE] = ACTIONS(2871), + [anon_sym_cast] = ACTIONS(2869), + [anon_sym_DOLLARtype] = ACTIONS(2871), + [anon_sym_for] = ACTIONS(2869), + [anon_sym_return] = ACTIONS(2869), + [anon_sym_untyped] = ACTIONS(2869), + [anon_sym_break] = ACTIONS(2869), + [anon_sym_continue] = ACTIONS(2869), + [anon_sym_LBRACK] = ACTIONS(2871), + [anon_sym_this] = ACTIONS(2869), + [anon_sym_AT] = ACTIONS(2869), + [anon_sym_AT_COLON] = ACTIONS(2871), + [anon_sym_try] = ACTIONS(2869), + [anon_sym_catch] = ACTIONS(2869), + [anon_sym_else] = ACTIONS(2869), + [anon_sym_if] = ACTIONS(2869), + [anon_sym_while] = ACTIONS(2869), + [anon_sym_do] = ACTIONS(2869), + [anon_sym_new] = ACTIONS(2869), + [anon_sym_TILDE] = ACTIONS(2871), + [anon_sym_BANG] = ACTIONS(2869), + [anon_sym_DASH] = ACTIONS(2869), + [anon_sym_PLUS_PLUS] = ACTIONS(2871), + [anon_sym_DASH_DASH] = ACTIONS(2871), + [anon_sym_PERCENT] = ACTIONS(2871), + [anon_sym_SLASH] = ACTIONS(2869), + [anon_sym_PLUS] = ACTIONS(2869), + [anon_sym_LT_LT] = ACTIONS(2871), + [anon_sym_GT_GT] = ACTIONS(2869), + [anon_sym_GT_GT_GT] = ACTIONS(2871), + [anon_sym_AMP] = ACTIONS(2869), + [anon_sym_PIPE] = ACTIONS(2869), + [anon_sym_CARET] = ACTIONS(2871), + [anon_sym_AMP_AMP] = ACTIONS(2871), + [anon_sym_PIPE_PIPE] = ACTIONS(2871), + [anon_sym_EQ_EQ] = ACTIONS(2871), + [anon_sym_BANG_EQ] = ACTIONS(2871), + [anon_sym_LT] = ACTIONS(2869), + [anon_sym_LT_EQ] = ACTIONS(2871), + [anon_sym_GT] = ACTIONS(2869), + [anon_sym_GT_EQ] = ACTIONS(2871), + [anon_sym_EQ_GT] = ACTIONS(2871), + [anon_sym_QMARK_QMARK] = ACTIONS(2871), + [anon_sym_EQ] = ACTIONS(2869), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2871), + [anon_sym_null] = ACTIONS(2869), + [anon_sym_macro] = ACTIONS(2869), + [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_static] = ACTIONS(2869), + [anon_sym_public] = ACTIONS(2869), + [anon_sym_private] = ACTIONS(2869), + [anon_sym_extern] = ACTIONS(2869), + [anon_sym_inline] = ACTIONS(2869), + [anon_sym_overload] = ACTIONS(2869), + [anon_sym_override] = ACTIONS(2869), + [anon_sym_final] = ACTIONS(2869), + [anon_sym_class] = ACTIONS(2869), + [anon_sym_interface] = ACTIONS(2869), + [anon_sym_enum] = ACTIONS(2869), + [anon_sym_typedef] = ACTIONS(2869), + [anon_sym_function] = ACTIONS(2869), + [anon_sym_var] = ACTIONS(2869), + [aux_sym_integer_token1] = ACTIONS(2869), + [aux_sym_integer_token2] = ACTIONS(2871), + [aux_sym_float_token1] = ACTIONS(2869), + [aux_sym_float_token2] = ACTIONS(2871), + [anon_sym_true] = ACTIONS(2869), + [anon_sym_false] = ACTIONS(2869), + [aux_sym_string_token1] = ACTIONS(2871), + [aux_sym_string_token3] = ACTIONS(2871), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [807] = { + [ts_builtin_sym_end] = ACTIONS(2803), + [sym_identifier] = ACTIONS(2801), + [anon_sym_POUND] = ACTIONS(2803), + [anon_sym_package] = ACTIONS(2801), + [anon_sym_import] = ACTIONS(2801), + [anon_sym_STAR] = ACTIONS(2803), + [anon_sym_using] = ACTIONS(2801), + [anon_sym_throw] = ACTIONS(2801), + [anon_sym_LPAREN] = ACTIONS(2803), + [anon_sym_switch] = ACTIONS(2801), + [anon_sym_LBRACE] = ACTIONS(2803), + [anon_sym_cast] = ACTIONS(2801), + [anon_sym_DOLLARtype] = ACTIONS(2803), + [anon_sym_for] = ACTIONS(2801), + [anon_sym_return] = ACTIONS(2801), + [anon_sym_untyped] = ACTIONS(2801), + [anon_sym_break] = ACTIONS(2801), + [anon_sym_continue] = ACTIONS(2801), + [anon_sym_LBRACK] = ACTIONS(2803), + [anon_sym_this] = ACTIONS(2801), + [anon_sym_AT] = ACTIONS(2801), + [anon_sym_AT_COLON] = ACTIONS(2803), + [anon_sym_try] = ACTIONS(2801), + [anon_sym_catch] = ACTIONS(2801), + [anon_sym_else] = ACTIONS(2801), + [anon_sym_if] = ACTIONS(2801), + [anon_sym_while] = ACTIONS(2801), + [anon_sym_do] = ACTIONS(2801), + [anon_sym_new] = ACTIONS(2801), + [anon_sym_TILDE] = ACTIONS(2803), + [anon_sym_BANG] = ACTIONS(2801), + [anon_sym_DASH] = ACTIONS(2801), + [anon_sym_PLUS_PLUS] = ACTIONS(2803), + [anon_sym_DASH_DASH] = ACTIONS(2803), + [anon_sym_PERCENT] = ACTIONS(2803), + [anon_sym_SLASH] = ACTIONS(2801), + [anon_sym_PLUS] = ACTIONS(2801), + [anon_sym_LT_LT] = ACTIONS(2803), + [anon_sym_GT_GT] = ACTIONS(2801), + [anon_sym_GT_GT_GT] = ACTIONS(2803), + [anon_sym_AMP] = ACTIONS(2801), + [anon_sym_PIPE] = ACTIONS(2801), + [anon_sym_CARET] = ACTIONS(2803), + [anon_sym_AMP_AMP] = ACTIONS(2803), + [anon_sym_PIPE_PIPE] = ACTIONS(2803), + [anon_sym_EQ_EQ] = ACTIONS(2803), + [anon_sym_BANG_EQ] = ACTIONS(2803), + [anon_sym_LT] = ACTIONS(2801), + [anon_sym_LT_EQ] = ACTIONS(2803), + [anon_sym_GT] = ACTIONS(2801), + [anon_sym_GT_EQ] = ACTIONS(2803), + [anon_sym_EQ_GT] = ACTIONS(2803), + [anon_sym_QMARK_QMARK] = ACTIONS(2803), + [anon_sym_EQ] = ACTIONS(2801), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2803), + [anon_sym_null] = ACTIONS(2801), + [anon_sym_macro] = ACTIONS(2801), + [anon_sym_abstract] = ACTIONS(2801), + [anon_sym_static] = ACTIONS(2801), + [anon_sym_public] = ACTIONS(2801), + [anon_sym_private] = ACTIONS(2801), + [anon_sym_extern] = ACTIONS(2801), + [anon_sym_inline] = ACTIONS(2801), + [anon_sym_overload] = ACTIONS(2801), + [anon_sym_override] = ACTIONS(2801), + [anon_sym_final] = ACTIONS(2801), + [anon_sym_class] = ACTIONS(2801), + [anon_sym_interface] = ACTIONS(2801), + [anon_sym_enum] = ACTIONS(2801), + [anon_sym_typedef] = ACTIONS(2801), + [anon_sym_function] = ACTIONS(2801), + [anon_sym_var] = ACTIONS(2801), + [aux_sym_integer_token1] = ACTIONS(2801), + [aux_sym_integer_token2] = ACTIONS(2803), + [aux_sym_float_token1] = ACTIONS(2801), + [aux_sym_float_token2] = ACTIONS(2803), + [anon_sym_true] = ACTIONS(2801), + [anon_sym_false] = ACTIONS(2801), + [aux_sym_string_token1] = ACTIONS(2803), + [aux_sym_string_token3] = ACTIONS(2803), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [808] = { + [ts_builtin_sym_end] = ACTIONS(3419), + [sym_identifier] = ACTIONS(3417), + [anon_sym_POUND] = ACTIONS(3419), + [anon_sym_package] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_STAR] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_cast] = ACTIONS(3417), + [anon_sym_DOLLARtype] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_untyped] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_this] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_AT_COLON] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_catch] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [anon_sym_PERCENT] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_LT_LT] = ACTIONS(3419), + [anon_sym_GT_GT] = ACTIONS(3417), + [anon_sym_GT_GT_GT] = ACTIONS(3419), + [anon_sym_AMP] = ACTIONS(3417), + [anon_sym_PIPE] = ACTIONS(3417), + [anon_sym_CARET] = ACTIONS(3419), + [anon_sym_AMP_AMP] = ACTIONS(3419), + [anon_sym_PIPE_PIPE] = ACTIONS(3419), + [anon_sym_EQ_EQ] = ACTIONS(3419), + [anon_sym_BANG_EQ] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_LT_EQ] = ACTIONS(3419), + [anon_sym_GT] = ACTIONS(3417), + [anon_sym_GT_EQ] = ACTIONS(3419), + [anon_sym_EQ_GT] = ACTIONS(3419), + [anon_sym_QMARK_QMARK] = ACTIONS(3419), + [anon_sym_EQ] = ACTIONS(3417), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3419), + [anon_sym_null] = ACTIONS(3417), + [anon_sym_macro] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_extern] = ACTIONS(3417), + [anon_sym_inline] = ACTIONS(3417), + [anon_sym_overload] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_final] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), + [anon_sym_typedef] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [aux_sym_integer_token1] = ACTIONS(3417), + [aux_sym_integer_token2] = ACTIONS(3419), + [aux_sym_float_token1] = ACTIONS(3417), + [aux_sym_float_token2] = ACTIONS(3419), + [anon_sym_true] = ACTIONS(3417), + [anon_sym_false] = ACTIONS(3417), + [aux_sym_string_token1] = ACTIONS(3419), + [aux_sym_string_token3] = ACTIONS(3419), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [809] = { + [ts_builtin_sym_end] = ACTIONS(2915), + [sym_identifier] = ACTIONS(2913), + [anon_sym_POUND] = ACTIONS(2915), + [anon_sym_package] = ACTIONS(2913), + [anon_sym_import] = ACTIONS(2913), + [anon_sym_STAR] = ACTIONS(2915), + [anon_sym_using] = ACTIONS(2913), + [anon_sym_throw] = ACTIONS(2913), + [anon_sym_LPAREN] = ACTIONS(2915), + [anon_sym_switch] = ACTIONS(2913), + [anon_sym_LBRACE] = ACTIONS(2915), + [anon_sym_cast] = ACTIONS(2913), + [anon_sym_DOLLARtype] = ACTIONS(2915), + [anon_sym_for] = ACTIONS(2913), + [anon_sym_return] = ACTIONS(2913), + [anon_sym_untyped] = ACTIONS(2913), + [anon_sym_break] = ACTIONS(2913), + [anon_sym_continue] = ACTIONS(2913), + [anon_sym_LBRACK] = ACTIONS(2915), + [anon_sym_this] = ACTIONS(2913), + [anon_sym_AT] = ACTIONS(2913), + [anon_sym_AT_COLON] = ACTIONS(2915), + [anon_sym_try] = ACTIONS(2913), + [anon_sym_catch] = ACTIONS(2913), + [anon_sym_else] = ACTIONS(2913), + [anon_sym_if] = ACTIONS(2913), + [anon_sym_while] = ACTIONS(2913), + [anon_sym_do] = ACTIONS(2913), + [anon_sym_new] = ACTIONS(2913), + [anon_sym_TILDE] = ACTIONS(2915), + [anon_sym_BANG] = ACTIONS(2913), + [anon_sym_DASH] = ACTIONS(2913), + [anon_sym_PLUS_PLUS] = ACTIONS(2915), + [anon_sym_DASH_DASH] = ACTIONS(2915), + [anon_sym_PERCENT] = ACTIONS(2915), + [anon_sym_SLASH] = ACTIONS(2913), + [anon_sym_PLUS] = ACTIONS(2913), + [anon_sym_LT_LT] = ACTIONS(2915), + [anon_sym_GT_GT] = ACTIONS(2913), + [anon_sym_GT_GT_GT] = ACTIONS(2915), + [anon_sym_AMP] = ACTIONS(2913), + [anon_sym_PIPE] = ACTIONS(2913), + [anon_sym_CARET] = ACTIONS(2915), + [anon_sym_AMP_AMP] = ACTIONS(2915), + [anon_sym_PIPE_PIPE] = ACTIONS(2915), + [anon_sym_EQ_EQ] = ACTIONS(2915), + [anon_sym_BANG_EQ] = ACTIONS(2915), + [anon_sym_LT] = ACTIONS(2913), + [anon_sym_LT_EQ] = ACTIONS(2915), + [anon_sym_GT] = ACTIONS(2913), + [anon_sym_GT_EQ] = ACTIONS(2915), + [anon_sym_EQ_GT] = ACTIONS(2915), + [anon_sym_QMARK_QMARK] = ACTIONS(2915), + [anon_sym_EQ] = ACTIONS(2913), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2915), + [anon_sym_null] = ACTIONS(2913), + [anon_sym_macro] = ACTIONS(2913), + [anon_sym_abstract] = ACTIONS(2913), + [anon_sym_static] = ACTIONS(2913), + [anon_sym_public] = ACTIONS(2913), + [anon_sym_private] = ACTIONS(2913), + [anon_sym_extern] = ACTIONS(2913), + [anon_sym_inline] = ACTIONS(2913), + [anon_sym_overload] = ACTIONS(2913), + [anon_sym_override] = ACTIONS(2913), + [anon_sym_final] = ACTIONS(2913), + [anon_sym_class] = ACTIONS(2913), + [anon_sym_interface] = ACTIONS(2913), + [anon_sym_enum] = ACTIONS(2913), + [anon_sym_typedef] = ACTIONS(2913), + [anon_sym_function] = ACTIONS(2913), + [anon_sym_var] = ACTIONS(2913), + [aux_sym_integer_token1] = ACTIONS(2913), + [aux_sym_integer_token2] = ACTIONS(2915), + [aux_sym_float_token1] = ACTIONS(2913), + [aux_sym_float_token2] = ACTIONS(2915), + [anon_sym_true] = ACTIONS(2913), + [anon_sym_false] = ACTIONS(2913), + [aux_sym_string_token1] = ACTIONS(2915), + [aux_sym_string_token3] = ACTIONS(2915), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [810] = { + [ts_builtin_sym_end] = ACTIONS(2919), + [sym_identifier] = ACTIONS(2917), + [anon_sym_POUND] = ACTIONS(2919), + [anon_sym_package] = ACTIONS(2917), + [anon_sym_import] = ACTIONS(2917), + [anon_sym_STAR] = ACTIONS(2919), + [anon_sym_using] = ACTIONS(2917), + [anon_sym_throw] = ACTIONS(2917), + [anon_sym_LPAREN] = ACTIONS(2919), + [anon_sym_switch] = ACTIONS(2917), + [anon_sym_LBRACE] = ACTIONS(2919), + [anon_sym_cast] = ACTIONS(2917), + [anon_sym_DOLLARtype] = ACTIONS(2919), + [anon_sym_for] = ACTIONS(2917), + [anon_sym_return] = ACTIONS(2917), + [anon_sym_untyped] = ACTIONS(2917), + [anon_sym_break] = ACTIONS(2917), + [anon_sym_continue] = ACTIONS(2917), + [anon_sym_LBRACK] = ACTIONS(2919), + [anon_sym_this] = ACTIONS(2917), + [anon_sym_AT] = ACTIONS(2917), + [anon_sym_AT_COLON] = ACTIONS(2919), + [anon_sym_try] = ACTIONS(2917), + [anon_sym_catch] = ACTIONS(2917), + [anon_sym_else] = ACTIONS(2917), + [anon_sym_if] = ACTIONS(2917), + [anon_sym_while] = ACTIONS(2917), + [anon_sym_do] = ACTIONS(2917), + [anon_sym_new] = ACTIONS(2917), + [anon_sym_TILDE] = ACTIONS(2919), + [anon_sym_BANG] = ACTIONS(2917), + [anon_sym_DASH] = ACTIONS(2917), + [anon_sym_PLUS_PLUS] = ACTIONS(2919), + [anon_sym_DASH_DASH] = ACTIONS(2919), + [anon_sym_PERCENT] = ACTIONS(2919), + [anon_sym_SLASH] = ACTIONS(2917), + [anon_sym_PLUS] = ACTIONS(2917), + [anon_sym_LT_LT] = ACTIONS(2919), + [anon_sym_GT_GT] = ACTIONS(2917), + [anon_sym_GT_GT_GT] = ACTIONS(2919), + [anon_sym_AMP] = ACTIONS(2917), + [anon_sym_PIPE] = ACTIONS(2917), + [anon_sym_CARET] = ACTIONS(2919), + [anon_sym_AMP_AMP] = ACTIONS(2919), + [anon_sym_PIPE_PIPE] = ACTIONS(2919), + [anon_sym_EQ_EQ] = ACTIONS(2919), + [anon_sym_BANG_EQ] = ACTIONS(2919), + [anon_sym_LT] = ACTIONS(2917), + [anon_sym_LT_EQ] = ACTIONS(2919), + [anon_sym_GT] = ACTIONS(2917), + [anon_sym_GT_EQ] = ACTIONS(2919), + [anon_sym_EQ_GT] = ACTIONS(2919), + [anon_sym_QMARK_QMARK] = ACTIONS(2919), + [anon_sym_EQ] = ACTIONS(2917), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2919), + [anon_sym_null] = ACTIONS(2917), + [anon_sym_macro] = ACTIONS(2917), + [anon_sym_abstract] = ACTIONS(2917), + [anon_sym_static] = ACTIONS(2917), + [anon_sym_public] = ACTIONS(2917), + [anon_sym_private] = ACTIONS(2917), + [anon_sym_extern] = ACTIONS(2917), + [anon_sym_inline] = ACTIONS(2917), + [anon_sym_overload] = ACTIONS(2917), + [anon_sym_override] = ACTIONS(2917), + [anon_sym_final] = ACTIONS(2917), + [anon_sym_class] = ACTIONS(2917), + [anon_sym_interface] = ACTIONS(2917), + [anon_sym_enum] = ACTIONS(2917), + [anon_sym_typedef] = ACTIONS(2917), + [anon_sym_function] = ACTIONS(2917), + [anon_sym_var] = ACTIONS(2917), + [aux_sym_integer_token1] = ACTIONS(2917), + [aux_sym_integer_token2] = ACTIONS(2919), + [aux_sym_float_token1] = ACTIONS(2917), + [aux_sym_float_token2] = ACTIONS(2919), + [anon_sym_true] = ACTIONS(2917), + [anon_sym_false] = ACTIONS(2917), + [aux_sym_string_token1] = ACTIONS(2919), + [aux_sym_string_token3] = ACTIONS(2919), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [811] = { + [ts_builtin_sym_end] = ACTIONS(2923), + [sym_identifier] = ACTIONS(2921), + [anon_sym_POUND] = ACTIONS(2923), + [anon_sym_package] = ACTIONS(2921), + [anon_sym_import] = ACTIONS(2921), + [anon_sym_STAR] = ACTIONS(2923), + [anon_sym_using] = ACTIONS(2921), + [anon_sym_throw] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2923), + [anon_sym_switch] = ACTIONS(2921), + [anon_sym_LBRACE] = ACTIONS(2923), + [anon_sym_cast] = ACTIONS(2921), + [anon_sym_DOLLARtype] = ACTIONS(2923), + [anon_sym_for] = ACTIONS(2921), + [anon_sym_return] = ACTIONS(2921), + [anon_sym_untyped] = ACTIONS(2921), + [anon_sym_break] = ACTIONS(2921), + [anon_sym_continue] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2923), + [anon_sym_this] = ACTIONS(2921), + [anon_sym_AT] = ACTIONS(2921), + [anon_sym_AT_COLON] = ACTIONS(2923), + [anon_sym_try] = ACTIONS(2921), + [anon_sym_catch] = ACTIONS(2921), + [anon_sym_else] = ACTIONS(2921), + [anon_sym_if] = ACTIONS(2921), + [anon_sym_while] = ACTIONS(2921), + [anon_sym_do] = ACTIONS(2921), + [anon_sym_new] = ACTIONS(2921), + [anon_sym_TILDE] = ACTIONS(2923), + [anon_sym_BANG] = ACTIONS(2921), + [anon_sym_DASH] = ACTIONS(2921), + [anon_sym_PLUS_PLUS] = ACTIONS(2923), + [anon_sym_DASH_DASH] = ACTIONS(2923), + [anon_sym_PERCENT] = ACTIONS(2923), + [anon_sym_SLASH] = ACTIONS(2921), + [anon_sym_PLUS] = ACTIONS(2921), + [anon_sym_LT_LT] = ACTIONS(2923), + [anon_sym_GT_GT] = ACTIONS(2921), + [anon_sym_GT_GT_GT] = ACTIONS(2923), + [anon_sym_AMP] = ACTIONS(2921), + [anon_sym_PIPE] = ACTIONS(2921), + [anon_sym_CARET] = ACTIONS(2923), + [anon_sym_AMP_AMP] = ACTIONS(2923), + [anon_sym_PIPE_PIPE] = ACTIONS(2923), + [anon_sym_EQ_EQ] = ACTIONS(2923), + [anon_sym_BANG_EQ] = ACTIONS(2923), + [anon_sym_LT] = ACTIONS(2921), + [anon_sym_LT_EQ] = ACTIONS(2923), + [anon_sym_GT] = ACTIONS(2921), + [anon_sym_GT_EQ] = ACTIONS(2923), + [anon_sym_EQ_GT] = ACTIONS(2923), + [anon_sym_QMARK_QMARK] = ACTIONS(2923), + [anon_sym_EQ] = ACTIONS(2921), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2923), + [anon_sym_null] = ACTIONS(2921), + [anon_sym_macro] = ACTIONS(2921), + [anon_sym_abstract] = ACTIONS(2921), + [anon_sym_static] = ACTIONS(2921), + [anon_sym_public] = ACTIONS(2921), + [anon_sym_private] = ACTIONS(2921), + [anon_sym_extern] = ACTIONS(2921), + [anon_sym_inline] = ACTIONS(2921), + [anon_sym_overload] = ACTIONS(2921), + [anon_sym_override] = ACTIONS(2921), + [anon_sym_final] = ACTIONS(2921), + [anon_sym_class] = ACTIONS(2921), + [anon_sym_interface] = ACTIONS(2921), + [anon_sym_enum] = ACTIONS(2921), + [anon_sym_typedef] = ACTIONS(2921), + [anon_sym_function] = ACTIONS(2921), + [anon_sym_var] = ACTIONS(2921), + [aux_sym_integer_token1] = ACTIONS(2921), + [aux_sym_integer_token2] = ACTIONS(2923), + [aux_sym_float_token1] = ACTIONS(2921), + [aux_sym_float_token2] = ACTIONS(2923), + [anon_sym_true] = ACTIONS(2921), + [anon_sym_false] = ACTIONS(2921), + [aux_sym_string_token1] = ACTIONS(2923), + [aux_sym_string_token3] = ACTIONS(2923), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [812] = { + [ts_builtin_sym_end] = ACTIONS(2927), + [sym_identifier] = ACTIONS(2925), + [anon_sym_POUND] = ACTIONS(2927), + [anon_sym_package] = ACTIONS(2925), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_STAR] = ACTIONS(2927), + [anon_sym_using] = ACTIONS(2925), + [anon_sym_throw] = ACTIONS(2925), + [anon_sym_LPAREN] = ACTIONS(2927), + [anon_sym_switch] = ACTIONS(2925), + [anon_sym_LBRACE] = ACTIONS(2927), + [anon_sym_cast] = ACTIONS(2925), + [anon_sym_DOLLARtype] = ACTIONS(2927), + [anon_sym_for] = ACTIONS(2925), + [anon_sym_return] = ACTIONS(2925), + [anon_sym_untyped] = ACTIONS(2925), + [anon_sym_break] = ACTIONS(2925), + [anon_sym_continue] = ACTIONS(2925), + [anon_sym_LBRACK] = ACTIONS(2927), + [anon_sym_this] = ACTIONS(2925), + [anon_sym_AT] = ACTIONS(2925), + [anon_sym_AT_COLON] = ACTIONS(2927), + [anon_sym_try] = ACTIONS(2925), + [anon_sym_catch] = ACTIONS(2925), + [anon_sym_else] = ACTIONS(2925), + [anon_sym_if] = ACTIONS(2925), + [anon_sym_while] = ACTIONS(2925), + [anon_sym_do] = ACTIONS(2925), + [anon_sym_new] = ACTIONS(2925), + [anon_sym_TILDE] = ACTIONS(2927), + [anon_sym_BANG] = ACTIONS(2925), + [anon_sym_DASH] = ACTIONS(2925), + [anon_sym_PLUS_PLUS] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2927), + [anon_sym_PERCENT] = ACTIONS(2927), + [anon_sym_SLASH] = ACTIONS(2925), + [anon_sym_PLUS] = ACTIONS(2925), + [anon_sym_LT_LT] = ACTIONS(2927), + [anon_sym_GT_GT] = ACTIONS(2925), + [anon_sym_GT_GT_GT] = ACTIONS(2927), + [anon_sym_AMP] = ACTIONS(2925), + [anon_sym_PIPE] = ACTIONS(2925), + [anon_sym_CARET] = ACTIONS(2927), + [anon_sym_AMP_AMP] = ACTIONS(2927), + [anon_sym_PIPE_PIPE] = ACTIONS(2927), + [anon_sym_EQ_EQ] = ACTIONS(2927), + [anon_sym_BANG_EQ] = ACTIONS(2927), + [anon_sym_LT] = ACTIONS(2925), + [anon_sym_LT_EQ] = ACTIONS(2927), + [anon_sym_GT] = ACTIONS(2925), + [anon_sym_GT_EQ] = ACTIONS(2927), + [anon_sym_EQ_GT] = ACTIONS(2927), + [anon_sym_QMARK_QMARK] = ACTIONS(2927), + [anon_sym_EQ] = ACTIONS(2925), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2927), + [anon_sym_null] = ACTIONS(2925), + [anon_sym_macro] = ACTIONS(2925), + [anon_sym_abstract] = ACTIONS(2925), + [anon_sym_static] = ACTIONS(2925), + [anon_sym_public] = ACTIONS(2925), + [anon_sym_private] = ACTIONS(2925), + [anon_sym_extern] = ACTIONS(2925), + [anon_sym_inline] = ACTIONS(2925), + [anon_sym_overload] = ACTIONS(2925), + [anon_sym_override] = ACTIONS(2925), + [anon_sym_final] = ACTIONS(2925), + [anon_sym_class] = ACTIONS(2925), + [anon_sym_interface] = ACTIONS(2925), + [anon_sym_enum] = ACTIONS(2925), + [anon_sym_typedef] = ACTIONS(2925), + [anon_sym_function] = ACTIONS(2925), + [anon_sym_var] = ACTIONS(2925), + [aux_sym_integer_token1] = ACTIONS(2925), + [aux_sym_integer_token2] = ACTIONS(2927), + [aux_sym_float_token1] = ACTIONS(2925), + [aux_sym_float_token2] = ACTIONS(2927), + [anon_sym_true] = ACTIONS(2925), + [anon_sym_false] = ACTIONS(2925), + [aux_sym_string_token1] = ACTIONS(2927), + [aux_sym_string_token3] = ACTIONS(2927), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [813] = { + [ts_builtin_sym_end] = ACTIONS(2807), + [sym_identifier] = ACTIONS(2805), + [anon_sym_POUND] = ACTIONS(2807), + [anon_sym_package] = ACTIONS(2805), + [anon_sym_import] = ACTIONS(2805), + [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_using] = ACTIONS(2805), + [anon_sym_throw] = ACTIONS(2805), + [anon_sym_LPAREN] = ACTIONS(2807), + [anon_sym_switch] = ACTIONS(2805), + [anon_sym_LBRACE] = ACTIONS(2807), + [anon_sym_cast] = ACTIONS(2805), + [anon_sym_DOLLARtype] = ACTIONS(2807), + [anon_sym_for] = ACTIONS(2805), + [anon_sym_return] = ACTIONS(2805), + [anon_sym_untyped] = ACTIONS(2805), + [anon_sym_break] = ACTIONS(2805), + [anon_sym_continue] = ACTIONS(2805), + [anon_sym_LBRACK] = ACTIONS(2807), + [anon_sym_this] = ACTIONS(2805), + [anon_sym_AT] = ACTIONS(2805), + [anon_sym_AT_COLON] = ACTIONS(2807), + [anon_sym_try] = ACTIONS(2805), + [anon_sym_catch] = ACTIONS(2805), + [anon_sym_else] = ACTIONS(2805), + [anon_sym_if] = ACTIONS(2805), + [anon_sym_while] = ACTIONS(2805), + [anon_sym_do] = ACTIONS(2805), + [anon_sym_new] = ACTIONS(2805), + [anon_sym_TILDE] = ACTIONS(2807), + [anon_sym_BANG] = ACTIONS(2805), + [anon_sym_DASH] = ACTIONS(2805), + [anon_sym_PLUS_PLUS] = ACTIONS(2807), + [anon_sym_DASH_DASH] = ACTIONS(2807), + [anon_sym_PERCENT] = ACTIONS(2807), + [anon_sym_SLASH] = ACTIONS(2805), + [anon_sym_PLUS] = ACTIONS(2805), + [anon_sym_LT_LT] = ACTIONS(2807), + [anon_sym_GT_GT] = ACTIONS(2805), + [anon_sym_GT_GT_GT] = ACTIONS(2807), + [anon_sym_AMP] = ACTIONS(2805), + [anon_sym_PIPE] = ACTIONS(2805), + [anon_sym_CARET] = ACTIONS(2807), + [anon_sym_AMP_AMP] = ACTIONS(2807), + [anon_sym_PIPE_PIPE] = ACTIONS(2807), + [anon_sym_EQ_EQ] = ACTIONS(2807), + [anon_sym_BANG_EQ] = ACTIONS(2807), + [anon_sym_LT] = ACTIONS(2805), + [anon_sym_LT_EQ] = ACTIONS(2807), + [anon_sym_GT] = ACTIONS(2805), + [anon_sym_GT_EQ] = ACTIONS(2807), + [anon_sym_EQ_GT] = ACTIONS(2807), + [anon_sym_QMARK_QMARK] = ACTIONS(2807), + [anon_sym_EQ] = ACTIONS(2805), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2807), + [anon_sym_null] = ACTIONS(2805), + [anon_sym_macro] = ACTIONS(2805), + [anon_sym_abstract] = ACTIONS(2805), + [anon_sym_static] = ACTIONS(2805), + [anon_sym_public] = ACTIONS(2805), + [anon_sym_private] = ACTIONS(2805), + [anon_sym_extern] = ACTIONS(2805), + [anon_sym_inline] = ACTIONS(2805), + [anon_sym_overload] = ACTIONS(2805), + [anon_sym_override] = ACTIONS(2805), + [anon_sym_final] = ACTIONS(2805), + [anon_sym_class] = ACTIONS(2805), + [anon_sym_interface] = ACTIONS(2805), + [anon_sym_enum] = ACTIONS(2805), + [anon_sym_typedef] = ACTIONS(2805), + [anon_sym_function] = ACTIONS(2805), + [anon_sym_var] = ACTIONS(2805), + [aux_sym_integer_token1] = ACTIONS(2805), + [aux_sym_integer_token2] = ACTIONS(2807), + [aux_sym_float_token1] = ACTIONS(2805), + [aux_sym_float_token2] = ACTIONS(2807), + [anon_sym_true] = ACTIONS(2805), + [anon_sym_false] = ACTIONS(2805), + [aux_sym_string_token1] = ACTIONS(2807), + [aux_sym_string_token3] = ACTIONS(2807), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [814] = { + [ts_builtin_sym_end] = ACTIONS(2635), + [sym_identifier] = ACTIONS(2633), + [anon_sym_POUND] = ACTIONS(2635), + [anon_sym_package] = ACTIONS(2633), + [anon_sym_import] = ACTIONS(2633), + [anon_sym_STAR] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(2633), + [anon_sym_throw] = ACTIONS(2633), + [anon_sym_LPAREN] = ACTIONS(2635), + [anon_sym_switch] = ACTIONS(2633), + [anon_sym_LBRACE] = ACTIONS(2635), + [anon_sym_cast] = ACTIONS(2633), + [anon_sym_DOLLARtype] = ACTIONS(2635), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_untyped] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_LBRACK] = ACTIONS(2635), + [anon_sym_this] = ACTIONS(2633), + [anon_sym_AT] = ACTIONS(2633), + [anon_sym_AT_COLON] = ACTIONS(2635), + [anon_sym_try] = ACTIONS(2633), + [anon_sym_catch] = ACTIONS(2633), + [anon_sym_else] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_do] = ACTIONS(2633), + [anon_sym_new] = ACTIONS(2633), + [anon_sym_TILDE] = ACTIONS(2635), + [anon_sym_BANG] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2633), + [anon_sym_PLUS_PLUS] = ACTIONS(2635), + [anon_sym_DASH_DASH] = ACTIONS(2635), + [anon_sym_PERCENT] = ACTIONS(2635), + [anon_sym_SLASH] = ACTIONS(2633), + [anon_sym_PLUS] = ACTIONS(2633), + [anon_sym_LT_LT] = ACTIONS(2635), + [anon_sym_GT_GT] = ACTIONS(2633), + [anon_sym_GT_GT_GT] = ACTIONS(2635), + [anon_sym_AMP] = ACTIONS(2633), + [anon_sym_PIPE] = ACTIONS(2633), + [anon_sym_CARET] = ACTIONS(2635), + [anon_sym_AMP_AMP] = ACTIONS(2635), + [anon_sym_PIPE_PIPE] = ACTIONS(2635), + [anon_sym_EQ_EQ] = ACTIONS(2635), + [anon_sym_BANG_EQ] = ACTIONS(2635), + [anon_sym_LT] = ACTIONS(2633), + [anon_sym_LT_EQ] = ACTIONS(2635), + [anon_sym_GT] = ACTIONS(2633), + [anon_sym_GT_EQ] = ACTIONS(2635), + [anon_sym_EQ_GT] = ACTIONS(2635), + [anon_sym_QMARK_QMARK] = ACTIONS(2635), + [anon_sym_EQ] = ACTIONS(2633), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2635), + [anon_sym_null] = ACTIONS(2633), + [anon_sym_macro] = ACTIONS(2633), + [anon_sym_abstract] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_public] = ACTIONS(2633), + [anon_sym_private] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_inline] = ACTIONS(2633), + [anon_sym_overload] = ACTIONS(2633), + [anon_sym_override] = ACTIONS(2633), + [anon_sym_final] = ACTIONS(2633), + [anon_sym_class] = ACTIONS(2633), + [anon_sym_interface] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_typedef] = ACTIONS(2633), + [anon_sym_function] = ACTIONS(2633), + [anon_sym_var] = ACTIONS(2633), + [aux_sym_integer_token1] = ACTIONS(2633), + [aux_sym_integer_token2] = ACTIONS(2635), + [aux_sym_float_token1] = ACTIONS(2633), + [aux_sym_float_token2] = ACTIONS(2635), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [aux_sym_string_token1] = ACTIONS(2635), + [aux_sym_string_token3] = ACTIONS(2635), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [815] = { + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2639), + [anon_sym_POUND] = ACTIONS(2641), + [anon_sym_package] = ACTIONS(2639), + [anon_sym_import] = ACTIONS(2639), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_using] = ACTIONS(2639), + [anon_sym_throw] = ACTIONS(2639), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_switch] = ACTIONS(2639), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_cast] = ACTIONS(2639), + [anon_sym_DOLLARtype] = ACTIONS(2641), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_untyped] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_this] = ACTIONS(2639), + [anon_sym_AT] = ACTIONS(2639), + [anon_sym_AT_COLON] = ACTIONS(2641), + [anon_sym_try] = ACTIONS(2639), + [anon_sym_catch] = ACTIONS(2639), + [anon_sym_else] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_do] = ACTIONS(2639), + [anon_sym_new] = ACTIONS(2639), + [anon_sym_TILDE] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2639), + [anon_sym_PLUS_PLUS] = ACTIONS(2641), + [anon_sym_DASH_DASH] = ACTIONS(2641), + [anon_sym_PERCENT] = ACTIONS(2641), + [anon_sym_SLASH] = ACTIONS(2639), + [anon_sym_PLUS] = ACTIONS(2639), + [anon_sym_LT_LT] = ACTIONS(2641), + [anon_sym_GT_GT] = ACTIONS(2639), + [anon_sym_GT_GT_GT] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2639), + [anon_sym_PIPE] = ACTIONS(2639), + [anon_sym_CARET] = ACTIONS(2641), + [anon_sym_AMP_AMP] = ACTIONS(2641), + [anon_sym_PIPE_PIPE] = ACTIONS(2641), + [anon_sym_EQ_EQ] = ACTIONS(2641), + [anon_sym_BANG_EQ] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2639), + [anon_sym_LT_EQ] = ACTIONS(2641), + [anon_sym_GT] = ACTIONS(2639), + [anon_sym_GT_EQ] = ACTIONS(2641), + [anon_sym_EQ_GT] = ACTIONS(2641), + [anon_sym_QMARK_QMARK] = ACTIONS(2641), + [anon_sym_EQ] = ACTIONS(2639), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2641), + [anon_sym_null] = ACTIONS(2639), + [anon_sym_macro] = ACTIONS(2639), + [anon_sym_abstract] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_public] = ACTIONS(2639), + [anon_sym_private] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_inline] = ACTIONS(2639), + [anon_sym_overload] = ACTIONS(2639), + [anon_sym_override] = ACTIONS(2639), + [anon_sym_final] = ACTIONS(2639), + [anon_sym_class] = ACTIONS(2639), + [anon_sym_interface] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_typedef] = ACTIONS(2639), + [anon_sym_function] = ACTIONS(2639), + [anon_sym_var] = ACTIONS(2639), + [aux_sym_integer_token1] = ACTIONS(2639), + [aux_sym_integer_token2] = ACTIONS(2641), + [aux_sym_float_token1] = ACTIONS(2639), + [aux_sym_float_token2] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [aux_sym_string_token1] = ACTIONS(2641), + [aux_sym_string_token3] = ACTIONS(2641), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [816] = { + [ts_builtin_sym_end] = ACTIONS(2931), + [sym_identifier] = ACTIONS(2929), + [anon_sym_POUND] = ACTIONS(2931), + [anon_sym_package] = ACTIONS(2929), + [anon_sym_import] = ACTIONS(2929), + [anon_sym_STAR] = ACTIONS(2931), + [anon_sym_using] = ACTIONS(2929), + [anon_sym_throw] = ACTIONS(2929), + [anon_sym_LPAREN] = ACTIONS(2931), + [anon_sym_switch] = ACTIONS(2929), + [anon_sym_LBRACE] = ACTIONS(2931), + [anon_sym_cast] = ACTIONS(2929), + [anon_sym_DOLLARtype] = ACTIONS(2931), + [anon_sym_for] = ACTIONS(2929), + [anon_sym_return] = ACTIONS(2929), + [anon_sym_untyped] = ACTIONS(2929), + [anon_sym_break] = ACTIONS(2929), + [anon_sym_continue] = ACTIONS(2929), + [anon_sym_LBRACK] = ACTIONS(2931), + [anon_sym_this] = ACTIONS(2929), + [anon_sym_AT] = ACTIONS(2929), + [anon_sym_AT_COLON] = ACTIONS(2931), + [anon_sym_try] = ACTIONS(2929), + [anon_sym_catch] = ACTIONS(2929), + [anon_sym_else] = ACTIONS(2929), + [anon_sym_if] = ACTIONS(2929), + [anon_sym_while] = ACTIONS(2929), + [anon_sym_do] = ACTIONS(2929), + [anon_sym_new] = ACTIONS(2929), + [anon_sym_TILDE] = ACTIONS(2931), + [anon_sym_BANG] = ACTIONS(2929), + [anon_sym_DASH] = ACTIONS(2929), + [anon_sym_PLUS_PLUS] = ACTIONS(2931), + [anon_sym_DASH_DASH] = ACTIONS(2931), + [anon_sym_PERCENT] = ACTIONS(2931), + [anon_sym_SLASH] = ACTIONS(2929), + [anon_sym_PLUS] = ACTIONS(2929), + [anon_sym_LT_LT] = ACTIONS(2931), + [anon_sym_GT_GT] = ACTIONS(2929), + [anon_sym_GT_GT_GT] = ACTIONS(2931), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(2929), + [anon_sym_CARET] = ACTIONS(2931), + [anon_sym_AMP_AMP] = ACTIONS(2931), + [anon_sym_PIPE_PIPE] = ACTIONS(2931), + [anon_sym_EQ_EQ] = ACTIONS(2931), + [anon_sym_BANG_EQ] = ACTIONS(2931), + [anon_sym_LT] = ACTIONS(2929), + [anon_sym_LT_EQ] = ACTIONS(2931), + [anon_sym_GT] = ACTIONS(2929), + [anon_sym_GT_EQ] = ACTIONS(2931), + [anon_sym_EQ_GT] = ACTIONS(2931), + [anon_sym_QMARK_QMARK] = ACTIONS(2931), + [anon_sym_EQ] = ACTIONS(2929), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2931), + [anon_sym_null] = ACTIONS(2929), + [anon_sym_macro] = ACTIONS(2929), + [anon_sym_abstract] = ACTIONS(2929), + [anon_sym_static] = ACTIONS(2929), + [anon_sym_public] = ACTIONS(2929), + [anon_sym_private] = ACTIONS(2929), + [anon_sym_extern] = ACTIONS(2929), + [anon_sym_inline] = ACTIONS(2929), + [anon_sym_overload] = ACTIONS(2929), + [anon_sym_override] = ACTIONS(2929), + [anon_sym_final] = ACTIONS(2929), + [anon_sym_class] = ACTIONS(2929), + [anon_sym_interface] = ACTIONS(2929), + [anon_sym_enum] = ACTIONS(2929), + [anon_sym_typedef] = ACTIONS(2929), + [anon_sym_function] = ACTIONS(2929), + [anon_sym_var] = ACTIONS(2929), + [aux_sym_integer_token1] = ACTIONS(2929), + [aux_sym_integer_token2] = ACTIONS(2931), + [aux_sym_float_token1] = ACTIONS(2929), + [aux_sym_float_token2] = ACTIONS(2931), + [anon_sym_true] = ACTIONS(2929), + [anon_sym_false] = ACTIONS(2929), + [aux_sym_string_token1] = ACTIONS(2931), + [aux_sym_string_token3] = ACTIONS(2931), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [817] = { + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3425), + [anon_sym_POUND] = ACTIONS(3428), + [anon_sym_package] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_STAR] = ACTIONS(3428), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_cast] = ACTIONS(3425), + [anon_sym_DOLLARtype] = ACTIONS(3428), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_untyped] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_this] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_AT_COLON] = ACTIONS(3428), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_catch] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_PERCENT] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_LT_LT] = ACTIONS(3428), + [anon_sym_GT_GT] = ACTIONS(3425), + [anon_sym_GT_GT_GT] = ACTIONS(3428), + [anon_sym_AMP] = ACTIONS(3425), + [anon_sym_PIPE] = ACTIONS(3425), + [anon_sym_CARET] = ACTIONS(3428), + [anon_sym_AMP_AMP] = ACTIONS(3428), + [anon_sym_PIPE_PIPE] = ACTIONS(3428), + [anon_sym_EQ_EQ] = ACTIONS(3428), + [anon_sym_BANG_EQ] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_LT_EQ] = ACTIONS(3428), + [anon_sym_GT] = ACTIONS(3425), + [anon_sym_GT_EQ] = ACTIONS(3428), + [anon_sym_EQ_GT] = ACTIONS(3428), + [anon_sym_QMARK_QMARK] = ACTIONS(3428), + [anon_sym_EQ] = ACTIONS(3425), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3428), + [anon_sym_null] = ACTIONS(3425), + [anon_sym_macro] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_extern] = ACTIONS(3425), + [anon_sym_inline] = ACTIONS(3425), + [anon_sym_overload] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_final] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), + [anon_sym_typedef] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [aux_sym_integer_token1] = ACTIONS(3425), + [aux_sym_integer_token2] = ACTIONS(3428), + [aux_sym_float_token1] = ACTIONS(3425), + [aux_sym_float_token2] = ACTIONS(3428), + [anon_sym_true] = ACTIONS(3425), + [anon_sym_false] = ACTIONS(3425), + [aux_sym_string_token1] = ACTIONS(3428), + [aux_sym_string_token3] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [818] = { + [ts_builtin_sym_end] = ACTIONS(2815), + [sym_identifier] = ACTIONS(2813), + [anon_sym_POUND] = ACTIONS(2815), + [anon_sym_package] = ACTIONS(2813), + [anon_sym_import] = ACTIONS(2813), + [anon_sym_STAR] = ACTIONS(2815), + [anon_sym_using] = ACTIONS(2813), + [anon_sym_throw] = ACTIONS(2813), + [anon_sym_LPAREN] = ACTIONS(2815), + [anon_sym_switch] = ACTIONS(2813), + [anon_sym_LBRACE] = ACTIONS(2815), + [anon_sym_cast] = ACTIONS(2813), + [anon_sym_DOLLARtype] = ACTIONS(2815), + [anon_sym_for] = ACTIONS(2813), + [anon_sym_return] = ACTIONS(2813), + [anon_sym_untyped] = ACTIONS(2813), + [anon_sym_break] = ACTIONS(2813), + [anon_sym_continue] = ACTIONS(2813), + [anon_sym_LBRACK] = ACTIONS(2815), + [anon_sym_this] = ACTIONS(2813), + [anon_sym_AT] = ACTIONS(2813), + [anon_sym_AT_COLON] = ACTIONS(2815), + [anon_sym_try] = ACTIONS(2813), + [anon_sym_catch] = ACTIONS(2813), + [anon_sym_else] = ACTIONS(2813), + [anon_sym_if] = ACTIONS(2813), + [anon_sym_while] = ACTIONS(2813), + [anon_sym_do] = ACTIONS(2813), + [anon_sym_new] = ACTIONS(2813), + [anon_sym_TILDE] = ACTIONS(2815), + [anon_sym_BANG] = ACTIONS(2813), + [anon_sym_DASH] = ACTIONS(2813), + [anon_sym_PLUS_PLUS] = ACTIONS(2815), + [anon_sym_DASH_DASH] = ACTIONS(2815), + [anon_sym_PERCENT] = ACTIONS(2815), + [anon_sym_SLASH] = ACTIONS(2813), + [anon_sym_PLUS] = ACTIONS(2813), + [anon_sym_LT_LT] = ACTIONS(2815), + [anon_sym_GT_GT] = ACTIONS(2813), + [anon_sym_GT_GT_GT] = ACTIONS(2815), + [anon_sym_AMP] = ACTIONS(2813), + [anon_sym_PIPE] = ACTIONS(2813), + [anon_sym_CARET] = ACTIONS(2815), + [anon_sym_AMP_AMP] = ACTIONS(2815), + [anon_sym_PIPE_PIPE] = ACTIONS(2815), + [anon_sym_EQ_EQ] = ACTIONS(2815), + [anon_sym_BANG_EQ] = ACTIONS(2815), + [anon_sym_LT] = ACTIONS(2813), + [anon_sym_LT_EQ] = ACTIONS(2815), + [anon_sym_GT] = ACTIONS(2813), + [anon_sym_GT_EQ] = ACTIONS(2815), + [anon_sym_EQ_GT] = ACTIONS(2815), + [anon_sym_QMARK_QMARK] = ACTIONS(2815), + [anon_sym_EQ] = ACTIONS(2813), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2815), + [anon_sym_null] = ACTIONS(2813), + [anon_sym_macro] = ACTIONS(2813), + [anon_sym_abstract] = ACTIONS(2813), + [anon_sym_static] = ACTIONS(2813), + [anon_sym_public] = ACTIONS(2813), + [anon_sym_private] = ACTIONS(2813), + [anon_sym_extern] = ACTIONS(2813), + [anon_sym_inline] = ACTIONS(2813), + [anon_sym_overload] = ACTIONS(2813), + [anon_sym_override] = ACTIONS(2813), + [anon_sym_final] = ACTIONS(2813), + [anon_sym_class] = ACTIONS(2813), + [anon_sym_interface] = ACTIONS(2813), + [anon_sym_enum] = ACTIONS(2813), + [anon_sym_typedef] = ACTIONS(2813), + [anon_sym_function] = ACTIONS(2813), + [anon_sym_var] = ACTIONS(2813), + [aux_sym_integer_token1] = ACTIONS(2813), + [aux_sym_integer_token2] = ACTIONS(2815), + [aux_sym_float_token1] = ACTIONS(2813), + [aux_sym_float_token2] = ACTIONS(2815), + [anon_sym_true] = ACTIONS(2813), + [anon_sym_false] = ACTIONS(2813), + [aux_sym_string_token1] = ACTIONS(2815), + [aux_sym_string_token3] = ACTIONS(2815), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [819] = { + [ts_builtin_sym_end] = ACTIONS(2935), + [sym_identifier] = ACTIONS(2933), + [anon_sym_POUND] = ACTIONS(2935), + [anon_sym_package] = ACTIONS(2933), + [anon_sym_import] = ACTIONS(2933), + [anon_sym_STAR] = ACTIONS(2935), + [anon_sym_using] = ACTIONS(2933), + [anon_sym_throw] = ACTIONS(2933), + [anon_sym_LPAREN] = ACTIONS(2935), + [anon_sym_switch] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2935), + [anon_sym_cast] = ACTIONS(2933), + [anon_sym_DOLLARtype] = ACTIONS(2935), + [anon_sym_for] = ACTIONS(2933), + [anon_sym_return] = ACTIONS(2933), + [anon_sym_untyped] = ACTIONS(2933), + [anon_sym_break] = ACTIONS(2933), + [anon_sym_continue] = ACTIONS(2933), + [anon_sym_LBRACK] = ACTIONS(2935), + [anon_sym_this] = ACTIONS(2933), + [anon_sym_AT] = ACTIONS(2933), + [anon_sym_AT_COLON] = ACTIONS(2935), + [anon_sym_try] = ACTIONS(2933), + [anon_sym_catch] = ACTIONS(2933), + [anon_sym_else] = ACTIONS(2933), + [anon_sym_if] = ACTIONS(2933), + [anon_sym_while] = ACTIONS(2933), + [anon_sym_do] = ACTIONS(2933), + [anon_sym_new] = ACTIONS(2933), + [anon_sym_TILDE] = ACTIONS(2935), + [anon_sym_BANG] = ACTIONS(2933), + [anon_sym_DASH] = ACTIONS(2933), + [anon_sym_PLUS_PLUS] = ACTIONS(2935), + [anon_sym_DASH_DASH] = ACTIONS(2935), + [anon_sym_PERCENT] = ACTIONS(2935), + [anon_sym_SLASH] = ACTIONS(2933), + [anon_sym_PLUS] = ACTIONS(2933), + [anon_sym_LT_LT] = ACTIONS(2935), + [anon_sym_GT_GT] = ACTIONS(2933), + [anon_sym_GT_GT_GT] = ACTIONS(2935), + [anon_sym_AMP] = ACTIONS(2933), + [anon_sym_PIPE] = ACTIONS(2933), + [anon_sym_CARET] = ACTIONS(2935), + [anon_sym_AMP_AMP] = ACTIONS(2935), + [anon_sym_PIPE_PIPE] = ACTIONS(2935), + [anon_sym_EQ_EQ] = ACTIONS(2935), + [anon_sym_BANG_EQ] = ACTIONS(2935), + [anon_sym_LT] = ACTIONS(2933), + [anon_sym_LT_EQ] = ACTIONS(2935), + [anon_sym_GT] = ACTIONS(2933), + [anon_sym_GT_EQ] = ACTIONS(2935), + [anon_sym_EQ_GT] = ACTIONS(2935), + [anon_sym_QMARK_QMARK] = ACTIONS(2935), + [anon_sym_EQ] = ACTIONS(2933), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2935), + [anon_sym_null] = ACTIONS(2933), + [anon_sym_macro] = ACTIONS(2933), + [anon_sym_abstract] = ACTIONS(2933), + [anon_sym_static] = ACTIONS(2933), + [anon_sym_public] = ACTIONS(2933), + [anon_sym_private] = ACTIONS(2933), + [anon_sym_extern] = ACTIONS(2933), + [anon_sym_inline] = ACTIONS(2933), + [anon_sym_overload] = ACTIONS(2933), + [anon_sym_override] = ACTIONS(2933), + [anon_sym_final] = ACTIONS(2933), + [anon_sym_class] = ACTIONS(2933), + [anon_sym_interface] = ACTIONS(2933), + [anon_sym_enum] = ACTIONS(2933), + [anon_sym_typedef] = ACTIONS(2933), + [anon_sym_function] = ACTIONS(2933), + [anon_sym_var] = ACTIONS(2933), + [aux_sym_integer_token1] = ACTIONS(2933), + [aux_sym_integer_token2] = ACTIONS(2935), + [aux_sym_float_token1] = ACTIONS(2933), + [aux_sym_float_token2] = ACTIONS(2935), + [anon_sym_true] = ACTIONS(2933), + [anon_sym_false] = ACTIONS(2933), + [aux_sym_string_token1] = ACTIONS(2935), + [aux_sym_string_token3] = ACTIONS(2935), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [820] = { + [ts_builtin_sym_end] = ACTIONS(2819), + [sym_identifier] = ACTIONS(2817), + [anon_sym_POUND] = ACTIONS(2819), + [anon_sym_package] = ACTIONS(2817), + [anon_sym_import] = ACTIONS(2817), + [anon_sym_STAR] = ACTIONS(2819), + [anon_sym_using] = ACTIONS(2817), + [anon_sym_throw] = ACTIONS(2817), + [anon_sym_LPAREN] = ACTIONS(2819), + [anon_sym_switch] = ACTIONS(2817), + [anon_sym_LBRACE] = ACTIONS(2819), + [anon_sym_cast] = ACTIONS(2817), + [anon_sym_DOLLARtype] = ACTIONS(2819), + [anon_sym_for] = ACTIONS(2817), + [anon_sym_return] = ACTIONS(2817), + [anon_sym_untyped] = ACTIONS(2817), + [anon_sym_break] = ACTIONS(2817), + [anon_sym_continue] = ACTIONS(2817), + [anon_sym_LBRACK] = ACTIONS(2819), + [anon_sym_this] = ACTIONS(2817), + [anon_sym_AT] = ACTIONS(2817), + [anon_sym_AT_COLON] = ACTIONS(2819), + [anon_sym_try] = ACTIONS(2817), + [anon_sym_catch] = ACTIONS(2817), + [anon_sym_else] = ACTIONS(2817), + [anon_sym_if] = ACTIONS(2817), + [anon_sym_while] = ACTIONS(2817), + [anon_sym_do] = ACTIONS(2817), + [anon_sym_new] = ACTIONS(2817), + [anon_sym_TILDE] = ACTIONS(2819), + [anon_sym_BANG] = ACTIONS(2817), + [anon_sym_DASH] = ACTIONS(2817), + [anon_sym_PLUS_PLUS] = ACTIONS(2819), + [anon_sym_DASH_DASH] = ACTIONS(2819), + [anon_sym_PERCENT] = ACTIONS(2819), + [anon_sym_SLASH] = ACTIONS(2817), + [anon_sym_PLUS] = ACTIONS(2817), + [anon_sym_LT_LT] = ACTIONS(2819), + [anon_sym_GT_GT] = ACTIONS(2817), + [anon_sym_GT_GT_GT] = ACTIONS(2819), + [anon_sym_AMP] = ACTIONS(2817), + [anon_sym_PIPE] = ACTIONS(2817), + [anon_sym_CARET] = ACTIONS(2819), + [anon_sym_AMP_AMP] = ACTIONS(2819), + [anon_sym_PIPE_PIPE] = ACTIONS(2819), + [anon_sym_EQ_EQ] = ACTIONS(2819), + [anon_sym_BANG_EQ] = ACTIONS(2819), + [anon_sym_LT] = ACTIONS(2817), + [anon_sym_LT_EQ] = ACTIONS(2819), + [anon_sym_GT] = ACTIONS(2817), + [anon_sym_GT_EQ] = ACTIONS(2819), + [anon_sym_EQ_GT] = ACTIONS(2819), + [anon_sym_QMARK_QMARK] = ACTIONS(2819), + [anon_sym_EQ] = ACTIONS(2817), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2819), + [anon_sym_null] = ACTIONS(2817), + [anon_sym_macro] = ACTIONS(2817), + [anon_sym_abstract] = ACTIONS(2817), + [anon_sym_static] = ACTIONS(2817), + [anon_sym_public] = ACTIONS(2817), + [anon_sym_private] = ACTIONS(2817), + [anon_sym_extern] = ACTIONS(2817), + [anon_sym_inline] = ACTIONS(2817), + [anon_sym_overload] = ACTIONS(2817), + [anon_sym_override] = ACTIONS(2817), + [anon_sym_final] = ACTIONS(2817), + [anon_sym_class] = ACTIONS(2817), + [anon_sym_interface] = ACTIONS(2817), + [anon_sym_enum] = ACTIONS(2817), + [anon_sym_typedef] = ACTIONS(2817), + [anon_sym_function] = ACTIONS(2817), + [anon_sym_var] = ACTIONS(2817), + [aux_sym_integer_token1] = ACTIONS(2817), + [aux_sym_integer_token2] = ACTIONS(2819), + [aux_sym_float_token1] = ACTIONS(2817), + [aux_sym_float_token2] = ACTIONS(2819), + [anon_sym_true] = ACTIONS(2817), + [anon_sym_false] = ACTIONS(2817), + [aux_sym_string_token1] = ACTIONS(2819), + [aux_sym_string_token3] = ACTIONS(2819), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [821] = { + [ts_builtin_sym_end] = ACTIONS(2823), + [sym_identifier] = ACTIONS(2821), + [anon_sym_POUND] = ACTIONS(2823), + [anon_sym_package] = ACTIONS(2821), + [anon_sym_import] = ACTIONS(2821), + [anon_sym_STAR] = ACTIONS(2823), + [anon_sym_using] = ACTIONS(2821), + [anon_sym_throw] = ACTIONS(2821), + [anon_sym_LPAREN] = ACTIONS(2823), + [anon_sym_switch] = ACTIONS(2821), + [anon_sym_LBRACE] = ACTIONS(2823), + [anon_sym_cast] = ACTIONS(2821), + [anon_sym_DOLLARtype] = ACTIONS(2823), + [anon_sym_for] = ACTIONS(2821), + [anon_sym_return] = ACTIONS(2821), + [anon_sym_untyped] = ACTIONS(2821), + [anon_sym_break] = ACTIONS(2821), + [anon_sym_continue] = ACTIONS(2821), + [anon_sym_LBRACK] = ACTIONS(2823), + [anon_sym_this] = ACTIONS(2821), + [anon_sym_AT] = ACTIONS(2821), + [anon_sym_AT_COLON] = ACTIONS(2823), + [anon_sym_try] = ACTIONS(2821), + [anon_sym_catch] = ACTIONS(2821), + [anon_sym_else] = ACTIONS(2821), + [anon_sym_if] = ACTIONS(2821), + [anon_sym_while] = ACTIONS(2821), + [anon_sym_do] = ACTIONS(2821), + [anon_sym_new] = ACTIONS(2821), + [anon_sym_TILDE] = ACTIONS(2823), + [anon_sym_BANG] = ACTIONS(2821), + [anon_sym_DASH] = ACTIONS(2821), + [anon_sym_PLUS_PLUS] = ACTIONS(2823), + [anon_sym_DASH_DASH] = ACTIONS(2823), + [anon_sym_PERCENT] = ACTIONS(2823), + [anon_sym_SLASH] = ACTIONS(2821), + [anon_sym_PLUS] = ACTIONS(2821), + [anon_sym_LT_LT] = ACTIONS(2823), + [anon_sym_GT_GT] = ACTIONS(2821), + [anon_sym_GT_GT_GT] = ACTIONS(2823), + [anon_sym_AMP] = ACTIONS(2821), + [anon_sym_PIPE] = ACTIONS(2821), + [anon_sym_CARET] = ACTIONS(2823), + [anon_sym_AMP_AMP] = ACTIONS(2823), + [anon_sym_PIPE_PIPE] = ACTIONS(2823), + [anon_sym_EQ_EQ] = ACTIONS(2823), + [anon_sym_BANG_EQ] = ACTIONS(2823), + [anon_sym_LT] = ACTIONS(2821), + [anon_sym_LT_EQ] = ACTIONS(2823), + [anon_sym_GT] = ACTIONS(2821), + [anon_sym_GT_EQ] = ACTIONS(2823), + [anon_sym_EQ_GT] = ACTIONS(2823), + [anon_sym_QMARK_QMARK] = ACTIONS(2823), + [anon_sym_EQ] = ACTIONS(2821), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2823), + [anon_sym_null] = ACTIONS(2821), + [anon_sym_macro] = ACTIONS(2821), + [anon_sym_abstract] = ACTIONS(2821), + [anon_sym_static] = ACTIONS(2821), + [anon_sym_public] = ACTIONS(2821), + [anon_sym_private] = ACTIONS(2821), + [anon_sym_extern] = ACTIONS(2821), + [anon_sym_inline] = ACTIONS(2821), + [anon_sym_overload] = ACTIONS(2821), + [anon_sym_override] = ACTIONS(2821), + [anon_sym_final] = ACTIONS(2821), + [anon_sym_class] = ACTIONS(2821), + [anon_sym_interface] = ACTIONS(2821), + [anon_sym_enum] = ACTIONS(2821), + [anon_sym_typedef] = ACTIONS(2821), + [anon_sym_function] = ACTIONS(2821), + [anon_sym_var] = ACTIONS(2821), + [aux_sym_integer_token1] = ACTIONS(2821), + [aux_sym_integer_token2] = ACTIONS(2823), + [aux_sym_float_token1] = ACTIONS(2821), + [aux_sym_float_token2] = ACTIONS(2823), + [anon_sym_true] = ACTIONS(2821), + [anon_sym_false] = ACTIONS(2821), + [aux_sym_string_token1] = ACTIONS(2823), + [aux_sym_string_token3] = ACTIONS(2823), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [822] = { + [sym_else_clause] = STATE(729), + [ts_builtin_sym_end] = ACTIONS(2629), + [sym_identifier] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2629), + [anon_sym_package] = ACTIONS(2627), + [anon_sym_import] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2629), + [anon_sym_using] = ACTIONS(2627), + [anon_sym_throw] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2629), + [anon_sym_switch] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2629), + [anon_sym_cast] = ACTIONS(2627), + [anon_sym_DOLLARtype] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2627), + [anon_sym_return] = ACTIONS(2627), + [anon_sym_untyped] = ACTIONS(2627), + [anon_sym_break] = ACTIONS(2627), + [anon_sym_continue] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2629), + [anon_sym_this] = ACTIONS(2627), + [anon_sym_AT] = ACTIONS(2627), + [anon_sym_AT_COLON] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2627), + [anon_sym_else] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(2627), + [anon_sym_while] = ACTIONS(2627), + [anon_sym_do] = ACTIONS(2627), + [anon_sym_new] = ACTIONS(2627), + [anon_sym_TILDE] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_PLUS_PLUS] = ACTIONS(2629), + [anon_sym_DASH_DASH] = ACTIONS(2629), + [anon_sym_PERCENT] = ACTIONS(2629), + [anon_sym_SLASH] = ACTIONS(2627), + [anon_sym_PLUS] = ACTIONS(2627), + [anon_sym_LT_LT] = ACTIONS(2629), + [anon_sym_GT_GT] = ACTIONS(2627), + [anon_sym_GT_GT_GT] = ACTIONS(2629), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_CARET] = ACTIONS(2629), + [anon_sym_AMP_AMP] = ACTIONS(2629), + [anon_sym_PIPE_PIPE] = ACTIONS(2629), + [anon_sym_EQ_EQ] = ACTIONS(2629), + [anon_sym_BANG_EQ] = ACTIONS(2629), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_LT_EQ] = ACTIONS(2629), + [anon_sym_GT] = ACTIONS(2627), + [anon_sym_GT_EQ] = ACTIONS(2629), + [anon_sym_EQ_GT] = ACTIONS(2629), + [anon_sym_QMARK_QMARK] = ACTIONS(2629), + [anon_sym_EQ] = ACTIONS(2627), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2629), + [anon_sym_null] = ACTIONS(2627), + [anon_sym_macro] = ACTIONS(2627), + [anon_sym_abstract] = ACTIONS(2627), + [anon_sym_static] = ACTIONS(2627), + [anon_sym_public] = ACTIONS(2627), + [anon_sym_private] = ACTIONS(2627), + [anon_sym_extern] = ACTIONS(2627), + [anon_sym_inline] = ACTIONS(2627), + [anon_sym_overload] = ACTIONS(2627), + [anon_sym_override] = ACTIONS(2627), + [anon_sym_final] = ACTIONS(2627), + [anon_sym_class] = ACTIONS(2627), + [anon_sym_interface] = ACTIONS(2627), + [anon_sym_enum] = ACTIONS(2627), + [anon_sym_typedef] = ACTIONS(2627), + [anon_sym_function] = ACTIONS(2627), + [anon_sym_var] = ACTIONS(2627), + [aux_sym_integer_token1] = ACTIONS(2627), + [aux_sym_integer_token2] = ACTIONS(2629), + [aux_sym_float_token1] = ACTIONS(2627), + [aux_sym_float_token2] = ACTIONS(2629), + [anon_sym_true] = ACTIONS(2627), + [anon_sym_false] = ACTIONS(2627), + [aux_sym_string_token1] = ACTIONS(2629), + [aux_sym_string_token3] = ACTIONS(2629), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [823] = { + [ts_builtin_sym_end] = ACTIONS(2827), + [sym_identifier] = ACTIONS(2825), + [anon_sym_POUND] = ACTIONS(2827), + [anon_sym_package] = ACTIONS(2825), + [anon_sym_import] = ACTIONS(2825), + [anon_sym_STAR] = ACTIONS(2827), + [anon_sym_using] = ACTIONS(2825), + [anon_sym_throw] = ACTIONS(2825), + [anon_sym_LPAREN] = ACTIONS(2827), + [anon_sym_switch] = ACTIONS(2825), + [anon_sym_LBRACE] = ACTIONS(2827), + [anon_sym_cast] = ACTIONS(2825), + [anon_sym_DOLLARtype] = ACTIONS(2827), + [anon_sym_for] = ACTIONS(2825), + [anon_sym_return] = ACTIONS(2825), + [anon_sym_untyped] = ACTIONS(2825), + [anon_sym_break] = ACTIONS(2825), + [anon_sym_continue] = ACTIONS(2825), + [anon_sym_LBRACK] = ACTIONS(2827), + [anon_sym_this] = ACTIONS(2825), + [anon_sym_AT] = ACTIONS(2825), + [anon_sym_AT_COLON] = ACTIONS(2827), + [anon_sym_try] = ACTIONS(2825), + [anon_sym_catch] = ACTIONS(2825), + [anon_sym_else] = ACTIONS(2825), + [anon_sym_if] = ACTIONS(2825), + [anon_sym_while] = ACTIONS(2825), + [anon_sym_do] = ACTIONS(2825), + [anon_sym_new] = ACTIONS(2825), + [anon_sym_TILDE] = ACTIONS(2827), + [anon_sym_BANG] = ACTIONS(2825), + [anon_sym_DASH] = ACTIONS(2825), + [anon_sym_PLUS_PLUS] = ACTIONS(2827), + [anon_sym_DASH_DASH] = ACTIONS(2827), + [anon_sym_PERCENT] = ACTIONS(2827), + [anon_sym_SLASH] = ACTIONS(2825), + [anon_sym_PLUS] = ACTIONS(2825), + [anon_sym_LT_LT] = ACTIONS(2827), + [anon_sym_GT_GT] = ACTIONS(2825), + [anon_sym_GT_GT_GT] = ACTIONS(2827), + [anon_sym_AMP] = ACTIONS(2825), + [anon_sym_PIPE] = ACTIONS(2825), + [anon_sym_CARET] = ACTIONS(2827), + [anon_sym_AMP_AMP] = ACTIONS(2827), + [anon_sym_PIPE_PIPE] = ACTIONS(2827), + [anon_sym_EQ_EQ] = ACTIONS(2827), + [anon_sym_BANG_EQ] = ACTIONS(2827), + [anon_sym_LT] = ACTIONS(2825), + [anon_sym_LT_EQ] = ACTIONS(2827), + [anon_sym_GT] = ACTIONS(2825), + [anon_sym_GT_EQ] = ACTIONS(2827), + [anon_sym_EQ_GT] = ACTIONS(2827), + [anon_sym_QMARK_QMARK] = ACTIONS(2827), + [anon_sym_EQ] = ACTIONS(2825), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2827), + [anon_sym_null] = ACTIONS(2825), + [anon_sym_macro] = ACTIONS(2825), + [anon_sym_abstract] = ACTIONS(2825), + [anon_sym_static] = ACTIONS(2825), + [anon_sym_public] = ACTIONS(2825), + [anon_sym_private] = ACTIONS(2825), + [anon_sym_extern] = ACTIONS(2825), + [anon_sym_inline] = ACTIONS(2825), + [anon_sym_overload] = ACTIONS(2825), + [anon_sym_override] = ACTIONS(2825), + [anon_sym_final] = ACTIONS(2825), + [anon_sym_class] = ACTIONS(2825), + [anon_sym_interface] = ACTIONS(2825), + [anon_sym_enum] = ACTIONS(2825), + [anon_sym_typedef] = ACTIONS(2825), + [anon_sym_function] = ACTIONS(2825), + [anon_sym_var] = ACTIONS(2825), + [aux_sym_integer_token1] = ACTIONS(2825), + [aux_sym_integer_token2] = ACTIONS(2827), + [aux_sym_float_token1] = ACTIONS(2825), + [aux_sym_float_token2] = ACTIONS(2827), + [anon_sym_true] = ACTIONS(2825), + [anon_sym_false] = ACTIONS(2825), + [aux_sym_string_token1] = ACTIONS(2827), + [aux_sym_string_token3] = ACTIONS(2827), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [824] = { + [ts_builtin_sym_end] = ACTIONS(2831), + [sym_identifier] = ACTIONS(2829), + [anon_sym_POUND] = ACTIONS(2831), + [anon_sym_package] = ACTIONS(2829), + [anon_sym_import] = ACTIONS(2829), + [anon_sym_STAR] = ACTIONS(2831), + [anon_sym_using] = ACTIONS(2829), + [anon_sym_throw] = ACTIONS(2829), + [anon_sym_LPAREN] = ACTIONS(2831), + [anon_sym_switch] = ACTIONS(2829), + [anon_sym_LBRACE] = ACTIONS(2831), + [anon_sym_cast] = ACTIONS(2829), + [anon_sym_DOLLARtype] = ACTIONS(2831), + [anon_sym_for] = ACTIONS(2829), + [anon_sym_return] = ACTIONS(2829), + [anon_sym_untyped] = ACTIONS(2829), + [anon_sym_break] = ACTIONS(2829), + [anon_sym_continue] = ACTIONS(2829), + [anon_sym_LBRACK] = ACTIONS(2831), + [anon_sym_this] = ACTIONS(2829), + [anon_sym_AT] = ACTIONS(2829), + [anon_sym_AT_COLON] = ACTIONS(2831), + [anon_sym_try] = ACTIONS(2829), + [anon_sym_catch] = ACTIONS(2829), + [anon_sym_else] = ACTIONS(2829), + [anon_sym_if] = ACTIONS(2829), + [anon_sym_while] = ACTIONS(2829), + [anon_sym_do] = ACTIONS(2829), + [anon_sym_new] = ACTIONS(2829), + [anon_sym_TILDE] = ACTIONS(2831), + [anon_sym_BANG] = ACTIONS(2829), + [anon_sym_DASH] = ACTIONS(2829), + [anon_sym_PLUS_PLUS] = ACTIONS(2831), + [anon_sym_DASH_DASH] = ACTIONS(2831), + [anon_sym_PERCENT] = ACTIONS(2831), + [anon_sym_SLASH] = ACTIONS(2829), + [anon_sym_PLUS] = ACTIONS(2829), + [anon_sym_LT_LT] = ACTIONS(2831), + [anon_sym_GT_GT] = ACTIONS(2829), + [anon_sym_GT_GT_GT] = ACTIONS(2831), + [anon_sym_AMP] = ACTIONS(2829), + [anon_sym_PIPE] = ACTIONS(2829), + [anon_sym_CARET] = ACTIONS(2831), + [anon_sym_AMP_AMP] = ACTIONS(2831), + [anon_sym_PIPE_PIPE] = ACTIONS(2831), + [anon_sym_EQ_EQ] = ACTIONS(2831), + [anon_sym_BANG_EQ] = ACTIONS(2831), + [anon_sym_LT] = ACTIONS(2829), + [anon_sym_LT_EQ] = ACTIONS(2831), + [anon_sym_GT] = ACTIONS(2829), + [anon_sym_GT_EQ] = ACTIONS(2831), + [anon_sym_EQ_GT] = ACTIONS(2831), + [anon_sym_QMARK_QMARK] = ACTIONS(2831), + [anon_sym_EQ] = ACTIONS(2829), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2831), + [anon_sym_null] = ACTIONS(2829), + [anon_sym_macro] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2829), + [anon_sym_static] = ACTIONS(2829), + [anon_sym_public] = ACTIONS(2829), + [anon_sym_private] = ACTIONS(2829), + [anon_sym_extern] = ACTIONS(2829), + [anon_sym_inline] = ACTIONS(2829), + [anon_sym_overload] = ACTIONS(2829), + [anon_sym_override] = ACTIONS(2829), + [anon_sym_final] = ACTIONS(2829), + [anon_sym_class] = ACTIONS(2829), + [anon_sym_interface] = ACTIONS(2829), + [anon_sym_enum] = ACTIONS(2829), + [anon_sym_typedef] = ACTIONS(2829), + [anon_sym_function] = ACTIONS(2829), + [anon_sym_var] = ACTIONS(2829), + [aux_sym_integer_token1] = ACTIONS(2829), + [aux_sym_integer_token2] = ACTIONS(2831), + [aux_sym_float_token1] = ACTIONS(2829), + [aux_sym_float_token2] = ACTIONS(2831), + [anon_sym_true] = ACTIONS(2829), + [anon_sym_false] = ACTIONS(2829), + [aux_sym_string_token1] = ACTIONS(2831), + [aux_sym_string_token3] = ACTIONS(2831), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [825] = { + [ts_builtin_sym_end] = ACTIONS(2939), + [sym_identifier] = ACTIONS(2937), + [anon_sym_POUND] = ACTIONS(2939), + [anon_sym_package] = ACTIONS(2937), + [anon_sym_import] = ACTIONS(2937), + [anon_sym_STAR] = ACTIONS(2939), + [anon_sym_using] = ACTIONS(2937), + [anon_sym_throw] = ACTIONS(2937), + [anon_sym_LPAREN] = ACTIONS(2939), + [anon_sym_switch] = ACTIONS(2937), + [anon_sym_LBRACE] = ACTIONS(2939), + [anon_sym_cast] = ACTIONS(2937), + [anon_sym_DOLLARtype] = ACTIONS(2939), + [anon_sym_for] = ACTIONS(2937), + [anon_sym_return] = ACTIONS(2937), + [anon_sym_untyped] = ACTIONS(2937), + [anon_sym_break] = ACTIONS(2937), + [anon_sym_continue] = ACTIONS(2937), + [anon_sym_LBRACK] = ACTIONS(2939), + [anon_sym_this] = ACTIONS(2937), + [anon_sym_AT] = ACTIONS(2937), + [anon_sym_AT_COLON] = ACTIONS(2939), + [anon_sym_try] = ACTIONS(2937), + [anon_sym_catch] = ACTIONS(2937), + [anon_sym_else] = ACTIONS(2937), + [anon_sym_if] = ACTIONS(2937), + [anon_sym_while] = ACTIONS(2937), + [anon_sym_do] = ACTIONS(2937), + [anon_sym_new] = ACTIONS(2937), + [anon_sym_TILDE] = ACTIONS(2939), + [anon_sym_BANG] = ACTIONS(2937), + [anon_sym_DASH] = ACTIONS(2937), + [anon_sym_PLUS_PLUS] = ACTIONS(2939), + [anon_sym_DASH_DASH] = ACTIONS(2939), + [anon_sym_PERCENT] = ACTIONS(2939), + [anon_sym_SLASH] = ACTIONS(2937), + [anon_sym_PLUS] = ACTIONS(2937), + [anon_sym_LT_LT] = ACTIONS(2939), + [anon_sym_GT_GT] = ACTIONS(2937), + [anon_sym_GT_GT_GT] = ACTIONS(2939), + [anon_sym_AMP] = ACTIONS(2937), + [anon_sym_PIPE] = ACTIONS(2937), + [anon_sym_CARET] = ACTIONS(2939), + [anon_sym_AMP_AMP] = ACTIONS(2939), + [anon_sym_PIPE_PIPE] = ACTIONS(2939), + [anon_sym_EQ_EQ] = ACTIONS(2939), + [anon_sym_BANG_EQ] = ACTIONS(2939), + [anon_sym_LT] = ACTIONS(2937), + [anon_sym_LT_EQ] = ACTIONS(2939), + [anon_sym_GT] = ACTIONS(2937), + [anon_sym_GT_EQ] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(2939), + [anon_sym_QMARK_QMARK] = ACTIONS(2939), + [anon_sym_EQ] = ACTIONS(2937), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2939), + [anon_sym_null] = ACTIONS(2937), + [anon_sym_macro] = ACTIONS(2937), + [anon_sym_abstract] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(2937), + [anon_sym_public] = ACTIONS(2937), + [anon_sym_private] = ACTIONS(2937), + [anon_sym_extern] = ACTIONS(2937), + [anon_sym_inline] = ACTIONS(2937), + [anon_sym_overload] = ACTIONS(2937), + [anon_sym_override] = ACTIONS(2937), + [anon_sym_final] = ACTIONS(2937), + [anon_sym_class] = ACTIONS(2937), + [anon_sym_interface] = ACTIONS(2937), + [anon_sym_enum] = ACTIONS(2937), + [anon_sym_typedef] = ACTIONS(2937), + [anon_sym_function] = ACTIONS(2937), + [anon_sym_var] = ACTIONS(2937), + [aux_sym_integer_token1] = ACTIONS(2937), + [aux_sym_integer_token2] = ACTIONS(2939), + [aux_sym_float_token1] = ACTIONS(2937), + [aux_sym_float_token2] = ACTIONS(2939), + [anon_sym_true] = ACTIONS(2937), + [anon_sym_false] = ACTIONS(2937), + [aux_sym_string_token1] = ACTIONS(2939), + [aux_sym_string_token3] = ACTIONS(2939), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [826] = { + [ts_builtin_sym_end] = ACTIONS(2835), + [sym_identifier] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(2835), + [anon_sym_package] = ACTIONS(2833), + [anon_sym_import] = ACTIONS(2833), + [anon_sym_STAR] = ACTIONS(2835), + [anon_sym_using] = ACTIONS(2833), + [anon_sym_throw] = ACTIONS(2833), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_switch] = ACTIONS(2833), + [anon_sym_LBRACE] = ACTIONS(2835), + [anon_sym_cast] = ACTIONS(2833), + [anon_sym_DOLLARtype] = ACTIONS(2835), + [anon_sym_for] = ACTIONS(2833), + [anon_sym_return] = ACTIONS(2833), + [anon_sym_untyped] = ACTIONS(2833), + [anon_sym_break] = ACTIONS(2833), + [anon_sym_continue] = ACTIONS(2833), + [anon_sym_LBRACK] = ACTIONS(2835), + [anon_sym_this] = ACTIONS(2833), + [anon_sym_AT] = ACTIONS(2833), + [anon_sym_AT_COLON] = ACTIONS(2835), + [anon_sym_try] = ACTIONS(2833), + [anon_sym_catch] = ACTIONS(2833), + [anon_sym_else] = ACTIONS(2833), + [anon_sym_if] = ACTIONS(2833), + [anon_sym_while] = ACTIONS(2833), + [anon_sym_do] = ACTIONS(2833), + [anon_sym_new] = ACTIONS(2833), + [anon_sym_TILDE] = ACTIONS(2835), + [anon_sym_BANG] = ACTIONS(2833), + [anon_sym_DASH] = ACTIONS(2833), + [anon_sym_PLUS_PLUS] = ACTIONS(2835), + [anon_sym_DASH_DASH] = ACTIONS(2835), + [anon_sym_PERCENT] = ACTIONS(2835), + [anon_sym_SLASH] = ACTIONS(2833), + [anon_sym_PLUS] = ACTIONS(2833), + [anon_sym_LT_LT] = ACTIONS(2835), + [anon_sym_GT_GT] = ACTIONS(2833), + [anon_sym_GT_GT_GT] = ACTIONS(2835), + [anon_sym_AMP] = ACTIONS(2833), + [anon_sym_PIPE] = ACTIONS(2833), + [anon_sym_CARET] = ACTIONS(2835), + [anon_sym_AMP_AMP] = ACTIONS(2835), + [anon_sym_PIPE_PIPE] = ACTIONS(2835), + [anon_sym_EQ_EQ] = ACTIONS(2835), + [anon_sym_BANG_EQ] = ACTIONS(2835), + [anon_sym_LT] = ACTIONS(2833), + [anon_sym_LT_EQ] = ACTIONS(2835), + [anon_sym_GT] = ACTIONS(2833), + [anon_sym_GT_EQ] = ACTIONS(2835), + [anon_sym_EQ_GT] = ACTIONS(2835), + [anon_sym_QMARK_QMARK] = ACTIONS(2835), + [anon_sym_EQ] = ACTIONS(2833), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2835), + [anon_sym_null] = ACTIONS(2833), + [anon_sym_macro] = ACTIONS(2833), + [anon_sym_abstract] = ACTIONS(2833), + [anon_sym_static] = ACTIONS(2833), + [anon_sym_public] = ACTIONS(2833), + [anon_sym_private] = ACTIONS(2833), + [anon_sym_extern] = ACTIONS(2833), + [anon_sym_inline] = ACTIONS(2833), + [anon_sym_overload] = ACTIONS(2833), + [anon_sym_override] = ACTIONS(2833), + [anon_sym_final] = ACTIONS(2833), + [anon_sym_class] = ACTIONS(2833), + [anon_sym_interface] = ACTIONS(2833), + [anon_sym_enum] = ACTIONS(2833), + [anon_sym_typedef] = ACTIONS(2833), + [anon_sym_function] = ACTIONS(2833), + [anon_sym_var] = ACTIONS(2833), + [aux_sym_integer_token1] = ACTIONS(2833), + [aux_sym_integer_token2] = ACTIONS(2835), + [aux_sym_float_token1] = ACTIONS(2833), + [aux_sym_float_token2] = ACTIONS(2835), + [anon_sym_true] = ACTIONS(2833), + [anon_sym_false] = ACTIONS(2833), + [aux_sym_string_token1] = ACTIONS(2835), + [aux_sym_string_token3] = ACTIONS(2835), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [827] = { + [ts_builtin_sym_end] = ACTIONS(2839), + [sym_identifier] = ACTIONS(2837), + [anon_sym_POUND] = ACTIONS(2839), + [anon_sym_package] = ACTIONS(2837), + [anon_sym_import] = ACTIONS(2837), + [anon_sym_STAR] = ACTIONS(2839), + [anon_sym_using] = ACTIONS(2837), + [anon_sym_throw] = ACTIONS(2837), + [anon_sym_LPAREN] = ACTIONS(2839), + [anon_sym_switch] = ACTIONS(2837), + [anon_sym_LBRACE] = ACTIONS(2839), + [anon_sym_cast] = ACTIONS(2837), + [anon_sym_DOLLARtype] = ACTIONS(2839), + [anon_sym_for] = ACTIONS(2837), + [anon_sym_return] = ACTIONS(2837), + [anon_sym_untyped] = ACTIONS(2837), + [anon_sym_break] = ACTIONS(2837), + [anon_sym_continue] = ACTIONS(2837), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_this] = ACTIONS(2837), + [anon_sym_AT] = ACTIONS(2837), + [anon_sym_AT_COLON] = ACTIONS(2839), + [anon_sym_try] = ACTIONS(2837), + [anon_sym_catch] = ACTIONS(2837), + [anon_sym_else] = ACTIONS(2837), + [anon_sym_if] = ACTIONS(2837), + [anon_sym_while] = ACTIONS(2837), + [anon_sym_do] = ACTIONS(2837), + [anon_sym_new] = ACTIONS(2837), + [anon_sym_TILDE] = ACTIONS(2839), + [anon_sym_BANG] = ACTIONS(2837), + [anon_sym_DASH] = ACTIONS(2837), + [anon_sym_PLUS_PLUS] = ACTIONS(2839), + [anon_sym_DASH_DASH] = ACTIONS(2839), + [anon_sym_PERCENT] = ACTIONS(2839), + [anon_sym_SLASH] = ACTIONS(2837), + [anon_sym_PLUS] = ACTIONS(2837), + [anon_sym_LT_LT] = ACTIONS(2839), + [anon_sym_GT_GT] = ACTIONS(2837), + [anon_sym_GT_GT_GT] = ACTIONS(2839), + [anon_sym_AMP] = ACTIONS(2837), + [anon_sym_PIPE] = ACTIONS(2837), + [anon_sym_CARET] = ACTIONS(2839), + [anon_sym_AMP_AMP] = ACTIONS(2839), + [anon_sym_PIPE_PIPE] = ACTIONS(2839), + [anon_sym_EQ_EQ] = ACTIONS(2839), + [anon_sym_BANG_EQ] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2837), + [anon_sym_LT_EQ] = ACTIONS(2839), + [anon_sym_GT] = ACTIONS(2837), + [anon_sym_GT_EQ] = ACTIONS(2839), + [anon_sym_EQ_GT] = ACTIONS(2839), + [anon_sym_QMARK_QMARK] = ACTIONS(2839), + [anon_sym_EQ] = ACTIONS(2837), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2839), + [anon_sym_null] = ACTIONS(2837), + [anon_sym_macro] = ACTIONS(2837), + [anon_sym_abstract] = ACTIONS(2837), + [anon_sym_static] = ACTIONS(2837), + [anon_sym_public] = ACTIONS(2837), + [anon_sym_private] = ACTIONS(2837), + [anon_sym_extern] = ACTIONS(2837), + [anon_sym_inline] = ACTIONS(2837), + [anon_sym_overload] = ACTIONS(2837), + [anon_sym_override] = ACTIONS(2837), + [anon_sym_final] = ACTIONS(2837), + [anon_sym_class] = ACTIONS(2837), + [anon_sym_interface] = ACTIONS(2837), + [anon_sym_enum] = ACTIONS(2837), + [anon_sym_typedef] = ACTIONS(2837), + [anon_sym_function] = ACTIONS(2837), + [anon_sym_var] = ACTIONS(2837), + [aux_sym_integer_token1] = ACTIONS(2837), + [aux_sym_integer_token2] = ACTIONS(2839), + [aux_sym_float_token1] = ACTIONS(2837), + [aux_sym_float_token2] = ACTIONS(2839), + [anon_sym_true] = ACTIONS(2837), + [anon_sym_false] = ACTIONS(2837), + [aux_sym_string_token1] = ACTIONS(2839), + [aux_sym_string_token3] = ACTIONS(2839), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [828] = { + [ts_builtin_sym_end] = ACTIONS(2843), + [sym_identifier] = ACTIONS(2841), + [anon_sym_POUND] = ACTIONS(2843), + [anon_sym_package] = ACTIONS(2841), + [anon_sym_import] = ACTIONS(2841), + [anon_sym_STAR] = ACTIONS(2843), + [anon_sym_using] = ACTIONS(2841), + [anon_sym_throw] = ACTIONS(2841), + [anon_sym_LPAREN] = ACTIONS(2843), + [anon_sym_switch] = ACTIONS(2841), + [anon_sym_LBRACE] = ACTIONS(2843), + [anon_sym_cast] = ACTIONS(2841), + [anon_sym_DOLLARtype] = ACTIONS(2843), + [anon_sym_for] = ACTIONS(2841), + [anon_sym_return] = ACTIONS(2841), + [anon_sym_untyped] = ACTIONS(2841), + [anon_sym_break] = ACTIONS(2841), + [anon_sym_continue] = ACTIONS(2841), + [anon_sym_LBRACK] = ACTIONS(2843), + [anon_sym_this] = ACTIONS(2841), + [anon_sym_AT] = ACTIONS(2841), + [anon_sym_AT_COLON] = ACTIONS(2843), + [anon_sym_try] = ACTIONS(2841), + [anon_sym_catch] = ACTIONS(2841), + [anon_sym_else] = ACTIONS(2841), + [anon_sym_if] = ACTIONS(2841), + [anon_sym_while] = ACTIONS(2841), + [anon_sym_do] = ACTIONS(2841), + [anon_sym_new] = ACTIONS(2841), + [anon_sym_TILDE] = ACTIONS(2843), + [anon_sym_BANG] = ACTIONS(2841), + [anon_sym_DASH] = ACTIONS(2841), + [anon_sym_PLUS_PLUS] = ACTIONS(2843), + [anon_sym_DASH_DASH] = ACTIONS(2843), + [anon_sym_PERCENT] = ACTIONS(2843), + [anon_sym_SLASH] = ACTIONS(2841), + [anon_sym_PLUS] = ACTIONS(2841), + [anon_sym_LT_LT] = ACTIONS(2843), + [anon_sym_GT_GT] = ACTIONS(2841), + [anon_sym_GT_GT_GT] = ACTIONS(2843), + [anon_sym_AMP] = ACTIONS(2841), + [anon_sym_PIPE] = ACTIONS(2841), + [anon_sym_CARET] = ACTIONS(2843), + [anon_sym_AMP_AMP] = ACTIONS(2843), + [anon_sym_PIPE_PIPE] = ACTIONS(2843), + [anon_sym_EQ_EQ] = ACTIONS(2843), + [anon_sym_BANG_EQ] = ACTIONS(2843), + [anon_sym_LT] = ACTIONS(2841), + [anon_sym_LT_EQ] = ACTIONS(2843), + [anon_sym_GT] = ACTIONS(2841), + [anon_sym_GT_EQ] = ACTIONS(2843), + [anon_sym_EQ_GT] = ACTIONS(2843), + [anon_sym_QMARK_QMARK] = ACTIONS(2843), + [anon_sym_EQ] = ACTIONS(2841), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2843), + [anon_sym_null] = ACTIONS(2841), + [anon_sym_macro] = ACTIONS(2841), + [anon_sym_abstract] = ACTIONS(2841), + [anon_sym_static] = ACTIONS(2841), + [anon_sym_public] = ACTIONS(2841), + [anon_sym_private] = ACTIONS(2841), + [anon_sym_extern] = ACTIONS(2841), + [anon_sym_inline] = ACTIONS(2841), + [anon_sym_overload] = ACTIONS(2841), + [anon_sym_override] = ACTIONS(2841), + [anon_sym_final] = ACTIONS(2841), + [anon_sym_class] = ACTIONS(2841), + [anon_sym_interface] = ACTIONS(2841), + [anon_sym_enum] = ACTIONS(2841), + [anon_sym_typedef] = ACTIONS(2841), + [anon_sym_function] = ACTIONS(2841), + [anon_sym_var] = ACTIONS(2841), + [aux_sym_integer_token1] = ACTIONS(2841), + [aux_sym_integer_token2] = ACTIONS(2843), + [aux_sym_float_token1] = ACTIONS(2841), + [aux_sym_float_token2] = ACTIONS(2843), + [anon_sym_true] = ACTIONS(2841), + [anon_sym_false] = ACTIONS(2841), + [aux_sym_string_token1] = ACTIONS(2843), + [aux_sym_string_token3] = ACTIONS(2843), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [829] = { + [ts_builtin_sym_end] = ACTIONS(2847), + [sym_identifier] = ACTIONS(2845), + [anon_sym_POUND] = ACTIONS(2847), + [anon_sym_package] = ACTIONS(2845), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_STAR] = ACTIONS(2847), + [anon_sym_using] = ACTIONS(2845), + [anon_sym_throw] = ACTIONS(2845), + [anon_sym_LPAREN] = ACTIONS(2847), + [anon_sym_switch] = ACTIONS(2845), + [anon_sym_LBRACE] = ACTIONS(2847), + [anon_sym_cast] = ACTIONS(2845), + [anon_sym_DOLLARtype] = ACTIONS(2847), + [anon_sym_for] = ACTIONS(2845), + [anon_sym_return] = ACTIONS(2845), + [anon_sym_untyped] = ACTIONS(2845), + [anon_sym_break] = ACTIONS(2845), + [anon_sym_continue] = ACTIONS(2845), + [anon_sym_LBRACK] = ACTIONS(2847), + [anon_sym_this] = ACTIONS(2845), + [anon_sym_AT] = ACTIONS(2845), + [anon_sym_AT_COLON] = ACTIONS(2847), + [anon_sym_try] = ACTIONS(2845), + [anon_sym_catch] = ACTIONS(2845), + [anon_sym_else] = ACTIONS(2845), + [anon_sym_if] = ACTIONS(2845), + [anon_sym_while] = ACTIONS(2845), + [anon_sym_do] = ACTIONS(2845), + [anon_sym_new] = ACTIONS(2845), + [anon_sym_TILDE] = ACTIONS(2847), + [anon_sym_BANG] = ACTIONS(2845), + [anon_sym_DASH] = ACTIONS(2845), + [anon_sym_PLUS_PLUS] = ACTIONS(2847), + [anon_sym_DASH_DASH] = ACTIONS(2847), + [anon_sym_PERCENT] = ACTIONS(2847), + [anon_sym_SLASH] = ACTIONS(2845), + [anon_sym_PLUS] = ACTIONS(2845), + [anon_sym_LT_LT] = ACTIONS(2847), + [anon_sym_GT_GT] = ACTIONS(2845), + [anon_sym_GT_GT_GT] = ACTIONS(2847), + [anon_sym_AMP] = ACTIONS(2845), + [anon_sym_PIPE] = ACTIONS(2845), + [anon_sym_CARET] = ACTIONS(2847), + [anon_sym_AMP_AMP] = ACTIONS(2847), + [anon_sym_PIPE_PIPE] = ACTIONS(2847), + [anon_sym_EQ_EQ] = ACTIONS(2847), + [anon_sym_BANG_EQ] = ACTIONS(2847), + [anon_sym_LT] = ACTIONS(2845), + [anon_sym_LT_EQ] = ACTIONS(2847), + [anon_sym_GT] = ACTIONS(2845), + [anon_sym_GT_EQ] = ACTIONS(2847), + [anon_sym_EQ_GT] = ACTIONS(2847), + [anon_sym_QMARK_QMARK] = ACTIONS(2847), + [anon_sym_EQ] = ACTIONS(2845), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2847), + [anon_sym_null] = ACTIONS(2845), + [anon_sym_macro] = ACTIONS(2845), + [anon_sym_abstract] = ACTIONS(2845), + [anon_sym_static] = ACTIONS(2845), + [anon_sym_public] = ACTIONS(2845), + [anon_sym_private] = ACTIONS(2845), + [anon_sym_extern] = ACTIONS(2845), + [anon_sym_inline] = ACTIONS(2845), + [anon_sym_overload] = ACTIONS(2845), + [anon_sym_override] = ACTIONS(2845), + [anon_sym_final] = ACTIONS(2845), + [anon_sym_class] = ACTIONS(2845), + [anon_sym_interface] = ACTIONS(2845), + [anon_sym_enum] = ACTIONS(2845), + [anon_sym_typedef] = ACTIONS(2845), + [anon_sym_function] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2845), + [aux_sym_integer_token1] = ACTIONS(2845), + [aux_sym_integer_token2] = ACTIONS(2847), + [aux_sym_float_token1] = ACTIONS(2845), + [aux_sym_float_token2] = ACTIONS(2847), + [anon_sym_true] = ACTIONS(2845), + [anon_sym_false] = ACTIONS(2845), + [aux_sym_string_token1] = ACTIONS(2847), + [aux_sym_string_token3] = ACTIONS(2847), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [830] = { + [ts_builtin_sym_end] = ACTIONS(2851), + [sym_identifier] = ACTIONS(2849), + [anon_sym_POUND] = ACTIONS(2851), + [anon_sym_package] = ACTIONS(2849), + [anon_sym_import] = ACTIONS(2849), + [anon_sym_STAR] = ACTIONS(2851), + [anon_sym_using] = ACTIONS(2849), + [anon_sym_throw] = ACTIONS(2849), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_switch] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_cast] = ACTIONS(2849), + [anon_sym_DOLLARtype] = ACTIONS(2851), + [anon_sym_for] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_untyped] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_this] = ACTIONS(2849), + [anon_sym_AT] = ACTIONS(2849), + [anon_sym_AT_COLON] = ACTIONS(2851), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_catch] = ACTIONS(2849), + [anon_sym_else] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_while] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_new] = ACTIONS(2849), + [anon_sym_TILDE] = ACTIONS(2851), + [anon_sym_BANG] = ACTIONS(2849), + [anon_sym_DASH] = ACTIONS(2849), + [anon_sym_PLUS_PLUS] = ACTIONS(2851), + [anon_sym_DASH_DASH] = ACTIONS(2851), + [anon_sym_PERCENT] = ACTIONS(2851), + [anon_sym_SLASH] = ACTIONS(2849), + [anon_sym_PLUS] = ACTIONS(2849), + [anon_sym_LT_LT] = ACTIONS(2851), + [anon_sym_GT_GT] = ACTIONS(2849), + [anon_sym_GT_GT_GT] = ACTIONS(2851), + [anon_sym_AMP] = ACTIONS(2849), + [anon_sym_PIPE] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2851), + [anon_sym_AMP_AMP] = ACTIONS(2851), + [anon_sym_PIPE_PIPE] = ACTIONS(2851), + [anon_sym_EQ_EQ] = ACTIONS(2851), + [anon_sym_BANG_EQ] = ACTIONS(2851), + [anon_sym_LT] = ACTIONS(2849), + [anon_sym_LT_EQ] = ACTIONS(2851), + [anon_sym_GT] = ACTIONS(2849), + [anon_sym_GT_EQ] = ACTIONS(2851), + [anon_sym_EQ_GT] = ACTIONS(2851), + [anon_sym_QMARK_QMARK] = ACTIONS(2851), + [anon_sym_EQ] = ACTIONS(2849), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2851), + [anon_sym_null] = ACTIONS(2849), + [anon_sym_macro] = ACTIONS(2849), + [anon_sym_abstract] = ACTIONS(2849), + [anon_sym_static] = ACTIONS(2849), + [anon_sym_public] = ACTIONS(2849), + [anon_sym_private] = ACTIONS(2849), + [anon_sym_extern] = ACTIONS(2849), + [anon_sym_inline] = ACTIONS(2849), + [anon_sym_overload] = ACTIONS(2849), + [anon_sym_override] = ACTIONS(2849), + [anon_sym_final] = ACTIONS(2849), + [anon_sym_class] = ACTIONS(2849), + [anon_sym_interface] = ACTIONS(2849), + [anon_sym_enum] = ACTIONS(2849), + [anon_sym_typedef] = ACTIONS(2849), + [anon_sym_function] = ACTIONS(2849), + [anon_sym_var] = ACTIONS(2849), + [aux_sym_integer_token1] = ACTIONS(2849), + [aux_sym_integer_token2] = ACTIONS(2851), + [aux_sym_float_token1] = ACTIONS(2849), + [aux_sym_float_token2] = ACTIONS(2851), + [anon_sym_true] = ACTIONS(2849), + [anon_sym_false] = ACTIONS(2849), + [aux_sym_string_token1] = ACTIONS(2851), + [aux_sym_string_token3] = ACTIONS(2851), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [831] = { + [ts_builtin_sym_end] = ACTIONS(3423), + [sym_identifier] = ACTIONS(3421), + [anon_sym_POUND] = ACTIONS(3423), + [anon_sym_package] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_STAR] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_cast] = ACTIONS(3421), + [anon_sym_DOLLARtype] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_untyped] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_this] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_AT_COLON] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_catch] = ACTIONS(3421), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [anon_sym_PERCENT] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_LT_LT] = ACTIONS(3423), + [anon_sym_GT_GT] = ACTIONS(3421), + [anon_sym_GT_GT_GT] = ACTIONS(3423), + [anon_sym_AMP] = ACTIONS(3421), + [anon_sym_PIPE] = ACTIONS(3421), + [anon_sym_CARET] = ACTIONS(3423), + [anon_sym_AMP_AMP] = ACTIONS(3423), + [anon_sym_PIPE_PIPE] = ACTIONS(3423), + [anon_sym_EQ_EQ] = ACTIONS(3423), + [anon_sym_BANG_EQ] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_LT_EQ] = ACTIONS(3423), + [anon_sym_GT] = ACTIONS(3421), + [anon_sym_GT_EQ] = ACTIONS(3423), + [anon_sym_EQ_GT] = ACTIONS(3423), + [anon_sym_QMARK_QMARK] = ACTIONS(3423), + [anon_sym_EQ] = ACTIONS(3421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3423), + [anon_sym_null] = ACTIONS(3421), + [anon_sym_macro] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_extern] = ACTIONS(3421), + [anon_sym_inline] = ACTIONS(3421), + [anon_sym_overload] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_final] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), + [anon_sym_typedef] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [aux_sym_integer_token1] = ACTIONS(3421), + [aux_sym_integer_token2] = ACTIONS(3423), + [aux_sym_float_token1] = ACTIONS(3421), + [aux_sym_float_token2] = ACTIONS(3423), + [anon_sym_true] = ACTIONS(3421), + [anon_sym_false] = ACTIONS(3421), + [aux_sym_string_token1] = ACTIONS(3423), + [aux_sym_string_token3] = ACTIONS(3423), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [832] = { + [ts_builtin_sym_end] = ACTIONS(2663), + [sym_identifier] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_package] = ACTIONS(2661), + [anon_sym_import] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2663), + [anon_sym_using] = ACTIONS(2661), + [anon_sym_throw] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2663), + [anon_sym_switch] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2663), + [anon_sym_cast] = ACTIONS(2661), + [anon_sym_DOLLARtype] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2661), + [anon_sym_return] = ACTIONS(2661), + [anon_sym_untyped] = ACTIONS(2661), + [anon_sym_break] = ACTIONS(2661), + [anon_sym_continue] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2663), + [anon_sym_this] = ACTIONS(2661), + [anon_sym_AT] = ACTIONS(2661), + [anon_sym_AT_COLON] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2661), + [anon_sym_catch] = ACTIONS(2661), + [anon_sym_else] = ACTIONS(2661), + [anon_sym_if] = ACTIONS(2661), + [anon_sym_while] = ACTIONS(2661), + [anon_sym_do] = ACTIONS(2661), + [anon_sym_new] = ACTIONS(2661), + [anon_sym_TILDE] = ACTIONS(2663), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_PLUS_PLUS] = ACTIONS(2663), + [anon_sym_DASH_DASH] = ACTIONS(2663), + [anon_sym_PERCENT] = ACTIONS(2663), + [anon_sym_SLASH] = ACTIONS(2661), + [anon_sym_PLUS] = ACTIONS(2661), + [anon_sym_LT_LT] = ACTIONS(2663), + [anon_sym_GT_GT] = ACTIONS(2661), + [anon_sym_GT_GT_GT] = ACTIONS(2663), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_CARET] = ACTIONS(2663), + [anon_sym_AMP_AMP] = ACTIONS(2663), + [anon_sym_PIPE_PIPE] = ACTIONS(2663), + [anon_sym_EQ_EQ] = ACTIONS(2663), + [anon_sym_BANG_EQ] = ACTIONS(2663), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_LT_EQ] = ACTIONS(2663), + [anon_sym_GT] = ACTIONS(2661), + [anon_sym_GT_EQ] = ACTIONS(2663), + [anon_sym_EQ_GT] = ACTIONS(2663), + [anon_sym_QMARK_QMARK] = ACTIONS(2663), + [anon_sym_EQ] = ACTIONS(2661), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2663), + [anon_sym_null] = ACTIONS(2661), + [anon_sym_macro] = ACTIONS(2661), + [anon_sym_abstract] = ACTIONS(2661), + [anon_sym_static] = ACTIONS(2661), + [anon_sym_public] = ACTIONS(2661), + [anon_sym_private] = ACTIONS(2661), + [anon_sym_extern] = ACTIONS(2661), + [anon_sym_inline] = ACTIONS(2661), + [anon_sym_overload] = ACTIONS(2661), + [anon_sym_override] = ACTIONS(2661), + [anon_sym_final] = ACTIONS(2661), + [anon_sym_class] = ACTIONS(2661), + [anon_sym_interface] = ACTIONS(2661), + [anon_sym_enum] = ACTIONS(2661), + [anon_sym_typedef] = ACTIONS(2661), + [anon_sym_function] = ACTIONS(2661), + [anon_sym_var] = ACTIONS(2661), + [aux_sym_integer_token1] = ACTIONS(2661), + [aux_sym_integer_token2] = ACTIONS(2663), + [aux_sym_float_token1] = ACTIONS(2661), + [aux_sym_float_token2] = ACTIONS(2663), + [anon_sym_true] = ACTIONS(2661), + [anon_sym_false] = ACTIONS(2661), + [aux_sym_string_token1] = ACTIONS(2663), + [aux_sym_string_token3] = ACTIONS(2663), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [833] = { + [ts_builtin_sym_end] = ACTIONS(2855), + [sym_identifier] = ACTIONS(2853), + [anon_sym_POUND] = ACTIONS(2855), + [anon_sym_package] = ACTIONS(2853), + [anon_sym_import] = ACTIONS(2853), + [anon_sym_STAR] = ACTIONS(2855), + [anon_sym_using] = ACTIONS(2853), + [anon_sym_throw] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_switch] = ACTIONS(2853), + [anon_sym_LBRACE] = ACTIONS(2855), + [anon_sym_cast] = ACTIONS(2853), + [anon_sym_DOLLARtype] = ACTIONS(2855), + [anon_sym_for] = ACTIONS(2853), + [anon_sym_return] = ACTIONS(2853), + [anon_sym_untyped] = ACTIONS(2853), + [anon_sym_break] = ACTIONS(2853), + [anon_sym_continue] = ACTIONS(2853), + [anon_sym_LBRACK] = ACTIONS(2855), + [anon_sym_this] = ACTIONS(2853), + [anon_sym_AT] = ACTIONS(2853), + [anon_sym_AT_COLON] = ACTIONS(2855), + [anon_sym_try] = ACTIONS(2853), + [anon_sym_catch] = ACTIONS(2853), + [anon_sym_else] = ACTIONS(2853), + [anon_sym_if] = ACTIONS(2853), + [anon_sym_while] = ACTIONS(2853), + [anon_sym_do] = ACTIONS(2853), + [anon_sym_new] = ACTIONS(2853), + [anon_sym_TILDE] = ACTIONS(2855), + [anon_sym_BANG] = ACTIONS(2853), + [anon_sym_DASH] = ACTIONS(2853), + [anon_sym_PLUS_PLUS] = ACTIONS(2855), + [anon_sym_DASH_DASH] = ACTIONS(2855), + [anon_sym_PERCENT] = ACTIONS(2855), + [anon_sym_SLASH] = ACTIONS(2853), + [anon_sym_PLUS] = ACTIONS(2853), + [anon_sym_LT_LT] = ACTIONS(2855), + [anon_sym_GT_GT] = ACTIONS(2853), + [anon_sym_GT_GT_GT] = ACTIONS(2855), + [anon_sym_AMP] = ACTIONS(2853), + [anon_sym_PIPE] = ACTIONS(2853), + [anon_sym_CARET] = ACTIONS(2855), + [anon_sym_AMP_AMP] = ACTIONS(2855), + [anon_sym_PIPE_PIPE] = ACTIONS(2855), + [anon_sym_EQ_EQ] = ACTIONS(2855), + [anon_sym_BANG_EQ] = ACTIONS(2855), + [anon_sym_LT] = ACTIONS(2853), + [anon_sym_LT_EQ] = ACTIONS(2855), + [anon_sym_GT] = ACTIONS(2853), + [anon_sym_GT_EQ] = ACTIONS(2855), + [anon_sym_EQ_GT] = ACTIONS(2855), + [anon_sym_QMARK_QMARK] = ACTIONS(2855), + [anon_sym_EQ] = ACTIONS(2853), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2855), + [anon_sym_null] = ACTIONS(2853), + [anon_sym_macro] = ACTIONS(2853), + [anon_sym_abstract] = ACTIONS(2853), + [anon_sym_static] = ACTIONS(2853), + [anon_sym_public] = ACTIONS(2853), + [anon_sym_private] = ACTIONS(2853), + [anon_sym_extern] = ACTIONS(2853), + [anon_sym_inline] = ACTIONS(2853), + [anon_sym_overload] = ACTIONS(2853), + [anon_sym_override] = ACTIONS(2853), + [anon_sym_final] = ACTIONS(2853), + [anon_sym_class] = ACTIONS(2853), + [anon_sym_interface] = ACTIONS(2853), + [anon_sym_enum] = ACTIONS(2853), + [anon_sym_typedef] = ACTIONS(2853), + [anon_sym_function] = ACTIONS(2853), + [anon_sym_var] = ACTIONS(2853), + [aux_sym_integer_token1] = ACTIONS(2853), + [aux_sym_integer_token2] = ACTIONS(2855), + [aux_sym_float_token1] = ACTIONS(2853), + [aux_sym_float_token2] = ACTIONS(2855), + [anon_sym_true] = ACTIONS(2853), + [anon_sym_false] = ACTIONS(2853), + [aux_sym_string_token1] = ACTIONS(2855), + [aux_sym_string_token3] = ACTIONS(2855), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [834] = { + [ts_builtin_sym_end] = ACTIONS(2859), + [sym_identifier] = ACTIONS(2857), + [anon_sym_POUND] = ACTIONS(2859), + [anon_sym_package] = ACTIONS(2857), + [anon_sym_import] = ACTIONS(2857), + [anon_sym_STAR] = ACTIONS(2859), + [anon_sym_using] = ACTIONS(2857), + [anon_sym_throw] = ACTIONS(2857), + [anon_sym_LPAREN] = ACTIONS(2859), + [anon_sym_switch] = ACTIONS(2857), + [anon_sym_LBRACE] = ACTIONS(2859), + [anon_sym_cast] = ACTIONS(2857), + [anon_sym_DOLLARtype] = ACTIONS(2859), + [anon_sym_for] = ACTIONS(2857), + [anon_sym_return] = ACTIONS(2857), + [anon_sym_untyped] = ACTIONS(2857), + [anon_sym_break] = ACTIONS(2857), + [anon_sym_continue] = ACTIONS(2857), + [anon_sym_LBRACK] = ACTIONS(2859), + [anon_sym_this] = ACTIONS(2857), + [anon_sym_AT] = ACTIONS(2857), + [anon_sym_AT_COLON] = ACTIONS(2859), + [anon_sym_try] = ACTIONS(2857), + [anon_sym_catch] = ACTIONS(2857), + [anon_sym_else] = ACTIONS(2857), + [anon_sym_if] = ACTIONS(2857), + [anon_sym_while] = ACTIONS(2857), + [anon_sym_do] = ACTIONS(2857), + [anon_sym_new] = ACTIONS(2857), + [anon_sym_TILDE] = ACTIONS(2859), + [anon_sym_BANG] = ACTIONS(2857), + [anon_sym_DASH] = ACTIONS(2857), + [anon_sym_PLUS_PLUS] = ACTIONS(2859), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_PERCENT] = ACTIONS(2859), + [anon_sym_SLASH] = ACTIONS(2857), + [anon_sym_PLUS] = ACTIONS(2857), + [anon_sym_LT_LT] = ACTIONS(2859), + [anon_sym_GT_GT] = ACTIONS(2857), + [anon_sym_GT_GT_GT] = ACTIONS(2859), + [anon_sym_AMP] = ACTIONS(2857), + [anon_sym_PIPE] = ACTIONS(2857), + [anon_sym_CARET] = ACTIONS(2859), + [anon_sym_AMP_AMP] = ACTIONS(2859), + [anon_sym_PIPE_PIPE] = ACTIONS(2859), + [anon_sym_EQ_EQ] = ACTIONS(2859), + [anon_sym_BANG_EQ] = ACTIONS(2859), + [anon_sym_LT] = ACTIONS(2857), + [anon_sym_LT_EQ] = ACTIONS(2859), + [anon_sym_GT] = ACTIONS(2857), + [anon_sym_GT_EQ] = ACTIONS(2859), + [anon_sym_EQ_GT] = ACTIONS(2859), + [anon_sym_QMARK_QMARK] = ACTIONS(2859), + [anon_sym_EQ] = ACTIONS(2857), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2859), + [anon_sym_null] = ACTIONS(2857), + [anon_sym_macro] = ACTIONS(2857), + [anon_sym_abstract] = ACTIONS(2857), + [anon_sym_static] = ACTIONS(2857), + [anon_sym_public] = ACTIONS(2857), + [anon_sym_private] = ACTIONS(2857), + [anon_sym_extern] = ACTIONS(2857), + [anon_sym_inline] = ACTIONS(2857), + [anon_sym_overload] = ACTIONS(2857), + [anon_sym_override] = ACTIONS(2857), + [anon_sym_final] = ACTIONS(2857), + [anon_sym_class] = ACTIONS(2857), + [anon_sym_interface] = ACTIONS(2857), + [anon_sym_enum] = ACTIONS(2857), + [anon_sym_typedef] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2857), + [anon_sym_var] = ACTIONS(2857), + [aux_sym_integer_token1] = ACTIONS(2857), + [aux_sym_integer_token2] = ACTIONS(2859), + [aux_sym_float_token1] = ACTIONS(2857), + [aux_sym_float_token2] = ACTIONS(2859), + [anon_sym_true] = ACTIONS(2857), + [anon_sym_false] = ACTIONS(2857), + [aux_sym_string_token1] = ACTIONS(2859), + [aux_sym_string_token3] = ACTIONS(2859), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [835] = { + [ts_builtin_sym_end] = ACTIONS(3233), + [sym_identifier] = ACTIONS(3231), + [anon_sym_POUND] = ACTIONS(3233), + [anon_sym_package] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_STAR] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_cast] = ACTIONS(3231), + [anon_sym_DOLLARtype] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_untyped] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_this] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_AT_COLON] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_catch] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [anon_sym_PERCENT] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_LT_LT] = ACTIONS(3233), + [anon_sym_GT_GT] = ACTIONS(3231), + [anon_sym_GT_GT_GT] = ACTIONS(3233), + [anon_sym_AMP] = ACTIONS(3231), + [anon_sym_PIPE] = ACTIONS(3231), + [anon_sym_CARET] = ACTIONS(3233), + [anon_sym_AMP_AMP] = ACTIONS(3233), + [anon_sym_PIPE_PIPE] = ACTIONS(3233), + [anon_sym_EQ_EQ] = ACTIONS(3233), + [anon_sym_BANG_EQ] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_LT_EQ] = ACTIONS(3233), + [anon_sym_GT] = ACTIONS(3231), + [anon_sym_GT_EQ] = ACTIONS(3233), + [anon_sym_EQ_GT] = ACTIONS(3233), + [anon_sym_QMARK_QMARK] = ACTIONS(3233), + [anon_sym_EQ] = ACTIONS(3231), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3233), + [anon_sym_null] = ACTIONS(3231), + [anon_sym_macro] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_extern] = ACTIONS(3231), + [anon_sym_inline] = ACTIONS(3231), + [anon_sym_overload] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_final] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [anon_sym_typedef] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [aux_sym_integer_token1] = ACTIONS(3231), + [aux_sym_integer_token2] = ACTIONS(3233), + [aux_sym_float_token1] = ACTIONS(3231), + [aux_sym_float_token2] = ACTIONS(3233), + [anon_sym_true] = ACTIONS(3231), + [anon_sym_false] = ACTIONS(3231), + [aux_sym_string_token1] = ACTIONS(3233), + [aux_sym_string_token3] = ACTIONS(3233), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [836] = { + [ts_builtin_sym_end] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3327), + [anon_sym_POUND] = ACTIONS(3329), + [anon_sym_package] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_STAR] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_cast] = ACTIONS(3327), + [anon_sym_DOLLARtype] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_untyped] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_this] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [anon_sym_AT_COLON] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_catch] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [anon_sym_PERCENT] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_LT_LT] = ACTIONS(3329), + [anon_sym_GT_GT] = ACTIONS(3327), + [anon_sym_GT_GT_GT] = ACTIONS(3329), + [anon_sym_AMP] = ACTIONS(3327), + [anon_sym_PIPE] = ACTIONS(3327), + [anon_sym_CARET] = ACTIONS(3329), + [anon_sym_AMP_AMP] = ACTIONS(3329), + [anon_sym_PIPE_PIPE] = ACTIONS(3329), + [anon_sym_EQ_EQ] = ACTIONS(3329), + [anon_sym_BANG_EQ] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_LT_EQ] = ACTIONS(3329), + [anon_sym_GT] = ACTIONS(3327), + [anon_sym_GT_EQ] = ACTIONS(3329), + [anon_sym_EQ_GT] = ACTIONS(3329), + [anon_sym_QMARK_QMARK] = ACTIONS(3329), + [anon_sym_EQ] = ACTIONS(3327), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3329), + [anon_sym_null] = ACTIONS(3327), + [anon_sym_macro] = ACTIONS(3327), + [anon_sym_abstract] = ACTIONS(3327), + [anon_sym_static] = ACTIONS(3327), + [anon_sym_public] = ACTIONS(3327), + [anon_sym_private] = ACTIONS(3327), + [anon_sym_extern] = ACTIONS(3327), + [anon_sym_inline] = ACTIONS(3327), + [anon_sym_overload] = ACTIONS(3327), + [anon_sym_override] = ACTIONS(3327), + [anon_sym_final] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), + [anon_sym_typedef] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [aux_sym_integer_token1] = ACTIONS(3327), + [aux_sym_integer_token2] = ACTIONS(3329), + [aux_sym_float_token1] = ACTIONS(3327), + [aux_sym_float_token2] = ACTIONS(3329), + [anon_sym_true] = ACTIONS(3327), + [anon_sym_false] = ACTIONS(3327), + [aux_sym_string_token1] = ACTIONS(3329), + [aux_sym_string_token3] = ACTIONS(3329), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [837] = { + [sym_identifier] = ACTIONS(3457), + [anon_sym_POUND] = ACTIONS(3459), + [anon_sym_package] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_cast] = ACTIONS(3457), + [anon_sym_DOLLARtype] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_untyped] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_AT_COLON] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_macro] = ACTIONS(3457), + [anon_sym_abstract] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym_overload] = ACTIONS(3457), + [anon_sym_override] = ACTIONS(3457), + [anon_sym_final] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_var] = ACTIONS(3457), + [aux_sym_integer_token1] = ACTIONS(3457), + [aux_sym_integer_token2] = ACTIONS(3459), + [aux_sym_float_token1] = ACTIONS(3457), + [aux_sym_float_token2] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym_string_token1] = ACTIONS(3459), + [aux_sym_string_token3] = ACTIONS(3459), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3461), + [sym__closing_brace_marker] = ACTIONS(3459), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [838] = { + [ts_builtin_sym_end] = ACTIONS(3459), + [sym_identifier] = ACTIONS(3457), + [anon_sym_POUND] = ACTIONS(3459), + [anon_sym_package] = ACTIONS(3457), + [anon_sym_import] = ACTIONS(3457), + [anon_sym_STAR] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3457), + [anon_sym_throw] = ACTIONS(3457), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3457), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_cast] = ACTIONS(3457), + [anon_sym_DOLLARtype] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3457), + [anon_sym_return] = ACTIONS(3457), + [anon_sym_untyped] = ACTIONS(3457), + [anon_sym_break] = ACTIONS(3457), + [anon_sym_continue] = ACTIONS(3457), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_this] = ACTIONS(3457), + [anon_sym_AT] = ACTIONS(3457), + [anon_sym_AT_COLON] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3457), + [anon_sym_if] = ACTIONS(3457), + [anon_sym_while] = ACTIONS(3457), + [anon_sym_do] = ACTIONS(3457), + [anon_sym_new] = ACTIONS(3457), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3457), + [anon_sym_DASH] = ACTIONS(3457), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [anon_sym_PERCENT] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3457), + [anon_sym_PLUS] = ACTIONS(3457), + [anon_sym_LT_LT] = ACTIONS(3459), + [anon_sym_GT_GT] = ACTIONS(3457), + [anon_sym_GT_GT_GT] = ACTIONS(3459), + [anon_sym_AMP] = ACTIONS(3457), + [anon_sym_PIPE] = ACTIONS(3457), + [anon_sym_CARET] = ACTIONS(3459), + [anon_sym_AMP_AMP] = ACTIONS(3459), + [anon_sym_PIPE_PIPE] = ACTIONS(3459), + [anon_sym_EQ_EQ] = ACTIONS(3459), + [anon_sym_BANG_EQ] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3457), + [anon_sym_LT_EQ] = ACTIONS(3459), + [anon_sym_GT] = ACTIONS(3457), + [anon_sym_GT_EQ] = ACTIONS(3459), + [anon_sym_EQ_GT] = ACTIONS(3459), + [anon_sym_QMARK_QMARK] = ACTIONS(3459), + [anon_sym_EQ] = ACTIONS(3457), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3459), + [anon_sym_null] = ACTIONS(3457), + [anon_sym_macro] = ACTIONS(3457), + [anon_sym_abstract] = ACTIONS(3457), + [anon_sym_static] = ACTIONS(3457), + [anon_sym_public] = ACTIONS(3457), + [anon_sym_private] = ACTIONS(3457), + [anon_sym_extern] = ACTIONS(3457), + [anon_sym_inline] = ACTIONS(3457), + [anon_sym_overload] = ACTIONS(3457), + [anon_sym_override] = ACTIONS(3457), + [anon_sym_final] = ACTIONS(3457), + [anon_sym_class] = ACTIONS(3457), + [anon_sym_interface] = ACTIONS(3457), + [anon_sym_enum] = ACTIONS(3457), + [anon_sym_typedef] = ACTIONS(3457), + [anon_sym_function] = ACTIONS(3457), + [anon_sym_var] = ACTIONS(3457), + [aux_sym_integer_token1] = ACTIONS(3457), + [aux_sym_integer_token2] = ACTIONS(3459), + [aux_sym_float_token1] = ACTIONS(3457), + [aux_sym_float_token2] = ACTIONS(3459), + [anon_sym_true] = ACTIONS(3457), + [anon_sym_false] = ACTIONS(3457), + [aux_sym_string_token1] = ACTIONS(3459), + [aux_sym_string_token3] = ACTIONS(3459), + [sym_comment] = ACTIONS(3), + [sym__lookback_semicolon] = ACTIONS(3463), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [839] = { + [sym_identifier] = ACTIONS(3465), + [anon_sym_POUND] = ACTIONS(3467), + [anon_sym_package] = ACTIONS(3465), + [anon_sym_import] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_throw] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_switch] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_cast] = ACTIONS(3465), + [anon_sym_DOLLARtype] = ACTIONS(3467), + [anon_sym_for] = ACTIONS(3465), + [anon_sym_return] = ACTIONS(3465), + [anon_sym_untyped] = ACTIONS(3465), + [anon_sym_break] = ACTIONS(3465), + [anon_sym_continue] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_this] = ACTIONS(3465), + [anon_sym_AT] = ACTIONS(3465), + [anon_sym_AT_COLON] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3465), + [anon_sym_if] = ACTIONS(3465), + [anon_sym_while] = ACTIONS(3465), + [anon_sym_do] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_PLUS_PLUS] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(3465), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3465), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_EQ_GT] = ACTIONS(3467), + [anon_sym_QMARK_QMARK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_macro] = ACTIONS(3465), + [anon_sym_abstract] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_public] = ACTIONS(3465), + [anon_sym_private] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym_overload] = ACTIONS(3465), + [anon_sym_override] = ACTIONS(3465), + [anon_sym_final] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_interface] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3465), + [anon_sym_var] = ACTIONS(3465), + [aux_sym_integer_token1] = ACTIONS(3465), + [aux_sym_integer_token2] = ACTIONS(3467), + [aux_sym_float_token1] = ACTIONS(3465), + [aux_sym_float_token2] = ACTIONS(3467), + [anon_sym_true] = ACTIONS(3465), + [anon_sym_false] = ACTIONS(3465), + [aux_sym_string_token1] = ACTIONS(3467), + [aux_sym_string_token3] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(3467), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [840] = { + [ts_builtin_sym_end] = ACTIONS(631), + [sym_identifier] = ACTIONS(3469), + [anon_sym_POUND] = ACTIONS(631), + [anon_sym_package] = ACTIONS(3469), + [anon_sym_import] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_using] = ACTIONS(3469), + [anon_sym_throw] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_cast] = ACTIONS(3469), + [anon_sym_DOLLARtype] = ACTIONS(631), + [anon_sym_for] = ACTIONS(3469), + [anon_sym_return] = ACTIONS(3469), + [anon_sym_untyped] = ACTIONS(3469), + [anon_sym_break] = ACTIONS(3469), + [anon_sym_continue] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_this] = ACTIONS(3469), + [anon_sym_AT] = ACTIONS(3469), + [anon_sym_AT_COLON] = ACTIONS(631), + [anon_sym_try] = ACTIONS(3469), + [anon_sym_if] = ACTIONS(3469), + [anon_sym_while] = ACTIONS(3469), + [anon_sym_do] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(631), + [anon_sym_PERCENT] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_LT_LT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(3469), + [anon_sym_GT_GT_GT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3469), + [anon_sym_CARET] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(3469), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_QMARK_QMARK] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_null] = ACTIONS(3469), + [anon_sym_macro] = ACTIONS(3469), + [anon_sym_abstract] = ACTIONS(3469), + [anon_sym_static] = ACTIONS(3469), + [anon_sym_public] = ACTIONS(3469), + [anon_sym_private] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3469), + [anon_sym_inline] = ACTIONS(3469), + [anon_sym_overload] = ACTIONS(3469), + [anon_sym_override] = ACTIONS(3469), + [anon_sym_final] = ACTIONS(3469), + [anon_sym_class] = ACTIONS(3469), + [anon_sym_interface] = ACTIONS(3469), + [anon_sym_enum] = ACTIONS(3469), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3469), + [anon_sym_var] = ACTIONS(3469), + [aux_sym_integer_token1] = ACTIONS(3469), + [aux_sym_integer_token2] = ACTIONS(631), + [aux_sym_float_token1] = ACTIONS(3469), + [aux_sym_float_token2] = ACTIONS(631), + [anon_sym_true] = ACTIONS(3469), + [anon_sym_false] = ACTIONS(3469), + [aux_sym_string_token1] = ACTIONS(631), + [aux_sym_string_token3] = ACTIONS(631), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [841] = { + [sym_identifier] = ACTIONS(3469), + [anon_sym_POUND] = ACTIONS(631), + [anon_sym_package] = ACTIONS(3469), + [anon_sym_import] = ACTIONS(3469), + [anon_sym_STAR] = ACTIONS(631), + [anon_sym_using] = ACTIONS(3469), + [anon_sym_throw] = ACTIONS(3469), + [anon_sym_LPAREN] = ACTIONS(631), + [anon_sym_switch] = ACTIONS(3469), + [anon_sym_LBRACE] = ACTIONS(631), + [anon_sym_cast] = ACTIONS(3469), + [anon_sym_DOLLARtype] = ACTIONS(631), + [anon_sym_for] = ACTIONS(3469), + [anon_sym_return] = ACTIONS(3469), + [anon_sym_untyped] = ACTIONS(3469), + [anon_sym_break] = ACTIONS(3469), + [anon_sym_continue] = ACTIONS(3469), + [anon_sym_LBRACK] = ACTIONS(631), + [anon_sym_this] = ACTIONS(3469), + [anon_sym_AT] = ACTIONS(3469), + [anon_sym_AT_COLON] = ACTIONS(631), + [anon_sym_try] = ACTIONS(3469), + [anon_sym_if] = ACTIONS(3469), + [anon_sym_while] = ACTIONS(3469), + [anon_sym_do] = ACTIONS(3469), + [anon_sym_new] = ACTIONS(3469), + [anon_sym_TILDE] = ACTIONS(631), + [anon_sym_BANG] = ACTIONS(3469), + [anon_sym_DASH] = ACTIONS(3469), + [anon_sym_PLUS_PLUS] = ACTIONS(631), + [anon_sym_DASH_DASH] = ACTIONS(631), + [anon_sym_PERCENT] = ACTIONS(631), + [anon_sym_SLASH] = ACTIONS(3469), + [anon_sym_PLUS] = ACTIONS(3469), + [anon_sym_LT_LT] = ACTIONS(631), + [anon_sym_GT_GT] = ACTIONS(3469), + [anon_sym_GT_GT_GT] = ACTIONS(631), + [anon_sym_AMP] = ACTIONS(3469), + [anon_sym_PIPE] = ACTIONS(3469), + [anon_sym_CARET] = ACTIONS(631), + [anon_sym_AMP_AMP] = ACTIONS(631), + [anon_sym_PIPE_PIPE] = ACTIONS(631), + [anon_sym_EQ_EQ] = ACTIONS(631), + [anon_sym_BANG_EQ] = ACTIONS(631), + [anon_sym_LT] = ACTIONS(3469), + [anon_sym_LT_EQ] = ACTIONS(631), + [anon_sym_GT] = ACTIONS(3469), + [anon_sym_GT_EQ] = ACTIONS(631), + [anon_sym_EQ_GT] = ACTIONS(631), + [anon_sym_QMARK_QMARK] = ACTIONS(631), + [anon_sym_EQ] = ACTIONS(3469), + [anon_sym_DOT_DOT_DOT] = ACTIONS(631), + [anon_sym_null] = ACTIONS(3469), + [anon_sym_macro] = ACTIONS(3469), + [anon_sym_abstract] = ACTIONS(3469), + [anon_sym_static] = ACTIONS(3469), + [anon_sym_public] = ACTIONS(3469), + [anon_sym_private] = ACTIONS(3469), + [anon_sym_extern] = ACTIONS(3469), + [anon_sym_inline] = ACTIONS(3469), + [anon_sym_overload] = ACTIONS(3469), + [anon_sym_override] = ACTIONS(3469), + [anon_sym_final] = ACTIONS(3469), + [anon_sym_class] = ACTIONS(3469), + [anon_sym_interface] = ACTIONS(3469), + [anon_sym_enum] = ACTIONS(3469), + [anon_sym_typedef] = ACTIONS(3469), + [anon_sym_function] = ACTIONS(3469), + [anon_sym_var] = ACTIONS(3469), + [aux_sym_integer_token1] = ACTIONS(3469), + [aux_sym_integer_token2] = ACTIONS(631), + [aux_sym_float_token1] = ACTIONS(3469), + [aux_sym_float_token2] = ACTIONS(631), + [anon_sym_true] = ACTIONS(3469), + [anon_sym_false] = ACTIONS(3469), + [aux_sym_string_token1] = ACTIONS(631), + [aux_sym_string_token3] = ACTIONS(631), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(631), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [842] = { + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3465), + [anon_sym_POUND] = ACTIONS(3467), + [anon_sym_package] = ACTIONS(3465), + [anon_sym_import] = ACTIONS(3465), + [anon_sym_STAR] = ACTIONS(3467), + [anon_sym_using] = ACTIONS(3465), + [anon_sym_throw] = ACTIONS(3465), + [anon_sym_LPAREN] = ACTIONS(3467), + [anon_sym_switch] = ACTIONS(3465), + [anon_sym_LBRACE] = ACTIONS(3467), + [anon_sym_cast] = ACTIONS(3465), + [anon_sym_DOLLARtype] = ACTIONS(3467), + [anon_sym_for] = ACTIONS(3465), + [anon_sym_return] = ACTIONS(3465), + [anon_sym_untyped] = ACTIONS(3465), + [anon_sym_break] = ACTIONS(3465), + [anon_sym_continue] = ACTIONS(3465), + [anon_sym_LBRACK] = ACTIONS(3467), + [anon_sym_this] = ACTIONS(3465), + [anon_sym_AT] = ACTIONS(3465), + [anon_sym_AT_COLON] = ACTIONS(3467), + [anon_sym_try] = ACTIONS(3465), + [anon_sym_if] = ACTIONS(3465), + [anon_sym_while] = ACTIONS(3465), + [anon_sym_do] = ACTIONS(3465), + [anon_sym_new] = ACTIONS(3465), + [anon_sym_TILDE] = ACTIONS(3467), + [anon_sym_BANG] = ACTIONS(3465), + [anon_sym_DASH] = ACTIONS(3465), + [anon_sym_PLUS_PLUS] = ACTIONS(3467), + [anon_sym_DASH_DASH] = ACTIONS(3467), + [anon_sym_PERCENT] = ACTIONS(3467), + [anon_sym_SLASH] = ACTIONS(3465), + [anon_sym_PLUS] = ACTIONS(3465), + [anon_sym_LT_LT] = ACTIONS(3467), + [anon_sym_GT_GT] = ACTIONS(3465), + [anon_sym_GT_GT_GT] = ACTIONS(3467), + [anon_sym_AMP] = ACTIONS(3465), + [anon_sym_PIPE] = ACTIONS(3465), + [anon_sym_CARET] = ACTIONS(3467), + [anon_sym_AMP_AMP] = ACTIONS(3467), + [anon_sym_PIPE_PIPE] = ACTIONS(3467), + [anon_sym_EQ_EQ] = ACTIONS(3467), + [anon_sym_BANG_EQ] = ACTIONS(3467), + [anon_sym_LT] = ACTIONS(3465), + [anon_sym_LT_EQ] = ACTIONS(3467), + [anon_sym_GT] = ACTIONS(3465), + [anon_sym_GT_EQ] = ACTIONS(3467), + [anon_sym_EQ_GT] = ACTIONS(3467), + [anon_sym_QMARK_QMARK] = ACTIONS(3467), + [anon_sym_EQ] = ACTIONS(3465), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3467), + [anon_sym_null] = ACTIONS(3465), + [anon_sym_macro] = ACTIONS(3465), + [anon_sym_abstract] = ACTIONS(3465), + [anon_sym_static] = ACTIONS(3465), + [anon_sym_public] = ACTIONS(3465), + [anon_sym_private] = ACTIONS(3465), + [anon_sym_extern] = ACTIONS(3465), + [anon_sym_inline] = ACTIONS(3465), + [anon_sym_overload] = ACTIONS(3465), + [anon_sym_override] = ACTIONS(3465), + [anon_sym_final] = ACTIONS(3465), + [anon_sym_class] = ACTIONS(3465), + [anon_sym_interface] = ACTIONS(3465), + [anon_sym_enum] = ACTIONS(3465), + [anon_sym_typedef] = ACTIONS(3465), + [anon_sym_function] = ACTIONS(3465), + [anon_sym_var] = ACTIONS(3465), + [aux_sym_integer_token1] = ACTIONS(3465), + [aux_sym_integer_token2] = ACTIONS(3467), + [aux_sym_float_token1] = ACTIONS(3465), + [aux_sym_float_token2] = ACTIONS(3467), + [anon_sym_true] = ACTIONS(3465), + [anon_sym_false] = ACTIONS(3465), + [aux_sym_string_token1] = ACTIONS(3467), + [aux_sym_string_token3] = ACTIONS(3467), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [843] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2916), + [sym_integer] = STATE(2916), + [sym_float] = STATE(2916), + [sym_bool] = STATE(2916), + [sym_string] = STATE(2296), + [sym_null] = STATE(2916), + [sym_array] = STATE(2916), + [sym_map] = STATE(2916), + [sym_object] = STATE(2916), + [sym_pair] = STATE(2916), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1339), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [844] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2916), + [sym_integer] = STATE(2916), + [sym_float] = STATE(2916), + [sym_bool] = STATE(2916), + [sym_string] = STATE(2296), + [sym_null] = STATE(2916), + [sym_array] = STATE(2916), + [sym_map] = STATE(2916), + [sym_object] = STATE(2916), + [sym_pair] = STATE(2916), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [845] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2916), + [sym_integer] = STATE(2916), + [sym_float] = STATE(2916), + [sym_bool] = STATE(2916), + [sym_string] = STATE(2296), + [sym_null] = STATE(2916), + [sym_array] = STATE(2916), + [sym_map] = STATE(2916), + [sym_object] = STATE(2916), + [sym_pair] = STATE(2916), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1518), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_this] = ACTIONS(3471), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_catch] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [846] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2916), + [sym_integer] = STATE(2916), + [sym_float] = STATE(2916), + [sym_bool] = STATE(2916), + [sym_string] = STATE(2296), + [sym_null] = STATE(2916), + [sym_array] = STATE(2916), + [sym_map] = STATE(2916), + [sym_object] = STATE(2916), + [sym_pair] = STATE(2916), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [847] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2916), + [sym_integer] = STATE(2916), + [sym_float] = STATE(2916), + [sym_bool] = STATE(2916), + [sym_string] = STATE(2296), + [sym_null] = STATE(2916), + [sym_array] = STATE(2916), + [sym_map] = STATE(2916), + [sym_object] = STATE(2916), + [sym_pair] = STATE(2916), + [aux_sym_member_expression_repeat1] = STATE(845), + [sym_identifier] = ACTIONS(1516), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_catch] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [848] = { + [sym__rhs_expression] = STATE(223), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(223), + [sym__literal] = STATE(946), + [sym_integer] = STATE(946), + [sym_float] = STATE(946), + [sym_bool] = STATE(946), + [sym_string] = STATE(933), + [sym_null] = STATE(946), + [sym_array] = STATE(946), + [sym_map] = STATE(946), + [sym_object] = STATE(946), + [sym_pair] = STATE(946), + [sym_identifier] = ACTIONS(3474), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [849] = { + [sym__rhs_expression] = STATE(210), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(210), + [sym__literal] = STATE(946), + [sym_integer] = STATE(946), + [sym_float] = STATE(946), + [sym_bool] = STATE(946), + [sym_string] = STATE(933), + [sym_null] = STATE(946), + [sym_array] = STATE(946), + [sym_map] = STATE(946), + [sym_object] = STATE(946), + [sym_pair] = STATE(946), + [sym_identifier] = ACTIONS(1345), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [850] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2877), + [sym_integer] = STATE(2877), + [sym_float] = STATE(2877), + [sym_bool] = STATE(2877), + [sym_string] = STATE(2296), + [sym_null] = STATE(2877), + [sym_array] = STATE(2877), + [sym_map] = STATE(2877), + [sym_object] = STATE(2877), + [sym_pair] = STATE(2877), + [aux_sym_member_expression_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1379), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), + [anon_sym_while] = ACTIONS(1381), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [851] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2877), + [sym_integer] = STATE(2877), + [sym_float] = STATE(2877), + [sym_bool] = STATE(2877), + [sym_string] = STATE(2296), + [sym_null] = STATE(2877), + [sym_array] = STATE(2877), + [sym_map] = STATE(2877), + [sym_object] = STATE(2877), + [sym_pair] = STATE(2877), + [aux_sym_member_expression_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_RBRACE] = ACTIONS(1339), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1339), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1341), + [anon_sym_else] = ACTIONS(1341), + [anon_sym_while] = ACTIONS(1341), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [852] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2877), + [sym_integer] = STATE(2877), + [sym_float] = STATE(2877), + [sym_bool] = STATE(2877), + [sym_string] = STATE(2296), + [sym_null] = STATE(2877), + [sym_array] = STATE(2877), + [sym_map] = STATE(2877), + [sym_object] = STATE(2877), + [sym_pair] = STATE(2877), + [aux_sym_member_expression_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1447), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1449), + [anon_sym_else] = ACTIONS(1449), + [anon_sym_while] = ACTIONS(1449), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [853] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2877), + [sym_integer] = STATE(2877), + [sym_float] = STATE(2877), + [sym_bool] = STATE(2877), + [sym_string] = STATE(2296), + [sym_null] = STATE(2877), + [sym_array] = STATE(2877), + [sym_map] = STATE(2877), + [sym_object] = STATE(2877), + [sym_pair] = STATE(2877), + [aux_sym_member_expression_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(3478), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_RBRACK] = ACTIONS(1386), + [anon_sym_this] = ACTIONS(3481), + [anon_sym_catch] = ACTIONS(1388), + [anon_sym_else] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [854] = { + [sym_member_expression] = STATE(882), + [sym__lhs_expression] = STATE(205), + [sym__literal] = STATE(2877), + [sym_integer] = STATE(2877), + [sym_float] = STATE(2877), + [sym_bool] = STATE(2877), + [sym_string] = STATE(2296), + [sym_null] = STATE(2877), + [sym_array] = STATE(2877), + [sym_map] = STATE(2877), + [sym_object] = STATE(2877), + [sym_pair] = STATE(2877), + [aux_sym_member_expression_repeat1] = STATE(853), + [sym_identifier] = ACTIONS(3476), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_RBRACE] = ACTIONS(1313), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1313), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1315), + [anon_sym_else] = ACTIONS(1315), + [anon_sym_while] = ACTIONS(1315), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [855] = { + [sym_operator] = STATE(849), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(238), + [sym__bitwiseOperator] = STATE(238), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(857), + [sym_identifier] = ACTIONS(1375), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_switch] = ACTIONS(1375), + [anon_sym_LBRACE] = ACTIONS(1371), + [anon_sym_cast] = ACTIONS(1375), + [anon_sym_DOLLARtype] = ACTIONS(1371), + [anon_sym_return] = ACTIONS(1375), + [anon_sym_untyped] = ACTIONS(1375), + [anon_sym_break] = ACTIONS(1375), + [anon_sym_continue] = ACTIONS(1375), + [anon_sym_LBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(1375), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1375), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(59), + [anon_sym_GT_GT_GT] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_PIPE] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1375), + [aux_sym_integer_token1] = ACTIONS(1375), + [aux_sym_integer_token2] = ACTIONS(1371), + [aux_sym_float_token1] = ACTIONS(1375), + [aux_sym_float_token2] = ACTIONS(1371), + [anon_sym_true] = ACTIONS(1375), + [anon_sym_false] = ACTIONS(1375), + [aux_sym_string_token1] = ACTIONS(1371), + [aux_sym_string_token3] = ACTIONS(1371), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [856] = { + [sym_operator] = STATE(1946), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(1469), + [anon_sym_DOT] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_QMARK] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_EQ_GT] = ACTIONS(1476), + [anon_sym_QMARK_QMARK] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [857] = { + [sym_operator] = STATE(1946), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(856), + [sym_identifier] = ACTIONS(1457), + [anon_sym_DOT] = ACTIONS(1457), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1455), + [anon_sym_RPAREN] = ACTIONS(1455), + [anon_sym_switch] = ACTIONS(1457), + [anon_sym_LBRACE] = ACTIONS(1455), + [anon_sym_cast] = ACTIONS(1457), + [anon_sym_DOLLARtype] = ACTIONS(1455), + [anon_sym_return] = ACTIONS(1457), + [anon_sym_untyped] = ACTIONS(1457), + [anon_sym_break] = ACTIONS(1457), + [anon_sym_continue] = ACTIONS(1457), + [anon_sym_LBRACK] = ACTIONS(1455), + [anon_sym_this] = ACTIONS(1457), + [anon_sym_QMARK] = ACTIONS(1457), + [anon_sym_catch] = ACTIONS(1457), + [anon_sym_else] = ACTIONS(1457), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1457), + [aux_sym_integer_token1] = ACTIONS(1457), + [aux_sym_integer_token2] = ACTIONS(1455), + [aux_sym_float_token1] = ACTIONS(1457), + [aux_sym_float_token2] = ACTIONS(1455), + [anon_sym_true] = ACTIONS(1457), + [anon_sym_false] = ACTIONS(1457), + [aux_sym_string_token1] = ACTIONS(1455), + [aux_sym_string_token3] = ACTIONS(1455), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [858] = { + [sym__rhs_expression] = STATE(210), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(210), + [sym__literal] = STATE(947), + [sym_integer] = STATE(947), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [sym_identifier] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_LPAREN] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_switch] = ACTIONS(1345), + [anon_sym_LBRACE] = ACTIONS(1343), + [anon_sym_cast] = ACTIONS(1345), + [anon_sym_DOLLARtype] = ACTIONS(1343), + [anon_sym_return] = ACTIONS(1345), + [anon_sym_untyped] = ACTIONS(1345), + [anon_sym_break] = ACTIONS(1345), + [anon_sym_continue] = ACTIONS(1345), + [anon_sym_LBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1345), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1345), + [aux_sym_integer_token1] = ACTIONS(1345), + [aux_sym_integer_token2] = ACTIONS(1343), + [aux_sym_float_token1] = ACTIONS(1345), + [aux_sym_float_token2] = ACTIONS(1343), + [anon_sym_true] = ACTIONS(1345), + [anon_sym_false] = ACTIONS(1345), + [aux_sym_string_token1] = ACTIONS(1343), + [aux_sym_string_token3] = ACTIONS(1343), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [859] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2915), + [sym_integer] = STATE(2915), + [sym_float] = STATE(2915), + [sym_bool] = STATE(2915), + [sym_string] = STATE(2296), + [sym_null] = STATE(2915), + [sym_array] = STATE(2915), + [sym_map] = STATE(2915), + [sym_object] = STATE(2915), + [sym_pair] = STATE(2915), + [aux_sym_member_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(3484), + [anon_sym_DOT] = ACTIONS(1381), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1381), + [anon_sym_DASH_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [860] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2915), + [sym_integer] = STATE(2915), + [sym_float] = STATE(2915), + [sym_bool] = STATE(2915), + [sym_string] = STATE(2296), + [sym_null] = STATE(2915), + [sym_array] = STATE(2915), + [sym_map] = STATE(2915), + [sym_object] = STATE(2915), + [sym_pair] = STATE(2915), + [aux_sym_member_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(3484), + [anon_sym_DOT] = ACTIONS(1315), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1315), + [anon_sym_DASH_GT] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [861] = { + [sym__rhs_expression] = STATE(690), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(690), + [sym__literal] = STATE(947), + [sym_integer] = STATE(947), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [sym_identifier] = ACTIONS(3486), + [anon_sym_STAR] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1590), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1510), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_PERCENT] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1510), + [anon_sym_LT_LT] = ACTIONS(1506), + [anon_sym_GT_GT] = ACTIONS(1510), + [anon_sym_GT_GT_GT] = ACTIONS(1506), + [anon_sym_AMP] = ACTIONS(1510), + [anon_sym_PIPE] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1506), + [anon_sym_AMP_AMP] = ACTIONS(1506), + [anon_sym_PIPE_PIPE] = ACTIONS(1506), + [anon_sym_EQ_EQ] = ACTIONS(1506), + [anon_sym_BANG_EQ] = ACTIONS(1506), + [anon_sym_LT] = ACTIONS(1510), + [anon_sym_LT_EQ] = ACTIONS(1506), + [anon_sym_GT] = ACTIONS(1510), + [anon_sym_GT_EQ] = ACTIONS(1506), + [anon_sym_EQ_GT] = ACTIONS(1506), + [anon_sym_QMARK_QMARK] = ACTIONS(1506), + [anon_sym_EQ] = ACTIONS(1510), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1506), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [862] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2915), + [sym_integer] = STATE(2915), + [sym_float] = STATE(2915), + [sym_bool] = STATE(2915), + [sym_string] = STATE(2296), + [sym_null] = STATE(2915), + [sym_array] = STATE(2915), + [sym_map] = STATE(2915), + [sym_object] = STATE(2915), + [sym_pair] = STATE(2915), + [aux_sym_member_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(3488), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_this] = ACTIONS(3491), + [anon_sym_QMARK] = ACTIONS(1388), + [anon_sym_DASH_GT] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [863] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2915), + [sym_integer] = STATE(2915), + [sym_float] = STATE(2915), + [sym_bool] = STATE(2915), + [sym_string] = STATE(2296), + [sym_null] = STATE(2915), + [sym_array] = STATE(2915), + [sym_map] = STATE(2915), + [sym_object] = STATE(2915), + [sym_pair] = STATE(2915), + [aux_sym_member_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(3484), + [anon_sym_DOT] = ACTIONS(1449), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1449), + [anon_sym_DASH_GT] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [864] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2915), + [sym_integer] = STATE(2915), + [sym_float] = STATE(2915), + [sym_bool] = STATE(2915), + [sym_string] = STATE(2296), + [sym_null] = STATE(2915), + [sym_array] = STATE(2915), + [sym_map] = STATE(2915), + [sym_object] = STATE(2915), + [sym_pair] = STATE(2915), + [aux_sym_member_expression_repeat1] = STATE(862), + [sym_identifier] = ACTIONS(3484), + [anon_sym_DOT] = ACTIONS(1341), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(1341), + [anon_sym_DASH_GT] = ACTIONS(1339), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [865] = { + [sym__rhs_expression] = STATE(977), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(977), + [sym__literal] = STATE(947), + [sym_integer] = STATE(947), + [sym_float] = STATE(947), + [sym_bool] = STATE(947), + [sym_string] = STATE(933), + [sym_null] = STATE(947), + [sym_array] = STATE(947), + [sym_map] = STATE(947), + [sym_object] = STATE(947), + [sym_pair] = STATE(947), + [sym_identifier] = ACTIONS(3494), + [anon_sym_STAR] = ACTIONS(3497), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_RPAREN] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3501), + [anon_sym_cast] = ACTIONS(3499), + [anon_sym_DOLLARtype] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_untyped] = ACTIONS(3499), + [anon_sym_break] = ACTIONS(3499), + [anon_sym_continue] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_this] = ACTIONS(3507), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3497), + [anon_sym_BANG] = ACTIONS(3499), + [anon_sym_DASH] = ACTIONS(3499), + [anon_sym_PLUS_PLUS] = ACTIONS(3497), + [anon_sym_DASH_DASH] = ACTIONS(3497), + [anon_sym_PERCENT] = ACTIONS(3497), + [anon_sym_SLASH] = ACTIONS(3499), + [anon_sym_PLUS] = ACTIONS(3499), + [anon_sym_LT_LT] = ACTIONS(3497), + [anon_sym_GT_GT] = ACTIONS(3499), + [anon_sym_GT_GT_GT] = ACTIONS(3497), + [anon_sym_AMP] = ACTIONS(3499), + [anon_sym_PIPE] = ACTIONS(3499), + [anon_sym_CARET] = ACTIONS(3497), + [anon_sym_AMP_AMP] = ACTIONS(3497), + [anon_sym_PIPE_PIPE] = ACTIONS(3497), + [anon_sym_EQ_EQ] = ACTIONS(3497), + [anon_sym_BANG_EQ] = ACTIONS(3497), + [anon_sym_LT] = ACTIONS(3499), + [anon_sym_LT_EQ] = ACTIONS(3497), + [anon_sym_GT] = ACTIONS(3499), + [anon_sym_GT_EQ] = ACTIONS(3497), + [anon_sym_EQ_GT] = ACTIONS(3497), + [anon_sym_QMARK_QMARK] = ACTIONS(3497), + [anon_sym_EQ] = ACTIONS(3499), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3497), + [anon_sym_null] = ACTIONS(3513), + [aux_sym_integer_token1] = ACTIONS(3516), + [aux_sym_integer_token2] = ACTIONS(3519), + [aux_sym_float_token1] = ACTIONS(3522), + [aux_sym_float_token2] = ACTIONS(3525), + [anon_sym_true] = ACTIONS(3528), + [anon_sym_false] = ACTIONS(3528), + [aux_sym_string_token1] = ACTIONS(3531), + [aux_sym_string_token3] = ACTIONS(3534), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [866] = { + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(866), + [sym_identifier] = ACTIONS(1469), + [anon_sym_STAR] = ACTIONS(1473), + [anon_sym_LPAREN] = ACTIONS(1471), + [anon_sym_RPAREN] = ACTIONS(1471), + [anon_sym_switch] = ACTIONS(1469), + [anon_sym_LBRACE] = ACTIONS(1471), + [anon_sym_cast] = ACTIONS(1469), + [anon_sym_DOLLARtype] = ACTIONS(1471), + [anon_sym_return] = ACTIONS(1469), + [anon_sym_untyped] = ACTIONS(1469), + [anon_sym_break] = ACTIONS(1469), + [anon_sym_continue] = ACTIONS(1469), + [anon_sym_LBRACK] = ACTIONS(1471), + [anon_sym_this] = ACTIONS(1469), + [anon_sym_catch] = ACTIONS(1469), + [anon_sym_else] = ACTIONS(1469), + [anon_sym_new] = ACTIONS(1469), + [anon_sym_TILDE] = ACTIONS(1476), + [anon_sym_BANG] = ACTIONS(1479), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_PLUS_PLUS] = ACTIONS(1485), + [anon_sym_DASH_DASH] = ACTIONS(1485), + [anon_sym_PERCENT] = ACTIONS(1473), + [anon_sym_SLASH] = ACTIONS(1488), + [anon_sym_PLUS] = ACTIONS(1488), + [anon_sym_LT_LT] = ACTIONS(1473), + [anon_sym_GT_GT] = ACTIONS(1488), + [anon_sym_GT_GT_GT] = ACTIONS(1473), + [anon_sym_AMP] = ACTIONS(1488), + [anon_sym_PIPE] = ACTIONS(1488), + [anon_sym_CARET] = ACTIONS(1473), + [anon_sym_AMP_AMP] = ACTIONS(1476), + [anon_sym_PIPE_PIPE] = ACTIONS(1476), + [anon_sym_EQ_EQ] = ACTIONS(1476), + [anon_sym_BANG_EQ] = ACTIONS(1476), + [anon_sym_LT] = ACTIONS(1479), + [anon_sym_LT_EQ] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(1479), + [anon_sym_GT_EQ] = ACTIONS(1476), + [anon_sym_EQ_GT] = ACTIONS(1476), + [anon_sym_QMARK_QMARK] = ACTIONS(1476), + [anon_sym_EQ] = ACTIONS(1479), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1491), + [anon_sym_null] = ACTIONS(1469), + [aux_sym_integer_token1] = ACTIONS(1469), + [aux_sym_integer_token2] = ACTIONS(1471), + [aux_sym_float_token1] = ACTIONS(1469), + [aux_sym_float_token2] = ACTIONS(1471), + [anon_sym_true] = ACTIONS(1469), + [anon_sym_false] = ACTIONS(1469), + [aux_sym_string_token1] = ACTIONS(1471), + [aux_sym_string_token3] = ACTIONS(1471), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [867] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2920), + [sym_integer] = STATE(2920), + [sym_float] = STATE(2920), + [sym_bool] = STATE(2920), + [sym_string] = STATE(2296), + [sym_null] = STATE(2920), + [sym_array] = STATE(2920), + [sym_map] = STATE(2920), + [sym_object] = STATE(2920), + [sym_pair] = STATE(2920), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_switch] = ACTIONS(1449), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1449), + [anon_sym_COMMA] = ACTIONS(1447), + [anon_sym_DOLLARtype] = ACTIONS(1447), + [anon_sym_return] = ACTIONS(1449), + [anon_sym_untyped] = ACTIONS(1449), + [anon_sym_break] = ACTIONS(1449), + [anon_sym_continue] = ACTIONS(1449), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(1447), + [anon_sym_new] = ACTIONS(1449), + [anon_sym_TILDE] = ACTIONS(1447), + [anon_sym_BANG] = ACTIONS(1449), + [anon_sym_DASH] = ACTIONS(1449), + [anon_sym_PLUS_PLUS] = ACTIONS(1447), + [anon_sym_DASH_DASH] = ACTIONS(1447), + [anon_sym_PERCENT] = ACTIONS(1447), + [anon_sym_SLASH] = ACTIONS(1449), + [anon_sym_PLUS] = ACTIONS(1449), + [anon_sym_LT_LT] = ACTIONS(1447), + [anon_sym_GT_GT] = ACTIONS(1449), + [anon_sym_GT_GT_GT] = ACTIONS(1447), + [anon_sym_AMP] = ACTIONS(1449), + [anon_sym_PIPE] = ACTIONS(1449), + [anon_sym_CARET] = ACTIONS(1447), + [anon_sym_AMP_AMP] = ACTIONS(1447), + [anon_sym_PIPE_PIPE] = ACTIONS(1447), + [anon_sym_EQ_EQ] = ACTIONS(1447), + [anon_sym_BANG_EQ] = ACTIONS(1447), + [anon_sym_LT] = ACTIONS(1449), + [anon_sym_LT_EQ] = ACTIONS(1447), + [anon_sym_GT] = ACTIONS(1449), + [anon_sym_GT_EQ] = ACTIONS(1447), + [anon_sym_EQ_GT] = ACTIONS(1447), + [anon_sym_QMARK_QMARK] = ACTIONS(1447), + [anon_sym_EQ] = ACTIONS(1449), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [868] = { + [sym__rhs_expression] = STATE(210), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(210), + [sym__literal] = STATE(1408), + [sym_integer] = STATE(1408), + [sym_float] = STATE(1408), + [sym_bool] = STATE(1408), + [sym_string] = STATE(1375), + [sym_null] = STATE(1408), + [sym_array] = STATE(1408), + [sym_map] = STATE(1408), + [sym_object] = STATE(1408), + [sym_pair] = STATE(1408), + [sym_identifier] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_RPAREN] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1343), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_while] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [869] = { + [sym__rhs_expression] = STATE(380), + [sym_member_expression] = STATE(351), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(380), + [sym__literal] = STATE(1400), + [sym_integer] = STATE(1400), + [sym_float] = STATE(1400), + [sym_bool] = STATE(1400), + [sym_string] = STATE(1378), + [sym_null] = STATE(1400), + [sym_array] = STATE(1400), + [sym_map] = STATE(1400), + [sym_object] = STATE(1400), + [sym_pair] = STATE(1400), + [sym_identifier] = ACTIONS(3541), + [anon_sym_DOT] = ACTIONS(1345), + [anon_sym_STAR] = ACTIONS(1343), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1345), + [anon_sym_default] = ACTIONS(1345), + [anon_sym_COMMA] = ACTIONS(1343), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1345), + [anon_sym_catch] = ACTIONS(1345), + [anon_sym_else] = ACTIONS(1345), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1343), + [anon_sym_BANG] = ACTIONS(1345), + [anon_sym_DASH] = ACTIONS(1345), + [anon_sym_PLUS_PLUS] = ACTIONS(1343), + [anon_sym_DASH_DASH] = ACTIONS(1343), + [anon_sym_PERCENT] = ACTIONS(1343), + [anon_sym_SLASH] = ACTIONS(1345), + [anon_sym_PLUS] = ACTIONS(1345), + [anon_sym_LT_LT] = ACTIONS(1343), + [anon_sym_GT_GT] = ACTIONS(1345), + [anon_sym_GT_GT_GT] = ACTIONS(1343), + [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_PIPE] = ACTIONS(1345), + [anon_sym_CARET] = ACTIONS(1343), + [anon_sym_AMP_AMP] = ACTIONS(1343), + [anon_sym_PIPE_PIPE] = ACTIONS(1343), + [anon_sym_EQ_EQ] = ACTIONS(1343), + [anon_sym_BANG_EQ] = ACTIONS(1343), + [anon_sym_LT] = ACTIONS(1345), + [anon_sym_LT_EQ] = ACTIONS(1343), + [anon_sym_GT] = ACTIONS(1345), + [anon_sym_GT_EQ] = ACTIONS(1343), + [anon_sym_EQ_GT] = ACTIONS(1343), + [anon_sym_QMARK_QMARK] = ACTIONS(1343), + [anon_sym_EQ] = ACTIONS(1345), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1343), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1343), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [870] = { + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(866), + [sym_identifier] = ACTIONS(1564), + [anon_sym_STAR] = ACTIONS(15), + [anon_sym_LPAREN] = ACTIONS(1566), + [anon_sym_switch] = ACTIONS(1564), + [anon_sym_LBRACE] = ACTIONS(1566), + [anon_sym_cast] = ACTIONS(1564), + [anon_sym_DOLLARtype] = ACTIONS(1566), + [anon_sym_return] = ACTIONS(1564), + [anon_sym_untyped] = ACTIONS(1564), + [anon_sym_break] = ACTIONS(1564), + [anon_sym_continue] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), + [anon_sym_this] = ACTIONS(1564), + [anon_sym_catch] = ACTIONS(1564), + [anon_sym_else] = ACTIONS(1564), + [anon_sym_new] = ACTIONS(1564), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(61), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(15), + [anon_sym_SLASH] = ACTIONS(65), + [anon_sym_PLUS] = ACTIONS(65), + [anon_sym_LT_LT] = ACTIONS(15), + [anon_sym_GT_GT] = ACTIONS(65), + [anon_sym_GT_GT_GT] = ACTIONS(15), + [anon_sym_AMP] = ACTIONS(65), + [anon_sym_PIPE] = ACTIONS(65), + [anon_sym_CARET] = ACTIONS(15), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1564), + [aux_sym_integer_token1] = ACTIONS(1564), + [aux_sym_integer_token2] = ACTIONS(1566), + [aux_sym_float_token1] = ACTIONS(1564), + [aux_sym_float_token2] = ACTIONS(1566), + [anon_sym_true] = ACTIONS(1564), + [anon_sym_false] = ACTIONS(1564), + [aux_sym_string_token1] = ACTIONS(1566), + [aux_sym_string_token3] = ACTIONS(1566), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [871] = { + [sym_operator] = STATE(858), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(238), + [sym__bitwiseOperator] = STATE(238), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(870), + [sym_identifier] = ACTIONS(1510), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_switch] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1506), + [anon_sym_cast] = ACTIONS(1510), + [anon_sym_DOLLARtype] = ACTIONS(1506), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_untyped] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1506), + [anon_sym_this] = ACTIONS(1510), + [anon_sym_catch] = ACTIONS(1510), + [anon_sym_else] = ACTIONS(1510), + [anon_sym_new] = ACTIONS(1510), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(59), + [anon_sym_GT_GT_GT] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_PIPE] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(1510), + [aux_sym_integer_token1] = ACTIONS(1510), + [aux_sym_integer_token2] = ACTIONS(1506), + [aux_sym_float_token1] = ACTIONS(1510), + [aux_sym_float_token2] = ACTIONS(1506), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym_string_token1] = ACTIONS(1506), + [aux_sym_string_token3] = ACTIONS(1506), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [872] = { + [sym__rhs_expression] = STATE(223), + [sym_member_expression] = STATE(189), + [sym__lhs_expression] = STATE(2644), + [sym__call] = STATE(186), + [sym__constructor_call] = STATE(187), + [sym_call_expression] = STATE(223), + [sym__literal] = STATE(1408), + [sym_integer] = STATE(1408), + [sym_float] = STATE(1408), + [sym_bool] = STATE(1408), + [sym_string] = STATE(1375), + [sym_null] = STATE(1408), + [sym_array] = STATE(1408), + [sym_map] = STATE(1408), + [sym_object] = STATE(1408), + [sym_pair] = STATE(1408), + [sym_identifier] = ACTIONS(3539), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_RPAREN] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_RBRACK] = ACTIONS(1371), + [anon_sym_this] = ACTIONS(2153), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_while] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1369), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [873] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2920), + [sym_integer] = STATE(2920), + [sym_float] = STATE(2920), + [sym_bool] = STATE(2920), + [sym_string] = STATE(2296), + [sym_null] = STATE(2920), + [sym_array] = STATE(2920), + [sym_map] = STATE(2920), + [sym_object] = STATE(2920), + [sym_pair] = STATE(2920), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(1339), + [anon_sym_LPAREN] = ACTIONS(1339), + [anon_sym_RPAREN] = ACTIONS(1339), + [anon_sym_switch] = ACTIONS(1341), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1341), + [anon_sym_COMMA] = ACTIONS(1339), + [anon_sym_DOLLARtype] = ACTIONS(1339), + [anon_sym_return] = ACTIONS(1341), + [anon_sym_untyped] = ACTIONS(1341), + [anon_sym_break] = ACTIONS(1341), + [anon_sym_continue] = ACTIONS(1341), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(1339), + [anon_sym_new] = ACTIONS(1341), + [anon_sym_TILDE] = ACTIONS(1339), + [anon_sym_BANG] = ACTIONS(1341), + [anon_sym_DASH] = ACTIONS(1341), + [anon_sym_PLUS_PLUS] = ACTIONS(1339), + [anon_sym_DASH_DASH] = ACTIONS(1339), + [anon_sym_PERCENT] = ACTIONS(1339), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_PLUS] = ACTIONS(1341), + [anon_sym_LT_LT] = ACTIONS(1339), + [anon_sym_GT_GT] = ACTIONS(1341), + [anon_sym_GT_GT_GT] = ACTIONS(1339), + [anon_sym_AMP] = ACTIONS(1341), + [anon_sym_PIPE] = ACTIONS(1341), + [anon_sym_CARET] = ACTIONS(1339), + [anon_sym_AMP_AMP] = ACTIONS(1339), + [anon_sym_PIPE_PIPE] = ACTIONS(1339), + [anon_sym_EQ_EQ] = ACTIONS(1339), + [anon_sym_BANG_EQ] = ACTIONS(1339), + [anon_sym_LT] = ACTIONS(1341), + [anon_sym_LT_EQ] = ACTIONS(1339), + [anon_sym_GT] = ACTIONS(1341), + [anon_sym_GT_EQ] = ACTIONS(1339), + [anon_sym_EQ_GT] = ACTIONS(1339), + [anon_sym_QMARK_QMARK] = ACTIONS(1339), + [anon_sym_EQ] = ACTIONS(1341), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1339), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [874] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2920), + [sym_integer] = STATE(2920), + [sym_float] = STATE(2920), + [sym_bool] = STATE(2920), + [sym_string] = STATE(2296), + [sym_null] = STATE(2920), + [sym_array] = STATE(2920), + [sym_map] = STATE(2920), + [sym_object] = STATE(2920), + [sym_pair] = STATE(2920), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(1379), + [anon_sym_LPAREN] = ACTIONS(1379), + [anon_sym_RPAREN] = ACTIONS(1379), + [anon_sym_switch] = ACTIONS(1381), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1381), + [anon_sym_COMMA] = ACTIONS(1379), + [anon_sym_DOLLARtype] = ACTIONS(1379), + [anon_sym_return] = ACTIONS(1381), + [anon_sym_untyped] = ACTIONS(1381), + [anon_sym_break] = ACTIONS(1381), + [anon_sym_continue] = ACTIONS(1381), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(1379), + [anon_sym_new] = ACTIONS(1381), + [anon_sym_TILDE] = ACTIONS(1379), + [anon_sym_BANG] = ACTIONS(1381), + [anon_sym_DASH] = ACTIONS(1381), + [anon_sym_PLUS_PLUS] = ACTIONS(1379), + [anon_sym_DASH_DASH] = ACTIONS(1379), + [anon_sym_PERCENT] = ACTIONS(1379), + [anon_sym_SLASH] = ACTIONS(1381), + [anon_sym_PLUS] = ACTIONS(1381), + [anon_sym_LT_LT] = ACTIONS(1379), + [anon_sym_GT_GT] = ACTIONS(1381), + [anon_sym_GT_GT_GT] = ACTIONS(1379), + [anon_sym_AMP] = ACTIONS(1381), + [anon_sym_PIPE] = ACTIONS(1381), + [anon_sym_CARET] = ACTIONS(1379), + [anon_sym_AMP_AMP] = ACTIONS(1379), + [anon_sym_PIPE_PIPE] = ACTIONS(1379), + [anon_sym_EQ_EQ] = ACTIONS(1379), + [anon_sym_BANG_EQ] = ACTIONS(1379), + [anon_sym_LT] = ACTIONS(1381), + [anon_sym_LT_EQ] = ACTIONS(1379), + [anon_sym_GT] = ACTIONS(1381), + [anon_sym_GT_EQ] = ACTIONS(1379), + [anon_sym_EQ_GT] = ACTIONS(1379), + [anon_sym_QMARK_QMARK] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1379), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [875] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2920), + [sym_integer] = STATE(2920), + [sym_float] = STATE(2920), + [sym_bool] = STATE(2920), + [sym_string] = STATE(2296), + [sym_null] = STATE(2920), + [sym_array] = STATE(2920), + [sym_map] = STATE(2920), + [sym_object] = STATE(2920), + [sym_pair] = STATE(2920), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3543), + [anon_sym_STAR] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_RPAREN] = ACTIONS(1386), + [anon_sym_switch] = ACTIONS(1388), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_cast] = ACTIONS(1388), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_DOLLARtype] = ACTIONS(1386), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_untyped] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_LBRACK] = ACTIONS(1393), + [anon_sym_this] = ACTIONS(3546), + [anon_sym_DASH_GT] = ACTIONS(1386), + [anon_sym_new] = ACTIONS(1388), + [anon_sym_TILDE] = ACTIONS(1386), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_PLUS_PLUS] = ACTIONS(1386), + [anon_sym_DASH_DASH] = ACTIONS(1386), + [anon_sym_PERCENT] = ACTIONS(1386), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_LT_LT] = ACTIONS(1386), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_GT_GT_GT] = ACTIONS(1386), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1386), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ_GT] = ACTIONS(1386), + [anon_sym_QMARK_QMARK] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_null] = ACTIONS(1399), + [aux_sym_integer_token1] = ACTIONS(1402), + [aux_sym_integer_token2] = ACTIONS(1405), + [aux_sym_float_token1] = ACTIONS(1408), + [aux_sym_float_token2] = ACTIONS(1411), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [aux_sym_string_token1] = ACTIONS(1417), + [aux_sym_string_token3] = ACTIONS(1420), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [876] = { + [sym__rhs_expression] = STATE(344), + [sym_member_expression] = STATE(351), + [sym__lhs_expression] = STATE(2687), + [sym__call] = STATE(363), + [sym__constructor_call] = STATE(364), + [sym_call_expression] = STATE(344), + [sym__literal] = STATE(1400), + [sym_integer] = STATE(1400), + [sym_float] = STATE(1400), + [sym_bool] = STATE(1400), + [sym_string] = STATE(1378), + [sym_null] = STATE(1400), + [sym_array] = STATE(1400), + [sym_map] = STATE(1400), + [sym_object] = STATE(1400), + [sym_pair] = STATE(1400), + [sym_identifier] = ACTIONS(3541), + [anon_sym_DOT] = ACTIONS(1375), + [anon_sym_STAR] = ACTIONS(1371), + [anon_sym_LBRACE] = ACTIONS(1425), + [anon_sym_case] = ACTIONS(1375), + [anon_sym_default] = ACTIONS(1375), + [anon_sym_COMMA] = ACTIONS(1371), + [anon_sym_LBRACK] = ACTIONS(1427), + [anon_sym_this] = ACTIONS(1321), + [anon_sym_QMARK] = ACTIONS(1375), + [anon_sym_catch] = ACTIONS(1375), + [anon_sym_else] = ACTIONS(1375), + [anon_sym_new] = ACTIONS(1429), + [anon_sym_TILDE] = ACTIONS(1371), + [anon_sym_BANG] = ACTIONS(1375), + [anon_sym_DASH] = ACTIONS(1375), + [anon_sym_PLUS_PLUS] = ACTIONS(1371), + [anon_sym_DASH_DASH] = ACTIONS(1371), + [anon_sym_PERCENT] = ACTIONS(1371), + [anon_sym_SLASH] = ACTIONS(1375), + [anon_sym_PLUS] = ACTIONS(1375), + [anon_sym_LT_LT] = ACTIONS(1371), + [anon_sym_GT_GT] = ACTIONS(1375), + [anon_sym_GT_GT_GT] = ACTIONS(1371), + [anon_sym_AMP] = ACTIONS(1375), + [anon_sym_PIPE] = ACTIONS(1375), + [anon_sym_CARET] = ACTIONS(1371), + [anon_sym_AMP_AMP] = ACTIONS(1371), + [anon_sym_PIPE_PIPE] = ACTIONS(1371), + [anon_sym_EQ_EQ] = ACTIONS(1371), + [anon_sym_BANG_EQ] = ACTIONS(1371), + [anon_sym_LT] = ACTIONS(1375), + [anon_sym_LT_EQ] = ACTIONS(1371), + [anon_sym_GT] = ACTIONS(1375), + [anon_sym_GT_EQ] = ACTIONS(1371), + [anon_sym_EQ_GT] = ACTIONS(1371), + [anon_sym_QMARK_QMARK] = ACTIONS(1371), + [anon_sym_EQ] = ACTIONS(1375), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1371), + [anon_sym_null] = ACTIONS(1431), + [aux_sym_integer_token1] = ACTIONS(1433), + [aux_sym_integer_token2] = ACTIONS(1435), + [aux_sym_float_token1] = ACTIONS(1437), + [aux_sym_float_token2] = ACTIONS(1439), + [anon_sym_true] = ACTIONS(1441), + [anon_sym_false] = ACTIONS(1441), + [aux_sym_string_token1] = ACTIONS(1443), + [aux_sym_string_token3] = ACTIONS(1445), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_marker] = ACTIONS(1371), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [877] = { + [sym_member_expression] = STATE(949), + [sym__lhs_expression] = STATE(948), + [sym__literal] = STATE(2920), + [sym_integer] = STATE(2920), + [sym_float] = STATE(2920), + [sym_bool] = STATE(2920), + [sym_string] = STATE(2296), + [sym_null] = STATE(2920), + [sym_array] = STATE(2920), + [sym_map] = STATE(2920), + [sym_object] = STATE(2920), + [sym_pair] = STATE(2920), + [aux_sym_member_expression_repeat1] = STATE(875), + [sym_identifier] = ACTIONS(3537), + [anon_sym_STAR] = ACTIONS(1313), + [anon_sym_LPAREN] = ACTIONS(1313), + [anon_sym_RPAREN] = ACTIONS(1313), + [anon_sym_switch] = ACTIONS(1315), + [anon_sym_LBRACE] = ACTIONS(1317), + [anon_sym_cast] = ACTIONS(1315), + [anon_sym_COMMA] = ACTIONS(1313), + [anon_sym_DOLLARtype] = ACTIONS(1313), + [anon_sym_return] = ACTIONS(1315), + [anon_sym_untyped] = ACTIONS(1315), + [anon_sym_break] = ACTIONS(1315), + [anon_sym_continue] = ACTIONS(1315), + [anon_sym_LBRACK] = ACTIONS(1319), + [anon_sym_this] = ACTIONS(1365), + [anon_sym_DASH_GT] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1315), + [anon_sym_TILDE] = ACTIONS(1313), + [anon_sym_BANG] = ACTIONS(1315), + [anon_sym_DASH] = ACTIONS(1315), + [anon_sym_PLUS_PLUS] = ACTIONS(1313), + [anon_sym_DASH_DASH] = ACTIONS(1313), + [anon_sym_PERCENT] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1315), + [anon_sym_PLUS] = ACTIONS(1315), + [anon_sym_LT_LT] = ACTIONS(1313), + [anon_sym_GT_GT] = ACTIONS(1315), + [anon_sym_GT_GT_GT] = ACTIONS(1313), + [anon_sym_AMP] = ACTIONS(1315), + [anon_sym_PIPE] = ACTIONS(1315), + [anon_sym_CARET] = ACTIONS(1313), + [anon_sym_AMP_AMP] = ACTIONS(1313), + [anon_sym_PIPE_PIPE] = ACTIONS(1313), + [anon_sym_EQ_EQ] = ACTIONS(1313), + [anon_sym_BANG_EQ] = ACTIONS(1313), + [anon_sym_LT] = ACTIONS(1315), + [anon_sym_LT_EQ] = ACTIONS(1313), + [anon_sym_GT] = ACTIONS(1315), + [anon_sym_GT_EQ] = ACTIONS(1313), + [anon_sym_EQ_GT] = ACTIONS(1313), + [anon_sym_QMARK_QMARK] = ACTIONS(1313), + [anon_sym_EQ] = ACTIONS(1315), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1313), + [anon_sym_null] = ACTIONS(1323), + [aux_sym_integer_token1] = ACTIONS(1325), + [aux_sym_integer_token2] = ACTIONS(1327), + [aux_sym_float_token1] = ACTIONS(1329), + [aux_sym_float_token2] = ACTIONS(1331), + [anon_sym_true] = ACTIONS(1333), + [anon_sym_false] = ACTIONS(1333), + [aux_sym_string_token1] = ACTIONS(1335), + [aux_sym_string_token3] = ACTIONS(1337), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [878] = { + [sym_operator] = STATE(1884), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(2234), + [sym__bitwiseOperator] = STATE(2234), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(866), + [sym_identifier] = ACTIONS(3549), + [anon_sym_STAR] = ACTIONS(1653), + [anon_sym_LPAREN] = ACTIONS(1653), + [anon_sym_RPAREN] = ACTIONS(1653), + [anon_sym_switch] = ACTIONS(3549), + [anon_sym_LBRACE] = ACTIONS(1653), + [anon_sym_cast] = ACTIONS(3549), + [anon_sym_DOLLARtype] = ACTIONS(1653), + [anon_sym_return] = ACTIONS(3549), + [anon_sym_untyped] = ACTIONS(3549), + [anon_sym_break] = ACTIONS(3549), + [anon_sym_continue] = ACTIONS(3549), + [anon_sym_LBRACK] = ACTIONS(1653), + [anon_sym_this] = ACTIONS(3549), + [anon_sym_new] = ACTIONS(3549), + [anon_sym_TILDE] = ACTIONS(1653), + [anon_sym_BANG] = ACTIONS(3549), + [anon_sym_DASH] = ACTIONS(3549), + [anon_sym_PLUS_PLUS] = ACTIONS(1653), + [anon_sym_DASH_DASH] = ACTIONS(1653), + [anon_sym_PERCENT] = ACTIONS(1653), + [anon_sym_SLASH] = ACTIONS(3549), + [anon_sym_PLUS] = ACTIONS(3549), + [anon_sym_LT_LT] = ACTIONS(1653), + [anon_sym_GT_GT] = ACTIONS(3549), + [anon_sym_GT_GT_GT] = ACTIONS(1653), + [anon_sym_AMP] = ACTIONS(3549), + [anon_sym_PIPE] = ACTIONS(3549), + [anon_sym_CARET] = ACTIONS(1653), + [anon_sym_AMP_AMP] = ACTIONS(1653), + [anon_sym_PIPE_PIPE] = ACTIONS(1653), + [anon_sym_EQ_EQ] = ACTIONS(1653), + [anon_sym_BANG_EQ] = ACTIONS(1653), + [anon_sym_LT] = ACTIONS(3549), + [anon_sym_LT_EQ] = ACTIONS(1653), + [anon_sym_GT] = ACTIONS(3549), + [anon_sym_GT_EQ] = ACTIONS(1653), + [anon_sym_EQ_GT] = ACTIONS(1653), + [anon_sym_QMARK_QMARK] = ACTIONS(1653), + [anon_sym_EQ] = ACTIONS(3549), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1653), + [anon_sym_null] = ACTIONS(3549), + [aux_sym_integer_token1] = ACTIONS(3549), + [aux_sym_integer_token2] = ACTIONS(1653), + [aux_sym_float_token1] = ACTIONS(3549), + [aux_sym_float_token2] = ACTIONS(1653), + [anon_sym_true] = ACTIONS(3549), + [anon_sym_false] = ACTIONS(3549), + [aux_sym_string_token1] = ACTIONS(1653), + [aux_sym_string_token3] = ACTIONS(1653), + [sym_comment] = ACTIONS(3), + [sym__closing_brace_unmarker] = ACTIONS(3), + }, + [879] = { + [sym_operator] = STATE(858), + [sym__unaryOperator] = STATE(238), + [sym__prefixUnaryOperator] = STATE(238), + [sym__postfixUnaryOperator] = STATE(238), + [sym__binaryOperator] = STATE(238), + [sym__arithmeticOperator] = STATE(238), + [sym__bitwiseOperator] = STATE(238), + [sym__logicalOperator] = STATE(238), + [sym__comparisonOperator] = STATE(238), + [sym__miscOperator] = STATE(238), + [sym__assignmentOperator] = STATE(238), + [sym__compoundAssignmentOperator] = STATE(238), + [sym__rangeOperator] = STATE(238), + [aux_sym_expression_repeat1] = STATE(878), + [sym_identifier] = ACTIONS(3499), + [anon_sym_STAR] = ACTIONS(57), + [anon_sym_LPAREN] = ACTIONS(3497), + [anon_sym_RPAREN] = ACTIONS(3497), + [anon_sym_switch] = ACTIONS(3499), + [anon_sym_LBRACE] = ACTIONS(3497), + [anon_sym_cast] = ACTIONS(3499), + [anon_sym_DOLLARtype] = ACTIONS(3497), + [anon_sym_return] = ACTIONS(3499), + [anon_sym_untyped] = ACTIONS(3499), + [anon_sym_break] = ACTIONS(3499), + [anon_sym_continue] = ACTIONS(3499), + [anon_sym_LBRACK] = ACTIONS(3497), + [anon_sym_this] = ACTIONS(3499), + [anon_sym_new] = ACTIONS(3499), + [anon_sym_TILDE] = ACTIONS(57), + [anon_sym_BANG] = ACTIONS(59), + [anon_sym_DASH] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(63), + [anon_sym_DASH_DASH] = ACTIONS(63), + [anon_sym_PERCENT] = ACTIONS(57), + [anon_sym_SLASH] = ACTIONS(59), + [anon_sym_PLUS] = ACTIONS(59), + [anon_sym_LT_LT] = ACTIONS(57), + [anon_sym_GT_GT] = ACTIONS(59), + [anon_sym_GT_GT_GT] = ACTIONS(57), + [anon_sym_AMP] = ACTIONS(59), + [anon_sym_PIPE] = ACTIONS(59), + [anon_sym_CARET] = ACTIONS(57), + [anon_sym_AMP_AMP] = ACTIONS(57), + [anon_sym_PIPE_PIPE] = ACTIONS(57), + [anon_sym_EQ_EQ] = ACTIONS(57), + [anon_sym_BANG_EQ] = ACTIONS(57), + [anon_sym_LT] = ACTIONS(59), + [anon_sym_LT_EQ] = ACTIONS(57), + [anon_sym_GT] = ACTIONS(59), + [anon_sym_GT_EQ] = ACTIONS(57), + [anon_sym_EQ_GT] = ACTIONS(57), + [anon_sym_QMARK_QMARK] = ACTIONS(57), + [anon_sym_EQ] = ACTIONS(59), + [anon_sym_DOT_DOT_DOT] = ACTIONS(67), + [anon_sym_null] = ACTIONS(3499), + [aux_sym_integer_token1] = ACTIONS(3499), + [aux_sym_integer_token2] = ACTIONS(3497), + [aux_sym_float_token1] = ACTIONS(3499), + [aux_sym_float_token2] = ACTIONS(3497), + [anon_sym_true] = ACTIONS(3499), + [anon_sym_false] = ACTIONS(3499), + [aux_sym_string_token1] = ACTIONS(3497), + [aux_sym_string_token3] = ACTIONS(3497), [sym_comment] = ACTIONS(3), [sym__closing_brace_unmarker] = ACTIONS(3), }, @@ -68429,50 +93746,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 23, - ACTIONS(942), 1, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(956), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(958), 1, + ACTIONS(2587), 1, anon_sym_new, - ACTIONS(960), 1, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(1207), 1, + STATE(1478), 1, sym_string, - STATE(1212), 1, + STATE(1490), 1, sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, + STATE(1510), 1, sym__call, - STATE(2279), 1, + STATE(1535), 1, + sym__constructor_call, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(1244), 2, + STATE(1548), 2, sym__rhs_expression, sym_call_expression, - STATE(1227), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -68482,7 +93799,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(526), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -68495,15 +93812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(528), 20, + ACTIONS(1371), 20, sym__lookback_semicolon, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -68515,52 +93832,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, [111] = 23, - ACTIONS(362), 1, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, + anon_sym_new, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(3551), 1, sym_identifier, - STATE(201), 1, + STATE(1478), 1, + sym_string, + STATE(1490), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1510), 1, sym__call, - STATE(1204), 1, - sym_string, - STATE(2179), 1, + STATE(1535), 1, + sym__constructor_call, + STATE(2752), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(1511), 2, sym__rhs_expression, sym_call_expression, - STATE(1307), 9, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -68570,7 +93887,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(544), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -68583,15 +93900,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 20, - anon_sym_RPAREN, + ACTIONS(1343), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -68603,83 +93920,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [222] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2441), 1, - sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + anon_sym_DOT_DOT_DOT, + [222] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1307), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(526), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(528), 20, + ACTIONS(1753), 30, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_COMMA, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -68691,64 +93951,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [333] = 23, - ACTIONS(942), 1, - anon_sym_LBRACE, - ACTIONS(954), 1, - anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, - anon_sym_null, - ACTIONS(962), 1, - aux_sym_integer_token1, - ACTIONS(964), 1, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, - ACTIONS(966), 1, - aux_sym_float_token1, - ACTIONS(968), 1, aux_sym_float_token2, - ACTIONS(972), 1, aux_sym_string_token1, - ACTIONS(974), 1, aux_sym_string_token3, - ACTIONS(2439), 1, - sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, - sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, - sym__call, - STATE(2279), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(970), 2, - anon_sym_true, - anon_sym_false, - STATE(1323), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(544), 12, + ACTIONS(1755), 30, anon_sym_DOT, + anon_sym_in, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -68759,72 +93981,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [444] = 23, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [291] = 23, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(2117), 1, + anon_sym_this, + ACTIONS(3553), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, + STATE(1587), 1, sym_member_expression, - STATE(1265), 1, + STATE(1609), 1, + sym_string, + STATE(2000), 1, sym__call, - STATE(1266), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2082), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, + STATE(1798), 2, sym__rhs_expression, sym_call_expression, - STATE(1275), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -68834,8 +94041,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(544), 12, + ACTIONS(1375), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -68847,14 +94055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 19, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1371), 17, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -68866,50 +94072,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [554] = 22, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, + anon_sym_DOT_DOT_DOT, + [400] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, + anon_sym_this, + ACTIONS(3555), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(1266), 1, + STATE(187), 1, sym__constructor_call, - STATE(2082), 1, + STATE(189), 1, + sym_member_expression, + STATE(1925), 1, + sym_string, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1275), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -68919,7 +94127,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(526), 13, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -68932,15 +94140,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - sym_identifier, - ACTIONS(528), 19, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1343), 18, + anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -68952,52 +94158,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [662] = 23, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [509] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(472), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1395), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1925), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1449), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -69007,7 +94213,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(544), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69020,13 +94226,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 18, - anon_sym_RBRACE, + ACTIONS(1371), 18, + anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69038,52 +94244,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [771] = 23, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [618] = 23, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(472), 1, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1395), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1630), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1449), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -69093,7 +94299,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(526), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69106,13 +94312,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(528), 18, + ACTIONS(1371), 18, + anon_sym_STAR, anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69124,52 +94330,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [880] = 23, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [727] = 23, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(3553), 1, sym_identifier, - STATE(201), 1, + STATE(1587), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, + STATE(1609), 1, sym_string, - STATE(2179), 1, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(1776), 2, sym__rhs_expression, sym_call_expression, - STATE(1641), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -69179,8 +94385,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(544), 12, + ACTIONS(1345), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -69192,13 +94399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 18, - anon_sym_COLON, + ACTIONS(1343), 17, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69210,52 +94416,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [989] = 23, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [836] = 23, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3559), 1, sym_identifier, - STATE(1362), 1, + STATE(1597), 1, sym_member_expression, - STATE(1384), 1, + STATE(1716), 1, sym_string, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, + STATE(1845), 2, sym__rhs_expression, sym_call_expression, - STATE(1506), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -69265,7 +94471,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(526), 12, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69278,13 +94484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(528), 18, + ACTIONS(1371), 18, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69296,52 +94502,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1098] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [945] = 23, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(3559), 1, sym_identifier, - STATE(201), 1, + STATE(1597), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, + STATE(1716), 1, sym_string, - STATE(2179), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, + STATE(1853), 2, sym__rhs_expression, sym_call_expression, - STATE(1641), 9, + STATE(1934), 9, sym__literal, sym_integer, sym_float, @@ -69351,7 +94557,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(526), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69364,13 +94570,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(528), 18, - anon_sym_COLON, + ACTIONS(1343), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69382,52 +94588,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1207] = 23, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [1054] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(1362), 1, - sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(2161), 1, + STATE(189), 1, + sym_member_expression, + STATE(1630), 1, + sym_string, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1544), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1506), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -69437,7 +94643,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(544), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69450,13 +94656,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 18, - sym__lookback_semicolon, + ACTIONS(1343), 18, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69468,45 +94674,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1316] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [1163] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(956), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(720), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(776), 1, + STATE(990), 1, sym_member_expression, - STATE(777), 1, + STATE(993), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -69516,7 +94722,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 12, + ACTIONS(1449), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69529,16 +94735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 21, + ACTIONS(1447), 21, sym__lookback_semicolon, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69550,45 +94756,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1418] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [1265] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(956), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(720), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(776), 1, + STATE(990), 1, sym_member_expression, - STATE(777), 1, + STATE(993), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -69598,7 +94804,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 12, + ACTIONS(1381), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69611,16 +94817,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 21, + ACTIONS(1379), 21, sym__lookback_semicolon, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69632,45 +94838,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1520] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [1367] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2453), 1, + ACTIONS(3563), 1, sym_identifier, - ACTIONS(2456), 1, + ACTIONS(3566), 1, anon_sym_this, - STATE(720), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(776), 1, + STATE(990), 1, sym_member_expression, - STATE(777), 1, + STATE(993), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -69680,7 +94886,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 12, + ACTIONS(1388), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69693,16 +94899,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 21, + ACTIONS(1386), 21, sym__lookback_semicolon, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69714,45 +94920,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1622] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [1469] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(956), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(720), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(776), 1, + STATE(990), 1, sym_member_expression, - STATE(777), 1, + STATE(993), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -69762,7 +94968,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 12, + ACTIONS(1341), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69775,16 +94981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 21, + ACTIONS(1339), 21, sym__lookback_semicolon, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69796,45 +95002,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1724] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [1571] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(956), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2451), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(720), 1, + STATE(893), 1, aux_sym_member_expression_repeat1, - STATE(776), 1, + STATE(990), 1, sym_member_expression, - STATE(777), 1, + STATE(993), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2385), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -69844,7 +95050,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 12, + ACTIONS(1315), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -69857,16 +95063,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 21, + ACTIONS(1313), 21, sym__lookback_semicolon, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [1673] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 27, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 29, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69878,45 +95148,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1826] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [1747] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2459), 1, + ACTIONS(3573), 1, sym_identifier, - STATE(179), 1, + ACTIONS(3576), 1, + anon_sym_this, + STATE(897), 1, + aux_sym_member_expression_repeat1, + STATE(1049), 1, sym__lhs_expression, - STATE(213), 1, + STATE(1050), 1, sym_member_expression, - STATE(732), 1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + STATE(2933), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1388), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1386), 21, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [1847] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(2117), 1, + anon_sym_this, + ACTIONS(3579), 1, + sym_identifier, + STATE(882), 1, + sym_member_expression, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(1926), 1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2396), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -69926,8 +95280,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 12, + ACTIONS(1341), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -69939,14 +95294,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 19, + ACTIONS(1339), 18, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -69958,45 +95312,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [1926] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [1947] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(444), 1, - anon_sym_this, - ACTIONS(2461), 1, + ACTIONS(3581), 1, sym_identifier, - STATE(727), 1, + ACTIONS(3584), 1, + anon_sym_this, + STATE(882), 1, + sym_member_expression, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(802), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2410), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -70006,7 +95360,10 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 10, + ACTIONS(1388), 13, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -70017,16 +95374,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 21, - sym__closing_brace_marker, + ACTIONS(1386), 18, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70038,45 +95392,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2026] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2047] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(444), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(2461), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(727), 1, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(802), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(815), 1, + STATE(1050), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2410), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -70086,7 +95440,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -70097,8 +95451,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 21, + ACTIONS(1313), 21, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH_GT, @@ -70106,7 +95461,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70118,45 +95472,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2126] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2147] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(876), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(2459), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, + STATE(882), 1, sym_member_expression, - STATE(732), 1, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(1926), 1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2396), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -70166,8 +95520,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 12, + ACTIONS(1381), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -70179,14 +95534,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 19, + ACTIONS(1379), 18, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70198,45 +95552,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2226] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [2247] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2463), 1, - sym_identifier, - ACTIONS(2466), 1, + ACTIONS(2205), 1, anon_sym_this, - STATE(727), 1, + ACTIONS(3589), 1, + sym_identifier, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(802), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(815), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2410), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -70246,7 +95600,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 10, + ACTIONS(1341), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -70257,16 +95613,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 21, - sym__closing_brace_marker, + ACTIONS(1339), 19, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70278,45 +95632,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2326] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2347] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(998), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(733), 1, + STATE(882), 1, + sym_member_expression, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -70326,8 +95680,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 12, + ACTIONS(1315), 13, anon_sym_DOT, + anon_sym_in, anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, @@ -70339,14 +95694,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 19, - sym__lookback_semicolon, + ACTIONS(1313), 18, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70358,45 +95712,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2426] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2447] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(876), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(2459), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(179), 1, + STATE(905), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, sym__lhs_expression, - STATE(213), 1, + STATE(1007), 1, sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2396), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -70406,7 +95760,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 12, + ACTIONS(1381), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70419,14 +95773,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 19, + ACTIONS(1379), 19, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70438,45 +95792,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2526] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2547] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2459), 1, + ACTIONS(3591), 1, sym_identifier, - STATE(179), 1, + ACTIONS(3594), 1, + anon_sym_this, + STATE(905), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, sym__lhs_expression, - STATE(213), 1, + STATE(1007), 1, sym_member_expression, - STATE(732), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2396), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -70486,7 +95840,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 12, + ACTIONS(1388), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70499,14 +95853,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 19, + ACTIONS(1386), 19, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70518,45 +95872,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2626] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2647] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(998), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(205), 1, sym__lhs_expression, - STATE(797), 1, + STATE(882), 1, sym_member_expression, - STATE(1926), 1, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -70566,7 +95920,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 12, + ACTIONS(1341), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70579,14 +95933,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 19, - sym__lookback_semicolon, + ACTIONS(1339), 19, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70598,45 +95952,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2726] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [2747] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2471), 1, - sym_identifier, - ACTIONS(2474), 1, + ACTIONS(2105), 1, anon_sym_this, - STATE(179), 1, + ACTIONS(3597), 1, + sym_identifier, + STATE(205), 1, sym__lhs_expression, - STATE(213), 1, + STATE(882), 1, sym_member_expression, - STATE(732), 1, + STATE(911), 1, aux_sym_member_expression_repeat1, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2396), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -70646,7 +96000,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 12, + ACTIONS(1381), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70659,14 +96013,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 19, + ACTIONS(1379), 19, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70678,45 +96032,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2826] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [2847] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2477), 1, - sym_identifier, - ACTIONS(2480), 1, + ACTIONS(2105), 1, anon_sym_this, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, + ACTIONS(3597), 1, + sym_identifier, + STATE(205), 1, sym__lhs_expression, - STATE(797), 1, + STATE(882), 1, sym_member_expression, - STATE(1926), 1, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -70726,7 +96080,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 12, + ACTIONS(1315), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70739,14 +96093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 19, - sym__lookback_semicolon, + ACTIONS(1313), 19, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70758,45 +96112,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [2926] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [2947] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(998), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(733), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(205), 1, sym__lhs_expression, - STATE(797), 1, + STATE(882), 1, sym_member_expression, - STATE(1926), 1, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -70806,7 +96160,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 12, + ACTIONS(1449), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70819,14 +96173,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 19, - sym__lookback_semicolon, + ACTIONS(1447), 19, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70838,45 +96192,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3026] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3047] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(998), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(733), 1, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2371), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -70886,7 +96240,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 12, + ACTIONS(1315), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -70899,14 +96253,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 19, + ACTIONS(1313), 19, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70918,45 +96272,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3126] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3147] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(444), 1, - anon_sym_this, - ACTIONS(2461), 1, + ACTIONS(3599), 1, sym_identifier, - STATE(727), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, + ACTIONS(3602), 1, + anon_sym_this, + STATE(205), 1, sym__lhs_expression, - STATE(815), 1, + STATE(882), 1, sym_member_expression, - STATE(1926), 1, + STATE(911), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2410), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -70966,7 +96320,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 10, + ACTIONS(1388), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -70977,16 +96333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 21, - sym__closing_brace_marker, + ACTIONS(1386), 19, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -70998,45 +96352,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3226] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3247] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(444), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(2461), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(727), 1, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(802), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(815), 1, + STATE(1050), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2410), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -71046,7 +96400,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 10, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71057,8 +96411,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 21, + ACTIONS(1379), 21, sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DASH_GT, @@ -71066,7 +96421,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71078,45 +96432,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3326] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3347] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2117), 1, anon_sym_this, - STATE(747), 1, + ACTIONS(3579), 1, + sym_identifier, + STATE(882), 1, + sym_member_expression, + STATE(899), 1, aux_sym_member_expression_repeat1, - STATE(832), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -71126,7 +96480,10 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 10, + ACTIONS(1449), 13, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71137,15 +96494,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 20, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, + ACTIONS(1447), 18, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71157,45 +96512,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3425] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3447] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1552), 1, anon_sym_this, - STATE(745), 1, + ACTIONS(3587), 1, + sym_identifier, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1050), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -71205,7 +96560,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 10, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71216,15 +96571,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 20, - sym__lookback_semicolon, + ACTIONS(1339), 21, + sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71236,45 +96592,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3524] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3547] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(2205), 1, anon_sym_this, - STATE(747), 1, + ACTIONS(3589), 1, + sym_identifier, + STATE(905), 1, aux_sym_member_expression_repeat1, - STATE(832), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(877), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -71284,7 +96640,9 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 10, + ACTIONS(1449), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71295,58 +96653,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 20, + ACTIONS(1447), 19, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3623] = 11, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1604), 1, - anon_sym_in, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2493), 1, - anon_sym_COLON, - ACTIONS(2495), 1, - anon_sym_QMARK, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1506), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1502), 22, - anon_sym_LBRACE, - anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71356,74 +96670,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1504), 23, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [3704] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3647] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1552), 1, anon_sym_this, - STATE(745), 1, + ACTIONS(3587), 1, + sym_identifier, + STATE(897), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1049), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1050), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -71433,7 +96720,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 10, + ACTIONS(1449), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71444,57 +96731,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 20, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(1447), 21, + sym__closing_brace_marker, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3803] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1604), 1, - anon_sym_in, - ACTIONS(2499), 1, - anon_sym_DOT, - ACTIONS(2501), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2497), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1506), 4, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(1502), 22, - anon_sym_LBRACE, - anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71504,74 +96750,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1504), 23, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [3882] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3747] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(2489), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(745), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -71581,7 +96800,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 10, + ACTIONS(1449), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71592,15 +96811,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 20, + ACTIONS(1447), 20, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71612,45 +96831,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [3981] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [3846] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2503), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(2506), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(745), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -71660,7 +96879,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71671,15 +96890,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 20, + ACTIONS(1313), 20, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71691,45 +96910,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4080] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [3945] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(747), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(832), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(877), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -71739,7 +96958,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 10, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71750,15 +96969,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 20, + ACTIONS(1339), 20, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71770,45 +96989,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4179] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [4044] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2509), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(2512), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(747), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, + STATE(1100), 1, sym_member_expression, - STATE(1926), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -71818,7 +97037,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 10, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71829,15 +97048,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 20, + ACTIONS(1339), 20, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71849,45 +97068,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4278] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [4143] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(747), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, + STATE(1100), 1, sym_member_expression, - STATE(1926), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2366), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -71897,7 +97116,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 10, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71908,15 +97127,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 20, + ACTIONS(1379), 20, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_RPAREN, anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -71928,45 +97147,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4377] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [4242] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(3613), 1, sym_identifier, - ACTIONS(2489), 1, + ACTIONS(3616), 1, anon_sym_this, - STATE(745), 1, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + STATE(1100), 1, sym_member_expression, - STATE(1926), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -71976,7 +97195,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 10, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -71987,15 +97206,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 20, + ACTIONS(1386), 20, sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72007,45 +97226,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4476] = 20, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [4341] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(752), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + STATE(1100), 1, sym_member_expression, - STATE(1926), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -72055,7 +97274,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(520), 10, + ACTIONS(1315), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72066,14 +97285,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(518), 19, + ACTIONS(1313), 20, sym__lookback_semicolon, - anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72085,45 +97305,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4574] = 20, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [4440] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(752), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(922), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, + STATE(1100), 1, sym_member_expression, - STATE(1926), 1, + STATE(1119), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -72133,7 +97353,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(524), 10, + ACTIONS(1449), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72144,14 +97364,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(522), 19, + ACTIONS(1447), 20, sym__lookback_semicolon, - anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72163,45 +97384,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4672] = 20, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [4539] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2517), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(2520), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(752), 1, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -72211,7 +97432,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(483), 10, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72222,74 +97443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(478), 19, + ACTIONS(1379), 20, sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4770] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2491), 1, - anon_sym_DOT, - ACTIONS(2495), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1508), 24, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 28, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72301,49 +97463,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [4840] = 20, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [4638] = 20, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(3619), 1, sym_identifier, - STATE(752), 1, + ACTIONS(3622), 1, + anon_sym_this, + STATE(926), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(797), 1, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -72353,7 +97511,7 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(470), 10, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72364,14 +97522,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(466), 19, + ACTIONS(1386), 20, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72383,45 +97542,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [4938] = 20, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [4737] = 20, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(3625), 1, sym_identifier, - STATE(752), 1, + STATE(882), 1, + sym_member_expression, + STATE(941), 1, aux_sym_member_expression_repeat1, - STATE(789), 1, + STATE(1051), 1, sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2413), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -72431,7 +97590,8 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(476), 10, + ACTIONS(1449), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72442,14 +97602,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(474), 19, - sym__lookback_semicolon, + ACTIONS(1447), 18, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72461,157 +97620,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [5036] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1508), 26, + anon_sym_DOT_DOT_DOT, + [4835] = 10, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3627), 1, anon_sym_DOT, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, + ACTIONS(3629), 1, + anon_sym_COLON, + ACTIONS(3631), 1, anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 28, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3633), 1, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [5102] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 26, - anon_sym_DOT, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 28, + ACTIONS(1753), 4, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_DOLLARtype, - anon_sym_LBRACK, anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(1785), 22, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [5165] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1604), 1, - anon_sym_in, - ACTIONS(1606), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2497), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 23, - anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72622,12 +97660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1504), 23, + ACTIONS(1787), 23, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -72651,21 +97689,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [5242] = 3, + [4913] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(3635), 1, + sym_identifier, + ACTIONS(3638), 1, + anon_sym_this, + STATE(929), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 26, - anon_sym_DOT, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_QMARK, - anon_sym_new, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + STATE(2888), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1388), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72676,25 +97747,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 28, + ACTIONS(1386), 19, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DOLLARtype, - anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72706,40 +97766,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [5011] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, + ACTIONS(1337), 1, aux_sym_string_token3, - [5305] = 11, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(1604), 1, - anon_sym_in, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(2523), 1, - anon_sym_COLON, + ACTIONS(3641), 1, + sym_identifier, + STATE(929), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 23, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2888), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1315), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1313), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72749,21 +97842,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [5109] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1504), 23, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, + ACTIONS(3641), 1, + sym_identifier, + STATE(929), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2888), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1341), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72771,42 +97900,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [5384] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, + ACTIONS(1339), 19, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(1604), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2497), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 23, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72816,21 +97920,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [5207] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(1504), 23, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, + ACTIONS(2025), 1, anon_sym_this, - anon_sym_new, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, + sym_member_expression, + STATE(941), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2923), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1341), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -72838,35 +97979,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [5461] = 6, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1508), 1, - anon_sym_LT, + ACTIONS(1339), 18, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [5305] = 4, + ACTIONS(3633), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 4, + ACTIONS(1636), 26, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1502), 23, anon_sym_LBRACE, anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72878,12 +98029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - ACTIONS(1504), 25, + ACTIONS(1638), 28, anon_sym_DOT, anon_sym_switch, anon_sym_cast, @@ -72893,6 +98044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_continue, anon_sym_this, anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -72901,6 +98054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_null, @@ -72909,55 +98063,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - [5530] = 8, - ACTIONS(1506), 1, + [5371] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, anon_sym_LPAREN, - ACTIONS(1508), 1, + ACTIONS(1755), 1, anon_sym_LT, - ACTIONS(1600), 1, + ACTIONS(3643), 1, anon_sym_DOT, - ACTIONS(1606), 1, + ACTIONS(3645), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2497), 2, + ACTIONS(3633), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1504), 23, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 24, + ACTIONS(1785), 23, + anon_sym_STAR, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, - anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -72968,27 +98099,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5602] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2497), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 23, + ACTIONS(1787), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -72996,6 +98112,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -73012,7 +98130,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1502), 24, + [5447] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3633), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 24, + anon_sym_STAR, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, @@ -73021,7 +98155,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73032,19 +98165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5674] = 4, - ACTIONS(2497), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1626), 26, - anon_sym_DOT, + ACTIONS(1787), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -73052,7 +98178,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -73061,7 +98188,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_null, @@ -73070,17 +98196,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1628), 26, + [5521] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3633), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 23, + anon_sym_STAR, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, - anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73090,24 +98231,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5738] = 6, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(2525), 1, - anon_sym_DOT, - ACTIONS(2527), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 24, + ACTIONS(1787), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -73115,6 +98245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -73123,7 +98255,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_null, @@ -73132,8 +98263,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1502), 25, + [5597] = 8, + ACTIONS(1753), 1, anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3633), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 24, + anon_sym_STAR, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_DOLLARtype, @@ -73142,7 +98288,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73153,22 +98298,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [5805] = 6, - ACTIONS(2320), 1, - anon_sym_DOT, - ACTIONS(2322), 1, - anon_sym_QMARK, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 24, + ACTIONS(1787), 25, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -73176,6 +98311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_catch, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -73184,7 +98321,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_null, @@ -73193,51 +98329,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1502), 25, - anon_sym_LPAREN, - anon_sym_RPAREN, + [5671] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - anon_sym_DOLLARtype, + ACTIONS(1319), 1, anon_sym_LBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, + ACTIONS(1337), 1, aux_sym_string_token3, - [5872] = 6, - ACTIONS(2497), 1, - anon_sym_EQ_GT, - ACTIONS(2529), 1, - anon_sym_DOT, - ACTIONS(2531), 1, - anon_sym_QMARK, + ACTIONS(3641), 1, + sym_identifier, + STATE(929), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 24, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2888), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1381), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73248,23 +98387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 25, + ACTIONS(1379), 19, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73274,31 +98404,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [5769] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, + ACTIONS(1337), 1, aux_sym_string_token3, - [5939] = 6, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2126), 1, - anon_sym_QMARK, - ACTIONS(2497), 1, - anon_sym_EQ_GT, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, + sym_member_expression, + STATE(941), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 24, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2923), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1315), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73309,23 +98466,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1502), 25, + ACTIONS(1313), 18, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, - anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73335,17 +98482,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [6006] = 3, + anon_sym_DOT_DOT_DOT, + [5867] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2437), 24, + ACTIONS(1755), 26, + anon_sym_DOT, anon_sym_switch, anon_sym_cast, anon_sym_return, @@ -73353,6 +98500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_break, anon_sym_continue, anon_sym_this, + anon_sym_QMARK, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -73370,17 +98518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(644), 26, + ACTIONS(1753), 28, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_DOLLARtype, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73392,26 +98542,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6065] = 4, - ACTIONS(1468), 1, + [5933] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(3647), 1, + sym_identifier, + ACTIONS(3650), 1, + anon_sym_this, + STATE(882), 1, + sym_member_expression, + STATE(941), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2389), 24, - anon_sym_switch, - anon_sym_cast, - anon_sym_return, - anon_sym_untyped, - anon_sym_break, - anon_sym_continue, - anon_sym_this, - anon_sym_new, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + STATE(2923), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1388), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73422,22 +98606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(2387), 25, + ACTIONS(1386), 18, + anon_sym_STAR, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73449,49 +98624,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [6126] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + [6031] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, - anon_sym_this, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 27, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(3633), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1753), 4, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_DASH_GT, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73501,25 +98662,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6184] = 6, - ACTIONS(1524), 1, + ACTIONS(1787), 23, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6107] = 6, + ACTIONS(1757), 1, anon_sym_COLON, - ACTIONS(2533), 1, + ACTIONS(3627), 1, anon_sym_DOT, - ACTIONS(2535), 1, + ACTIONS(3631), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, + ACTIONS(1755), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73536,18 +98727,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 27, - sym__closing_brace_marker, + ACTIONS(1753), 28, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73559,23 +98751,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6246] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2537), 1, - anon_sym_DOT, - ACTIONS(2539), 1, - anon_sym_QMARK, + [6177] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, + sym_member_expression, + STATE(941), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2923), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1381), 11, + anon_sym_in, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73586,23 +98815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 26, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_DASH_GT, + ACTIONS(1379), 18, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73614,34 +98833,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [6275] = 20, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, + ACTIONS(1337), 1, aux_sym_string_token3, - [6307] = 10, - ACTIONS(588), 1, - anon_sym_DASH, - STATE(704), 1, - sym_operator, - STATE(782), 1, - aux_sym_expression_repeat1, + ACTIONS(3641), 1, + sym_identifier, + STATE(929), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(590), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(542), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - ACTIONS(586), 9, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2888), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1449), 10, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -73650,22 +98892,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(272), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(584), 15, + ACTIONS(1447), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73677,15 +98911,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [6376] = 3, + anon_sym_DOT_DOT_DOT, + [6373] = 6, + ACTIONS(3633), 1, + anon_sym_EQ_GT, + ACTIONS(3657), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, + ACTIONS(1785), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1787), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73702,18 +98975,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 27, - sym__lookback_semicolon, - sym__closing_brace_marker, + [6442] = 6, + ACTIONS(3633), 1, + anon_sym_EQ_GT, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3663), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1785), 25, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73723,21 +99005,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6431] = 3, + ACTIONS(1787), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6511] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 19, + ACTIONS(1875), 26, anon_sym_DOT, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -73754,18 +99069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1420), 27, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1873), 28, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73777,17 +99093,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6486] = 3, + [6574] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1516), 20, + ACTIONS(1755), 26, anon_sym_DOT, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, anon_sym_QMARK, anon_sym_new, @@ -73807,17 +99129,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1514), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(1753), 28, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73829,64 +99153,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6541] = 13, - ACTIONS(2541), 1, - anon_sym_DASH, - STATE(704), 1, - sym_operator, - STATE(782), 1, - aux_sym_expression_repeat1, + [6637] = 6, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(590), 2, + ACTIONS(1753), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1785), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1844), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(542), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - ACTIONS(586), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2543), 5, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2545), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(272), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(584), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -73895,13 +99190,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [6616] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1550), 20, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1787), 25, anon_sym_DOT, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, anon_sym_QMARK, anon_sym_new, @@ -73912,7 +99213,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_GT, anon_sym_EQ, anon_sym_null, @@ -73921,17 +99221,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1548), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, + [6706] = 5, + ACTIONS(3665), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 25, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73943,19 +99251,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6671] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1483), 20, - anon_sym_DOT, + ACTIONS(3370), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_else, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -73973,17 +99282,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1480), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, + [6772] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 25, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -73995,81 +99310,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6726] = 13, - ACTIONS(51), 1, + ACTIONS(3370), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_new, + anon_sym_BANG, anon_sym_DASH, - STATE(784), 1, - aux_sym_expression_repeat1, - STATE(1501), 1, - sym_operator, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6836] = 10, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3633), 1, + anon_sym_EQ_GT, + ACTIONS(3667), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1785), 23, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(578), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - ACTIONS(55), 5, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [6801] = 3, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1787), 23, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [6912] = 6, + ACTIONS(3669), 1, + anon_sym_else, + ACTIONS(3671), 1, + sym__lookback_semicolon, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1473), 20, - anon_sym_DOT, + ACTIONS(2627), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -74087,17 +99444,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1470), 26, - sym__lookback_semicolon, - sym__closing_brace_marker, + ACTIONS(2629), 25, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74109,64 +99465,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [6856] = 13, - ACTIONS(602), 1, - anon_sym_DASH, - STATE(784), 1, - aux_sym_expression_repeat1, - STATE(1501), 1, - sym_operator, + [6980] = 5, + ACTIONS(3665), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(605), 2, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(594), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - ACTIONS(599), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(608), 5, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74175,59 +99500,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [6931] = 13, - ACTIONS(602), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(2683), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_else, + anon_sym_new, + anon_sym_BANG, anon_sym_DASH, - STATE(785), 1, - aux_sym_expression_repeat1, - STATE(1550), 1, - sym_operator, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [7046] = 5, + ACTIONS(3665), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(605), 2, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(594), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(599), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(608), 5, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74236,17 +99561,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7005] = 5, - ACTIONS(2547), 1, - anon_sym_DOT, - ACTIONS(2549), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1508), 17, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(3359), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -74263,17 +99592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 26, - sym__lookback_semicolon, + [7112] = 5, + ACTIONS(3673), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3361), 25, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74285,21 +99622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7063] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, + ACTIONS(3363), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_else, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -74316,16 +99653,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 25, - sym__lookback_semicolon, + [7178] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 25, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74337,33 +99681,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7119] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - STATE(711), 1, - sym_operator, - STATE(798), 1, - aux_sym_expression_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(542), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 9, + ACTIONS(2683), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -74372,22 +99707,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [7242] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(957), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74399,15 +99741,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7187] = 3, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(3359), 26, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [7306] = 5, + ACTIONS(3669), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 19, - anon_sym_DOT, + ACTIONS(2627), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_catch, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -74424,17 +99807,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1420), 26, - sym__lookback_semicolon, + ACTIONS(2629), 25, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74446,124 +99828,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7241] = 13, - ACTIONS(602), 1, - anon_sym_DASH, - STATE(790), 1, - aux_sym_expression_repeat1, - STATE(1532), 1, - sym_operator, + [7371] = 5, + ACTIONS(3676), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(605), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(594), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(599), 4, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3370), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(611), 5, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, - anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7315] = 13, - ACTIONS(2551), 1, - anon_sym_DASH, - STATE(711), 1, - sym_operator, - STATE(798), 1, - aux_sym_expression_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(542), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 4, - anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(3368), 25, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74572,29 +99888,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7389] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - STATE(708), 1, - sym_operator, - STATE(793), 1, - aux_sym_expression_repeat1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7436] = 5, + ACTIONS(3669), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(542), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 9, + ACTIONS(2667), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -74603,22 +99921,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2669), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74630,80 +99948,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7457] = 13, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(785), 1, - aux_sym_expression_repeat1, - STATE(1550), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7501] = 6, + ACTIONS(3633), 1, + anon_sym_EQ_GT, + ACTIONS(3678), 1, + anon_sym_DOT, + ACTIONS(3680), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(578), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 4, + ACTIONS(1787), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1785), 25, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7531] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(2557), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7568] = 6, + ACTIONS(3633), 1, + anon_sym_EQ_GT, + ACTIONS(3682), 1, anon_sym_DOT, - ACTIONS(2559), 1, + ACTIONS(3684), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, + ACTIONS(1787), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -74720,16 +100049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 25, - sym__lookback_semicolon, + ACTIONS(1785), 25, + anon_sym_STAR, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74739,65 +100069,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7591] = 13, - ACTIONS(602), 1, - anon_sym_DASH, - STATE(795), 1, - aux_sym_expression_repeat1, - STATE(1472), 1, - sym_operator, + [7635] = 5, + ACTIONS(3676), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(605), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(594), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(599), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(611), 5, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2683), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2681), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74806,59 +100130,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7665] = 13, - ACTIONS(2551), 1, - anon_sym_DASH, - STATE(708), 1, - sym_operator, - STATE(793), 1, - aux_sym_expression_repeat1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7700] = 5, + ACTIONS(3686), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(542), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 4, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3363), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(3361), 25, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74867,15 +100190,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7739] = 3, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7765] = 6, + ACTIONS(3689), 1, + anon_sym_else, + ACTIONS(3691), 1, + sym__lookback_semicolon, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, + ACTIONS(2627), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -74892,17 +100230,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 26, - sym__lookback_semicolon, + ACTIONS(2629), 25, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -74914,63 +100251,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [7793] = 13, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(790), 1, - aux_sym_expression_repeat1, - STATE(1532), 1, - sym_operator, + [7832] = 5, + ACTIONS(3669), 1, + anon_sym_else, + STATE(740), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(578), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(49), 4, + ACTIONS(2677), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2679), 25, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -74979,29 +100311,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7867] = 10, - ACTIONS(2565), 1, - anon_sym_DASH, - STATE(706), 1, - sym_operator, - STATE(800), 1, - aux_sym_expression_repeat1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7897] = 5, + ACTIONS(3676), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(2567), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(542), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(2563), 9, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3359), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -75010,22 +100344,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(780), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2561), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(3357), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75037,59 +100371,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [7935] = 13, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(795), 1, - aux_sym_expression_repeat1, - STATE(1472), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [7962] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(578), 3, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75098,15 +100404,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8009] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1550), 20, - anon_sym_DOT, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(2683), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_catch, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -75124,15 +100435,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1548), 24, - sym__lookback_semicolon, + [8025] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 25, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75144,17 +100463,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8062] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1422), 17, + ACTIONS(3359), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, + anon_sym_catch, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -75171,18 +100494,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1420), 27, - sym__closing_brace_marker, + [8088] = 4, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(966), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 25, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_DOLLARtype, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75194,140 +100522,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8115] = 15, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, - anon_sym_RBRACK, - STATE(812), 1, - aux_sym_expression_repeat1, - STATE(1281), 1, - sym_operator, - STATE(2417), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3370), 25, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_catch, + anon_sym_new, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8192] = 12, - ACTIONS(602), 1, - anon_sym_DASH, - STATE(804), 1, - aux_sym_expression_repeat1, - STATE(1522), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(605), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(594), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - ACTIONS(599), 4, - anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(611), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, - anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8263] = 3, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [8151] = 5, + ACTIONS(3689), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 20, - anon_sym_DOT, + ACTIONS(2627), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -75345,15 +100586,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1480), 24, - sym__lookback_semicolon, + ACTIONS(2629), 25, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75365,19 +100607,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8316] = 3, + [8215] = 5, + ACTIONS(3689), 1, + anon_sym_else, + STATE(740), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 19, - anon_sym_DOT, + ACTIONS(2677), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -75394,16 +100645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 25, + ACTIONS(2679), 25, + anon_sym_STAR, anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75415,64 +100666,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8369] = 15, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(853), 1, - aux_sym_expression_repeat1, - STATE(1568), 1, - sym_operator, - STATE(2306), 1, - aux_sym_array_repeat1, + [8279] = 6, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3497), 24, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75481,122 +100702,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8446] = 15, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, - sym_identifier, - ACTIONS(2581), 1, - anon_sym_RBRACK, - STATE(807), 1, - aux_sym_expression_repeat1, - STATE(1281), 1, - sym_operator, - STATE(2299), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(3499), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8523] = 15, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2583), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - ACTIONS(2585), 1, - anon_sym_RBRACK, - STATE(814), 1, - aux_sym_expression_repeat1, - STATE(1281), 1, - sym_operator, - STATE(2399), 1, - aux_sym_array_repeat1, + [8345] = 5, + ACTIONS(3689), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(2667), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, + anon_sym_this, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(2669), 25, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DOLLARtype, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75605,15 +100785,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8600] = 3, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [8409] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1516), 20, - anon_sym_DOT, + ACTIONS(3549), 24, + anon_sym_switch, + anon_sym_cast, + anon_sym_return, + anon_sym_untyped, + anon_sym_break, + anon_sym_continue, anon_sym_this, - anon_sym_QMARK, anon_sym_new, anon_sym_BANG, anon_sym_DASH, @@ -75631,15 +100819,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1514), 24, - sym__lookback_semicolon, + ACTIONS(1653), 26, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, + anon_sym_DOLLARtype, anon_sym_LBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75651,64 +100841,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [8653] = 15, - ACTIONS(51), 1, + [8468] = 14, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2587), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym_RBRACK, - STATE(853), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(978), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1960), 1, sym_operator, - STATE(2426), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1471), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1476), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [8548] = 11, + ACTIONS(1463), 1, + anon_sym_DASH, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + STATE(869), 1, + sym_operator, + STATE(984), 1, + aux_sym_expression_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1465), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1371), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(1461), 9, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(365), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(1459), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75717,59 +100975,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [8730] = 15, - ACTIONS(51), 1, + [8622] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2591), 1, - sym_identifier, - ACTIONS(2593), 1, - anon_sym_RBRACK, - STATE(853), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(978), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1960), 1, sym_operator, - STATE(2431), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1455), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75779,18 +101030,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8807] = 3, + [8702] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + STATE(868), 1, + sym_operator, + STATE(980), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1473), 20, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(1375), 2, anon_sym_DOT, - anon_sym_this, anon_sym_QMARK, - anon_sym_new, + ACTIONS(1371), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -75799,21 +101076,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1470), 24, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_LBRACK, + STATE(238), 12, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -75825,63 +101104,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [8860] = 15, - ACTIONS(51), 1, + [8776] = 14, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, - anon_sym_RBRACK, - STATE(853), 1, - aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(868), 1, sym_operator, - STATE(2374), 1, - aux_sym_array_repeat1, + STATE(980), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3693), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1371), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -75891,44 +101159,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [8937] = 3, + [8856] = 14, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3701), 1, + anon_sym_DASH, + STATE(869), 1, + sym_operator, + STATE(984), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, - anon_sym_this, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1465), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2209), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1461), 4, anon_sym_BANG, - anon_sym_DASH, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3699), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3703), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 27, + ACTIONS(1371), 6, sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_case, + anon_sym_default, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DASH_GT, + anon_sym_catch, + anon_sym_else, + ACTIONS(1459), 9, anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -75937,63 +101225,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(365), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [8990] = 15, - ACTIONS(51), 1, + [8936] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2599), 1, - sym_identifier, - ACTIONS(2601), 1, - anon_sym_RBRACK, - STATE(811), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(2016), 1, sym_operator, - STATE(2428), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1455), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76003,59 +101291,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9067] = 15, - ACTIONS(51), 1, + [9016] = 14, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2603), 1, - sym_identifier, - ACTIONS(2605), 1, - anon_sym_RBRACK, - STATE(853), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(985), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(2016), 1, sym_operator, - STATE(2290), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1471), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76065,59 +101357,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9144] = 15, - ACTIONS(51), 1, + [9096] = 13, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2607), 1, - sym_identifier, - ACTIONS(2609), 1, - anon_sym_RBRACK, - STATE(817), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(986), 1, aux_sym_expression_repeat1, - STATE(1281), 1, + STATE(1990), 1, sym_operator, - STATE(2318), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1471), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76127,118 +101420,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9221] = 20, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_null, - ACTIONS(497), 1, - aux_sym_integer_token1, - ACTIONS(500), 1, - aux_sym_integer_token2, - ACTIONS(503), 1, - aux_sym_float_token1, - ACTIONS(506), 1, - aux_sym_float_token2, - ACTIONS(512), 1, - aux_sym_string_token1, - ACTIONS(515), 1, - aux_sym_string_token3, - ACTIONS(2611), 1, - sym_identifier, - ACTIONS(2614), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [9172] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3707), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(478), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - ACTIONS(509), 2, - anon_sym_true, - anon_sym_false, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(483), 15, - anon_sym_AT, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [9307] = 11, - ACTIONS(582), 1, + ACTIONS(1755), 17, + anon_sym_this, + anon_sym_BANG, anon_sym_DASH, - ACTIONS(2617), 1, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 27, + sym__closing_brace_marker, + anon_sym_STAR, anon_sym_LPAREN, - ACTIONS(2619), 1, - anon_sym_COLON, - ACTIONS(2621), 1, - sym__lookback_semicolon, - STATE(111), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9234] = 13, + ACTIONS(1482), 1, + anon_sym_DASH, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1009), 1, - sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1479), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1473), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + ACTIONS(1471), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1476), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + [9310] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 19, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 27, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76250,28 +101599,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9375] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2623), 1, - anon_sym_COLON, - ACTIONS(2625), 1, - sym__lookback_semicolon, - STATE(136), 1, - sym_operator, - STATE(996), 1, - sym_access_identifiers, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9368] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1755), 19, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -76280,22 +101622,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 27, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76307,28 +101651,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9443] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2627), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9423] = 6, + ACTIONS(1757), 1, anon_sym_COLON, - ACTIONS(2629), 1, - sym__lookback_semicolon, - STATE(168), 1, - sym_operator, - STATE(1005), 1, - sym_access_identifiers, + ACTIONS(3709), 1, + anon_sym_DOT, + ACTIONS(3711), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1755), 17, + anon_sym_this, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -76337,22 +101678,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 26, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76364,57 +101706,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9511] = 14, - ACTIONS(51), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9484] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2631), 1, - anon_sym_RPAREN, - ACTIONS(2633), 1, - anon_sym_COMMA, - STATE(850), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(995), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1826), 1, sym_operator, - STATE(2362), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1455), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -76424,28 +101763,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [9585] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2635), 1, - anon_sym_RPAREN, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2639), 1, - sym__lookback_semicolon, - STATE(106), 1, - sym_operator, - STATE(889), 1, - aux_sym_variable_declaration_repeat2, + [9561] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1875), 19, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -76454,22 +101792,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 27, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76481,28 +101821,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9653] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2641), 1, - anon_sym_RPAREN, - ACTIONS(2643), 1, - sym__lookback_semicolon, - STATE(101), 1, - sym_operator, - STATE(887), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9616] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1823), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -76511,22 +101845,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1821), 26, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76538,52 +101873,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9721] = 11, - ACTIONS(582), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9671] = 14, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2645), 1, - anon_sym_COLON, - ACTIONS(2647), 1, - sym__lookback_semicolon, - STATE(164), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(995), 1, + aux_sym_expression_repeat1, + STATE(1826), 1, sym_operator, - STATE(981), 1, - sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1471), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(1479), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1473), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + ACTIONS(1476), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + [9748] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1995), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1993), 26, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76595,93 +101988,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9789] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, aux_sym_float_token2, - ACTIONS(394), 1, aux_sym_string_token1, - ACTIONS(396), 1, aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(474), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(476), 15, - anon_sym_AT, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [9875] = 11, - ACTIONS(582), 1, + [9803] = 11, + ACTIONS(3717), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2653), 1, - anon_sym_RPAREN, - ACTIONS(2655), 1, - sym__lookback_semicolon, - STATE(121), 1, + ACTIONS(3721), 1, + anon_sym_DOT_DOT_DOT, + STATE(881), 1, sym_operator, - STATE(894), 1, - aux_sym_variable_declaration_repeat2, + STATE(992), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3719), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1371), 3, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(3715), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -76691,7 +102025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(996), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -76703,10 +102037,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(3713), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76718,28 +102053,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [9943] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2657), 1, - anon_sym_RPAREN, - ACTIONS(2659), 1, - sym__lookback_semicolon, - STATE(129), 1, - sym_operator, - STATE(893), 1, - aux_sym_variable_declaration_repeat2, + [9874] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1990), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -76748,22 +102072,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1987), 26, + sym__lookback_semicolon, + sym__closing_brace_marker, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76775,52 +102100,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10011] = 11, - ACTIONS(582), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9929] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1766), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + anon_sym_BANG, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2661), 1, - anon_sym_RPAREN, - ACTIONS(2663), 1, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1763), 26, sym__lookback_semicolon, - STATE(131), 1, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [9984] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(986), 1, + aux_sym_expression_repeat1, + STATE(1990), 1, sym_operator, - STATE(885), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + ACTIONS(1566), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + [10059] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1761), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1759), 26, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76832,46 +102266,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10079] = 13, - ACTIONS(594), 1, - sym__lookback_semicolon, - ACTIONS(602), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10114] = 13, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3725), 1, anon_sym_DASH, - STATE(831), 1, + STATE(1000), 1, aux_sym_expression_repeat1, - STATE(1584), 1, + STATE(1372), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(605), 2, + ACTIONS(1465), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2261), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(599), 4, + ACTIONS(1461), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(1506), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(3723), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(3727), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(1459), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(365), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -76881,8 +102332,48 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(596), 10, + sym__rangeOperator, + [10189] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 18, + anon_sym_in, + anon_sym_this, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 24, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -76891,13 +102382,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10151] = 3, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10249] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 17, + ACTIONS(1875), 19, + anon_sym_DOT, anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -76914,17 +102411,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1420), 26, + ACTIONS(1873), 26, sym__lookback_semicolon, - anon_sym_RPAREN, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76936,32 +102433,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [10203] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2665), 1, - anon_sym_RPAREN, - ACTIONS(2667), 1, - sym__lookback_semicolon, - STATE(165), 1, - sym_operator, - STATE(895), 1, - aux_sym_variable_declaration_repeat2, + [10303] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1755), 19, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -76970,22 +102458,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 25, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -76997,27 +102485,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10271] = 10, - ACTIONS(542), 1, - anon_sym_COLON, - ACTIONS(582), 1, - anon_sym_DASH, - STATE(716), 1, - sym_operator, - STATE(845), 1, - aux_sym_expression_repeat1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10359] = 5, + ACTIONS(3733), 1, + anon_sym_DOT, + ACTIONS(3735), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(49), 9, + ACTIONS(1755), 17, + anon_sym_this, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -77026,22 +102510,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 26, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -77053,57 +102538,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10337] = 13, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(578), 1, - anon_sym_RBRACE, - STATE(870), 1, - aux_sym_expression_repeat1, - STATE(1517), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10417] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(580), 2, + ACTIONS(1755), 19, anon_sym_DOT, + anon_sym_this, anon_sym_QMARK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 26, + sym__lookback_semicolon, anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10471] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 20, + anon_sym_DOT, + anon_sym_in, + anon_sym_this, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 24, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77112,28 +102641,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10409] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2669), 1, - anon_sym_RPAREN, - ACTIONS(2671), 1, - sym__lookback_semicolon, - STATE(135), 1, - sym_operator, - STATE(898), 1, - aux_sym_variable_declaration_repeat2, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10527] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3737), 1, + anon_sym_DOT, + ACTIONS(3739), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1755), 17, + anon_sym_this, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -77142,22 +102668,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 25, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -77169,59 +102695,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10477] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, aux_sym_float_token2, - ACTIONS(394), 1, aux_sym_string_token1, - ACTIONS(396), 1, aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [10587] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(518), 2, + ACTIONS(1753), 18, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, anon_sym_AT_COLON, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(520), 15, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1755), 27, + anon_sym_this, anon_sym_AT, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_null, anon_sym_macro, anon_sym_abstract, anon_sym_static, @@ -77233,59 +102741,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_override, anon_sym_final, anon_sym_class, + anon_sym_extends, + anon_sym_implements, anon_sym_typedef, anon_sym_function, anon_sym_var, - [10563] = 14, - ACTIONS(51), 1, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [10641] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(2673), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(3743), 1, + anon_sym_RBRACK, + STATE(1062), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1369), 1, sym_operator, - STATE(2348), 1, - aux_sym__arg_list_repeat1, + STATE(2886), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77295,56 +102802,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10637] = 12, - ACTIONS(2675), 1, + [10718] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(873), 1, - aux_sym_expression_repeat1, - STATE(1091), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3747), 1, + anon_sym_COLON, + ACTIONS(3749), 1, + sym__lookback_semicolon, + STATE(301), 1, sym_operator, + STATE(1183), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(590), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1869), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(562), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - ACTIONS(586), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2677), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2679), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(272), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(584), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77353,56 +102872,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10707] = 12, - ACTIONS(2551), 1, - anon_sym_DASH, - STATE(848), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + [10789] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1837), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(542), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 4, + ACTIONS(1761), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1759), 24, + sym__lookback_semicolon, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [10842] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(3751), 1, + anon_sym_RPAREN, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3755), 1, + sym__lookback_semicolon, + STATE(320), 1, + sym_operator, + STATE(1095), 1, + aux_sym_variable_declaration_repeat2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77411,57 +102981,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10777] = 14, - ACTIONS(51), 1, + [10913] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(838), 1, + ACTIONS(3757), 1, + anon_sym_RBRACK, + STATE(1016), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1369), 1, sym_operator, - STATE(2346), 1, - aux_sym__arg_list_repeat1, + STATE(2901), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77471,114 +103032,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [10851] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2683), 1, - anon_sym_RPAREN, - ACTIONS(2685), 1, - sym__lookback_semicolon, - STATE(149), 1, - sym_operator, - STATE(900), 1, - aux_sym_variable_declaration_repeat2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, sym__rangeOperator, - [10919] = 14, - ACTIONS(51), 1, + [10990] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_RPAREN, - STATE(862), 1, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1986), 1, sym_operator, - STATE(2437), 1, - aux_sym__arg_list_repeat1, + STATE(2936), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77588,46 +103094,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [10993] = 13, - ACTIONS(542), 1, - anon_sym_COLON, - ACTIONS(2551), 1, + [11067] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(716), 1, - sym_operator, - STATE(845), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3761), 1, + anon_sym_RPAREN, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(1019), 1, aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + STATE(2949), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2555), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -77637,8 +103166,44 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [11144] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1990), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1987), 24, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -77647,56 +103212,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [11065] = 13, - ACTIONS(51), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [11197] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(578), 1, - anon_sym_COLON, - STATE(865), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3765), 1, + anon_sym_RPAREN, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1446), 1, + STATE(1986), 1, sym_operator, + STATE(2954), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77706,27 +103268,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11137] = 11, - ACTIONS(582), 1, + [11274] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2637), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(2689), 1, + ACTIONS(3767), 1, anon_sym_RPAREN, - ACTIONS(2691), 1, + ACTIONS(3769), 1, sym__lookback_semicolon, - STATE(171), 1, + STATE(325), 1, sym_operator, - STATE(899), 1, + STATE(1105), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -77736,7 +103310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -77748,10 +103322,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -77763,57 +103338,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [11205] = 14, - ACTIONS(51), 1, + [11345] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(3771), 1, + anon_sym_RBRACK, + STATE(1031), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1369), 1, sym_operator, - STATE(2328), 1, - aux_sym__arg_list_repeat1, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77823,55 +103389,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11279] = 12, - ACTIONS(51), 1, + [11422] = 14, + ACTIONS(1471), 1, + anon_sym_RBRACE, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(850), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1022), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1840), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(578), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77881,27 +103450,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11349] = 11, - ACTIONS(582), 1, + [11497] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2637), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(2695), 1, + ACTIONS(3773), 1, anon_sym_RPAREN, - ACTIONS(2697), 1, + ACTIONS(3775), 1, sym__lookback_semicolon, - STATE(154), 1, + STATE(247), 1, sym_operator, - STATE(905), 1, + STATE(1114), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -77911,7 +103492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -77923,10 +103504,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -77938,55 +103520,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [11417] = 12, - ACTIONS(602), 1, + [11568] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(850), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3777), 1, + anon_sym_RBRACK, + STATE(1025), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1369), 1, sym_operator, + STATE(3019), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(605), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(599), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -77996,55 +103571,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11487] = 11, - ACTIONS(582), 1, + [11645] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2699), 1, - anon_sym_RPAREN, - ACTIONS(2701), 1, - sym__lookback_semicolon, - STATE(117), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(892), 1, - aux_sym_variable_declaration_repeat2, + STATE(3051), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78053,57 +103633,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11555] = 14, - ACTIONS(51), 1, + [11722] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2703), 1, + ACTIONS(3781), 1, anon_sym_RPAREN, - STATE(847), 1, + STATE(1027), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1369), 1, sym_operator, - STATE(2326), 1, + STATE(3063), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78113,55 +103695,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11629] = 12, - ACTIONS(602), 1, + [11799] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(853), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3783), 1, + anon_sym_RPAREN, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1568), 1, + STATE(1986), 1, sym_operator, + STATE(3075), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(605), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(594), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - ACTIONS(599), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78171,123 +103757,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [11699] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(522), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(524), 15, - anon_sym_AT, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [11785] = 13, - ACTIONS(542), 1, - anon_sym_RBRACE, - ACTIONS(2551), 1, + [11876] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(713), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3785), 1, + anon_sym_RPAREN, + ACTIONS(3787), 1, + sym__lookback_semicolon, + STATE(326), 1, sym_operator, - STATE(835), 1, - aux_sym_expression_repeat1, + STATE(1116), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - STATE(1837), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2553), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2555), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78296,58 +103827,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [11857] = 14, - ACTIONS(51), 1, + [11947] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1371), 1, + anon_sym_RBRACE, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(890), 1, sym_operator, - STATE(2402), 1, - aux_sym__arg_list_repeat1, + STATE(1085), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78356,57 +103885,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [11931] = 14, - ACTIONS(51), 1, + [12016] = 14, + ACTIONS(1471), 1, + anon_sym_COLON, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2707), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1030), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1857), 1, sym_operator, - STATE(2309), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78416,55 +103935,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12005] = 11, - ACTIONS(582), 1, + [12091] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2709), 1, - anon_sym_RPAREN, - ACTIONS(2711), 1, - sym__lookback_semicolon, - STATE(139), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(890), 1, - aux_sym_variable_declaration_repeat2, + STATE(2875), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78473,55 +103997,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12073] = 11, - ACTIONS(582), 1, + [12168] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2713), 1, - anon_sym_RPAREN, - ACTIONS(2715), 1, - sym__lookback_semicolon, - STATE(160), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3791), 1, + anon_sym_RBRACK, + STATE(1033), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, sym_operator, - STATE(888), 1, - aux_sym_variable_declaration_repeat2, + STATE(2871), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78530,57 +104059,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12141] = 14, - ACTIONS(51), 1, + [12245] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(2717), 1, - anon_sym_RPAREN, - STATE(857), 1, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1986), 1, sym_operator, - STATE(2308), 1, - aux_sym__arg_list_repeat1, + STATE(2935), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78590,55 +104121,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12215] = 11, - ACTIONS(582), 1, + [12322] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2719), 1, - anon_sym_COLON, - ACTIONS(2721), 1, - sym__lookback_semicolon, - STATE(157), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RPAREN, + STATE(1035), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, sym_operator, - STATE(1033), 1, - sym_access_identifiers, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78647,47 +104183,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12283] = 14, - ACTIONS(51), 1, + [12399] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2723), 1, + ACTIONS(3797), 1, anon_sym_RPAREN, - STATE(850), 1, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1986), 1, sym_operator, - STATE(2295), 1, + STATE(3103), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -78697,8 +104255,44 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [12476] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1766), 21, + anon_sym_DOT, + anon_sym_in, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1763), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -78707,56 +104301,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12357] = 13, - ACTIONS(51), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12529] = 14, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1371), 1, + anon_sym_RBRACE, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(578), 1, - sym__lookback_semicolon, - STATE(831), 1, - aux_sym_expression_repeat1, - STATE(1584), 1, + STATE(890), 1, sym_operator, + STATE(1085), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(580), 2, + ACTIONS(1375), 2, anon_sym_DOT, anon_sym_QMARK, - STATE(1857), 2, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3693), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78766,28 +104356,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12429] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2725), 1, - anon_sym_RPAREN, - ACTIONS(2727), 1, - sym__lookback_semicolon, - STATE(93), 1, - sym_operator, - STATE(896), 1, - aux_sym_variable_declaration_repeat2, + [12604] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1995), 21, + anon_sym_DOT, + anon_sym_in, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -78796,22 +104387,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1993), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -78823,56 +104412,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12497] = 13, - ACTIONS(594), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12657] = 14, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1371), 1, anon_sym_COLON, - ACTIONS(602), 1, + ACTIONS(3695), 1, anon_sym_DASH, - STATE(865), 1, - aux_sym_expression_repeat1, - STATE(1446), 1, + STATE(884), 1, sym_operator, + STATE(1054), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(605), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(599), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(3693), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -78882,27 +104467,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [12569] = 11, - ACTIONS(582), 1, + [12732] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2637), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(2729), 1, + ACTIONS(3799), 1, anon_sym_RPAREN, - ACTIONS(2731), 1, + ACTIONS(3801), 1, sym__lookback_semicolon, - STATE(98), 1, + STATE(310), 1, sym_operator, - STATE(891), 1, + STATE(1089), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -78912,7 +104509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -78924,10 +104521,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -78939,27 +104537,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12637] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2617), 1, - anon_sym_LPAREN, - ACTIONS(2733), 1, + [12803] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1371), 1, anon_sym_COLON, - ACTIONS(2735), 1, - sym__lookback_semicolon, - STATE(144), 1, + ACTIONS(1504), 1, + anon_sym_DASH, + STATE(884), 1, sym_operator, - STATE(912), 1, - sym_access_identifiers, + STATE(1054), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -78969,7 +104567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -78981,10 +104579,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -78996,27 +104595,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12705] = 10, - ACTIONS(542), 1, - anon_sym_RBRACE, - ACTIONS(582), 1, - anon_sym_DASH, - STATE(713), 1, - sym_operator, - STATE(835), 1, - aux_sym_expression_repeat1, + [12872] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(544), 2, + ACTIONS(1761), 21, anon_sym_DOT, + anon_sym_in, + anon_sym_this, anon_sym_QMARK, - ACTIONS(49), 9, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -79025,22 +104615,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1759), 23, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -79052,58 +104640,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12771] = 14, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2737), 1, - anon_sym_RPAREN, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, - sym_operator, - STATE(2293), 1, - aux_sym__arg_list_repeat1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12925] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1823), 21, + anon_sym_DOT, + anon_sym_in, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1821), 23, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79112,56 +104690,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12845] = 13, - ACTIONS(594), 1, - anon_sym_RBRACE, - ACTIONS(602), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [12978] = 14, + ACTIONS(1471), 1, + sym__lookback_semicolon, + ACTIONS(1482), 1, anon_sym_DASH, - STATE(870), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1044), 1, aux_sym_expression_repeat1, - STATE(1517), 1, + STATE(1881), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 2, + ACTIONS(1469), 2, anon_sym_DOT, anon_sym_QMARK, - ACTIONS(605), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(599), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79171,113 +104745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [12917] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(819), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(466), 2, - anon_sym_LPAREN, - anon_sym_AT_COLON, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - ACTIONS(470), 15, - anon_sym_AT, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [13003] = 14, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(869), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, - STATE(2292), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -79287,66 +104755,58 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, sym__rangeOperator, - [13077] = 12, - ACTIONS(51), 1, + [13053] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(804), 1, - aux_sym_expression_repeat1, - STATE(1522), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3803), 1, + anon_sym_RPAREN, + ACTIONS(3805), 1, + sym__lookback_semicolon, + STATE(293), 1, sym_operator, + STATE(1088), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(772), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79355,27 +104815,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13147] = 11, - ACTIONS(582), 1, + [13124] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2637), 1, + ACTIONS(3753), 1, anon_sym_DASH_GT, - ACTIONS(2741), 1, + ACTIONS(3807), 1, anon_sym_RPAREN, - ACTIONS(2743), 1, + ACTIONS(3809), 1, sym__lookback_semicolon, - STATE(115), 1, + STATE(312), 1, sym_operator, - STATE(904), 1, + STATE(1091), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -79385,7 +104846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -79397,10 +104858,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -79412,58 +104874,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13215] = 14, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RPAREN, - STATE(856), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, - STATE(2429), 1, - aux_sym__arg_list_repeat1, + [13195] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1990), 21, + anon_sym_DOT, + anon_sym_in, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1987), 23, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79472,47 +104919,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13289] = 14, - ACTIONS(51), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [13248] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2747), 1, - anon_sym_RPAREN, - STATE(823), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1986), 1, sym_operator, - STATE(2368), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1455), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -79522,8 +104983,44 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [13321] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1875), 17, + anon_sym_this, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 27, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79532,12 +105029,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13363] = 3, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [13374] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 17, + ACTIONS(1755), 17, anon_sym_this, anon_sym_BANG, anon_sym_DASH, @@ -79555,17 +105056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_true, anon_sym_false, sym_identifier, - ACTIONS(1506), 26, - sym__lookback_semicolon, - anon_sym_RPAREN, + ACTIONS(1753), 27, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_LPAREN, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -79577,31 +105079,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, aux_sym_integer_token2, aux_sym_float_token2, aux_sym_string_token1, aux_sym_string_token3, - [13415] = 10, - ACTIONS(542), 1, - sym__lookback_semicolon, - ACTIONS(2753), 1, - anon_sym_DASH, - STATE(715), 1, - sym_operator, - STATE(863), 1, - aux_sym_expression_repeat1, + [13427] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, + ACTIONS(1875), 20, anon_sym_DOT, + anon_sym_in, + anon_sym_this, anon_sym_QMARK, - ACTIONS(2755), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2751), 9, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -79610,22 +105103,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(801), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 24, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -79637,27 +105129,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13481] = 11, - ACTIONS(582), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [13480] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2757), 1, - anon_sym_RPAREN, - ACTIONS(2759), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3811), 1, + anon_sym_COLON, + ACTIONS(3813), 1, sym__lookback_semicolon, - STATE(156), 1, + STATE(294), 1, sym_operator, - STATE(884), 1, - aux_sym_variable_declaration_repeat2, + STATE(1194), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -79667,7 +105165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -79679,10 +105177,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -79694,27 +105193,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13549] = 11, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(2761), 1, - anon_sym_RPAREN, - ACTIONS(2763), 1, + [13551] = 11, + ACTIONS(1371), 1, sym__lookback_semicolon, - STATE(114), 1, + ACTIONS(3819), 1, + anon_sym_DASH, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + STATE(889), 1, sym_operator, - STATE(901), 1, - aux_sym_variable_declaration_repeat2, + STATE(1063), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(3817), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -79724,7 +105223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(1067), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -79736,10 +105235,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(3815), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -79751,56 +105251,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13617] = 13, - ACTIONS(542), 1, - sym__lookback_semicolon, - ACTIONS(2765), 1, + [13620] = 14, + ACTIONS(61), 1, anon_sym_DASH, - STATE(715), 1, - sym_operator, - STATE(863), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_COLON, + STATE(1030), 1, aux_sym_expression_repeat1, + STATE(1857), 1, + sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 2, - anon_sym_DOT, - anon_sym_QMARK, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1863), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2767), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2769), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79810,44 +105301,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [13689] = 12, - ACTIONS(51), 1, + [13695] = 13, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3695), 1, anon_sym_DASH, - STATE(906), 1, + STATE(1048), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1857), 2, + STATE(2066), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1371), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3693), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3697), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -79857,8 +105371,44 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [13768] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 19, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 25, + anon_sym_STAR, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -79867,54 +105417,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13758] = 12, - ACTIONS(51), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [13821] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(850), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3825), 1, + anon_sym_RPAREN, + STATE(1070), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1369), 1, sym_operator, + STATE(3022), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2773), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -79924,81 +105473,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13827] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2777), 1, - sym__lookback_semicolon, - STATE(159), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, sym__rangeOperator, - [13892] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2779), 1, - sym__lookback_semicolon, - STATE(116), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + [13898] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1766), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -80007,22 +105503,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1763), 24, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80034,55 +105529,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [13957] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - STATE(883), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, - sym_operator, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [13951] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(2781), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1823), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1821), 24, + sym__lookback_semicolon, anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80091,25 +105579,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14026] = 10, - ACTIONS(582), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [14004] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3827), 1, anon_sym_RPAREN, - ACTIONS(2783), 1, + ACTIONS(3829), 1, sym__lookback_semicolon, - STATE(99), 1, + STATE(292), 1, sym_operator, - STATE(1598), 1, + STATE(1092), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80119,7 +105615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80131,10 +105627,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80146,25 +105643,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14091] = 10, - ACTIONS(582), 1, + [14075] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2785), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3831), 1, + anon_sym_COLON, + ACTIONS(3833), 1, sym__lookback_semicolon, - STATE(141), 1, + STATE(267), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(1204), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80174,7 +105674,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80186,10 +105686,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80201,53 +105702,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14156] = 10, - ACTIONS(582), 1, + [14146] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2787), 1, - sym__lookback_semicolon, - STATE(100), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2981), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80256,53 +105753,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [14221] = 10, - ACTIONS(582), 1, + [14223] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2789), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, sym__lookback_semicolon, - STATE(112), 1, + STATE(1044), 1, + aux_sym_expression_repeat1, + STATE(1881), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80311,53 +105814,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [14286] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2791), 1, + [14298] = 14, + ACTIONS(1371), 1, sym__lookback_semicolon, - STATE(97), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3839), 1, + anon_sym_DASH, + STATE(889), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(1063), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2264), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(3837), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3841), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80366,53 +105875,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [14351] = 10, - ACTIONS(582), 1, + [14373] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, anon_sym_RPAREN, - ACTIONS(2793), 1, - sym__lookback_semicolon, - STATE(109), 1, + STATE(1069), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(3079), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80421,25 +105937,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [14416] = 10, - ACTIONS(582), 1, + [14450] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2795), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3845), 1, + anon_sym_COLON, + ACTIONS(3847), 1, sym__lookback_semicolon, - STATE(145), 1, + STATE(270), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(1340), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80449,7 +105979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80461,10 +105991,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80476,26 +106007,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14481] = 10, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2797), 1, - sym__lookback_semicolon, - STATE(166), 1, - sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + [14521] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(1995), 20, + anon_sym_DOT, + anon_sym_this, + anon_sym_QMARK, + anon_sym_new, anon_sym_BANG, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, @@ -80504,22 +106026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1993), 24, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80531,25 +106052,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14546] = 10, - ACTIONS(582), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [14574] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3849), 1, anon_sym_RPAREN, - ACTIONS(2799), 1, + ACTIONS(3851), 1, sym__lookback_semicolon, - STATE(132), 1, + STATE(271), 1, sym_operator, - STATE(1598), 1, + STATE(1096), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80559,7 +106088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80571,10 +106100,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80586,53 +106116,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14611] = 10, - ACTIONS(582), 1, + [14645] = 15, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3853), 1, anon_sym_RPAREN, - ACTIONS(2801), 1, - sym__lookback_semicolon, - STATE(118), 1, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(2987), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80641,54 +106167,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [14676] = 12, - ACTIONS(2541), 1, + [14722] = 15, + ACTIONS(61), 1, anon_sym_DASH, - STATE(903), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3855), 1, + anon_sym_RPAREN, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1091), 1, + STATE(1986), 1, sym_operator, + STATE(2879), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(542), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(590), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1844), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(586), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2543), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2545), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(272), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(584), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -80698,25 +106229,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [14745] = 10, - ACTIONS(582), 1, + [14799] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2803), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3857), 1, + anon_sym_COLON, + ACTIONS(3859), 1, sym__lookback_semicolon, - STATE(147), 1, + STATE(273), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(1234), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80726,7 +106271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80738,10 +106283,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80753,25 +106299,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14810] = 10, - ACTIONS(582), 1, + [14870] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3861), 1, anon_sym_RPAREN, - ACTIONS(2805), 1, + ACTIONS(3863), 1, sym__lookback_semicolon, - STATE(128), 1, + STATE(276), 1, sym_operator, - STATE(1598), 1, + STATE(1099), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80781,7 +106330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80793,10 +106342,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80808,25 +106358,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14875] = 10, - ACTIONS(582), 1, + [14941] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3865), 1, anon_sym_RPAREN, - ACTIONS(2807), 1, + ACTIONS(3867), 1, sym__lookback_semicolon, - STATE(113), 1, + STATE(277), 1, sym_operator, - STATE(1598), 1, + STATE(1104), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -80836,7 +106389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -80848,10 +106401,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -80863,53 +106417,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [14940] = 10, - ACTIONS(582), 1, + [15012] = 14, + ACTIONS(1371), 1, + anon_sym_in, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(2775), 1, - anon_sym_RPAREN, - ACTIONS(2809), 1, - sym__lookback_semicolon, - STATE(102), 1, + ACTIONS(3879), 1, + anon_sym_DOT_DOT_DOT, + STATE(887), 1, sym_operator, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, + STATE(1076), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3875), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2272), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3873), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3869), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3877), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + ACTIONS(3871), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1038), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + sym__rangeOperator, + [15087] = 14, + ACTIONS(1471), 1, + anon_sym_in, + ACTIONS(1482), 1, + anon_sym_DASH, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1075), 1, + aux_sym_expression_repeat1, + STATE(1995), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1469), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(1485), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1479), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(1488), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1476), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -80918,103 +106528,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [15005] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1506), 18, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_AT_COLON, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1508), 24, - anon_sym_this, - anon_sym_AT, - anon_sym_null, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_extends, - anon_sym_implements, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [15056] = 12, - ACTIONS(51), 1, + [15162] = 14, + ACTIONS(61), 1, anon_sym_DASH, - STATE(804), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_in, + STATE(1075), 1, aux_sym_expression_repeat1, - STATE(1522), 1, + STATE(1995), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(578), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - STATE(1857), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [15237] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3881), 1, + anon_sym_RPAREN, + ACTIONS(3883), 1, + sym__lookback_semicolon, + STATE(280), 1, + sym_operator, + STATE(1107), 1, + aux_sym_variable_declaration_repeat2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, + anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81023,25 +106659,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15125] = 10, - ACTIONS(582), 1, + [15308] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3885), 1, anon_sym_RPAREN, - ACTIONS(2811), 1, + ACTIONS(3887), 1, sym__lookback_semicolon, - STATE(107), 1, + STATE(282), 1, sym_operator, - STATE(1598), 1, + STATE(1108), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -81051,7 +106690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -81063,10 +106702,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -81078,25 +106718,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15190] = 10, - ACTIONS(582), 1, + [15379] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2775), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3889), 1, anon_sym_RPAREN, - ACTIONS(2813), 1, + ACTIONS(3891), 1, sym__lookback_semicolon, - STATE(134), 1, + STATE(283), 1, sym_operator, - STATE(1598), 1, + STATE(1110), 1, aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -81106,7 +106749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -81118,10 +106761,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -81133,55 +106777,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15255] = 12, - ACTIONS(51), 1, + [15450] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3893), 1, + anon_sym_RPAREN, + ACTIONS(3895), 1, + sym__lookback_semicolon, + STATE(285), 1, sym_operator, + STATE(1112), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(2815), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81190,54 +106836,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15324] = 12, - ACTIONS(51), 1, + [15521] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2817), 1, - anon_sym_RBRACK, - STATE(1035), 1, - aux_sym_expression_repeat1, - STATE(1126), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3897), 1, + anon_sym_RPAREN, + ACTIONS(3899), 1, + sym__lookback_semicolon, + STATE(287), 1, sym_operator, + STATE(1113), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81246,54 +106895,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15392] = 12, - ACTIONS(51), 1, + [15592] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2819), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3901), 1, + anon_sym_RPAREN, + ACTIONS(3903), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(290), 1, sym_operator, + STATE(1115), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81302,54 +106954,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15460] = 12, - ACTIONS(51), 1, + [15663] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2821), 1, - anon_sym_RBRACK, - STATE(850), 1, - aux_sym_expression_repeat1, - STATE(1488), 1, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3905), 1, + anon_sym_RPAREN, + ACTIONS(3907), 1, + sym__lookback_semicolon, + STATE(244), 1, sym_operator, + STATE(1087), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81358,54 +107013,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15528] = 12, - ACTIONS(51), 1, + [15734] = 12, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2823), 1, + ACTIONS(3745), 1, + anon_sym_LPAREN, + ACTIONS(3909), 1, + anon_sym_COLON, + ACTIONS(3911), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(262), 1, sym_operator, + STATE(1334), 1, + sym_access_identifiers, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81414,53 +107072,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15596] = 12, - ACTIONS(51), 1, + [15805] = 14, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2825), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_RBRACE, + STATE(1022), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1840), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1457), 2, + anon_sym_DOT, + anon_sym_QMARK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81470,23 +107122,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [15664] = 9, - ACTIONS(582), 1, + [15880] = 11, + ACTIONS(1371), 1, + anon_sym_in, + ACTIONS(3879), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3913), 1, anon_sym_DASH, - ACTIONS(2827), 1, - anon_sym_COLON, - ACTIONS(2829), 1, - sym__lookback_semicolon, - STATE(163), 1, + STATE(887), 1, sym_operator, + STATE(1076), 1, + aux_sym_expression_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1375), 2, + anon_sym_DOT, + anon_sym_QMARK, + ACTIONS(3875), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(3873), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -81496,7 +107163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(1038), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -81508,10 +107175,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(3871), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -81523,54 +107191,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15726] = 12, - ACTIONS(51), 1, + [15949] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2831), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3917), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(246), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81579,54 +107248,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15794] = 12, - ACTIONS(2825), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, + [16017] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(1016), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3919), 1, + sym__lookback_semicolon, + STATE(309), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81635,54 +107305,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15862] = 12, - ACTIONS(2833), 1, + [16085] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2839), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3921), 1, sym__lookback_semicolon, - STATE(974), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(318), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81691,53 +107362,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15930] = 12, - ACTIONS(2831), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, + [16153] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(941), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(1093), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + ACTIONS(1506), 2, + anon_sym_catch, + anon_sym_else, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81747,54 +107410,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [15998] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2841), 1, - sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [16225] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3923), 1, + sym__lookback_semicolon, + STATE(322), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81803,54 +107478,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16066] = 12, - ACTIONS(51), 1, + [16293] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2843), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3925), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(245), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81859,53 +107535,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16134] = 12, - ACTIONS(51), 1, + [16361] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2845), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(1566), 2, + anon_sym_catch, + anon_sym_else, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -81915,54 +107583,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [16202] = 12, - ACTIONS(51), 1, + [16433] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, + sym_member_expression, + STATE(1101), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1379), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2844), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1381), 15, + anon_sym_AT, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [16519] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2847), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3931), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(328), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -81971,54 +107717,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16270] = 12, - ACTIONS(2833), 1, + [16587] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2849), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3933), 1, sym__lookback_semicolon, - STATE(956), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(275), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82027,53 +107774,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16338] = 12, - ACTIONS(2833), 1, + [16655] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2841), 1, - sym__lookback_semicolon, - STATE(1032), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82083,53 +107822,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [16406] = 12, - ACTIONS(51), 1, + [16727] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2851), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(1097), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82139,54 +107881,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [16474] = 12, - ACTIONS(2833), 1, + [16799] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2853), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3939), 1, sym__lookback_semicolon, - STATE(1027), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(279), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82195,54 +107949,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16542] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2855), 1, - sym__lookback_semicolon, - STATE(999), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, + [16867] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(1755), 17, + anon_sym_this, anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 26, + sym__lookback_semicolon, anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, - anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82251,53 +107993,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16610] = 12, - ACTIONS(2833), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [16919] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(3941), 1, + sym_identifier, + ACTIONS(3944), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, + sym_member_expression, + STATE(1101), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1386), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + STATE(2844), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1388), 15, + anon_sym_AT, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [17005] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, + sym_member_expression, + STATE(1101), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1313), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2844), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1315), 15, + anon_sym_AT, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [17091] = 13, + ACTIONS(1467), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3701), 1, anon_sym_DASH, - ACTIONS(2851), 1, - sym__lookback_semicolon, - STATE(945), 1, + STATE(1111), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1372), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(1371), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(1465), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2209), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(1461), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3699), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3703), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(1459), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82307,54 +108178,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(365), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [16678] = 12, - ACTIONS(51), 1, + [17163] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2857), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3947), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(281), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82363,110 +108246,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16746] = 12, - ACTIONS(2833), 1, + [17231] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2857), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3949), 1, sym__lookback_semicolon, - STATE(971), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(334), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16814] = 12, - ACTIONS(2833), 1, + [17299] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, + sym_member_expression, + STATE(1101), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1339), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2844), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1341), 15, + anon_sym_AT, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [17385] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2859), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3951), 1, sym__lookback_semicolon, - STATE(1014), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(284), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82475,54 +108426,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16882] = 12, - ACTIONS(51), 1, + [17453] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2861), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3953), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(240), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82531,53 +108483,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [16950] = 12, - ACTIONS(2833), 1, + [17521] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2863), 1, - sym__lookback_semicolon, - STATE(948), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + ACTIONS(3955), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82587,54 +108531,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [17018] = 12, - ACTIONS(594), 1, - sym__lookback_semicolon, - ACTIONS(602), 1, + [17593] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3957), 1, + sym__lookback_semicolon, + STATE(286), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(605), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(599), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(611), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(596), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82643,53 +108599,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17086] = 12, - ACTIONS(2833), 1, + [17661] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2865), 1, - sym__lookback_semicolon, - STATE(937), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(986), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1990), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + ACTIONS(1455), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -82699,54 +108647,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [17154] = 12, - ACTIONS(51), 1, + [17733] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2867), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3959), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(288), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82755,54 +108715,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17222] = 12, - ACTIONS(2833), 1, + [17801] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2861), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3961), 1, sym__lookback_semicolon, - STATE(1003), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(289), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82811,54 +108772,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17290] = 12, - ACTIONS(51), 1, + [17869] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2859), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3963), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(248), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82867,54 +108829,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17358] = 12, - ACTIONS(51), 1, + [17937] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2839), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3965), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(291), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82923,54 +108886,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17426] = 12, - ACTIONS(2833), 1, + [18005] = 11, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2869), 1, + ACTIONS(3915), 1, + anon_sym_RPAREN, + ACTIONS(3967), 1, sym__lookback_semicolon, - STATE(934), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(243), 1, sym_operator, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -82979,43 +108943,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17494] = 12, - ACTIONS(51), 1, + [18073] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3927), 1, + sym_identifier, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, + sym_member_expression, + STATE(1101), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 2, + anon_sym_LPAREN, + anon_sym_AT_COLON, + STATE(2844), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(1449), 15, + anon_sym_AT, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [18159] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2869), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + STATE(1109), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + ACTIONS(3969), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -83025,8 +109067,43 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [18231] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1875), 17, + anon_sym_this, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 26, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_DASH_GT, anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -83035,53 +109112,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17562] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2871), 1, + anon_sym_DOT_DOT_DOT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [18283] = 13, + ACTIONS(2665), 1, sym__lookback_semicolon, - STATE(959), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1216), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83091,53 +109164,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [17630] = 12, - ACTIONS(51), 1, + [18354] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2873), 1, + ACTIONS(3977), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1336), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83147,53 +109222,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [17698] = 12, - ACTIONS(2833), 1, + [18425] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2875), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3979), 1, sym__lookback_semicolon, - STATE(990), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83203,43 +109280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [17766] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2877), 1, - sym__lookback_semicolon, - STATE(927), 1, - aux_sym_expression_repeat1, - STATE(1351), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(2755), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(1875), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(2751), 4, - anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(2837), 5, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - STATE(801), 9, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -83249,63 +109290,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, - anon_sym_TILDE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, sym__rangeOperator, - [17834] = 12, - ACTIONS(51), 1, + [18496] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2879), 1, - anon_sym_RBRACK, - STATE(965), 1, + ACTIONS(3979), 1, + sym__lookback_semicolon, + STATE(1155), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83315,53 +109338,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [17902] = 12, - ACTIONS(51), 1, + [18567] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2881), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3981), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83371,53 +109396,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [17970] = 12, - ACTIONS(2833), 1, + [18638] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2883), 1, - sym__lookback_semicolon, - STATE(980), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3983), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83427,53 +109454,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18038] = 12, - ACTIONS(2833), 1, + [18709] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2885), 1, - sym__lookback_semicolon, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3985), 1, + anon_sym_RPAREN, STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83483,53 +109512,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18106] = 12, - ACTIONS(51), 1, + [18780] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2887), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3987), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83539,53 +109570,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18174] = 12, - ACTIONS(2833), 1, + [18851] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2889), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3989), 1, sym__lookback_semicolon, - STATE(923), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83595,53 +109628,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18242] = 12, - ACTIONS(51), 1, + [18922] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2891), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3991), 1, anon_sym_RBRACK, - STATE(909), 1, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83651,53 +109686,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18310] = 12, - ACTIONS(2833), 1, + [18993] = 13, + ACTIONS(1371), 1, + anon_sym_in, + ACTIONS(3695), 1, anon_sym_DASH, - ACTIONS(2887), 1, - sym__lookback_semicolon, - STATE(957), 1, + ACTIONS(3879), 1, + anon_sym_DOT_DOT_DOT, + STATE(1132), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1565), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3875), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2272), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3873), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3869), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3877), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3871), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83707,53 +109744,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1038), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18378] = 12, - ACTIONS(51), 1, + [19064] = 13, + ACTIONS(1471), 1, + anon_sym_in, + ACTIONS(1482), 1, anon_sym_DASH, - ACTIONS(2893), 1, - anon_sym_RPAREN, - STATE(850), 1, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1131), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1777), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83763,53 +109802,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18446] = 12, - ACTIONS(51), 1, + [19135] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2885), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1455), 1, + anon_sym_in, + STATE(1131), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1777), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83819,53 +109860,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18514] = 12, - ACTIONS(2833), 1, + [19206] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2895), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3993), 1, sym__lookback_semicolon, - STATE(920), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83875,53 +109918,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18582] = 12, - ACTIONS(2833), 1, + [19277] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2897), 1, + ACTIONS(3995), 1, sym__lookback_semicolon, - STATE(982), 1, + STATE(1138), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83931,53 +109976,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18650] = 12, - ACTIONS(51), 1, + [19348] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2899), 1, + ACTIONS(3993), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1158), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -83987,53 +110034,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18718] = 12, - ACTIONS(51), 1, + [19419] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2901), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3997), 1, + anon_sym_while, + STATE(1139), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84043,53 +110092,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18786] = 12, - ACTIONS(51), 1, + [19490] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2895), 1, + ACTIONS(3999), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1159), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84099,53 +110150,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18854] = 12, - ACTIONS(51), 1, + [19561] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2897), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4001), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84155,53 +110208,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18922] = 12, - ACTIONS(2833), 1, + [19632] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2899), 1, - sym__lookback_semicolon, - STATE(984), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4003), 1, + anon_sym_while, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84211,53 +110266,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [18990] = 12, - ACTIONS(51), 1, + [19703] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2903), 1, - anon_sym_RBRACK, - STATE(963), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4005), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84267,53 +110324,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19058] = 12, - ACTIONS(2833), 1, + [19774] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2905), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4007), 1, sym__lookback_semicolon, - STATE(989), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84323,53 +110382,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19126] = 12, - ACTIONS(51), 1, + [19845] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2907), 1, - anon_sym_RBRACK, - STATE(850), 1, + ACTIONS(4005), 1, + sym__lookback_semicolon, + STATE(1191), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84379,53 +110440,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19194] = 12, - ACTIONS(2833), 1, + [19916] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2909), 1, + ACTIONS(4009), 1, sym__lookback_semicolon, - STATE(987), 1, + STATE(1339), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84435,53 +110498,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19262] = 12, - ACTIONS(51), 1, + [19987] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2911), 1, - anon_sym_RBRACK, - STATE(850), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4011), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84491,53 +110556,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19330] = 12, - ACTIONS(51), 1, + [20058] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2913), 1, - anon_sym_RBRACE, - STATE(1012), 1, + ACTIONS(4011), 1, + sym__lookback_semicolon, + STATE(1161), 1, aux_sym_expression_repeat1, - STATE(1429), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84547,53 +110614,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19398] = 12, - ACTIONS(2833), 1, + [20129] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2915), 1, + ACTIONS(4013), 1, sym__lookback_semicolon, - STATE(998), 1, + STATE(1165), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84603,53 +110672,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19466] = 12, - ACTIONS(2833), 1, + [20200] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2917), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4009), 1, sym__lookback_semicolon, - STATE(913), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84659,53 +110730,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19534] = 12, - ACTIONS(51), 1, + [20271] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2919), 1, - anon_sym_RPAREN, - STATE(952), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4015), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84715,53 +110788,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19602] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2921), 1, + [20342] = 13, + ACTIONS(3449), 1, sym__lookback_semicolon, - STATE(910), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1225), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84771,53 +110846,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19670] = 12, - ACTIONS(51), 1, + [20413] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2923), 1, + ACTIONS(4017), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1144), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84827,53 +110904,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19738] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2921), 1, + [20484] = 13, + ACTIONS(3451), 1, sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1232), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84883,53 +110962,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19806] = 12, - ACTIONS(2833), 1, + [20555] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2925), 1, + ACTIONS(4019), 1, sym__lookback_semicolon, - STATE(1020), 1, + STATE(1140), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84939,53 +111020,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19874] = 12, - ACTIONS(51), 1, + [20626] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2927), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4021), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -84995,53 +111078,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [19942] = 12, - ACTIONS(51), 1, + [20697] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2929), 1, + ACTIONS(4021), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1226), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85051,53 +111136,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20010] = 12, - ACTIONS(51), 1, + [20768] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2931), 1, - anon_sym_RBRACK, - STATE(978), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4023), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1126), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85107,53 +111194,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20078] = 12, - ACTIONS(51), 1, + [20839] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2933), 1, + ACTIONS(4025), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1245), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85163,53 +111252,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20146] = 12, - ACTIONS(51), 1, + [20910] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2935), 1, - anon_sym_RBRACK, - STATE(850), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4027), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85219,53 +111310,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20214] = 12, - ACTIONS(2833), 1, + [20981] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2937), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4029), 1, sym__lookback_semicolon, - STATE(911), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85275,53 +111368,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20282] = 12, - ACTIONS(51), 1, + [21052] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2939), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4031), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85331,51 +111426,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20350] = 9, - ACTIONS(582), 1, + [21123] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2941), 1, - anon_sym_COLON, - ACTIONS(2943), 1, + ACTIONS(4031), 1, sym__lookback_semicolon, - STATE(138), 1, + STATE(1173), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -85384,53 +111484,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20412] = 12, - ACTIONS(51), 1, + [21194] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2945), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4033), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85440,53 +111542,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20480] = 12, - ACTIONS(2833), 1, + [21265] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2939), 1, + ACTIONS(4027), 1, sym__lookback_semicolon, - STATE(1030), 1, + STATE(1193), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85496,53 +111600,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20548] = 12, - ACTIONS(51), 1, + [21336] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2947), 1, + ACTIONS(4035), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1157), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85552,53 +111658,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20616] = 12, - ACTIONS(2833), 1, + [21407] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2949), 1, + ACTIONS(4037), 1, sym__lookback_semicolon, - STATE(1006), 1, + STATE(1276), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85608,53 +111716,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20684] = 12, - ACTIONS(2833), 1, + [21478] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2951), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4039), 1, sym__lookback_semicolon, - STATE(919), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85664,53 +111774,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20752] = 12, - ACTIONS(51), 1, + [21549] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2951), 1, + ACTIONS(4041), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1122), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85720,53 +111832,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20820] = 12, - ACTIONS(51), 1, + [21620] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2953), 1, + ACTIONS(4043), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1328), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85776,53 +111890,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20888] = 12, - ACTIONS(51), 1, + [21691] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2955), 1, + ACTIONS(4039), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1176), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85832,53 +111948,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [20956] = 12, - ACTIONS(51), 1, + [21762] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2957), 1, + ACTIONS(4045), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1178), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85888,53 +112006,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21024] = 12, - ACTIONS(51), 1, + [21833] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2959), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4047), 1, + anon_sym_RBRACE, + STATE(1197), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1594), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -85944,53 +112064,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21092] = 12, - ACTIONS(2833), 1, + [21904] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2955), 1, + ACTIONS(4049), 1, sym__lookback_semicolon, - STATE(1025), 1, + STATE(1172), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86000,53 +112122,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21160] = 12, - ACTIONS(2819), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, + [21975] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1011), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4051), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86056,53 +112180,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21228] = 12, - ACTIONS(2833), 1, + [22046] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2961), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4053), 1, sym__lookback_semicolon, - STATE(939), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86112,53 +112238,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21296] = 12, - ACTIONS(2833), 1, + [22117] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2963), 1, - sym__lookback_semicolon, - STATE(1029), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4055), 1, + anon_sym_RBRACK, + STATE(1209), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86168,106 +112296,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [21364] = 9, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2965), 1, - anon_sym_COLON, - ACTIONS(2967), 1, - sym__lookback_semicolon, - STATE(122), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, sym__rangeOperator, - [21426] = 12, - ACTIONS(51), 1, + [22188] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2969), 1, + ACTIONS(4057), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1213), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86277,53 +112354,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21494] = 12, - ACTIONS(51), 1, + [22259] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2971), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4059), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86333,53 +112412,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21562] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2973), 1, + [22330] = 13, + ACTIONS(1471), 1, sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(1482), 1, + anon_sym_DASH, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(1485), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(1479), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(1473), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(1488), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(1476), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86389,53 +112470,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21630] = 12, - ACTIONS(2364), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, + [22401] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(1019), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4061), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86445,53 +112528,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21698] = 12, - ACTIONS(594), 1, - anon_sym_RBRACE, - ACTIONS(602), 1, + [22472] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - STATE(1001), 1, + ACTIONS(4061), 1, + sym__lookback_semicolon, + STATE(1185), 1, aux_sym_expression_repeat1, - STATE(1603), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(605), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(599), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(608), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(611), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(596), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86501,53 +112586,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21766] = 12, - ACTIONS(2833), 1, + [22543] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2971), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4063), 1, sym__lookback_semicolon, - STATE(918), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86557,53 +112644,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21834] = 12, - ACTIONS(51), 1, + [22614] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2975), 1, + ACTIONS(4065), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1184), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86613,53 +112702,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21902] = 12, - ACTIONS(2833), 1, + [22685] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2977), 1, - sym__lookback_semicolon, - STATE(953), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4067), 1, + anon_sym_RPAREN, + STATE(1126), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86669,23 +112760,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [21970] = 9, - ACTIONS(582), 1, + [22756] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2979), 1, + ACTIONS(4069), 1, anon_sym_COLON, - ACTIONS(2981), 1, + ACTIONS(4071), 1, sym__lookback_semicolon, - STATE(125), 1, + STATE(317), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + ACTIONS(59), 9, anon_sym_BANG, anon_sym_SLASH, anon_sym_PLUS, @@ -86695,7 +112798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - STATE(218), 11, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -86707,10 +112810,11 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -86722,53 +112826,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22032] = 12, - ACTIONS(51), 1, + [22821] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2983), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4073), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86778,53 +112873,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22100] = 12, - ACTIONS(2833), 1, + [22892] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2983), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4075), 1, sym__lookback_semicolon, - STATE(1017), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86834,53 +112931,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22168] = 12, - ACTIONS(2833), 1, - anon_sym_DASH, - ACTIONS(2985), 1, + [22963] = 13, + ACTIONS(3444), 1, sym__lookback_semicolon, - STATE(936), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1331), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86890,106 +112989,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22236] = 9, - ACTIONS(582), 1, - anon_sym_DASH, - ACTIONS(2987), 1, - anon_sym_COLON, - ACTIONS(2989), 1, - sym__lookback_semicolon, - STATE(92), 1, - sym_operator, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(53), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(49), 9, - anon_sym_BANG, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + STATE(1067), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, sym__rangeOperator, - [22298] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2991), 1, + [23034] = 13, + ACTIONS(3461), 1, sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1195), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -86999,53 +113047,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22366] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(2993), 1, + [23105] = 13, + ACTIONS(3455), 1, sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1128), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87055,53 +113105,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22434] = 12, - ACTIONS(51), 1, + [23176] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2995), 1, - anon_sym_RBRACE, - STATE(1001), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4077), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1603), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87111,53 +113163,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22502] = 12, - ACTIONS(2833), 1, + [23247] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(2997), 1, + ACTIONS(4079), 1, sym__lookback_semicolon, - STATE(975), 1, + STATE(1196), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87167,53 +113221,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22570] = 12, - ACTIONS(51), 1, + [23318] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2999), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4081), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87223,53 +113279,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22638] = 12, - ACTIONS(2833), 1, + [23389] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3001), 1, - sym__lookback_semicolon, - STATE(930), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4083), 1, + anon_sym_while, + STATE(1229), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87279,53 +113337,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22706] = 12, - ACTIONS(51), 1, + [23460] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3003), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4085), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87335,54 +113395,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22774] = 12, - ACTIONS(51), 1, + [23531] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(3005), 1, + ACTIONS(4087), 1, + anon_sym_COLON, + ACTIONS(4089), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(255), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -87391,53 +113461,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [22842] = 12, - ACTIONS(51), 1, + [23596] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2997), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4091), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87447,53 +113508,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22910] = 12, - ACTIONS(51), 1, + [23667] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3007), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4093), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87503,53 +113566,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [22978] = 12, - ACTIONS(51), 1, + [23738] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3009), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4095), 1, + anon_sym_RBRACE, + STATE(1315), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1801), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87559,53 +113624,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23046] = 12, - ACTIONS(2833), 1, + [23809] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, anon_sym_DASH, - ACTIONS(3011), 1, + ACTIONS(4097), 1, sym__lookback_semicolon, - STATE(908), 1, + STATE(1201), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87615,53 +113682,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23114] = 12, - ACTIONS(2833), 1, + [23880] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3013), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4099), 1, sym__lookback_semicolon, - STATE(991), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87671,53 +113740,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23182] = 12, - ACTIONS(2833), 1, + [23951] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3015), 1, - sym__lookback_semicolon, - STATE(958), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(1211), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87727,53 +113798,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23250] = 12, - ACTIONS(2833), 1, + [24022] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3017), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4101), 1, sym__lookback_semicolon, - STATE(1018), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87783,53 +113856,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23318] = 12, - ACTIONS(51), 1, - anon_sym_DASH, - ACTIONS(3019), 1, + [24093] = 13, + ACTIONS(3442), 1, sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1215), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1649), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(3821), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2278), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(3817), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(3971), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(3975), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(47), 10, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87839,53 +113914,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23386] = 12, - ACTIONS(2833), 1, + [24164] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3021), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4103), 1, sym__lookback_semicolon, - STATE(917), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, - sym__unaryOperator, - sym__prefixUnaryOperator, - sym__postfixUnaryOperator, - sym__binaryOperator, - sym__logicalOperator, - sym__comparisonOperator, - sym__miscOperator, - sym__assignmentOperator, - sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -87895,54 +113972,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23454] = 12, - ACTIONS(51), 1, + [24235] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, anon_sym_DASH, - ACTIONS(2875), 1, + ACTIONS(4105), 1, + anon_sym_COLON, + ACTIONS(4107), 1, sym__lookback_semicolon, - STATE(932), 1, - aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(269), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, - sym__arithmeticOperator, - sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 9, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - ACTIONS(57), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -87951,43 +114038,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [23522] = 12, - ACTIONS(2833), 1, + [24300] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3009), 1, - sym__lookback_semicolon, - STATE(977), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(1212), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -87997,7 +114095,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + [24371] = 13, + ACTIONS(2631), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1217), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88007,43 +114143,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23590] = 12, - ACTIONS(51), 1, + [24442] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(2855), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(1219), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1369), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88053,7 +114211,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [24513] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4111), 1, + anon_sym_RBRACK, + STATE(1221), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88063,43 +114259,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23658] = 12, - ACTIONS(51), 1, + [24584] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3023), 1, - sym__lookback_semicolon, - STATE(932), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4113), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88109,7 +114327,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [24655] = 13, + ACTIONS(3431), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1148), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88119,43 +114375,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23726] = 12, - ACTIONS(2833), 1, + [24726] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3025), 1, - sym__lookback_semicolon, - STATE(972), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4115), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88165,7 +114443,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + [24797] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4117), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88175,43 +114491,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23794] = 12, - ACTIONS(51), 1, + [24868] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3027), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4119), 1, sym__lookback_semicolon, - STATE(932), 1, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1543), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88221,7 +114559,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [24939] = 13, + ACTIONS(3463), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1199), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88231,51 +114607,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23862] = 9, - ACTIONS(582), 1, + [25010] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3029), 1, - anon_sym_COLON, - ACTIONS(3031), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4121), 1, sym__lookback_semicolon, - STATE(142), 1, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(49), 9, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(218), 11, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, sym__binaryOperator, - sym__arithmeticOperator, - sym__bitwiseOperator, sym__logicalOperator, sym__comparisonOperator, sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 15, - anon_sym_TILDE, - anon_sym_PERCENT, + sym__rangeOperator, + [25081] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4123), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -88284,43 +114723,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23924] = 12, - ACTIONS(2366), 1, - sym__lookback_semicolon, - ACTIONS(2833), 1, + [25152] = 13, + ACTIONS(61), 1, anon_sym_DASH, - STATE(997), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4125), 1, + sym__lookback_semicolon, + STATE(1177), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1855), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88330,7 +114791,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + [25223] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4127), 1, + sym__lookback_semicolon, + STATE(1230), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88340,43 +114839,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [23992] = 12, - ACTIONS(51), 1, + [25294] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3033), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4129), 1, anon_sym_RBRACK, - STATE(850), 1, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1488), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(53), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1857), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(49), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(55), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(57), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(218), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88386,7 +114907,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(47), 10, + sym__rangeOperator, + [25365] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4131), 1, + sym__lookback_semicolon, + STATE(1141), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88396,43 +114955,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [24060] = 12, - ACTIONS(2833), 1, + [25436] = 13, + ACTIONS(61), 1, anon_sym_DASH, - ACTIONS(3035), 1, - sym__lookback_semicolon, - STATE(1010), 1, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4133), 1, + anon_sym_RBRACK, + STATE(988), 1, aux_sym_expression_repeat1, - STATE(1351), 1, + STATE(1986), 1, sym_operator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2755), 2, + ACTIONS(63), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(1875), 2, + STATE(2234), 2, sym__arithmeticOperator, sym__bitwiseOperator, - ACTIONS(2751), 4, + ACTIONS(59), 4, anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(2835), 5, - anon_sym_PERCENT, + ACTIONS(15), 5, anon_sym_STAR, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, - ACTIONS(2837), 5, + ACTIONS(65), 5, anon_sym_SLASH, anon_sym_PLUS, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - STATE(801), 9, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, sym__unaryOperator, sym__prefixUnaryOperator, sym__postfixUnaryOperator, @@ -88442,7 +115023,45 @@ static const uint16_t ts_small_parse_table[] = { sym__miscOperator, sym__assignmentOperator, sym__compoundAssignmentOperator, - ACTIONS(2749), 10, + sym__rangeOperator, + [25507] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4119), 1, + sym__lookback_semicolon, + STATE(1127), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, anon_sym_TILDE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -88452,47 +115071,22028 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, sym__rangeOperator, - [24128] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, + [25578] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4135), 1, + sym__lookback_semicolon, + STATE(1133), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [25649] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4137), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [25720] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4139), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [25791] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4141), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [25862] = 13, + ACTIONS(2675), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1236), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [25933] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4143), 1, + sym__lookback_semicolon, + STATE(1254), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26004] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4145), 1, + anon_sym_while, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26075] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4147), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26146] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4147), 1, + sym__lookback_semicolon, + STATE(1241), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26217] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4149), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26288] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4151), 1, + sym__lookback_semicolon, + STATE(1243), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26359] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(4153), 1, + anon_sym_COLON, + ACTIONS(4155), 1, + sym__lookback_semicolon, + STATE(278), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [26424] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4157), 1, + sym__lookback_semicolon, + STATE(1147), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26495] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4159), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26566] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4161), 1, + sym__lookback_semicolon, + STATE(1249), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26637] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4163), 1, + sym__lookback_semicolon, + STATE(1314), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26708] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(1313), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26779] = 13, + ACTIONS(3189), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1124), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26850] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4165), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26921] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(1129), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [26992] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4167), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27063] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4167), 1, + sym__lookback_semicolon, + STATE(1258), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27134] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4037), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27205] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4169), 1, + sym__lookback_semicolon, + STATE(1261), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27276] = 13, + ACTIONS(2637), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1263), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27347] = 13, + ACTIONS(2643), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1264), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27418] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4171), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27489] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4171), 1, + sym__lookback_semicolon, + STATE(1266), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27560] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4173), 1, + sym__lookback_semicolon, + STATE(1267), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27631] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4175), 1, + sym__lookback_semicolon, + STATE(1253), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27702] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4177), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27773] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4179), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27844] = 13, + ACTIONS(3691), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1189), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27915] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4181), 1, + sym__lookback_semicolon, + STATE(1270), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [27986] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4183), 1, + anon_sym_RBRACK, + STATE(1125), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28057] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4185), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28128] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(1275), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28199] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4187), 1, + anon_sym_RBRACK, + STATE(1293), 1, + aux_sym_expression_repeat1, + STATE(1369), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28270] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4189), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28341] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4189), 1, + sym__lookback_semicolon, + STATE(1277), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28412] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4191), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28483] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4193), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28554] = 13, + ACTIONS(3671), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1203), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28625] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4195), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28696] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4197), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28767] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4197), 1, + sym__lookback_semicolon, + STATE(1278), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28838] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4199), 1, + sym__lookback_semicolon, + STATE(1279), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28909] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4201), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [28980] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4201), 1, + sym__lookback_semicolon, + STATE(1281), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29051] = 13, + ACTIONS(3273), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1224), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29122] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4203), 1, + sym__lookback_semicolon, + STATE(1282), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29193] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4205), 1, + sym__lookback_semicolon, + STATE(1287), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29264] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4207), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29335] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4209), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29406] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4211), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29477] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4213), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29548] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4215), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29619] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4215), 1, + sym__lookback_semicolon, + STATE(1294), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29690] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4217), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29761] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4219), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29832] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4219), 1, + sym__lookback_semicolon, + STATE(1295), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29903] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4221), 1, + sym__lookback_semicolon, + STATE(1296), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [29974] = 13, + ACTIONS(3345), 1, + sym__lookback_semicolon, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + STATE(1286), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30045] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4223), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30116] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4225), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30187] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4227), 1, + sym__lookback_semicolon, + STATE(1289), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30258] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4229), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30329] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4225), 1, + sym__lookback_semicolon, + STATE(1298), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30400] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4231), 1, + sym__lookback_semicolon, + STATE(1299), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30471] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4233), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30542] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4235), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30613] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4237), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30684] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4239), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30755] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4241), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30826] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4241), 1, + sym__lookback_semicolon, + STATE(1302), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30897] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4243), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [30968] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4245), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31039] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4245), 1, + sym__lookback_semicolon, + STATE(1303), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31110] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4247), 1, + sym__lookback_semicolon, + STATE(1306), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31181] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4249), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31252] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4251), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31323] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4253), 1, + sym__lookback_semicolon, + STATE(1305), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31394] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4255), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31465] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4257), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31536] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4259), 1, + sym__lookback_semicolon, + STATE(1308), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31607] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4261), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31678] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4257), 1, + sym__lookback_semicolon, + STATE(1312), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31749] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4263), 1, + sym__lookback_semicolon, + STATE(1311), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31820] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4265), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31891] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4267), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [31962] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4269), 1, + anon_sym_RBRACK, + STATE(988), 1, + aux_sym_expression_repeat1, + STATE(1986), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32033] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4271), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32104] = 13, + ACTIONS(1471), 1, + anon_sym_RBRACE, + ACTIONS(1482), 1, + anon_sym_DASH, + ACTIONS(1491), 1, + anon_sym_DOT_DOT_DOT, + STATE(1315), 1, + aux_sym_expression_repeat1, + STATE(1801), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1485), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(1479), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1473), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(1488), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1476), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32175] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4273), 1, + sym__lookback_semicolon, + STATE(1317), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32246] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4275), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32317] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4277), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32388] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4271), 1, + sym__lookback_semicolon, + STATE(1180), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32459] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4279), 1, + sym__lookback_semicolon, + STATE(1321), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32530] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4281), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32601] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4283), 1, + sym__lookback_semicolon, + STATE(1323), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32672] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4285), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32743] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4287), 1, + sym__lookback_semicolon, + STATE(1325), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32814] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4289), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32885] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4291), 1, + sym__lookback_semicolon, + STATE(1327), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [32956] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4293), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33027] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4295), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33098] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4297), 1, + sym__lookback_semicolon, + STATE(1330), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33169] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4299), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33240] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4301), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33311] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4303), 1, + sym__lookback_semicolon, + STATE(1333), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33382] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4305), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33453] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(4307), 1, + anon_sym_COLON, + ACTIONS(4309), 1, + sym__lookback_semicolon, + STATE(300), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [33518] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4311), 1, + sym__lookback_semicolon, + STATE(1292), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33589] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4313), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33660] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4315), 1, + sym__lookback_semicolon, + STATE(1153), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33731] = 13, + ACTIONS(3823), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3973), 1, + anon_sym_DASH, + ACTIONS(4317), 1, + sym__lookback_semicolon, + STATE(1318), 1, + aux_sym_expression_repeat1, + STATE(1649), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3821), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2278), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(3817), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(3971), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(3975), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3815), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(1067), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33802] = 13, + ACTIONS(61), 1, + anon_sym_DASH, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4319), 1, + sym__lookback_semicolon, + STATE(1177), 1, + aux_sym_expression_repeat1, + STATE(1855), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2234), 2, + sym__arithmeticOperator, + sym__bitwiseOperator, + ACTIONS(59), 4, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(15), 5, + anon_sym_STAR, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + ACTIONS(65), 5, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(57), 9, + anon_sym_TILDE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + STATE(238), 10, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + [33873] = 10, + ACTIONS(67), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1504), 1, + anon_sym_DASH, + ACTIONS(4321), 1, + anon_sym_COLON, + ACTIONS(4323), 1, + sym__lookback_semicolon, + STATE(272), 1, + sym_operator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(63), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(59), 9, + anon_sym_BANG, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(238), 12, + sym__unaryOperator, + sym__prefixUnaryOperator, + sym__postfixUnaryOperator, + sym__binaryOperator, + sym__arithmeticOperator, + sym__bitwiseOperator, + sym__logicalOperator, + sym__comparisonOperator, + sym__miscOperator, + sym__assignmentOperator, + sym__compoundAssignmentOperator, + sym__rangeOperator, + ACTIONS(57), 14, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [33938] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(4325), 15, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [34017] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1061), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(4325), 15, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [34096] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1084), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(4325), 15, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [34175] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1066), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(4325), 15, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [34254] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1381), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1379), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34337] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1341), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1339), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34420] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1449), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1447), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34503] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4331), 1, + sym_identifier, + ACTIONS(4334), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1386), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34586] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1348), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1315), 5, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_extends, + anon_sym_implements, + ACTIONS(1313), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34669] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1353), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1381), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1379), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2924), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34751] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1071), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(4325), 14, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [34829] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4341), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1375), 3, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1371), 6, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2309), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34917] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4343), 1, + sym_identifier, + ACTIONS(4346), 1, + anon_sym_this, + STATE(1353), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1386), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2924), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [34999] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1012), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + ACTIONS(4325), 14, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [35077] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1353), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1315), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1313), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2924), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35159] = 23, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(4349), 1, + sym_identifier, + ACTIONS(4351), 1, + anon_sym_this, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, + sym_member_expression, + STATE(2297), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(344), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1375), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1371), 5, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2314), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35247] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1353), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1341), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1339), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2924), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35329] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4337), 1, + sym_identifier, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1353), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1449), 4, + anon_sym_in, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1447), 9, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2924), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35411] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(2659), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4353), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35470] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35529] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(2425), 1, + anon_sym_DOT, + ACTIONS(2427), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4353), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35588] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35647] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35703] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4351), 1, + anon_sym_this, + ACTIONS(4357), 1, + sym_identifier, + STATE(1371), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1341), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1339), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2931), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35783] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(2655), 1, + anon_sym_DOT, + ACTIONS(2659), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4353), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35839] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [35895] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4351), 1, + anon_sym_this, + ACTIONS(4357), 1, + sym_identifier, + STATE(1371), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1315), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1313), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2931), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [35975] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4351), 1, + anon_sym_this, + ACTIONS(4357), 1, + sym_identifier, + STATE(1371), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1381), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1379), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2931), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36055] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, + anon_sym_this, + ACTIONS(4359), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1375), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1345), 3, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + ACTIONS(1343), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + STATE(1407), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36141] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(2425), 1, + anon_sym_DOT, + ACTIONS(2427), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4353), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [36197] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4361), 1, + sym_identifier, + ACTIONS(4364), 1, + anon_sym_this, + STATE(1371), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1386), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2931), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36277] = 23, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(1502), 1, + anon_sym_this, + ACTIONS(4367), 1, + sym_identifier, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(1378), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(380), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1343), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_EQ_GT, + ACTIONS(1345), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(1428), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36363] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4351), 1, + anon_sym_this, + ACTIONS(4357), 1, + sym_identifier, + STATE(1371), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1449), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1447), 7, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2931), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36443] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1351), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2804), 1, + sym_type, + STATE(3596), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36530] = 4, + ACTIONS(4355), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 23, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [36577] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(4373), 1, + anon_sym_RPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2806), 1, + sym_type, + STATE(3324), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36664] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(4375), 1, + anon_sym_RPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2806), 1, + sym_type, + STATE(3553), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36751] = 4, + ACTIONS(4353), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 23, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [36798] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1451), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4369), 1, + sym_identifier, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2727), 1, + sym_type, + STATE(3495), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36885] = 24, + ACTIONS(4375), 1, + anon_sym_RPAREN, + ACTIONS(4377), 1, + sym_identifier, + ACTIONS(4380), 1, + anon_sym_LPAREN, + ACTIONS(4383), 1, + anon_sym_LBRACE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4389), 1, + anon_sym_this, + ACTIONS(4395), 1, + anon_sym_null, + ACTIONS(4398), 1, + aux_sym_integer_token1, + ACTIONS(4401), 1, + aux_sym_integer_token2, + ACTIONS(4404), 1, + aux_sym_float_token1, + ACTIONS(4407), 1, + aux_sym_float_token2, + ACTIONS(4413), 1, + aux_sym_string_token1, + ACTIONS(4416), 1, + aux_sym_string_token3, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2806), 1, + sym_type, + STATE(3553), 1, + sym__function_type_args, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4410), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4392), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [36972] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3653), 1, + anon_sym_DOT, + ACTIONS(3655), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4355), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1753), 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 16, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [37028] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1315), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1313), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37106] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1083), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37190] = 9, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(3705), 1, + anon_sym_DOT, + ACTIONS(3707), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4353), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1753), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 16, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [37246] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1072), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37330] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_LBRACE, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2326), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2515), 1, + sym_type, + STATE(2746), 1, + sym_structure_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37414] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1072), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1414), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37498] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2801), 1, + sym__lhs_expression, + STATE(3291), 1, + sym_type, + STATE(3608), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37582] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2785), 1, + sym__lhs_expression, + STATE(3272), 1, + sym_type, + STATE(3532), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37666] = 23, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(1506), 1, + sym__closing_brace_marker, + ACTIONS(4421), 1, + anon_sym_this, + ACTIONS(4439), 1, + sym_identifier, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, + sym_member_expression, + STATE(2297), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(565), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1510), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + STATE(2319), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37750] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1449), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1447), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37828] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2732), 1, + sym__lhs_expression, + STATE(3172), 1, + sym_type, + STATE(3614), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37912] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1014), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [37996] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1023), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38080] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1083), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1394), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38164] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2670), 1, + sym__lhs_expression, + STATE(3137), 1, + sym_type, + STATE(3679), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38248] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2724), 1, + sym__lhs_expression, + STATE(3162), 1, + sym_type, + STATE(3439), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38332] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2544), 1, + sym__lhs_expression, + STATE(3121), 1, + sym_type, + STATE(3327), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38416] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2743), 1, + sym__lhs_expression, + STATE(3266), 1, + sym_type, + STATE(3692), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38500] = 6, + ACTIONS(3247), 1, + anon_sym_DOT, + ACTIONS(3249), 1, + anon_sym_QMARK, + ACTIONS(4353), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [38550] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1073), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1417), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38634] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1341), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1339), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38712] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1080), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38796] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1081), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38880] = 20, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4441), 1, + sym_identifier, + ACTIONS(4444), 1, + anon_sym_this, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1388), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1386), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [38958] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39042] = 6, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3663), 1, + anon_sym_QMARK, + ACTIONS(4355), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [39092] = 6, + ACTIONS(3657), 1, + anon_sym_DOT, + ACTIONS(3659), 1, + anon_sym_QMARK, + ACTIONS(4355), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [39142] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2573), 1, + sym__lhs_expression, + STATE(3305), 1, + sym_type, + STATE(3643), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39226] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2554), 1, + sym__lhs_expression, + STATE(3200), 1, + sym_type, + STATE(3375), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39310] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1020), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39394] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1081), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1429), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39478] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1040), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1393), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39562] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1077), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39646] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2600), 1, + sym__lhs_expression, + STATE(3261), 1, + sym_type, + STATE(3510), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39730] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1028), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1383), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39814] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1078), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39898] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1020), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1406), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [39982] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2580), 1, + sym__lhs_expression, + STATE(3236), 1, + sym_type, + STATE(3525), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40066] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4433), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2509), 1, + sym_builtin_type, + STATE(2722), 1, + sym__lhs_expression, + STATE(3154), 1, + sym_type, + STATE(3392), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40150] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1068), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1385), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40234] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1045), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1424), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40318] = 23, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(4427), 1, + anon_sym_LBRACE, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2361), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2492), 1, + sym_type, + STATE(2767), 1, + sym_structure_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40402] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1040), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40486] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1079), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1404), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40570] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1405), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1381), 4, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + ACTIONS(1379), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40648] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4447), 1, + anon_sym_DOT, + ACTIONS(4451), 1, + anon_sym_LBRACK, + ACTIONS(4453), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4449), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 19, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [40704] = 6, + ACTIONS(3191), 1, + anon_sym_DOT, + ACTIONS(3193), 1, + anon_sym_QMARK, + ACTIONS(4353), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 22, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [40754] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1082), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40838] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1078), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1403), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [40922] = 23, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4423), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_type, + STATE(1100), 1, + sym_member_expression, + STATE(1411), 1, + aux_sym_variable_declaration_repeat1, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41006] = 23, + ACTIONS(1375), 1, + anon_sym_in, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, + anon_sym_null, + ACTIONS(2031), 1, + aux_sym_integer_token1, + ACTIONS(2033), 1, + aux_sym_integer_token2, + ACTIONS(2035), 1, + aux_sym_float_token1, + ACTIONS(2037), 1, + aux_sym_float_token2, + ACTIONS(2041), 1, + aux_sym_string_token1, + ACTIONS(2043), 1, + aux_sym_string_token3, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4455), 1, + sym_identifier, + ACTIONS(4457), 1, + anon_sym_LBRACE, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2522), 1, + sym_string, + STATE(2822), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2039), 2, + anon_sym_true, + anon_sym_false, + STATE(1798), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1371), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2699), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41089] = 6, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4451), 1, + anon_sym_LBRACK, + STATE(2482), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1371), 19, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [41138] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2847), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41219] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(3048), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41300] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2838), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41381] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, + sym_identifier, + ACTIONS(4461), 1, + anon_sym_this, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1845), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1371), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2690), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41462] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2472), 1, + sym_builtin_type, + STATE(2484), 1, + sym__lhs_expression, + STATE(2957), 1, + sym_function_type, + STATE(3021), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1554), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41543] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2472), 1, + sym_builtin_type, + STATE(2484), 1, + sym__lhs_expression, + STATE(2957), 1, + sym_function_type, + STATE(2959), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1554), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41624] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2472), 1, + sym_builtin_type, + STATE(2484), 1, + sym__lhs_expression, + STATE(2896), 1, + sym_type, + STATE(2957), 1, + sym_function_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1554), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41705] = 6, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4451), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [41754] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4447), 1, + anon_sym_DOT, + ACTIONS(4453), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4449), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 19, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [41807] = 7, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(2008), 1, + sym__closing_brace, + STATE(2749), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [41858] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4467), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2495), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1371), 4, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2802), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [41939] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2584), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42020] = 7, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(202), 1, + sym__closing_brace, + STATE(2691), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [42071] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(3212), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42152] = 6, + ACTIONS(4469), 1, + anon_sym_DOT, + ACTIONS(4471), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1757), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1753), 8, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_AT_COLON, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1755), 22, + anon_sym_this, + anon_sym_AT, + anon_sym_null, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [42201] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, + sym_identifier, + ACTIONS(4475), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2607), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1371), 4, + anon_sym_DOT, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_EQ_GT, + STATE(2714), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42282] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + ACTIONS(4463), 1, + anon_sym_LPAREN, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2472), 1, + sym_builtin_type, + STATE(2484), 1, + sym__lhs_expression, + STATE(2957), 1, + sym_function_type, + STATE(3099), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1554), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2932), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42363] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2680), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42444] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2893), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42525] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2524), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42606] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2578), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42687] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2745), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42768] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(3316), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42849] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2545), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [42930] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2568), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43011] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2574), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43092] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2594), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43173] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2601), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43254] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2624), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43335] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4477), 1, + anon_sym_LPAREN, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(1945), 1, + sym_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43416] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2718), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43497] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2774), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43578] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(3165), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43659] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4477), 1, + anon_sym_LPAREN, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(1975), 1, + sym_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43740] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2465), 1, + sym_type, + STATE(2471), 1, + sym_function_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43821] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(3283), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43902] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + ACTIONS(4479), 1, + sym_identifier, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(3049), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [43983] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(3292), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44064] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2816), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44145] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3609), 1, + sym_identifier, + ACTIONS(3611), 1, + anon_sym_this, + ACTIONS(4477), 1, + anon_sym_LPAREN, + STATE(1100), 1, + sym_member_expression, + STATE(1664), 1, + sym__lhs_expression, + STATE(1665), 1, + sym_builtin_type, + STATE(1667), 1, + sym_function_type, + STATE(1997), 1, + sym_type, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4425), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2908), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44226] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2815), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44307] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, + sym_identifier, + ACTIONS(4483), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1371), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_EQ_GT, + STATE(2395), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44388] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4327), 1, + sym_identifier, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4371), 1, + anon_sym_LPAREN, + STATE(1010), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2362), 1, + sym__lhs_expression, + STATE(2370), 1, + sym_builtin_type, + STATE(2471), 1, + sym_function_type, + STATE(2491), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1367), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2955), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44469] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + anon_sym_LPAREN, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1667), 1, + sym_function_type, + STATE(2265), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2498), 1, + sym__lhs_expression, + STATE(2509), 1, + sym_builtin_type, + STATE(2619), 1, + sym_type, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4437), 5, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44550] = 4, + ACTIONS(4449), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [44594] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3791), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(2871), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2857), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44678] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(3040), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3026), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [44762] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4491), 1, + anon_sym_LBRACK, + ACTIONS(4493), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [44816] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3737), 1, + anon_sym_DOT, + ACTIONS(3739), 1, + anon_sym_QMARK, + ACTIONS(4491), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [44870] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1827), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1825), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [44912] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1851), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1849), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [44954] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3737), 1, + anon_sym_DOT, + ACTIONS(3739), 1, + anon_sym_QMARK, + ACTIONS(4491), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4449), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45008] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1883), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1881), 21, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45050] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3743), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(2886), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2885), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45134] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(3079), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3078), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45218] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3771), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(3011), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3010), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45302] = 5, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45348] = 22, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(4495), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_this, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, + sym_member_expression, + STATE(2297), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(344), 2, + sym__rhs_expression, + sym_call_expression, + ACTIONS(1371), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_EQ_GT, + STATE(2502), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45428] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_RBRACE, + ACTIONS(4499), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 16, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45482] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4501), 1, + anon_sym_DOT, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(4507), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45536] = 9, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_QMARK, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45590] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + STATE(2482), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 19, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [45636] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3757), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(2901), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2900), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45720] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3761), 1, + anon_sym_RPAREN, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(2949), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2948), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45804] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4499), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [45858] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1341), 1, + anon_sym_in, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4509), 1, + sym_identifier, + STATE(1501), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1339), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [45934] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1381), 1, + anon_sym_in, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4509), 1, + sym_identifier, + STATE(1501), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1379), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46010] = 20, + ACTIONS(1388), 1, + anon_sym_in, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4511), 1, + sym_identifier, + ACTIONS(4514), 1, + anon_sym_this, + STATE(1501), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1386), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46086] = 20, + ACTIONS(1315), 1, + anon_sym_in, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4509), 1, + sym_identifier, + STATE(1501), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1313), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46162] = 20, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1449), 1, + anon_sym_in, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4509), 1, + sym_identifier, + STATE(1501), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2927), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46238] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3777), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(3019), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3018), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46322] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(3063), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3062), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46406] = 24, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3825), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + STATE(3022), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3006), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46490] = 9, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4517), 1, + anon_sym_DOT, + ACTIONS(4521), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4519), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 16, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46543] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1510), 2, + anon_sym_catch, + anon_sym_else, + STATE(690), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46622] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1783), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1781), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46663] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1799), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1797), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46704] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1469), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1471), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46745] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(3258), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [46824] = 6, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(4525), 1, + anon_sym_RBRACK, + STATE(3035), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 17, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46871] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1895), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1893), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46912] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1899), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1897), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [46953] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3569), 1, + anon_sym_DOT, + ACTIONS(3571), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4499), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47004] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4527), 1, + sym_identifier, + STATE(1519), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1339), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2922), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47077] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4527), 1, + sym_identifier, + STATE(1519), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1379), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2922), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47150] = 19, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4529), 1, + sym_identifier, + ACTIONS(4532), 1, + anon_sym_this, + STATE(1519), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1386), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2922), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47223] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4527), 1, + sym_identifier, + STATE(1519), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1313), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2922), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47296] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4527), 1, + sym_identifier, + STATE(1519), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 6, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2922), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [47369] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4487), 1, + anon_sym_DOT, + ACTIONS(4493), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47420] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1903), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1901), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47461] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1911), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1909), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47502] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1915), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1913), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47543] = 6, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(4535), 1, + anon_sym_RBRACK, + STATE(2904), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 17, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47590] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1919), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1917), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47631] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3643), 1, + anon_sym_DOT, + ACTIONS(3645), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4499), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47682] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1923), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1921), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47723] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1927), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1925), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47764] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1931), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1929), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47805] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1935), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1933), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47846] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1939), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1937), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47887] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1943), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1941), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47928] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1803), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1801), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [47969] = 6, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(4537), 1, + anon_sym_RBRACK, + STATE(3024), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 17, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48016] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1951), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1949), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48057] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1955), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1953), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48098] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1959), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1957), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48139] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4475), 1, + anon_sym_this, + ACTIONS(4539), 1, + sym_identifier, + STATE(1542), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1339), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2930), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48212] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4475), 1, + anon_sym_this, + ACTIONS(4539), 1, + sym_identifier, + STATE(1542), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1379), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2930), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48285] = 19, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4541), 1, + sym_identifier, + ACTIONS(4544), 1, + anon_sym_this, + STATE(1542), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1386), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2930), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48358] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4475), 1, + anon_sym_this, + ACTIONS(4539), 1, + sym_identifier, + STATE(1542), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1313), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2930), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48431] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4475), 1, + anon_sym_this, + ACTIONS(4539), 1, + sym_identifier, + STATE(1542), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, + sym_member_expression, + STATE(2062), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 6, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2930), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [48504] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1969), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1967), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48545] = 6, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(4547), 1, + anon_sym_RBRACK, + STATE(3077), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 17, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48592] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1371), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48633] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1457), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1455), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48674] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1977), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1975), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48715] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1981), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1979), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48756] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1985), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1983), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48797] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1771), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1769), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48838] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3737), 1, + anon_sym_DOT, + ACTIONS(3739), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4489), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48889] = 6, + ACTIONS(4449), 1, + anon_sym_EQ_GT, + ACTIONS(4549), 1, + anon_sym_DOT, + ACTIONS(4551), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 19, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [48936] = 6, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4505), 1, + anon_sym_LBRACK, + STATE(2531), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1371), 17, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [48983] = 6, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(2161), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49030] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1807), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1805), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49071] = 6, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1371), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [49118] = 6, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4491), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49165] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1811), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1809), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49206] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1775), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1773), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49247] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4501), 1, + anon_sym_DOT, + ACTIONS(4507), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49298] = 6, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4505), 1, + anon_sym_LBRACK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49345] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1831), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1829), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49386] = 23, + ACTIONS(1343), 1, + anon_sym_EQ_GT, + ACTIONS(1345), 1, + anon_sym_in, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, + anon_sym_null, + ACTIONS(2031), 1, + aux_sym_integer_token1, + ACTIONS(2033), 1, + aux_sym_integer_token2, + ACTIONS(2035), 1, + aux_sym_float_token1, + ACTIONS(2037), 1, + aux_sym_float_token2, + ACTIONS(2041), 1, + aux_sym_string_token1, + ACTIONS(2043), 1, + aux_sym_string_token3, + ACTIONS(4553), 1, + sym_identifier, + STATE(1587), 1, + sym_member_expression, + STATE(1609), 1, + sym_string, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2822), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2039), 2, + anon_sym_true, + anon_sym_false, + STATE(1776), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1843), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49467] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3969), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(3265), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49546] = 23, + ACTIONS(1371), 1, + anon_sym_EQ_GT, + ACTIONS(1375), 1, + anon_sym_in, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, + anon_sym_null, + ACTIONS(2031), 1, + aux_sym_integer_token1, + ACTIONS(2033), 1, + aux_sym_integer_token2, + ACTIONS(2035), 1, + aux_sym_float_token1, + ACTIONS(2037), 1, + aux_sym_float_token2, + ACTIONS(2041), 1, + aux_sym_string_token1, + ACTIONS(2043), 1, + aux_sym_string_token3, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, + anon_sym_this, + ACTIONS(4555), 1, + sym_identifier, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2522), 1, + sym_string, + STATE(2822), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2039), 2, + anon_sym_true, + anon_sym_false, + STATE(1798), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2664), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [49627] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1345), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1343), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49668] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1835), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1833), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49709] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1847), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1845), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49750] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1779), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1777), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49791] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3729), 1, + anon_sym_DOT, + ACTIONS(3731), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4503), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49842] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1863), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1861), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49883] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1867), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1865), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49924] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1871), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1869), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [49965] = 6, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 18, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50012] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1879), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1877), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50053] = 6, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(4557), 1, + anon_sym_RBRACK, + STATE(2899), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 17, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50100] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1973), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1971), 20, + sym__lookback_semicolon, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50141] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4175), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3633), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50219] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3999), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3386), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50297] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4231), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3470), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50375] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1851), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1849), 19, + anon_sym_STAR, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50415] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4241), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3539), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50493] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4245), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3578), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50571] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3354), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50649] = 5, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50693] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4011), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3531), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50771] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4257), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3353), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50849] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1883), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1881), 19, + anon_sym_STAR, + anon_sym_in, + anon_sym_COLON, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [50889] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4271), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3653), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [50967] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4013), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3615), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51045] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4043), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3544), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51123] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1343), 1, + anon_sym_RBRACE, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, + anon_sym_this, + ACTIONS(4561), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1630), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1796), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51201] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1883), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1881), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [51241] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3451), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3461), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51319] = 5, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 11, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [51363] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1600), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1339), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2911), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51435] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1600), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1379), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2911), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51507] = 19, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4567), 1, + sym_identifier, + ACTIONS(4570), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1600), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1386), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2911), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51579] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1600), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1313), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2911), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51651] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4563), 1, + sym_identifier, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, + sym_member_expression, + STATE(1600), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ, + STATE(2911), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51723] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4019), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3634), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51801] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4031), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3569), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51879] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + ACTIONS(4573), 1, + anon_sym_while, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3460), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [51957] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4039), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3536), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52035] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4045), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3358), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52113] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52191] = 4, + ACTIONS(4503), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [52233] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4497), 1, + anon_sym_this, + ACTIONS(4577), 1, + sym_identifier, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1339), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2925), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52305] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3759), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3357), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52383] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3189), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3366), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52461] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4183), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3410), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52539] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4497), 1, + anon_sym_this, + ACTIONS(4577), 1, + sym_identifier, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1379), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2925), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52611] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4061), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3554), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52689] = 19, + ACTIONS(1390), 1, + anon_sym_LBRACE, + ACTIONS(1393), 1, + anon_sym_LBRACK, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(1402), 1, + aux_sym_integer_token1, + ACTIONS(1405), 1, + aux_sym_integer_token2, + ACTIONS(1408), 1, + aux_sym_float_token1, + ACTIONS(1411), 1, + aux_sym_float_token2, + ACTIONS(1417), 1, + aux_sym_string_token1, + ACTIONS(1420), 1, + aux_sym_string_token3, + ACTIONS(4579), 1, + sym_identifier, + ACTIONS(4582), 1, + anon_sym_this, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1414), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1386), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2925), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52761] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4497), 1, + anon_sym_this, + ACTIONS(4577), 1, + sym_identifier, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1313), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2925), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52833] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4497), 1, + anon_sym_this, + ACTIONS(4577), 1, + sym_identifier, + STATE(1616), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 5, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_EQ_GT, + STATE(2925), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52905] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4037), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3409), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [52983] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, + anon_sym_this, + ACTIONS(3486), 1, + sym_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(933), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(947), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53061] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3461), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3405), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53139] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4041), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3579), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53217] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4575), 1, + anon_sym_LPAREN, + ACTIONS(4585), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2495), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2583), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53295] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3449), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3387), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53373] = 4, + ACTIONS(4449), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [53415] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3779), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3538), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53493] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2631), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3547), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53571] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4111), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3560), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [53649] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4079), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3039), 1, - anon_sym_class, - ACTIONS(3041), 1, - anon_sym_interface, - STATE(797), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(826), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3341), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -88502,59 +137102,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24210] = 20, - ACTIONS(362), 1, + [53727] = 4, + ACTIONS(4499), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 18, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [53769] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4047), 1, + anon_sym_RBRACE, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3043), 1, - anon_sym_class, - ACTIONS(3045), 1, - anon_sym_interface, - STATE(797), 1, + ACTIONS(4585), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(867), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2495), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3658), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2583), 9, sym__literal, sym_integer, sym_float, @@ -88564,59 +137196,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24292] = 20, - ACTIONS(362), 1, + [53847] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4055), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3047), 1, - anon_sym_class, - ACTIONS(3049), 1, - anon_sym_interface, - STATE(797), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(867), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3347), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -88626,57 +137252,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24374] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [53925] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4021), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3051), 1, - anon_sym_class, - STATE(797), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(861), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3585), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -88686,57 +137308,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24453] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [54003] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4009), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3053), 1, - anon_sym_class, - STATE(797), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(822), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3628), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -88746,57 +137364,165 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24532] = 19, - ACTIONS(362), 1, + [54081] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3835), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(2489), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3362), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54159] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3442), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3055), 1, - anon_sym_class, - STATE(797), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(861), 1, + STATE(2530), 1, + sym_string, + STATE(2661), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3415), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54237] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4119), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -88806,39 +137532,69 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24611] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1594), 1, + [54315] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1612), 1, - anon_sym_DOT, - ACTIONS(1614), 1, - anon_sym_QMARK, - ACTIONS(3059), 1, - anon_sym_in, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, + anon_sym_this, + ACTIONS(3559), 1, + sym_identifier, + ACTIONS(4587), 1, + anon_sym_LPAREN, + STATE(1597), 1, + sym_member_expression, + STATE(1716), 1, + sym_string, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1949), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1934), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54393] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1827), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -88846,18 +137602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, + ACTIONS(1825), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -88867,44 +137622,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [24671] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [54433] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2665), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(2489), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3425), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54511] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4135), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(797), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(820), 1, + STATE(2530), 1, + sym_string, + STATE(2661), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3514), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54589] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3793), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(3346), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -88914,70 +137793,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24747] = 20, - ACTIONS(362), 1, + [54667] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4187), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(3063), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3431), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [54745] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4109), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(476), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(474), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(2439), 9, + STATE(3571), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -88987,57 +137905,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24827] = 20, - ACTIONS(485), 1, + [54823] = 22, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3065), 1, - sym_identifier, - ACTIONS(3068), 1, + ACTIONS(1502), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(1514), 1, + sym_identifier, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(351), 1, sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(408), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(483), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(509), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(2439), 9, + STATE(367), 2, + sym__rhs_expression, + sym_call_expression, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -89047,42 +137961,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [24907] = 18, - ACTIONS(362), 1, + [54901] = 22, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, + anon_sym_new, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, + ACTIONS(4591), 1, + anon_sym_LPAREN, + STATE(1478), 1, + sym_string, + STATE(1490), 1, sym_member_expression, - STATE(822), 1, + STATE(1510), 1, + sym__call, + STATE(1535), 1, + sym__constructor_call, + STATE(2752), 1, sym__lhs_expression, - STATE(1926), 1, - sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(1557), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -89092,70 +138017,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [24983] = 20, - ACTIONS(362), 1, + [54979] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4341), 1, + sym_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(520), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(518), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(2439), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2309), 9, sym__literal, sym_integer, sym_float, @@ -89165,60 +138073,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25063] = 23, - ACTIONS(430), 1, + [55057] = 22, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3071), 1, + ACTIONS(4495), 1, sym_identifier, - ACTIONS(3073), 1, + ACTIONS(4497), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(363), 1, sym__call, - STATE(1910), 1, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(1922), 1, + STATE(2297), 1, sym_string, - STATE(2181), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(544), 2, - anon_sym_case, - anon_sym_default, - STATE(282), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 5, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(1937), 9, + STATE(2502), 9, sym__literal, sym_integer, sym_float, @@ -89228,42 +138129,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25149] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [55135] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2487), 1, + ACTIONS(1343), 1, + sym__lookback_semicolon, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, + STATE(1597), 1, sym_member_expression, - STATE(821), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(1716), 1, sym_string, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(1853), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1989), 9, sym__literal, sym_integer, sym_float, @@ -89273,55 +138185,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [25225] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [55213] = 22, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, anon_sym_this, - STATE(797), 1, + ACTIONS(4555), 1, + sym_identifier, + ACTIONS(4595), 1, + anon_sym_LPAREN, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(861), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2522), 1, sym_string, + STATE(2822), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(2373), 9, + STATE(2046), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2664), 9, sym__literal, sym_integer, sym_float, @@ -89331,70 +138241,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - ACTIONS(3037), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [25301] = 20, - ACTIONS(362), 1, + [55291] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(3557), 1, + sym_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(1630), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(470), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(466), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(2439), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -89404,107 +138297,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25381] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, - ACTIONS(1594), 1, - anon_sym_LBRACK, - ACTIONS(3059), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 20, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [25441] = 20, - ACTIONS(362), 1, + [55369] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4467), 1, + sym_identifier, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1046), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2495), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(524), 2, - anon_sym_extends, - anon_sym_implements, - ACTIONS(522), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - STATE(2439), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2802), 9, sym__literal, sym_integer, sym_float, @@ -89514,60 +138353,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25521] = 24, - ACTIONS(358), 1, - anon_sym_RPAREN, - ACTIONS(362), 1, + [55447] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3075), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, sym_identifier, - ACTIONS(3077), 1, + ACTIONS(4475), 1, + anon_sym_this, + ACTIONS(4575), 1, anon_sym_LPAREN, - STATE(902), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2607), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2135), 1, - sym_type, - STATE(2724), 1, - sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2714), 9, sym__literal, sym_integer, sym_float, @@ -89577,60 +138409,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25608] = 24, - ACTIONS(3079), 1, - sym_identifier, - ACTIONS(3082), 1, - anon_sym_LPAREN, - ACTIONS(3085), 1, - anon_sym_RPAREN, - ACTIONS(3087), 1, + [55525] = 22, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(3090), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(3093), 1, - anon_sym_this, - ACTIONS(3099), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(3102), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(3105), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(3108), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(3111), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(3117), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(3120), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - STATE(902), 1, + ACTIONS(2117), 1, + anon_sym_this, + ACTIONS(3553), 1, + sym_identifier, + ACTIONS(4595), 1, + anon_sym_LPAREN, + STATE(1587), 1, sym_member_expression, - STATE(1926), 1, + STATE(1609), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2822), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2095), 1, - sym_type, - STATE(2829), 1, - sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3114), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(3096), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(2046), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -89640,256 +138465,109 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [25695] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1606), 1, - anon_sym_QMARK, - ACTIONS(3125), 1, - anon_sym_in, - ACTIONS(3127), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3123), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - sym_identifier, - ACTIONS(1502), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [25754] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(3125), 1, - anon_sym_in, - ACTIONS(3127), 1, + [55603] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3123), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, + anon_sym_this, + ACTIONS(3555), 1, sym_identifier, - ACTIONS(1502), 18, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [25813] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1606), 1, - anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [25872] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(2499), 1, - anon_sym_DOT, - ACTIONS(2501), 1, - anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1506), 4, + ACTIONS(4575), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 16, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [25931] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1925), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1976), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [55681] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4025), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3075), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3133), 1, - anon_sym_RPAREN, - STATE(902), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2095), 1, - sym_type, - STATE(2688), 1, - sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3479), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -89899,158 +138577,93 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26018] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3135), 1, + [55759] = 6, + ACTIONS(4597), 1, anon_sym_DOT, - ACTIONS(3139), 1, - anon_sym_in, - ACTIONS(3141), 1, - anon_sym_LBRACK, - ACTIONS(3143), 1, + ACTIONS(4599), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3137), 2, + ACTIONS(1757), 2, anon_sym_COLON, anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, + ACTIONS(1755), 13, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, anon_sym_EQ, - ACTIONS(1502), 19, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26077] = 10, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1594), 1, - anon_sym_LBRACK, - ACTIONS(2533), 1, - anon_sym_DOT, - ACTIONS(2535), 1, - anon_sym_QMARK, - ACTIONS(3059), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1506), 4, - sym__closing_brace_marker, + anon_sym_null, + anon_sym_extends, + anon_sym_implements, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 14, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DASH_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 16, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26136] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [55805] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3995), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3075), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3085), 1, - anon_sym_RPAREN, - STATE(902), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2095), 1, - sym_type, - STATE(2829), 1, - sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3370), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90060,60 +138673,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26223] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [55883] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(398), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3075), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(3077), 1, + ACTIONS(4587), 1, anon_sym_LPAREN, - STATE(902), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2151), 1, - sym_type, - STATE(2740), 1, - sym__function_type_args, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(1949), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90123,58 +138729,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26310] = 22, - ACTIONS(362), 1, + [55961] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(4485), 1, + sym_identifier, + ACTIONS(4601), 1, + anon_sym_while, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(3437), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(1980), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -90184,26 +138785,73 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26393] = 10, - ACTIONS(1468), 1, + [56039] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_in, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4127), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3682), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56117] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + STATE(2531), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90211,17 +138859,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1636), 17, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -90231,57 +138878,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26452] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56161] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3073), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2675), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3149), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(524), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(522), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2405), 9, + STATE(3360), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90291,79 +138936,54 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26530] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, - sym_identifier, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [56239] = 5, + ACTIONS(4607), 1, + anon_sym_LT, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(466), 9, - anon_sym_DOT, - anon_sym_LPAREN, + ACTIONS(4605), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4603), 20, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_GT, - STATE(2391), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [26606] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [56283] = 5, + ACTIONS(4607), 1, anon_sym_LT, - ACTIONS(1612), 1, - anon_sym_DOT, - ACTIONS(1614), 1, - anon_sym_QMARK, + STATE(1677), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(4611), 9, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90373,16 +138993,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, + ACTIONS(4609), 20, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -90392,24 +139011,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26660] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1586), 1, - anon_sym_DOT, - ACTIONS(1588), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + [56327] = 22, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4017), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3057), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3509), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [56405] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4615), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -90417,18 +139082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, + ACTIONS(4613), 21, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -90438,60 +139104,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [26714] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [56445] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4147), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(866), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3329), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90501,58 +139163,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26798] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56523] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4151), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(825), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1072), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3521), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90562,58 +139219,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26882] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56601] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3444), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(825), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3343), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90623,58 +139275,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [26966] = 23, - ACTIONS(362), 1, + [56679] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4617), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(4619), 1, + anon_sym__, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(824), 1, - sym_type, - STATE(877), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2607), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3623), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2711), 9, sym__literal, sym_integer, sym_float, @@ -90684,58 +139331,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27050] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56757] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4225), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(880), 1, - sym_type, - STATE(1074), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3649), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90745,58 +139387,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27134] = 23, - ACTIONS(374), 1, + [56835] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4167), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2164), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2544), 1, - sym_type, - STATE(2737), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3564), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90806,58 +139443,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27218] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56913] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4057), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(874), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3505), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90867,58 +139499,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27302] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [56991] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4005), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(829), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3434), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90928,58 +139555,127 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27386] = 23, - ACTIONS(362), 1, + [57069] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4625), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4623), 21, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [57109] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4629), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4627), 21, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [57149] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4169), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(851), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3383), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -90989,58 +139685,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27470] = 23, - ACTIONS(374), 1, + [57227] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4633), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4631), 21, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [57267] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(2637), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2118), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2451), 1, - sym_type, - STATE(2794), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3530), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91050,58 +139778,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27554] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57345] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2643), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(830), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1078), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3570), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91111,58 +139834,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27638] = 23, - ACTIONS(374), 1, + [57423] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1508), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1512), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1926), 1, + STATE(400), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2109), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2500), 1, - sym_type, - STATE(2810), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -91172,58 +139890,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27722] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57501] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4049), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(864), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1080), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3587), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91233,58 +139946,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27806] = 23, - ACTIONS(362), 1, + [57579] = 22, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(4589), 1, anon_sym_LPAREN, - STATE(864), 1, - sym_type, - STATE(877), 1, + STATE(351), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(408), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(367), 2, + sym__rhs_expression, + sym_call_expression, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -91294,58 +140002,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27890] = 23, - ACTIONS(374), 1, + [57657] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4483), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2084), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2468), 1, - sym_type, - STATE(2868), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2395), 9, sym__literal, sym_integer, sym_float, @@ -91355,58 +140058,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [27974] = 23, - ACTIONS(362), 1, + [57735] = 22, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(4349), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(4589), 1, anon_sym_LPAREN, - STATE(849), 1, - sym_type, - STATE(877), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(1085), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2297), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(367), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -91416,58 +140114,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28058] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57813] = 22, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(4339), 1, anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(4455), 1, + sym_identifier, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4595), 1, anon_sym_LPAREN, - STATE(846), 1, - sym_type, - STATE(877), 1, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1079), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2522), 1, sym_string, + STATE(2822), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(2046), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2699), 9, sym__literal, sym_integer, sym_float, @@ -91477,58 +140170,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28142] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57891] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4065), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(846), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3534), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91538,58 +140226,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28226] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [57969] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4171), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(836), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1110), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3620), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91599,58 +140282,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28310] = 23, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [58047] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1827), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1825), 19, + anon_sym_STAR, + anon_sym_in, + anon_sym_COLON, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [58087] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(566), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4173), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3167), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + STATE(1928), 1, sym__call, - STATE(1175), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2181), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(526), 2, - anon_sym_case, - anon_sym_default, - STATE(281), 2, + STATE(3336), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(528), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(1214), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91660,58 +140375,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28394] = 23, - ACTIONS(374), 1, + [58165] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4181), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2058), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2519), 1, - sym_type, - STATE(2863), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3403), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91721,58 +140431,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28478] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [58243] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4189), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(858), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3435), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -91782,58 +140487,127 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28562] = 23, - ACTIONS(362), 1, + [58321] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4637), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4635), 21, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [58361] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4641), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4639), 21, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DASH_GT, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [58401] = 22, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(3474), 1, + sym_identifier, + ACTIONS(4575), 1, anon_sym_LPAREN, - STATE(874), 1, - sym_type, - STATE(877), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1075), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(933), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -91843,55 +140617,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28646] = 20, - ACTIONS(362), 1, + [58479] = 22, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, + ACTIONS(3541), 1, sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(351), 1, sym_member_expression, - STATE(1926), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(1378), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(520), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(518), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2405), 9, + STATE(367), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1400), 9, sym__literal, sym_integer, sym_float, @@ -91901,57 +140673,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28724] = 22, - ACTIONS(736), 1, + [58557] = 22, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(4439), 1, sym_identifier, - STATE(1265), 1, + ACTIONS(4589), 1, + anon_sym_LPAREN, + STATE(363), 1, sym__call, - STATE(1266), 1, + STATE(364), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2294), 1, sym_member_expression, - STATE(1932), 1, + STATE(2297), 1, sym_string, - STATE(2082), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, + STATE(367), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 5, - anon_sym_DOT, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(1992), 9, + STATE(2319), 9, sym__literal, sym_integer, sym_float, @@ -91961,58 +140729,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28806] = 23, - ACTIONS(374), 1, + [58635] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3171), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - STATE(902), 1, + ACTIONS(3979), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1949), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2005), 1, - sym_type, - STATE(2028), 1, - sym_function_type, - STATE(2208), 1, - sym_structure_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3520), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92022,55 +140785,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28890] = 20, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + [58713] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3173), 1, - sym_identifier, - ACTIONS(3176), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3463), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(483), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(509), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2405), 9, + STATE(3616), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92080,58 +140841,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [28968] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [58791] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4097), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(828), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3459), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92141,55 +140897,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29052] = 20, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [58869] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3073), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4197), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3149), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(476), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(474), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2405), 9, + STATE(3499), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92199,58 +140953,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29130] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [58947] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4199), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(833), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1089), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3504), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92260,55 +141009,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29214] = 20, - ACTIONS(362), 1, + [59025] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3073), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3149), 1, + ACTIONS(3539), 1, sym_identifier, - STATE(1098), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(4575), 1, + anon_sym_LPAREN, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1926), 1, + STATE(1375), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(470), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(466), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2405), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -92318,54 +141065,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29292] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [59103] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4035), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3151), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2391), 9, + STATE(3545), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92375,58 +141121,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29368] = 23, - ACTIONS(374), 1, + [59181] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4201), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2285), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2578), 1, - sym_type, - STATE(2636), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3524), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92436,58 +141177,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29452] = 23, - ACTIONS(362), 1, + [59259] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1377), 1, anon_sym_this, - ACTIONS(3153), 1, + ACTIONS(4575), 1, anon_sym_LPAREN, - STATE(859), 1, - sym_type, - STATE(877), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1093), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(400), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(188), 2, + sym__rhs_expression, + sym_call_expression, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -92497,58 +141233,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29536] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [59337] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4203), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(859), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3528), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92558,54 +141289,135 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29620] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [59415] = 8, + ACTIONS(1753), 1, + anon_sym_LPAREN, + ACTIONS(1755), 1, + anon_sym_LT, + ACTIONS(4517), 1, + anon_sym_DOT, + ACTIONS(4521), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4519), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1787), 9, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 16, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [59465] = 6, + ACTIONS(4353), 1, + anon_sym_EQ_GT, + ACTIONS(4643), 1, + anon_sym_DOT, + ACTIONS(4645), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 18, + sym__closing_brace_marker, + anon_sym_STAR, + anon_sym_COMMA, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [59511] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, sym_identifier, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(4461), 1, + anon_sym_this, + ACTIONS(4587), 1, + anon_sym_LPAREN, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2391), 9, + STATE(1949), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2690), 9, sym__literal, sym_integer, sym_float, @@ -92615,54 +141427,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29696] = 19, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + [59589] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3179), 1, - sym_identifier, - ACTIONS(3182), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4205), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2391), 9, + STATE(3603), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92672,54 +141483,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29772] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [59667] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4131), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3151), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1108), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 9, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2391), 9, + STATE(3518), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92729,58 +141539,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29848] = 23, - ACTIONS(362), 1, + [59745] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4067), 1, + anon_sym_RPAREN, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(842), 1, - sym_type, - STATE(877), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3523), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -92790,58 +141595,130 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [29932] = 23, - ACTIONS(374), 1, + [59823] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + [59867] = 4, + ACTIONS(4489), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1638), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1636), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [59909] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3171), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - STATE(902), 1, + ACTIONS(4215), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1945), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2031), 1, - sym_type, - STATE(2186), 1, - sym_structure_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3677), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92851,58 +141728,90 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30016] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [59987] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1851), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1849), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [60027] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3993), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(842), 1, - sym_type, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1099), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3364), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92912,58 +141821,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30100] = 23, - ACTIONS(374), 1, + [60105] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4157), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2079), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2475), 1, - sym_type, - STATE(2850), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3498), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -92973,58 +141877,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30184] = 23, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60183] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4143), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3153), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(879), 1, - sym_type, - STATE(1106), 1, - aux_sym_variable_declaration_repeat1, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3426), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93034,58 +141933,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30268] = 23, - ACTIONS(374), 1, + [60261] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3161), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(3691), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2147), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2531), 1, - sym_type, - STATE(2767), 1, - sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3680), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93095,56 +141989,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30352] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60339] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3671), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3185), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1615), 1, - sym_type, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3492), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93154,56 +142045,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30433] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60417] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4315), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2378), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3565), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93213,101 +142101,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30514] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [30567] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60495] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3273), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2102), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3393), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93317,56 +142157,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30648] = 22, - ACTIONS(362), 1, + [60573] = 22, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(3789), 1, + anon_sym_RBRACK, + ACTIONS(4329), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2105), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3562), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -93376,56 +142213,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30729] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60651] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3345), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2050), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3446), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93435,103 +142269,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30810] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1606), 1, - anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [30867] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60729] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4227), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2590), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3458), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93541,56 +142325,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [30948] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60807] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4253), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2204), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3522), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93600,56 +142381,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31029] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60885] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, - sym_identifier, - ACTIONS(3191), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4219), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(3683), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 4, - anon_sym_DOT, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2205), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93659,56 +142437,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31110] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [60963] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(552), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4259), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3193), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1204), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, + STATE(3529), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(528), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - STATE(1325), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93718,56 +142493,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31191] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61041] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4263), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2230), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3709), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93777,56 +142549,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31272] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61119] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4027), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2037), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3557), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93836,56 +142605,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31353] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61197] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4273), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - ACTIONS(3195), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(902), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2312), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3558), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93895,56 +142661,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31434] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61275] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3455), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2282), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3583), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -93954,56 +142717,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31515] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61353] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4279), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2250), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3593), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94013,100 +142773,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31596] = 7, - ACTIONS(129), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(199), 1, - sym__closing_brace, - STATE(2090), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1628), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [31647] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61431] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3147), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4283), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2007), 1, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(3600), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 4, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2122), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94116,56 +142829,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31728] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61509] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4287), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2034), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3607), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94175,193 +142885,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [31809] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3135), 1, - anon_sym_DOT, - ACTIONS(3143), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [31862] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(3131), 1, - anon_sym_in, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_RBRACE, - ACTIONS(3187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 16, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [31919] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1606), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3129), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [31972] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61587] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4291), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3185), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1579), 1, - sym_type, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3640), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94371,56 +142941,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32053] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61665] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4221), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2190), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3698), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94430,56 +142997,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32134] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61743] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4297), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2189), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3647), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94489,103 +143053,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32215] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3201), 1, - anon_sym_DOT, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3209), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3203), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [32272] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61821] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4303), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2072), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3654), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94595,56 +143109,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32353] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61899] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4311), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3185), 1, - anon_sym_LPAREN, - STATE(877), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1404), 1, - sym_function_type, - STATE(1407), 1, - sym_builtin_type, - STATE(1408), 1, - sym__lhs_expression, - STATE(1652), 1, - sym_type, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3155), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2366), 9, + STATE(3490), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94654,56 +143165,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32434] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [61977] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4163), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2184), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3424), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94713,56 +143221,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32515] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62055] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4317), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2490), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3567), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94772,56 +143277,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32596] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62133] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3431), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2183), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3414), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94831,148 +143333,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32677] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_DOT, - ACTIONS(2559), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3137), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [32734] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3123), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [32787] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62211] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(3977), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2112), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3681), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -94982,56 +143389,53 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32868] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62289] = 22, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4161), 1, + sym__lookback_semicolon, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2115), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3419), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -95041,56 +143445,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [32949] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62367] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1835), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1833), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [62406] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1843), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2018), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2024), 1, - sym_builtin_type, - STATE(2322), 1, - sym_type, - STATE(2367), 1, - sym_function_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(446), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2406), 9, + STATE(3681), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -95100,56 +143535,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33030] = 22, - ACTIONS(362), 1, + [62481] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1811), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1809), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [62520] = 21, + ACTIONS(2571), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2583), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, + anon_sym_new, + ACTIONS(2589), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2595), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2597), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2601), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2603), 1, aux_sym_string_token3, - ACTIONS(3211), 1, + ACTIONS(3551), 1, sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, + STATE(1478), 1, sym_string, - STATE(2018), 1, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, + sym__call, + STATE(1535), 1, + sym__constructor_call, + STATE(2752), 1, sym__lhs_expression, - STATE(2024), 1, - sym_builtin_type, - STATE(2329), 1, - sym_type, - STATE(2367), 1, - sym_function_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2599), 2, anon_sym_true, anon_sym_false, - ACTIONS(446), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2406), 9, + STATE(1548), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1554), 9, sym__literal, sym_integer, sym_float, @@ -95159,56 +143625,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33111] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62595] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1843), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2018), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2024), 1, - sym_builtin_type, - STATE(2330), 1, - sym_type, - STATE(2367), 1, - sym_function_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(446), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2406), 9, + STATE(3505), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -95218,56 +143679,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33192] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [62670] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2142), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3509), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -95277,56 +143733,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33273] = 22, - ACTIONS(362), 1, + [62745] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2143), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3010), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -95336,115 +143787,411 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33354] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, - sym__lhs_expression, - STATE(2162), 1, - sym_type, + [62820] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1831), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1829), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [62859] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1345), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1343), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [62898] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1911), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1909), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [62937] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1915), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1913), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [62976] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1847), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1845), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63015] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1855), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1853), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63054] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1919), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1917), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63093] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1863), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1861), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63132] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1867), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1865), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63171] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33435] = 22, - ACTIONS(362), 1, + ACTIONS(1871), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1869), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63210] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, + STATE(3258), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_EQ_GT, - STATE(1961), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -95454,174 +144201,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33516] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + [63285] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(1339), 1, + sym_escape_sequence, + ACTIONS(4647), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, - sym__lhs_expression, - STATE(2160), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33597] = 22, - ACTIONS(362), 1, + ACTIONS(4649), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4659), 1, + sym_comment, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, - sym__lhs_expression, - STATE(2185), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33678] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 2, aux_sym_integer_token1, - ACTIONS(386), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 2, aux_sym_float_token1, - ACTIONS(390), 1, aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, - sym__lhs_expression, - STATE(2188), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + ACTIONS(1341), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -95631,76 +144253,47 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33759] = 22, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(77), 1, - aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, - aux_sym_float_token1, - ACTIONS(83), 1, - aux_sym_float_token2, - ACTIONS(87), 1, - aux_sym_string_token1, - ACTIONS(89), 1, - aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, - anon_sym_this, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [63356] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(1544), 2, - sym__rhs_expression, - sym_call_expression, - ACTIONS(542), 4, - sym__lookback_semicolon, + ACTIONS(1811), 12, anon_sym_DOT, anon_sym_QMARK, - anon_sym_EQ_GT, - STATE(2163), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [33840] = 6, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(3141), 1, - anon_sym_LBRACK, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1809), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63395] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1923), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -95710,17 +144303,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, + ACTIONS(1921), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63434] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1879), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1877), 18, anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -95732,57 +144360,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [33889] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [63473] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(4461), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2272), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(1845), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2690), 9, sym__literal, sym_integer, sym_float, @@ -95792,56 +144415,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [33970] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [63548] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2153), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3520), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -95851,56 +144469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34051] = 22, - ACTIONS(362), 1, + [63623] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4341), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2266), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2309), 9, sym__literal, sym_integer, sym_float, @@ -95910,56 +144523,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34132] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [63698] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1375), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1371), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63737] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2344), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3628), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -95969,56 +144613,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34213] = 22, - ACTIONS(362), 1, + [63812] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1469), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1471), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [63851] = 21, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2025), 1, + anon_sym_this, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(4553), 1, sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + STATE(1587), 1, sym_member_expression, - STATE(1926), 1, + STATE(1609), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2822), 1, sym__lhs_expression, - STATE(2350), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(1776), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1843), 9, sym__literal, sym_integer, sym_float, @@ -96028,56 +144703,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34294] = 22, - ACTIONS(362), 1, + [63926] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2251), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3523), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -96087,56 +144757,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34375] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [64001] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1895), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1893), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [64040] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2249), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3364), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -96146,115 +144847,121 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34456] = 22, - ACTIONS(362), 1, + [64115] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1899), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1897), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [64154] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1903), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1901), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [64193] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1379), 1, + sym_escape_sequence, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4659), 1, + sym_comment, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, - sym__lhs_expression, - STATE(2352), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [34537] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 2, aux_sym_integer_token1, - ACTIONS(386), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 2, aux_sym_float_token1, - ACTIONS(390), 1, aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, - sym__lhs_expression, - STATE(2198), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + ACTIONS(1381), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -96264,56 +144971,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34618] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [64264] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1907), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1905), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [64303] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3159), 1, - anon_sym_LPAREN, - ACTIONS(3163), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1404), 1, - sym_function_type, - STATE(1864), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2011), 1, - sym_builtin_type, - STATE(2012), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2193), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(3165), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2351), 9, + STATE(3386), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -96323,62 +145061,47 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [34699] = 6, - ACTIONS(3225), 1, - anon_sym_DOT, - ACTIONS(3227), 1, - anon_sym_QMARK, + [64378] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1524), 2, - anon_sym_COLON, + ACTIONS(1911), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1909), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_EQ_GT, - ACTIONS(1506), 8, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_AT_COLON, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1508), 22, - anon_sym_this, - anon_sym_AT, - anon_sym_null, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [34748] = 7, - ACTIONS(137), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(1585), 1, - sym__closing_brace, - STATE(2085), 1, - aux_sym_map_repeat1, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [64417] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1915), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -96391,13 +145114,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, - sym__lookback_semicolon, + ACTIONS(1913), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -96409,14 +145132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [34799] = 4, - ACTIONS(3057), 1, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + [64456] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1919), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -96429,16 +145150,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 21, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, + ACTIONS(1917), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -96450,23 +145168,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [34844] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1606), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + [64495] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3123), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1923), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96474,16 +145183,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1921), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -96493,20 +145202,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [34897] = 6, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3127), 1, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + [64534] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1927), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -96516,16 +145219,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1925), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -96537,117 +145240,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [64573] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1386), 1, + sym_escape_sequence, + ACTIONS(1399), 1, + anon_sym_null, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4661), 1, sym_identifier, - [34946] = 22, - ACTIONS(362), 1, + ACTIONS(4664), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4667), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(4670), 1, + anon_sym_this, + ACTIONS(4673), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(4676), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, - sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2121), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35027] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 2, aux_sym_integer_token1, - ACTIONS(386), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 2, aux_sym_float_token1, - ACTIONS(390), 1, aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, - sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2533), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + ACTIONS(1388), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -96657,56 +145293,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35108] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [64644] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2601), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(3531), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -96716,103 +145347,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35189] = 10, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(2557), 1, - anon_sym_DOT, - ACTIONS(2559), 1, - anon_sym_QMARK, - ACTIONS(3205), 1, - anon_sym_in, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, + [64719] = 19, + ACTIONS(3), 1, sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3203), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [35246] = 22, - ACTIONS(362), 1, + ACTIONS(1313), 1, + sym_escape_sequence, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3213), 1, - anon_sym_LPAREN, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1843), 1, + ACTIONS(4659), 1, + sym_comment, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2018), 1, - sym__lhs_expression, - STATE(2024), 1, - sym_builtin_type, - STATE(2367), 1, - sym_function_type, - STATE(2442), 1, - sym_type, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, + ACTIONS(1325), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1329), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(446), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2406), 9, + ACTIONS(1315), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -96822,56 +145399,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35327] = 22, - ACTIONS(362), 1, + [64790] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1931), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1929), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [64829] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3077), 1, - anon_sym_LPAREN, - STATE(902), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(1931), 1, - sym_builtin_type, - STATE(1942), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2028), 1, - sym_function_type, - STATE(2581), 1, - sym_type, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(378), 5, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - STATE(2439), 9, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -96881,13 +145489,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35408] = 3, + [64904] = 6, + ACTIONS(3661), 1, + anon_sym_DOT, + ACTIONS(3663), 1, + anon_sym_QMARK, + ACTIONS(4499), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1488), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -96898,16 +145510,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1486), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COLON, - anon_sym_COMMA, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -96917,14 +145526,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [35450] = 3, + anon_sym_DOT_DOT_DOT, + [64949] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1410), 12, + ACTIONS(1935), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -96937,16 +145545,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1408), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(1933), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -96958,78 +145563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [35492] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, - sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, - STATE(2429), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2430), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [35576] = 6, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(3233), 1, - anon_sym_RBRACK, - STATE(2422), 1, - aux_sym_map_repeat1, + anon_sym_DOT_DOT_DOT, + [64988] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1457), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97042,12 +145581,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, + ACTIONS(1455), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97059,59 +145599,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [35624] = 24, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + anon_sym_DOT_DOT_DOT, + [65027] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3235), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1265), 1, + STATE(1928), 1, sym__call, - STATE(1266), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2432), 1, sym_member_expression, - STATE(1932), 1, + STATE(2530), 1, sym_string, - STATE(2082), 1, + STATE(2661), 1, sym__lhs_expression, - STATE(2417), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2088), 2, + STATE(3615), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -97121,57 +145654,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35708] = 24, - ACTIONS(362), 1, + [65102] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1926), 1, + STATE(1630), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2346), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2345), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -97181,57 +145708,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35792] = 24, - ACTIONS(362), 1, + [65177] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2703), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4561), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1926), 1, + STATE(1630), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2326), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2325), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(1796), 9, sym__literal, sym_integer, sym_float, @@ -97241,26 +145762,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [35876] = 10, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3131), 1, - anon_sym_in, - ACTIONS(3237), 1, - anon_sym_DOT, - ACTIONS(3241), 1, - anon_sym_QMARK, + [65252] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3239), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1939), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97268,14 +145776,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 16, + ACTIONS(1937), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97285,59 +145795,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [35932] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [65291] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2717), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(224), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, sym__constructor_call, - STATE(226), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3544), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65366] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(4495), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_this, + STATE(363), 1, sym__call, - STATE(1892), 1, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(1926), 1, + STATE(2297), 1, sym_string, - STATE(2179), 1, + STATE(2687), 1, sym__lhs_expression, - STATE(2308), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(2307), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2502), 9, sym__literal, sym_integer, sym_float, @@ -97347,17 +145906,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36016] = 6, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(3243), 1, - anon_sym_RBRACK, - STATE(2301), 1, - aux_sym_map_repeat1, + [65441] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1931), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97370,12 +145923,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, + ACTIONS(1929), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [65480] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1943), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1941), 18, anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97387,59 +145977,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [65519] = 19, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1447), 1, + sym_escape_sequence, + ACTIONS(4647), 1, sym_identifier, - [36064] = 24, - ACTIONS(736), 1, + ACTIONS(4649), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(4651), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, - anon_sym_null, - ACTIONS(756), 1, - aux_sym_integer_token1, - ACTIONS(758), 1, - aux_sym_integer_token2, - ACTIONS(760), 1, - aux_sym_float_token1, - ACTIONS(762), 1, - aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(4653), 1, + anon_sym_this, + ACTIONS(4655), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(4657), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2581), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3245), 1, - sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + ACTIONS(4659), 1, + sym_comment, + STATE(1791), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(1932), 1, + STATE(2296), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, - STATE(2299), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(764), 2, + ACTIONS(1325), 2, + aux_sym_integer_token1, + aux_sym_integer_token2, + ACTIONS(1329), 2, + aux_sym_float_token1, + aux_sym_float_token2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2278), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + ACTIONS(1449), 3, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -97449,57 +146030,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36148] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [65590] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4555), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(2000), 1, sym__call, - STATE(1892), 1, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2522), 1, sym_string, - STATE(2179), 1, + STATE(2822), 1, sym__lhs_expression, - STATE(2437), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(2436), 2, + STATE(1798), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2664), 9, sym__literal, sym_integer, sym_float, @@ -97509,17 +146084,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [36232] = 6, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(3247), 1, - anon_sym_RBRACK, - STATE(2438), 1, - aux_sym_map_repeat1, + [65665] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1947), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97532,12 +146101,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, + ACTIONS(1945), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97549,78 +146119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [36280] = 23, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, - anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, - anon_sym_null, - ACTIONS(452), 1, - aux_sym_integer_token1, - ACTIONS(454), 1, - aux_sym_integer_token2, - ACTIONS(456), 1, - aux_sym_float_token1, - ACTIONS(458), 1, - aux_sym_float_token2, - ACTIONS(462), 1, - aux_sym_string_token1, - ACTIONS(464), 1, - aux_sym_string_token3, - ACTIONS(562), 1, - sym__closing_brace_marker, - ACTIONS(3215), 1, - anon_sym_this, - ACTIONS(3249), 1, - sym_identifier, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, - sym_member_expression, - STATE(1922), 1, - sym_string, - STATE(2181), 1, - sym__lhs_expression, + anon_sym_DOT_DOT_DOT, + [65704] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(564), 2, - anon_sym_case, - anon_sym_default, - STATE(469), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1974), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [36362] = 6, - ACTIONS(2288), 1, + ACTIONS(1951), 12, anon_sym_DOT, - ACTIONS(2290), 1, anon_sym_QMARK, - ACTIONS(3057), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -97631,16 +146137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, + ACTIONS(1949), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97650,75 +146153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [36410] = 24, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2747), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, - sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, - STATE(2368), 1, - aux_sym__arg_list_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2369), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [36494] = 4, - ACTIONS(3127), 1, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + [65743] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 12, + ACTIONS(1955), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97731,14 +146173,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1953), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97750,15 +146191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [36538] = 4, - ACTIONS(3141), 1, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + [65782] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(544), 12, + ACTIONS(1959), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97771,15 +146209,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(542), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + ACTIONS(1957), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97791,12 +146227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [36582] = 3, + anon_sym_DOT_DOT_DOT, + [65821] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1462), 12, + ACTIONS(1969), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97809,15 +146245,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1460), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1967), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97829,75 +146263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [36624] = 24, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, - anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, - anon_sym_null, - ACTIONS(756), 1, - aux_sym_integer_token1, - ACTIONS(758), 1, - aux_sym_integer_token2, - ACTIONS(760), 1, - aux_sym_float_token1, - ACTIONS(762), 1, - aux_sym_float_token2, - ACTIONS(766), 1, - aux_sym_string_token1, - ACTIONS(768), 1, - aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2601), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3251), 1, - sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, - sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, - sym__lhs_expression, - STATE(2428), 1, - aux_sym_array_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(764), 2, - anon_sym_true, - anon_sym_false, - STATE(2075), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [36708] = 4, - ACTIONS(3129), 1, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + [65860] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1935), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97910,15 +146281,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 20, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1933), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97930,12 +146299,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [36752] = 3, + anon_sym_DOT_DOT_DOT, + [65899] = 21, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, + anon_sym_null, + ACTIONS(2031), 1, + aux_sym_integer_token1, + ACTIONS(2033), 1, + aux_sym_integer_token2, + ACTIONS(2035), 1, + aux_sym_float_token1, + ACTIONS(2037), 1, + aux_sym_float_token2, + ACTIONS(2041), 1, + aux_sym_string_token1, + ACTIONS(2043), 1, + aux_sym_string_token3, + ACTIONS(2117), 1, + anon_sym_this, + ACTIONS(3553), 1, + sym_identifier, + STATE(1587), 1, + sym_member_expression, + STATE(1609), 1, + sym_string, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2822), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2039), 2, + anon_sym_true, + anon_sym_false, + STATE(1757), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1948), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [65974] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1410), 12, + ACTIONS(1973), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97948,15 +146371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1408), 21, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1971), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -97968,13 +146389,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [66013] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, sym_identifier, - [36794] = 3, + ACTIONS(4475), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2607), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2714), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66088] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1488), 12, + ACTIONS(1977), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -97987,15 +146461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1486), 21, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1975), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -98007,15 +146479,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [36836] = 4, - ACTIONS(3137), 1, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + [66127] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1981), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -98028,15 +146497,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + ACTIONS(1979), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -98048,14 +146515,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [36880] = 4, - ACTIONS(3123), 1, - anon_sym_COLON, + anon_sym_DOT_DOT_DOT, + [66166] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3634), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66241] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1985), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -98068,14 +146587,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1983), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -98087,57 +146605,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [36924] = 22, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + anon_sym_DOT_DOT_DOT, + [66280] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(1910), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1922), 1, + STATE(2530), 1, sym_string, - STATE(2181), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, + STATE(3569), 2, sym__rhs_expression, sym_call_expression, - ACTIONS(542), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_EQ_GT, - STATE(2010), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -98147,15 +146660,65 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37004] = 5, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, + [66355] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, + anon_sym_this, + ACTIONS(3559), 1, + sym_identifier, + STATE(1597), 1, + sym_member_expression, + STATE(1716), 1, + sym_string, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1845), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1934), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66430] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1375), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -98165,16 +146728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1371), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -98186,55 +146749,212 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [66469] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3536), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66544] = 21, + ACTIONS(2571), 1, + anon_sym_LBRACE, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, + anon_sym_new, + ACTIONS(2589), 1, + anon_sym_null, + ACTIONS(2591), 1, + aux_sym_integer_token1, + ACTIONS(2593), 1, + aux_sym_integer_token2, + ACTIONS(2595), 1, + aux_sym_float_token1, + ACTIONS(2597), 1, + aux_sym_float_token2, + ACTIONS(2601), 1, + aux_sym_string_token1, + ACTIONS(2603), 1, + aux_sym_string_token3, + ACTIONS(3551), 1, + sym_identifier, + STATE(1478), 1, + sym_string, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, + sym__call, + STATE(1535), 1, + sym__constructor_call, + STATE(2752), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2599), 2, + anon_sym_true, + anon_sym_false, + STATE(1511), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1554), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66619] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [37050] = 20, - ACTIONS(362), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3358), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66694] = 19, + ACTIONS(1390), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(3211), 1, + ACTIONS(4679), 1, sym_identifier, - ACTIONS(3215), 1, + ACTIONS(4682), 1, anon_sym_this, - STATE(1223), 1, + STATE(1828), 1, aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(2265), 1, sym_member_expression, - STATE(1926), 1, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - ACTIONS(470), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(466), 5, - sym__closing_brace_marker, + ACTIONS(1386), 4, + sym__lookback_semicolon, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LT, - STATE(2406), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -98244,15 +146964,173 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37126] = 5, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, + [66765] = 21, + ACTIONS(2571), 1, + anon_sym_LBRACE, + ACTIONS(2583), 1, + anon_sym_LBRACK, + ACTIONS(2585), 1, + anon_sym_this, + ACTIONS(2587), 1, + anon_sym_new, + ACTIONS(2589), 1, + anon_sym_null, + ACTIONS(2591), 1, + aux_sym_integer_token1, + ACTIONS(2593), 1, + aux_sym_integer_token2, + ACTIONS(2595), 1, + aux_sym_float_token1, + ACTIONS(2597), 1, + aux_sym_float_token2, + ACTIONS(2601), 1, + aux_sym_string_token1, + ACTIONS(2603), 1, + aux_sym_string_token3, + ACTIONS(3551), 1, + sym_identifier, + STATE(1478), 1, + sym_string, + STATE(1490), 1, + sym_member_expression, + STATE(1510), 1, + sym__call, + STATE(1535), 1, + sym__constructor_call, + STATE(2752), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2599), 2, + anon_sym_true, + anon_sym_false, + STATE(1568), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1554), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66840] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3460), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66915] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(690), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [66990] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1775), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -98262,17 +147140,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 20, + ACTIONS(1773), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -98284,54 +147161,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [37172] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [67029] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3211), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3215), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1223), 1, + STATE(1828), 1, aux_sym_member_expression_repeat1, - STATE(1842), 1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1313), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67100] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(4495), 1, + sym_identifier, + ACTIONS(4497), 1, + anon_sym_this, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, + sym_member_expression, + STATE(2297), 1, + sym_string, + STATE(2687), 1, sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(344), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2502), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67175] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(524), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(522), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2406), 9, + STATE(3554), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -98341,99 +147322,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37248] = 6, - ACTIONS(2060), 1, - anon_sym_DOT, - ACTIONS(2062), 1, - anon_sym_QMARK, - ACTIONS(3057), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 20, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [37296] = 24, - ACTIONS(362), 1, + [67250] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4585), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2495), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2292), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2291), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2583), 9, sym__literal, sym_integer, sym_float, @@ -98443,61 +147376,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37380] = 6, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(3257), 1, - anon_sym_RBRACK, - STATE(2315), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1626), 12, + [67325] = 6, + ACTIONS(3657), 1, anon_sym_DOT, + ACTIONS(3659), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1628), 18, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(4499), 1, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [37428] = 6, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(3259), 1, - anon_sym_RBRACK, - STATE(2393), 1, - aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98508,12 +147397,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_RBRACE, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -98523,57 +147413,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [37476] = 20, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [67370] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(520), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(518), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2406), 9, + STATE(3347), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -98583,57 +147469,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37552] = 24, - ACTIONS(736), 1, + [67445] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2609), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3261), 1, + ACTIONS(3555), 1, sym_identifier, - STATE(1265), 1, + STATE(186), 1, sym__call, - STATE(1266), 1, + STATE(187), 1, sym__constructor_call, - STATE(1892), 1, + STATE(189), 1, sym_member_expression, - STATE(1932), 1, + STATE(1925), 1, sym_string, - STATE(2082), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2318), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2203), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(1976), 9, sym__literal, sym_integer, sym_float, @@ -98643,96 +147523,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37636] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1462), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1460), 21, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [37678] = 24, - ACTIONS(736), 1, + [67520] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2585), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3263), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(1265), 1, + STATE(186), 1, sym__call, - STATE(1266), 1, + STATE(187), 1, sym__constructor_call, - STATE(1892), 1, + STATE(189), 1, sym_member_expression, - STATE(1932), 1, + STATE(1630), 1, sym_string, - STATE(2082), 1, + STATE(2644), 1, sym__lhs_expression, - STATE(2399), 1, - aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2104), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -98742,53 +147577,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37762] = 20, - ACTIONS(362), 1, + [67595] = 21, + ACTIONS(2011), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, + ACTIONS(2117), 1, anon_sym_this, - STATE(1223), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(3553), 1, + sym_identifier, + STATE(1587), 1, sym_member_expression, - STATE(1926), 1, + STATE(1609), 1, sym_string, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2822), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(476), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(474), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2406), 9, + STATE(1798), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -98798,53 +147631,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37838] = 20, - ACTIONS(485), 1, + [67670] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3265), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3268), 1, + ACTIONS(4435), 1, anon_sym_this, - STATE(1223), 1, + STATE(1828), 1, aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(2265), 1, sym_member_expression, - STATE(1926), 1, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(483), 2, - anon_sym_case, - anon_sym_default, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 5, - sym__closing_brace_marker, + ACTIONS(1339), 4, + sym__lookback_semicolon, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DASH_GT, anon_sym_LT, - STATE(2406), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -98854,134 +147683,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [37914] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(526), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(528), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [37955] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1500), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1498), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [37996] = 6, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1594), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1506), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38043] = 6, - ACTIONS(3137), 1, + [67741] = 6, + ACTIONS(4503), 1, anon_sym_EQ_GT, - ACTIONS(3271), 1, + ACTIONS(4685), 1, anon_sym_DOT, - ACTIONS(3273), 1, + ACTIONS(4687), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -98992,51 +147704,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 19, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(1785), 17, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38090] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1398), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1396), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99046,91 +147720,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [67786] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [38131] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1426), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1424), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38172] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1458), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1456), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38213] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3426), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [67861] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1454), 12, + ACTIONS(1457), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99143,52 +147793,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1452), 20, + ACTIONS(1455), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38254] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1402), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1400), 20, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99200,13 +147811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [38295] = 3, + anon_sym_DOT_DOT_DOT, + [67900] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1580), 12, + ACTIONS(1779), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99219,15 +147829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1578), 20, + ACTIONS(1777), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99239,12 +147847,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38336] = 3, + anon_sym_DOT_DOT_DOT, + [67939] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, + anon_sym_this, + ACTIONS(3486), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(933), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(947), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68014] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1542), 12, + ACTIONS(1939), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99257,15 +147919,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1540), 20, + ACTIONS(1937), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99277,12 +147937,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38377] = 3, + anon_sym_DOT_DOT_DOT, + [68053] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1406), 12, + ACTIONS(1943), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99295,14 +147955,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1404), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1941), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99314,24 +147973,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [68092] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [38418] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3201), 1, - anon_sym_DOT, - ACTIONS(3209), 1, - anon_sym_QMARK, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3203), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3387), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68167] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1859), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -99339,15 +148042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, + ACTIONS(1857), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99357,13 +148061,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38469] = 3, + anon_sym_DOT_DOT_DOT, + [68206] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(4421), 1, + anon_sym_this, + ACTIONS(4439), 1, + sym_identifier, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, + sym_member_expression, + STATE(2297), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(565), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2319), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68281] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1418), 12, + ACTIONS(1469), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99376,15 +148135,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1416), 20, + ACTIONS(1471), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99396,12 +148153,228 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38510] = 3, + anon_sym_DOT_DOT_DOT, + [68320] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(408), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(344), 2, + sym__rhs_expression, + sym_call_expression, + STATE(564), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68395] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4593), 1, + sym_identifier, + STATE(1597), 1, + sym_member_expression, + STATE(1716), 1, + sym_string, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1853), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1989), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68470] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4341), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2309), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68545] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, + anon_sym_this, + ACTIONS(3555), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1925), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1976), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68620] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1430), 12, + ACTIONS(1895), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99414,15 +148387,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1428), 20, + ACTIONS(1893), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99434,12 +148405,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38551] = 3, + anon_sym_DOT_DOT_DOT, + [68659] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1828), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, + sym_member_expression, + STATE(2268), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(1447), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2897), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68730] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1434), 12, + ACTIONS(1899), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99452,15 +148475,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1432), 20, + ACTIONS(1897), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99472,12 +148493,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38592] = 3, + anon_sym_DOT_DOT_DOT, + [68769] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1446), 12, + ACTIONS(1783), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99490,15 +148511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1444), 20, + ACTIONS(1781), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99510,53 +148529,336 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38633] = 6, - ACTIONS(1468), 1, + anon_sym_DOT_DOT_DOT, + [68808] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3653), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68883] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4467), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2495), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2802), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [68958] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3006), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69033] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4467), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2495), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2802), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69108] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4473), 1, + sym_identifier, + ACTIONS(4475), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2607), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2714), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69183] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2105), 1, + anon_sym_this, + ACTIONS(3555), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1925), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 18, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38680] = 3, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1976), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69258] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1450), 12, + ACTIONS(1879), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99569,15 +148871,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1448), 20, + ACTIONS(1877), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99589,50 +148889,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38721] = 3, + anon_sym_DOT_DOT_DOT, + [69297] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1584), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1582), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38762] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3585), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69372] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 12, + ACTIONS(1771), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -99645,15 +148961,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(594), 20, + ACTIONS(1769), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -99665,52 +148979,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38803] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + anon_sym_DOT_DOT_DOT, + [69411] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2390), 9, + STATE(3405), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -99720,127 +149034,213 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [38876] = 3, + [69486] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1534), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1532), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [38917] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3341), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69561] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1394), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1392), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [38958] = 19, - ACTIONS(362), 1, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3241), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69636] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1865), 1, + STATE(2296), 1, + sym_string, + STATE(2644), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3423), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69711] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2390), 9, + STATE(2885), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -99850,165 +149250,213 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39031] = 3, + [69786] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1438), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1436), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39072] = 3, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3362), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69861] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1442), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1440), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39113] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3415), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [69936] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1496), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1494), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39154] = 19, - ACTIONS(485), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3425), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70011] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3277), 1, - sym_identifier, - ACTIONS(3280), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + ACTIONS(3474), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(933), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2390), 9, + STATE(223), 2, + sym__rhs_expression, + sym_call_expression, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -100018,51 +149466,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39227] = 19, - ACTIONS(362), 1, + [70086] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2390), 9, + STATE(3571), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -100072,127 +149520,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39300] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1538), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1536), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39341] = 3, + [70161] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(2205), 1, + anon_sym_this, + ACTIONS(3559), 1, + sym_identifier, + STATE(1597), 1, + sym_member_expression, + STATE(1716), 1, + sym_string, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1546), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1544), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39382] = 19, - ACTIONS(362), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1853), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1934), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70236] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3223), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3275), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1252), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 6, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2390), 9, + STATE(3078), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -100202,49 +149628,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39455] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1458), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1456), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [39496] = 3, + [70311] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1478), 12, + ACTIONS(1831), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100257,52 +149645,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1476), 20, + ACTIONS(1829), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39537] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1570), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1568), 20, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100314,51 +149663,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [70350] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, + anon_sym_this, + ACTIONS(3486), 1, sym_identifier, - [39578] = 3, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(933), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1562), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1560), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [39619] = 3, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(947), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70425] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1558), 12, + ACTIONS(1951), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100371,52 +149735,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1556), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, + ACTIONS(1949), 18, + sym__lookback_semicolon, anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [39660] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1554), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1552), 20, - anon_sym_COMMA, - anon_sym_RBRACK, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100428,91 +149753,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [70464] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [39701] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1492), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1490), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39742] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3461), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70539] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3219), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2400), 9, + STATE(3682), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -100522,51 +149862,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [39815] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1575), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1572), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [39856] = 3, + [70614] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1566), 12, - anon_sym_DOT, - anon_sym_QMARK, + sym_comment, + ACTIONS(4691), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -100577,14 +149877,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1564), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4689), 20, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_DASH_GT, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100596,13 +149897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [39897] = 3, + anon_sym_DOT_DOT_DOT, + [70653] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1500), 12, + ACTIONS(1345), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100615,15 +149915,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1498), 20, + ACTIONS(1343), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100635,52 +149933,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [39938] = 19, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [70692] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3360), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70767] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, + STATE(2530), 1, + sym_string, + STATE(2661), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3329), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70842] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2401), 9, + STATE(3521), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -100690,128 +150096,497 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40011] = 6, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2126), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_EQ_GT, + [70917] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3343), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [70992] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [40058] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1394), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1392), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40099] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3419), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71067] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1512), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1510), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40140] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3564), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71142] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3383), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71217] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3530), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71292] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3570), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71367] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3620), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71442] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3336), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71517] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3403), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71592] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1406), 12, + ACTIONS(1955), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100824,15 +150599,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1404), 20, + ACTIONS(1953), 18, sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100844,12 +150617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40181] = 3, + anon_sym_DOT_DOT_DOT, + [71631] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1512), 12, + ACTIONS(1959), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -100862,14 +150635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1510), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1957), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -100881,53 +150653,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [71670] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [40222] = 19, - ACTIONS(362), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3435), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71745] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3499), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71820] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3219), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, + STATE(2530), 1, + sym_string, + STATE(2661), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3504), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [71895] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2400), 9, + STATE(3524), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -100937,244 +150870,375 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40295] = 6, - ACTIONS(2320), 1, - anon_sym_DOT, - ACTIONS(2322), 1, - anon_sym_QMARK, - ACTIONS(3123), 1, - anon_sym_EQ_GT, + [71970] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3528), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72045] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [40342] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1566), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1564), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40383] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3603), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72120] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1575), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1572), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40424] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3677), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72195] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1492), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1490), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3683), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72270] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [40465] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1402), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1400), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40506] = 19, - ACTIONS(485), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3698), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72345] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3649), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72420] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3287), 1, - sym_identifier, - ACTIONS(3290), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2400), 9, + STATE(3470), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -101184,54 +151248,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40579] = 22, - ACTIONS(526), 1, - sym_identifier, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + [72495] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(99), 1, aux_sym_string_token3, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(1266), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2082), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(528), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(764), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, + STATE(3539), 2, sym__rhs_expression, sym_call_expression, - STATE(1269), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -101241,507 +151302,213 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [40658] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1478), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1476), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [40699] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(526), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(528), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [40740] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1554), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1552), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40781] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1546), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1544), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [40822] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1538), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1536), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + [72570] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [40863] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1398), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1396), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40904] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1558), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1556), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40945] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1562), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1560), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [40986] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1496), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1494), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3578), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72645] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [41027] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1570), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1568), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [41068] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1442), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1440), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3354), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72720] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [41109] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1438), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1436), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41150] = 19, - ACTIONS(362), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3353), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [72795] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3219), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(3557), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(1630), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2400), 9, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1837), 9, sym__literal, sym_integer, sym_float, @@ -101751,51 +151518,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41223] = 19, - ACTIONS(362), 1, + [72870] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3219), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(3283), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(1280), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(351), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(408), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2400), 9, + STATE(380), 2, + sym__rhs_expression, + sym_call_expression, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -101805,92 +151572,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41296] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1414), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1412), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41337] = 22, - ACTIONS(362), 1, + [72945] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3486), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1926), 1, + STATE(933), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(2771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2547), 2, + STATE(977), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -101900,208 +151626,159 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41416] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(580), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(578), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + [73020] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1508), 1, sym_identifier, - [41457] = 3, + ACTIONS(1512), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(400), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1466), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1464), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(557), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73095] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [41498] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(542), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [41539] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1600), 1, - anon_sym_DOT, - ACTIONS(1606), 1, - anon_sym_QMARK, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [41590] = 19, - ACTIONS(362), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3434), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73170] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3191), 1, - anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1508), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + ACTIONS(1512), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(400), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2401), 9, + STATE(690), 2, + sym__rhs_expression, + sym_call_expression, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -102111,11 +151788,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41663] = 3, + [73245] = 4, + ACTIONS(4693), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1534), 12, + ACTIONS(1638), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102128,14 +151807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1532), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1636), 17, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102147,13 +151824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41704] = 3, + anon_sym_DOT_DOT_DOT, + [73286] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(592), 12, + ACTIONS(1903), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102166,14 +151842,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(594), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1901), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102185,53 +151860,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41745] = 19, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [73325] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2401), 9, + STATE(3196), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -102241,128 +151915,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [41818] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(542), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41859] = 6, - ACTIONS(2320), 1, - anon_sym_DOT, - ACTIONS(2322), 1, - anon_sym_QMARK, - ACTIONS(3129), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [41906] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1520), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1518), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41947] = 3, + [73400] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1530), 12, + ACTIONS(1799), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102375,14 +151932,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1528), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1797), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102394,53 +151950,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [41988] = 19, - ACTIONS(485), 1, + anon_sym_DOT_DOT_DOT, + [73439] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3293), 1, + ACTIONS(4349), 1, sym_identifier, - ACTIONS(3296), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(1841), 1, + STATE(2297), 1, + sym_string, + STATE(2687), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(370), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2314), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73514] = 21, + ACTIONS(2023), 1, + anon_sym_LBRACK, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, + anon_sym_null, + ACTIONS(2031), 1, + aux_sym_integer_token1, + ACTIONS(2033), 1, + aux_sym_integer_token2, + ACTIONS(2035), 1, + aux_sym_float_token1, + ACTIONS(2037), 1, + aux_sym_float_token2, + ACTIONS(2041), 1, + aux_sym_string_token1, + ACTIONS(2043), 1, + aux_sym_string_token3, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4455), 1, + sym_identifier, + ACTIONS(4457), 1, + anon_sym_LBRACE, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2522), 1, sym_string, + STATE(2822), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2401), 9, + STATE(1798), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2699), 9, sym__literal, sym_integer, sym_float, @@ -102450,11 +152059,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42061] = 3, + [73589] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1584), 12, + ACTIONS(1803), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102467,14 +152076,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1582), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1801), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102486,24 +152094,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [73628] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, sym_identifier, - [42102] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(2557), 1, + ACTIONS(4483), 1, + anon_sym_this, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(195), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2395), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73703] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1889), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73778] = 6, + ACTIONS(4489), 1, + anon_sym_EQ_GT, + ACTIONS(4696), 1, anon_sym_DOT, - ACTIONS(2559), 1, + ACTIONS(4698), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3203), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -102511,15 +152221,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 17, + ACTIONS(1785), 17, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102530,55 +152241,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42153] = 22, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [73823] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(224), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, sym__constructor_call, - STATE(226), 1, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3273), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [73898] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(2781), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2596), 2, + STATE(3537), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -102588,87 +152350,281 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42232] = 3, + [73973] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1450), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1448), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2900), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74048] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, sym_identifier, - [42273] = 3, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1446), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1444), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3357), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74123] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3366), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74198] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3410), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74273] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, sym_identifier, - [42314] = 3, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2948), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74348] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1434), 12, + ACTIONS(1969), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102681,14 +152637,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1432), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1967), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102700,15 +152655,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [74387] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3265), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74462] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [42355] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3479), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74537] = 4, + ACTIONS(3753), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1430), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(4702), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -102719,14 +152781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1428), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(4700), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102738,15 +152800,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [74578] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, + anon_sym_this, + ACTIONS(3474), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(933), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(946), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74653] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [42396] = 3, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1418), 12, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3409), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74728] = 6, + ACTIONS(4503), 1, + anon_sym_EQ_GT, + ACTIONS(4704), 1, anon_sym_DOT, + ACTIONS(4706), 1, anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -102757,14 +152930,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1416), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102774,21 +152946,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [42437] = 6, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3207), 1, - anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + [74773] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1807), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -102798,15 +152962,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 18, + ACTIONS(1805), 18, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102818,23 +152983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42484] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(1522), 1, - anon_sym_DOT, - ACTIONS(1526), 1, - anon_sym_QMARK, + anon_sym_DOT_DOT_DOT, + [74812] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3187), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, + ACTIONS(1973), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -102842,15 +152998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_RBRACE, + ACTIONS(1971), 18, + sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -102860,53 +153017,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42535] = 19, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [74851] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3191), 1, + ACTIONS(4421), 1, anon_sym_this, - ACTIONS(3285), 1, + ACTIONS(4439), 1, sym_identifier, - STATE(1310), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, sym_member_expression, - STATE(1841), 1, + STATE(2297), 1, + sym_string, + STATE(2687), 1, sym__lhs_expression, - STATE(1926), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(370), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2319), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [74926] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 6, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2401), 9, + STATE(3251), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -102916,87 +153128,443 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42608] = 3, + [75001] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1426), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1424), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3456), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75076] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, sym_identifier, - [42649] = 3, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(580), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(578), 20, - sym__lookback_semicolon, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42690] = 3, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3018), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75151] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3538), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75226] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3547), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75301] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3560), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75376] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3062), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75451] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4585), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2495), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3658), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2583), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75526] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, + anon_sym_this, + ACTIONS(3539), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1375), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(210), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1408), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75601] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1542), 12, + ACTIONS(1771), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -103009,14 +153577,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1540), 20, - anon_sym_COMMA, - anon_sym_RBRACK, + ACTIONS(1769), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -103028,172 +153595,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, + anon_sym_DOT_DOT_DOT, + [75640] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, sym_identifier, - [42731] = 6, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2126), 1, - anon_sym_QMARK, - ACTIONS(3129), 1, - anon_sym_EQ_GT, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 19, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [42778] = 3, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3579), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75715] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, + sym_identifier, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1580), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1578), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3204), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75790] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4485), 1, sym_identifier, - [42819] = 3, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1454), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1452), 20, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - sym_identifier, - [42860] = 22, - ACTIONS(35), 1, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3368), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [75865] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2366), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1633), 1, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2290), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2777), 2, + STATE(2857), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -103203,53 +153812,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [42938] = 22, - ACTIONS(35), 1, + [75940] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2895), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2856), 2, + STATE(3545), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -103259,53 +153866,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43016] = 22, - ACTIONS(362), 1, + [76015] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(876), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, sym__constructor_call, - STATE(226), 1, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, + STATE(2644), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3346), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [76090] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(1528), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3587), 2, sym__rhs_expression, sym_call_expression, - STATE(1641), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -103315,53 +153974,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43094] = 22, - ACTIONS(362), 1, + [76165] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(3147), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(2007), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3431), 2, sym__rhs_expression, sym_call_expression, - STATE(2122), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -103371,53 +154028,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43172] = 22, - ACTIONS(430), 1, + [76240] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(4485), 1, sym_identifier, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + STATE(186), 1, sym__call, - STATE(1175), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, + sym_member_expression, + STATE(2296), 1, sym_string, - STATE(2181), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3026), 2, sym__rhs_expression, sym_call_expression, - STATE(1198), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -103427,53 +154082,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43250] = 22, - ACTIONS(35), 1, + [76315] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3017), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3559), 1, + sym_identifier, + STATE(1597), 1, + sym_member_expression, + STATE(1716), 1, + sym_string, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2661), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(1889), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1934), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [76390] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(1377), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(189), 1, sym_member_expression, - STATE(2035), 1, + STATE(400), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2818), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -103483,53 +154190,238 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43328] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [76465] = 6, + ACTIONS(4449), 1, + anon_sym_EQ_GT, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [76510] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1775), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1773), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [76549] = 4, + ACTIONS(3753), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4714), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4712), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [76590] = 6, + ACTIONS(4519), 1, + anon_sym_EQ_GT, + ACTIONS(4716), 1, + anon_sym_DOT, + ACTIONS(4718), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1787), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1785), 17, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [76635] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1779), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1777), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [76674] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, sym_identifier, - ACTIONS(3191), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(1889), 2, sym__rhs_expression, sym_call_expression, - STATE(2205), 9, + STATE(2690), 9, sym__literal, sym_integer, sym_float, @@ -103539,53 +154431,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43406] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [76749] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2817), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2853), 2, + STATE(3370), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -103595,53 +154485,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43484] = 22, - ACTIONS(35), 1, + [76824] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2977), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1633), 1, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2290), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2744), 2, + STATE(3437), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -103651,53 +154539,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43562] = 22, - ACTIONS(35), 1, + [76899] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2951), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3486), 1, sym_identifier, - STATE(1633), 1, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(189), 1, sym_member_expression, - STATE(2035), 1, + STATE(933), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2849), 2, + STATE(690), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(947), 9, sym__literal, sym_integer, sym_float, @@ -103707,53 +154593,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43640] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [76974] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1204), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3518), 2, sym__rhs_expression, sym_call_expression, - STATE(1307), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -103763,53 +154647,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43718] = 22, - ACTIONS(35), 1, + [77049] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2871), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1508), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(1512), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(189), 1, sym_member_expression, - STATE(2035), 1, + STATE(400), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2686), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(557), 9, sym__literal, sym_integer, sym_float, @@ -103819,11 +154701,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43796] = 3, + [77124] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3307), 10, + ACTIONS(1835), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -103834,16 +154718,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3305), 21, + ACTIONS(1833), 18, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -103855,54 +154736,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [43836] = 22, - ACTIONS(736), 1, + anon_sym_DOT_DOT_DOT, + [77163] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(3539), 1, sym_identifier, - ACTIONS(3309), 1, - anon_sym_LPAREN, - STATE(1265), 1, + STATE(186), 1, sym__call, - STATE(1266), 1, + STATE(187), 1, sym__constructor_call, - STATE(1892), 1, + STATE(189), 1, sym_member_expression, - STATE(1932), 1, + STATE(1375), 1, sym_string, - STATE(2082), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1273), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1992), 9, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -103912,53 +154791,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43914] = 22, - ACTIONS(362), 1, + [77238] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(548), 1, + ACTIONS(4359), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(304), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(1375), 1, sym_string, - STATE(2148), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(210), 2, sym__rhs_expression, sym_call_expression, - STATE(488), 9, + STATE(1407), 9, sym__literal, sym_integer, sym_float, @@ -103968,53 +154845,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [43992] = 22, - ACTIONS(430), 1, - anon_sym_LBRACE, - ACTIONS(442), 1, + [77313] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(448), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(450), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, sym__call, - STATE(1910), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1922), 1, + STATE(2530), 1, sym_string, - STATE(2181), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(3616), 2, sym__rhs_expression, sym_call_expression, - STATE(2010), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -104024,53 +154899,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44070] = 22, - ACTIONS(35), 1, + [77388] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2961), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1635), 1, + STATE(364), 1, sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(408), 1, sym_string, - STATE(2161), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(2697), 2, + STATE(370), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(564), 9, sym__literal, sym_integer, sym_float, @@ -104080,13 +154953,17 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44148] = 3, + [77463] = 6, + ACTIONS(4489), 1, + anon_sym_EQ_GT, + ACTIONS(4708), 1, + anon_sym_DOT, + ACTIONS(4710), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1410), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -104097,14 +154974,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1408), 19, + ACTIONS(1785), 17, sym__lookback_semicolon, - anon_sym_LBRACK, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -104114,56 +154990,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [44188] = 22, - ACTIONS(362), 1, + anon_sym_DOT_DOT_DOT, + [77508] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3145), 1, - sym_identifier, - ACTIONS(3147), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4367), 1, + sym_identifier, + STATE(351), 1, sym_member_expression, - STATE(1926), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(1378), 1, sym_string, - STATE(2179), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(380), 2, sym__rhs_expression, sym_call_expression, - STATE(1980), 9, + STATE(1428), 9, sym__literal, sym_integer, sym_float, @@ -104173,109 +155046,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44266] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3311), 1, - sym_identifier, - ACTIONS(3313), 1, - anon_sym__, - ACTIONS(3315), 1, - anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, - sym_string, + [77583] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2662), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2234), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [44344] = 22, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1783), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1781), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [77622] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(4339), 1, + anon_sym_this, + ACTIONS(4455), 1, sym_identifier, - ACTIONS(3309), 1, - anon_sym_LPAREN, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + STATE(2000), 1, sym__call, - STATE(1266), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2082), 1, + STATE(2290), 1, + sym_member_expression, + STATE(2522), 1, + sym_string, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(1273), 2, + STATE(1757), 2, sym__rhs_expression, sym_call_expression, - STATE(1275), 9, + STATE(2699), 9, sym__literal, sym_integer, sym_float, @@ -104285,53 +155136,49 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44422] = 22, - ACTIONS(942), 1, + [77697] = 19, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(3317), 1, - anon_sym_LPAREN, - STATE(1207), 1, - sym_string, - STATE(1212), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1828), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, - sym__call, - STATE(2279), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1271), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, + ACTIONS(1379), 4, + sym__lookback_semicolon, + anon_sym_LPAREN, + anon_sym_DASH_GT, + anon_sym_LT, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -104341,53 +155188,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44500] = 22, - ACTIONS(35), 1, + [77768] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2885), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4481), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(4483), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2290), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2755), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2395), 9, sym__literal, sym_integer, sym_float, @@ -104397,53 +155242,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44578] = 22, - ACTIONS(35), 1, + [77843] = 21, + ACTIONS(2011), 1, + anon_sym_LBRACE, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(45), 1, + ACTIONS(2027), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(528), 1, - sym__lookback_semicolon, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3319), 1, + ACTIONS(2117), 1, + anon_sym_this, + ACTIONS(3553), 1, sym_identifier, - STATE(1362), 1, + STATE(1587), 1, sym_member_expression, - STATE(1384), 1, + STATE(1609), 1, sym_string, - STATE(1633), 1, + STATE(2000), 1, sym__call, - STATE(1635), 1, + STATE(2023), 1, sym__constructor_call, - STATE(2161), 1, + STATE(2822), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, + STATE(1776), 2, sym__rhs_expression, sym_call_expression, - STATE(1589), 9, + STATE(1948), 9, sym__literal, sym_integer, sym_float, @@ -104453,109 +155296,124 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44656] = 22, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(77), 1, - aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, - aux_sym_float_token1, - ACTIONS(83), 1, - aux_sym_float_token2, - ACTIONS(87), 1, - aux_sym_string_token1, - ACTIONS(89), 1, - aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3013), 1, + [77918] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1847), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1845), 18, sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [77957] = 4, + ACTIONS(3753), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(2846), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [44734] = 22, - ACTIONS(430), 1, + ACTIONS(4722), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4720), 19, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_RPAREN, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [77998] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, + ACTIONS(4349), 1, sym_identifier, - ACTIONS(566), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + STATE(363), 1, sym__call, - STATE(296), 1, + STATE(364), 1, + sym__constructor_call, + STATE(2294), 1, + sym_member_expression, + STATE(2297), 1, sym_string, - STATE(2254), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(344), 2, sym__rhs_expression, sym_call_expression, - STATE(416), 9, + STATE(2314), 9, sym__literal, sym_integer, sym_float, @@ -104565,53 +155423,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44812] = 22, - ACTIONS(35), 1, + [78073] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2937), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3541), 1, sym_identifier, - STATE(1633), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1635), 1, + STATE(364), 1, sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(1378), 1, sym_string, - STATE(2161), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(2640), 2, + STATE(344), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1400), 9, sym__literal, sym_integer, sym_float, @@ -104621,53 +155477,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44890] = 22, - ACTIONS(35), 1, + [78148] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1799), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1797), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [78187] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3015), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2775), 2, + STATE(3498), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -104677,13 +155567,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [44968] = 4, - ACTIONS(3137), 1, - anon_sym_COLON, + [78262] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, + ACTIONS(1977), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -104696,13 +155584,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1628), 18, + ACTIONS(1975), 18, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -104714,91 +155602,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [45010] = 3, + anon_sym_DOT_DOT_DOT, + [78301] = 21, + ACTIONS(39), 1, + anon_sym_LBRACK, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, + anon_sym_null, + ACTIONS(87), 1, + aux_sym_integer_token1, + ACTIONS(89), 1, + aux_sym_integer_token2, + ACTIONS(91), 1, + aux_sym_float_token1, + ACTIONS(93), 1, + aux_sym_float_token2, + ACTIONS(97), 1, + aux_sym_string_token1, + ACTIONS(99), 1, + aux_sym_string_token3, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, + anon_sym_this, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1488), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1486), 19, - sym__lookback_semicolon, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [45050] = 22, - ACTIONS(35), 1, + ACTIONS(95), 2, + anon_sym_true, + anon_sym_false, + STATE(3633), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [78376] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2877), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2623), 2, + STATE(3534), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -104808,53 +155711,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45128] = 22, - ACTIONS(35), 1, + [78451] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2997), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2684), 2, + STATE(3680), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -104864,53 +155765,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45206] = 22, - ACTIONS(362), 1, + [78526] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - ACTIONS(3321), 1, + ACTIONS(3474), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(765), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, + sym_member_expression, + STATE(933), 1, sym_string, - STATE(2148), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(769), 9, + STATE(946), 9, sym__literal, sym_integer, sym_float, @@ -104920,53 +155819,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45284] = 22, - ACTIONS(430), 1, + [78601] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3215), 1, - anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, + ACTIONS(1377), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1910), 1, + STATE(187), 1, + sym__constructor_call, + STATE(189), 1, sym_member_expression, - STATE(1922), 1, + STATE(400), 1, sym_string, - STATE(2181), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, + STATE(223), 2, sym__rhs_expression, sym_call_expression, - STATE(1974), 9, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -104976,15 +155873,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45362] = 5, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, + [78676] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 11, + ACTIONS(1863), 12, anon_sym_DOT, anon_sym_QMARK, anon_sym_BANG, @@ -104994,15 +155887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1502), 18, + ACTIONS(1861), 18, sym__lookback_semicolon, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -105014,12 +155908,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [45406] = 3, + anon_sym_DOT_DOT_DOT, + [78715] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + ACTIONS(3541), 1, + sym_identifier, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(1378), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(370), 2, + sym__rhs_expression, + sym_call_expression, + STATE(1400), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [78790] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1423), 1, + sym_identifier, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, + anon_sym_LBRACK, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, + anon_sym_null, + ACTIONS(1433), 1, + aux_sym_integer_token1, + ACTIONS(1435), 1, + aux_sym_integer_token2, + ACTIONS(1437), 1, + aux_sym_float_token1, + ACTIONS(1439), 1, + aux_sym_float_token2, + ACTIONS(1443), 1, + aux_sym_string_token1, + ACTIONS(1445), 1, + aux_sym_string_token3, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(408), 1, + sym_string, + STATE(2687), 1, + sym__lhs_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1441), 2, + anon_sym_true, + anon_sym_false, + STATE(380), 2, + sym__rhs_expression, + sym_call_expression, + STATE(564), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [78865] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3325), 10, + ACTIONS(1981), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -105030,16 +156034,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3323), 21, + ACTIONS(1979), 18, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -105051,54 +156052,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [45446] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [78904] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(998), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(3327), 1, - anon_sym_LPAREN, - STATE(1362), 1, - sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(2161), 1, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, + sym_string, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1540), 2, + STATE(3459), 2, sym__rhs_expression, sym_call_expression, - STATE(1506), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105108,53 +156107,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45524] = 22, - ACTIONS(35), 1, + [78979] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2983), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2805), 2, + STATE(3492), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105164,53 +156161,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45602] = 22, - ACTIONS(35), 1, + [79054] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2869), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(2153), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3539), 1, sym_identifier, - STATE(1633), 1, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(189), 1, sym_member_expression, - STATE(2035), 1, + STATE(1375), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2628), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(1408), 9, sym__literal, sym_integer, sym_float, @@ -105220,53 +156215,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45680] = 22, - ACTIONS(35), 1, + [79129] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3025), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2761), 2, + STATE(3565), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105276,53 +156269,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45758] = 22, - ACTIONS(362), 1, + [79204] = 21, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(380), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(3541), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, + STATE(351), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(363), 1, sym__call, - STATE(765), 1, + STATE(364), 1, + sym__constructor_call, + STATE(1378), 1, sym_string, - STATE(2148), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(380), 2, sym__rhs_expression, sym_call_expression, - STATE(767), 9, + STATE(1400), 9, sym__literal, sym_integer, sym_float, @@ -105332,53 +156323,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45836] = 22, - ACTIONS(35), 1, + [79279] = 21, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2865), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(1373), 1, sym_identifier, - STATE(1633), 1, + ACTIONS(1377), 1, + anon_sym_this, + STATE(186), 1, sym__call, - STATE(1635), 1, + STATE(187), 1, sym__constructor_call, - STATE(1989), 1, + STATE(189), 1, sym_member_expression, - STATE(2035), 1, + STATE(400), 1, sym_string, - STATE(2161), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2629), 2, + STATE(195), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(570), 9, sym__literal, sym_integer, sym_float, @@ -105388,53 +156377,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45914] = 22, - ACTIONS(35), 1, + [79354] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(3009), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2760), 2, + STATE(3393), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105444,53 +156431,125 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [45992] = 22, - ACTIONS(362), 1, + [79429] = 5, + ACTIONS(4726), 1, + anon_sym_RPAREN, + STATE(2019), 1, + aux_sym_variable_declaration_repeat2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4729), 10, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(4724), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [79472] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1867), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1865), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [79511] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, + ACTIONS(1369), 1, anon_sym_new, - ACTIONS(2891), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(186), 1, sym__call, - STATE(1892), 1, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2644), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2759), 2, + STATE(3562), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -105500,53 +156559,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46070] = 22, - ACTIONS(35), 1, + [79586] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2859), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2718), 2, + STATE(3446), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105556,53 +156613,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46148] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [79661] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1803), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1801), 18, + anon_sym_STAR, + anon_sym_in, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [79700] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2931), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2668), 2, + STATE(3458), 2, sym__rhs_expression, sym_call_expression, - STATE(1998), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105612,53 +156703,123 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46226] = 22, - ACTIONS(35), 1, + [79775] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1871), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1869), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [79814] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1985), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1983), 18, + sym__lookback_semicolon, + anon_sym_STAR, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [79853] = 21, + ACTIONS(1425), 1, + anon_sym_LBRACE, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1429), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3021), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(1502), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1514), 1, sym_identifier, - STATE(1633), 1, + STATE(351), 1, + sym_member_expression, + STATE(363), 1, sym__call, - STATE(1635), 1, + STATE(364), 1, sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(408), 1, sym_string, - STATE(2161), 1, + STATE(2687), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - STATE(2626), 2, + STATE(565), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -105668,53 +156829,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46304] = 22, - ACTIONS(35), 1, + [79928] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2849), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2634), 2, + STATE(3522), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105724,53 +156883,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46382] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80003] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1395), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, + sym_member_expression, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3529), 2, sym__rhs_expression, sym_call_expression, - STATE(1449), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105780,50 +156937,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46460] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80078] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2392), 9, + STATE(3709), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105833,50 +156991,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46532] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80153] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2392), 9, + STATE(3557), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105886,50 +157045,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46604] = 19, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + [80228] = 21, + ACTIONS(2023), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(2027), 1, + anon_sym_new, + ACTIONS(2029), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(2035), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(2037), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(2041), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(2043), 1, aux_sym_string_token3, - ACTIONS(3331), 1, - sym_identifier, - ACTIONS(3334), 1, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4483), 1, anon_sym_this, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + ACTIONS(4555), 1, + sym_identifier, + STATE(2000), 1, + sym__call, + STATE(2023), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2522), 1, sym_string, + STATE(2822), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(2039), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2392), 9, + STATE(1757), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2664), 9, sym__literal, sym_integer, sym_float, @@ -105939,50 +157099,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46676] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80303] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2392), 9, + STATE(3558), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -105992,50 +157153,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46748] = 19, - ACTIONS(362), 1, + [80378] = 21, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3255), 1, + ACTIONS(1369), 1, + anon_sym_new, + ACTIONS(4329), 1, anon_sym_this, - ACTIONS(3329), 1, + ACTIONS(4485), 1, sym_identifier, - STATE(1379), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, + STATE(186), 1, + sym__call, + STATE(187), 1, + sym__constructor_call, + STATE(2290), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2644), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 5, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_EQ_GT, - STATE(2392), 9, + STATE(3373), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2302), 9, sym__literal, sym_integer, sym_float, @@ -106045,50 +157207,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46820] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80453] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2370), 9, + STATE(3583), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106098,50 +157261,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46892] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80528] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2370), 9, + STATE(3593), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106151,91 +157315,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [46964] = 4, - ACTIONS(3203), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1628), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [47006] = 22, - ACTIONS(35), 1, + [80603] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2853), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2694), 2, + STATE(3600), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106245,50 +157369,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47084] = 19, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, + [80678] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3341), 1, - sym_identifier, - ACTIONS(3344), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2370), 9, + STATE(3607), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106298,50 +157423,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47156] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [80753] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(4559), 1, + sym_identifier, + STATE(1928), 1, + sym__call, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2530), 1, sym_string, + STATE(2661), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2370), 9, + STATE(3445), 2, + sym__rhs_expression, + sym_call_expression, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106351,50 +157477,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47228] = 19, - ACTIONS(362), 1, + [80828] = 21, + ACTIONS(1425), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1427), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1429), 1, + anon_sym_new, + ACTIONS(1431), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1437), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1439), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1443), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1445), 1, aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, + ACTIONS(1502), 1, anon_sym_this, - STATE(902), 1, + ACTIONS(1514), 1, + sym_identifier, + STATE(351), 1, sym_member_expression, - STATE(1386), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(363), 1, + sym__call, + STATE(364), 1, + sym__constructor_call, + STATE(408), 1, sym_string, + STATE(2687), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1441), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 5, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ, - STATE(2370), 9, + STATE(370), 2, + sym__rhs_expression, + sym_call_expression, + STATE(547), 9, sym__literal, sym_integer, sym_float, @@ -106404,53 +157531,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47300] = 22, - ACTIONS(35), 1, + [80903] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1835), 12, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + ACTIONS(1833), 18, + anon_sym_STAR, + anon_sym_while, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_PERCENT, + anon_sym_LT_LT, + anon_sym_GT_GT_GT, + anon_sym_CARET, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_DOT_DOT_DOT, + [80942] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2909), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2735), 2, + STATE(3640), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106460,53 +157621,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47378] = 22, - ACTIONS(736), 1, - anon_sym_LBRACE, - ACTIONS(748), 1, + [81017] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(752), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(754), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3309), 1, - anon_sym_LPAREN, - ACTIONS(3347), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1265), 1, + STATE(1928), 1, sym__call, - STATE(1266), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1892), 1, + STATE(2432), 1, sym_member_expression, - STATE(1932), 1, + STATE(2530), 1, sym_string, - STATE(2082), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(1273), 2, + STATE(3647), 2, sym__rhs_expression, sym_call_expression, - STATE(1960), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106516,53 +157675,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47456] = 22, - ACTIONS(35), 1, + [81092] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2949), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2855), 2, + STATE(3654), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106572,53 +157729,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47534] = 22, - ACTIONS(35), 1, + [81167] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2857), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2659), 2, + STATE(3490), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106628,11 +157783,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47612] = 3, + [81242] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3351), 10, + ACTIONS(1807), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -106643,16 +157800,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3349), 21, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DASH_GT, + ACTIONS(1805), 18, + anon_sym_STAR, + anon_sym_in, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -106664,54 +157818,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [47652] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [81281] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2875), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2732), 2, + STATE(3567), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106721,91 +157873,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47730] = 4, - ACTIONS(3187), 1, - anon_sym_COLON, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1628), 18, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [47772] = 22, - ACTIONS(35), 1, + [81356] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(55), 1, anon_sym_new, - ACTIONS(59), 1, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(854), 1, + ACTIONS(1997), 1, anon_sym_LBRACE, - ACTIONS(2861), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(1633), 1, + STATE(1928), 1, sym__call, - STATE(1635), 1, + STATE(1931), 1, sym__constructor_call, - STATE(1989), 1, + STATE(2432), 1, sym_member_expression, - STATE(2035), 1, + STATE(2530), 1, sym_string, - STATE(2161), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2774), 2, + STATE(3424), 2, sym__rhs_expression, sym_call_expression, - STATE(2065), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106815,53 +157927,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47850] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [81431] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2913), 1, - anon_sym_RBRACE, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3353), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2007), 1, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(2809), 2, + STATE(3514), 2, sym__rhs_expression, sym_call_expression, - STATE(2246), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106871,53 +157981,51 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [47928] = 22, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [81506] = 21, + ACTIONS(39), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(55), 1, + anon_sym_new, + ACTIONS(69), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(91), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(93), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(97), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(99), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1997), 1, + anon_sym_LBRACE, + ACTIONS(4435), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - ACTIONS(3353), 1, + ACTIONS(4559), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, + STATE(1928), 1, sym__call, - STATE(1892), 1, + STATE(1931), 1, + sym__constructor_call, + STATE(2432), 1, sym_member_expression, - STATE(2007), 1, + STATE(2530), 1, sym_string, - STATE(2179), 1, + STATE(2661), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(95), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, + STATE(3414), 2, sym__rhs_expression, sym_call_expression, - STATE(2246), 9, + STATE(2608), 9, sym__literal, sym_integer, sym_float, @@ -106927,11 +158035,13 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48006] = 3, + [81581] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3357), 10, + ACTIONS(1927), 12, + anon_sym_DOT, + anon_sym_QMARK, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -106942,16 +158052,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3355), 21, + ACTIONS(1925), 18, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DASH_GT, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -106963,54 +158070,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48046] = 22, - ACTIONS(35), 1, + anon_sym_DOT_DOT_DOT, + [81620] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1875), 12, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_null, + anon_sym_extends, + anon_sym_implements, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 17, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [81658] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2839), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2673), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(1447), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -107020,53 +158157,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48124] = 22, - ACTIONS(35), 1, + [81728] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2883), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2676), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(1339), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -107076,95 +158208,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48202] = 8, - ACTIONS(1506), 1, - anon_sym_LPAREN, - ACTIONS(1508), 1, - anon_sym_LT, - ACTIONS(3237), 1, - anon_sym_DOT, - ACTIONS(3241), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3239), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1504), 9, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 16, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48252] = 22, - ACTIONS(35), 1, + [81798] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2985), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2884), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(1379), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -107174,90 +158259,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48330] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3361), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3359), 21, - sym__lookback_semicolon, - anon_sym_RPAREN, + [81868] = 19, + ACTIONS(1390), 1, anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48370] = 22, - ACTIONS(35), 1, + ACTIONS(1393), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1399), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1402), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1405), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1408), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1411), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1417), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1420), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2855), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4733), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4736), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1414), 2, anon_sym_true, anon_sym_false, - STATE(2753), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(1386), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -107267,53 +158310,48 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48448] = 22, - ACTIONS(35), 1, + [81938] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2897), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2056), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2672), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + ACTIONS(1313), 3, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -107323,15 +158361,11 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48526] = 5, - ACTIONS(3367), 1, - anon_sym_LT, - STATE(1393), 1, - sym_type_params, + [82008] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3365), 9, + ACTIONS(4741), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -107339,17 +158373,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3363), 20, + ACTIONS(4739), 19, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -107361,16 +158395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48570] = 5, - ACTIONS(3367), 1, - anon_sym_LT, - STATE(1399), 1, - sym_type_params, + anon_sym_DOT_DOT_DOT, + [82046] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3371), 9, + ACTIONS(4745), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -107378,17 +158408,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(3369), 20, + ACTIONS(4743), 19, sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, + anon_sym_STAR, + anon_sym_COLON, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -107400,70 +158430,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48614] = 22, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(77), 1, - aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, - aux_sym_float_token1, - ACTIONS(83), 1, - aux_sym_float_token2, - ACTIONS(87), 1, - aux_sym_string_token1, - ACTIONS(89), 1, - aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2899), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(2695), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [48692] = 3, + anon_sym_DOT_DOT_DOT, + [82084] = 6, + ACTIONS(3678), 1, + anon_sym_DOT, + ACTIONS(3680), 1, + anon_sym_QMARK, + ACTIONS(4355), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1462), 12, - anon_sym_DOT, - anon_sym_QMARK, + ACTIONS(1787), 10, anon_sym_BANG, anon_sym_DASH, anon_sym_SLASH, @@ -107474,14 +158452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_EQ, - ACTIONS(1460), 19, - sym__lookback_semicolon, - anon_sym_COLON, + ACTIONS(1785), 16, + anon_sym_STAR, anon_sym_TILDE, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_PERCENT, - anon_sym_STAR, anon_sym_LT_LT, anon_sym_GT_GT_GT, anon_sym_CARET, @@ -107491,168 +158467,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_EQ_GT, anon_sym_QMARK_QMARK, - sym__rangeOperator, - [48732] = 22, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + anon_sym_DOT_DOT_DOT, + [82128] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 11, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, aux_sym_float_token1, - ACTIONS(83), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2819), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [82164] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1875), 11, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2720), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [48810] = 22, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(1873), 16, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(77), 1, - aux_sym_integer_token1, - ACTIONS(79), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(81), 1, - aux_sym_float_token1, - ACTIONS(83), 1, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3011), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [82200] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1755), 11, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2681), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [48888] = 22, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(1753), 15, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [82238] = 19, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2905), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4565), 1, + anon_sym_this, + ACTIONS(4747), 1, + anon_sym_RPAREN, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2453), 1, sym__lhs_expression, + STATE(2965), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2699), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -107662,109 +158618,113 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [48966] = 22, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, + [82306] = 4, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1990), 12, + anon_sym_in, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, anon_sym_new, - ACTIONS(59), 1, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, aux_sym_float_token1, - ACTIONS(83), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1987), 14, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3035), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [82344] = 5, + ACTIONS(4755), 1, + anon_sym_EQ, + STATE(176), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(4751), 11, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2841), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [49044] = 22, - ACTIONS(362), 1, + sym_identifier, + ACTIONS(4753), 14, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [82384] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2903), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1521), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2641), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -107774,53 +158734,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49122] = 22, - ACTIONS(35), 1, + [82449] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2825), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2054), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2691), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -107830,53 +158781,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49200] = 22, - ACTIONS(362), 1, + [82514] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(576), 1, + ACTIONS(3625), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(201), 1, + STATE(882), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, - sym_string, - STATE(2148), 1, + STATE(944), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, - sym__rhs_expression, - sym_call_expression, - STATE(433), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -107886,53 +158828,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49278] = 22, - ACTIONS(35), 1, + [82579] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2915), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3625), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(939), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2705), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -107942,91 +158875,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49356] = 4, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(542), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [49398] = 22, - ACTIONS(35), 1, + [82644] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2841), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3625), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(927), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2693), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -108036,53 +158922,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49476] = 22, - ACTIONS(35), 1, + [82709] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3001), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1517), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2739), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -108092,53 +158969,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49554] = 22, - ACTIONS(35), 1, + [82774] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2921), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4337), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1350), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2851), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -108148,53 +159016,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49632] = 22, - ACTIONS(35), 1, + [82839] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4337), 1, sym_identifier, - ACTIONS(3327), 1, - anon_sym_LPAREN, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1355), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1540), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -108204,53 +159063,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49710] = 22, - ACTIONS(35), 1, + [82904] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2925), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4337), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1358), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2706), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -108260,53 +159110,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49788] = 22, - ACTIONS(430), 1, + [82969] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3071), 1, - sym_identifier, - ACTIONS(3073), 1, + ACTIONS(2025), 1, anon_sym_this, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, + ACTIONS(3625), 1, + sym_identifier, + STATE(882), 1, sym_member_expression, - STATE(1922), 1, - sym_string, - STATE(2181), 1, + STATE(932), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1937), 9, + STATE(2923), 9, sym__literal, sym_integer, sym_float, @@ -108316,53 +159157,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49866] = 22, - ACTIONS(35), 1, + [83034] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2364), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1614), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2696), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -108372,53 +159204,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [49944] = 22, - ACTIONS(362), 1, + [83099] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4577), 1, + sym_identifier, + STATE(1617), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1961), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -108428,53 +159251,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50022] = 22, - ACTIONS(430), 1, + [83164] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(540), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(3303), 1, - anon_sym_LPAREN, - STATE(259), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(920), 1, + aux_sym_member_expression_repeat1, + STATE(1100), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(1119), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(254), 2, - sym__rhs_expression, - sym_call_expression, - STATE(480), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -108484,53 +159298,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50100] = 22, - ACTIONS(362), 1, + [83229] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(528), 1, - anon_sym_RBRACE, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(3373), 1, + ACTIONS(4337), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4339), 1, + anon_sym_this, + STATE(1357), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, - sym_string, - STATE(2179), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1573), 9, + STATE(2924), 9, sym__literal, sym_integer, sym_float, @@ -108540,53 +159345,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50178] = 22, - ACTIONS(35), 1, + [83294] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2939), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(113), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2731), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -108596,53 +159392,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50256] = 22, - ACTIONS(362), 1, + [83359] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2879), 1, - anon_sym_RBRACK, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, - sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(108), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2758), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -108652,53 +159439,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50334] = 22, - ACTIONS(35), 1, + [83424] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2917), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(117), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2852), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -108708,53 +159486,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50412] = 22, - ACTIONS(35), 1, + [83489] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2971), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1610), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2738), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -108764,53 +159533,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50490] = 22, - ACTIONS(35), 1, + [83554] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2887), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1500), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2867), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -108820,53 +159580,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50568] = 22, - ACTIONS(362), 1, + [83619] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4509), 1, sym_identifier, - ACTIONS(3301), 1, - anon_sym_LPAREN, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1502), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(202), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -108876,53 +159627,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50646] = 22, - ACTIONS(35), 1, + [83684] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2863), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1503), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2865), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -108932,53 +159674,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50724] = 22, - ACTIONS(35), 1, + [83749] = 18, + ACTIONS(1311), 1, + sym_identifier, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1321), 1, + anon_sym_this, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2955), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(109), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2733), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2926), 9, sym__literal, sym_integer, sym_float, @@ -108988,53 +159721,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50802] = 22, - ACTIONS(35), 1, + [83814] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2851), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, + STATE(907), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2864), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -109044,53 +159768,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50880] = 22, - ACTIONS(35), 1, + [83879] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2831), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3597), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, + STATE(908), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2862), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -109100,53 +159815,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [50958] = 22, - ACTIONS(35), 1, + [83944] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, + ACTIONS(2105), 1, anon_sym_this, - ACTIONS(3327), 1, - anon_sym_LPAREN, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3597), 1, + sym_identifier, + STATE(205), 1, + sym__lhs_expression, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, + STATE(909), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1540), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2163), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -109156,53 +159862,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51036] = 22, - ACTIONS(35), 1, + [84009] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2963), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(4483), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4509), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1499), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2734), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2927), 9, sym__literal, sym_integer, sym_float, @@ -109212,53 +159909,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51114] = 22, - ACTIONS(362), 1, + [84074] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(2919), 1, - anon_sym_RPAREN, - ACTIONS(3063), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(882), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(901), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2701), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -109268,93 +159956,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51192] = 6, - ACTIONS(3057), 1, - anon_sym_EQ_GT, - ACTIONS(3375), 1, - anon_sym_DOT, - ACTIONS(3377), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 18, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [51238] = 22, - ACTIONS(35), 1, + [84139] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(2889), 1, - sym__lookback_semicolon, - ACTIONS(3163), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(903), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2858), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -109364,88 +160003,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51316] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3381), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3379), 21, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [51356] = 21, - ACTIONS(362), 1, + [84204] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(201), 1, + STATE(882), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, - sym_string, - STATE(2179), 1, + STATE(913), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1641), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -109455,87 +160050,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51431] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1542), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1540), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [51470] = 21, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, + [84269] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(2105), 1, + anon_sym_this, + ACTIONS(3597), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(2082), 1, + STATE(205), 1, sym__lhs_expression, + STATE(882), 1, + sym_member_expression, + STATE(906), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1283), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1275), 9, + STATE(2928), 9, sym__literal, sym_integer, sym_float, @@ -109545,90 +160097,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51545] = 6, - ACTIONS(2320), 1, - anon_sym_DOT, - ACTIONS(2322), 1, - anon_sym_QMARK, - ACTIONS(3187), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [51590] = 21, - ACTIONS(430), 1, + [84334] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(259), 1, + STATE(1541), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, - sym_string, - STATE(2181), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1198), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -109638,51 +160144,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51665] = 21, - ACTIONS(736), 1, + [84399] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(4475), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(4539), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(1543), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1283), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -109692,49 +160191,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51740] = 19, - ACTIONS(362), 1, + [84464] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, + ACTIONS(4475), 1, anon_sym_this, - STATE(1557), 1, + ACTIONS(4539), 1, + sym_identifier, + STATE(1544), 1, aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(2061), 1, sym_member_expression, - STATE(1865), 1, + STATE(2062), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(522), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2351), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -109744,51 +160238,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51811] = 21, - ACTIONS(35), 1, + [84529] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(2117), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3579), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(898), 1, + aux_sym_member_expression_repeat1, + STATE(1051), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2856), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2929), 9, sym__literal, sym_integer, sym_float, @@ -109798,51 +160285,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51886] = 21, - ACTIONS(736), 1, + [84594] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(4357), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(1368), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(1932), 1, + STATE(2296), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2278), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -109852,51 +160332,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [51961] = 21, - ACTIONS(35), 1, + [84659] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, - sym_identifier, - ACTIONS(3223), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1367), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1636), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2163), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -109906,51 +160379,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52036] = 21, - ACTIONS(430), 1, + [84724] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3071), 1, - sym_identifier, - ACTIONS(3073), 1, + ACTIONS(4351), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, + ACTIONS(4357), 1, + sym_identifier, + STATE(1373), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(1922), 1, + STATE(2296), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1937), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -109960,51 +160426,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52111] = 21, - ACTIONS(430), 1, + [84789] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(4475), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, + ACTIONS(4539), 1, + sym_identifier, + STATE(1540), 1, + aux_sym_member_expression_repeat1, + STATE(2061), 1, sym_member_expression, - STATE(1922), 1, - sym_string, - STATE(2181), 1, + STATE(2062), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2010), 9, + STATE(2930), 9, sym__literal, sym_integer, sym_float, @@ -110014,51 +160473,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52186] = 21, - ACTIONS(430), 1, + [84854] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3071), 1, + ACTIONS(4419), 1, sym_identifier, - ACTIONS(3073), 1, + ACTIONS(4421), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, + STATE(1426), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(1922), 1, + STATE(2296), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1937), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -110068,87 +160520,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52261] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(592), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(594), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [52300] = 21, - ACTIONS(35), 1, + [84919] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4419), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1382), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2862), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -110158,85 +160567,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52375] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1454), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1452), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [52414] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(466), 1, - sym_escape_sequence, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3385), 1, + [84984] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(3387), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(3393), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - STATE(1482), 1, + ACTIONS(4419), 1, + sym_identifier, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1391), 1, aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, + STATE(2208), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2223), 1, + sym_member_expression, + STATE(2296), 1, sym_string, - ACTIONS(384), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(388), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(392), 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(470), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -110246,87 +160614,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52485] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1458), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1456), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [52524] = 21, - ACTIONS(362), 1, + [85049] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(4351), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4357), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1364), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2701), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2931), 9, sym__literal, sym_integer, sym_float, @@ -110336,51 +160661,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52599] = 21, - ACTIONS(35), 1, + [85114] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(912), 1, + aux_sym_member_expression_repeat1, + STATE(1049), 1, + sym__lhs_expression, + STATE(1050), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2864), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -110390,51 +160708,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52674] = 21, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, + [85179] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(1552), 1, + anon_sym_this, + ACTIONS(3587), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(2082), 1, + STATE(900), 1, + aux_sym_member_expression_repeat1, + STATE(1049), 1, sym__lhs_expression, + STATE(1050), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1275), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -110444,87 +160755,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52749] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1570), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1568), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [52788] = 21, - ACTIONS(362), 1, + [85244] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1552), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3587), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(916), 1, + aux_sym_member_expression_repeat1, + STATE(1049), 1, + sym__lhs_expression, + STATE(1050), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2345), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -110534,51 +160802,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52863] = 21, - ACTIONS(362), 1, + [85309] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(576), 1, + ACTIONS(4419), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4421), 1, + anon_sym_this, + STATE(1402), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(433), 9, + STATE(2932), 9, sym__literal, sym_integer, sym_float, @@ -110588,51 +160849,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [52938] = 21, - ACTIONS(942), 1, + [85374] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(1552), 1, + anon_sym_this, + ACTIONS(3587), 1, sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, - sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, - sym__call, - STATE(2279), 1, + STATE(914), 1, + aux_sym_member_expression_repeat1, + STATE(1049), 1, sym__lhs_expression, + STATE(1050), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1224), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, + STATE(2933), 9, sym__literal, sym_integer, sym_float, @@ -110642,51 +160896,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53013] = 21, - ACTIONS(35), 1, + [85439] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(1102), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2865), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -110696,51 +160943,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53088] = 21, - ACTIONS(942), 1, + [85504] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1842), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, - sym__call, - STATE(2279), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1244), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -110750,121 +160990,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53163] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1450), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1448), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [53202] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1418), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1416), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [53241] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(474), 1, - sym_escape_sequence, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3385), 1, + [85569] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(3387), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(3393), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - STATE(1482), 1, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1993), 1, aux_sym_member_expression_repeat1, - STATE(1876), 1, + STATE(2265), 1, sym_member_expression, - STATE(1877), 1, + STATE(2268), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - ACTIONS(384), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(388), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(392), 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(476), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -110874,51 +161037,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53312] = 21, - ACTIONS(35), 1, + [85634] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1377), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(137), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2694), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -110928,51 +161084,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53387] = 21, - ACTIONS(430), 1, + [85699] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3253), 1, - sym_identifier, - ACTIONS(3255), 1, + ACTIONS(1377), 1, anon_sym_this, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, + ACTIONS(1516), 1, + sym_identifier, + STATE(134), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(1922), 1, + STATE(2296), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2010), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -110982,51 +161131,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53462] = 21, - ACTIONS(35), 1, + [85764] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1377), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(135), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2849), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -111036,51 +161178,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53537] = 21, - ACTIONS(362), 1, + [85829] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(576), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(201), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(1117), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(663), 2, - sym__rhs_expression, - sym_call_expression, - STATE(433), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -111090,51 +161225,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53612] = 21, - ACTIONS(35), 1, + [85894] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1833), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2867), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -111144,51 +161272,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53687] = 21, - ACTIONS(430), 1, + [85959] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(540), 1, + ACTIONS(4563), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - STATE(259), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(1598), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(480), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -111198,101 +161319,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53762] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(478), 1, - sym_escape_sequence, - ACTIONS(494), 1, - anon_sym_null, - ACTIONS(3395), 1, - sym_comment, - ACTIONS(3397), 1, - sym_identifier, - ACTIONS(3400), 1, + [86024] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(3403), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3406), 1, - anon_sym_this, - ACTIONS(3409), 1, - aux_sym_string_token1, - ACTIONS(3412), 1, - aux_sym_string_token3, - STATE(1482), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, - ACTIONS(497), 2, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 2, + ACTIONS(1329), 1, aux_sym_float_token1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(509), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(483), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [53833] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(518), 1, - sym_escape_sequence, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3385), 1, - anon_sym_LBRACE, - ACTIONS(3387), 1, - anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(3393), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - STATE(1482), 1, + ACTIONS(3641), 1, + sym_identifier, + STATE(938), 1, aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, + STATE(1004), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, sym_string, - ACTIONS(384), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(388), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(392), 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(520), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -111302,51 +161366,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53904] = 21, - ACTIONS(430), 1, + [86089] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1365), 1, anon_sym_this, - ACTIONS(540), 1, + ACTIONS(3537), 1, sym_identifier, - ACTIONS(546), 1, - anon_sym_new, - STATE(259), 1, + STATE(874), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, + sym__lhs_expression, + STATE(949), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, + STATE(2296), 1, sym_string, - STATE(2254), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(480), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -111356,51 +161413,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [53979] = 21, - ACTIONS(35), 1, + [86154] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1365), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3537), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(877), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, + sym__lhs_expression, + STATE(949), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2777), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -111410,51 +161460,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54054] = 21, - ACTIONS(362), 1, + [86219] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1345), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2758), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -111464,51 +161507,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54129] = 21, - ACTIONS(35), 1, + [86284] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4429), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4435), 1, + anon_sym_this, + STATE(1859), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2852), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2897), 9, sym__literal, sym_integer, sym_float, @@ -111518,51 +161554,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54204] = 21, - ACTIONS(362), 1, + [86349] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(3193), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, - sym_string, - STATE(2179), 1, + STATE(1349), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1325), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -111572,85 +161601,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54279] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1446), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1444), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [54318] = 19, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(522), 1, - sym_escape_sequence, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3385), 1, + [86414] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(3387), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3391), 1, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(3393), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3395), 1, - sym_comment, - STATE(1482), 1, + ACTIONS(1365), 1, + anon_sym_this, + ACTIONS(3537), 1, + sym_identifier, + STATE(867), 1, aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, + STATE(948), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(949), 1, + sym_member_expression, + STATE(2296), 1, sym_string, - ACTIONS(384), 2, - aux_sym_integer_token1, - aux_sym_integer_token2, - ACTIONS(388), 2, - aux_sym_float_token1, - aux_sym_float_token2, - ACTIONS(392), 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(524), 3, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - STATE(2300), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -111660,51 +161648,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54389] = 21, - ACTIONS(35), 1, + [86479] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4757), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2603), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2693), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -111714,51 +161695,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54464] = 21, - ACTIONS(35), 1, + [86544] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1347), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2851), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -111768,51 +161742,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54539] = 21, - ACTIONS(362), 1, + [86609] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3219), 1, + ACTIONS(1377), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(1516), 1, + sym_identifier, + STATE(136), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1961), 9, + STATE(2919), 9, sym__literal, sym_integer, sym_float, @@ -111822,51 +161789,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54614] = 21, - ACTIONS(35), 1, + [86674] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4731), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2052), 1, sym__lhs_expression, + STATE(2055), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2696), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -111876,51 +161836,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54689] = 21, - ACTIONS(362), 1, + [86739] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(201), 1, + STATE(945), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1307), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -111930,51 +161883,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54764] = 21, - ACTIONS(362), 1, + [86804] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3217), 1, + ACTIONS(3927), 1, sym_identifier, - ACTIONS(3219), 1, + ACTIONS(3929), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(1106), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1961), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -111984,49 +161930,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54839] = 19, - ACTIONS(362), 1, + [86869] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, + ACTIONS(4621), 1, anon_sym_this, - STATE(1557), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + ACTIONS(4731), 1, + sym_identifier, + STATE(1010), 1, sym_member_expression, - STATE(1865), 1, + STATE(2052), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2057), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(466), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2351), 9, + STATE(2921), 9, sym__literal, sym_integer, sym_float, @@ -112036,51 +161977,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54910] = 21, - ACTIONS(35), 1, + [86934] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2453), 1, sym__lhs_expression, + STATE(3263), 1, + sym_function_arg, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2706), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -112090,51 +162024,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [54985] = 21, - ACTIONS(362), 1, + [86999] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(925), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2668), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -112144,51 +162071,79 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55060] = 21, - ACTIONS(362), 1, + [87064] = 6, + ACTIONS(4759), 1, + anon_sym_DOT, + ACTIONS(4761), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1757), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1753), 11, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1755), 11, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [87105] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(918), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2620), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -112198,51 +162153,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55135] = 21, - ACTIONS(430), 1, + [87170] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(259), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(917), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, + STATE(2296), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1198), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -112252,159 +162200,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55210] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1430), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1428), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [55249] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1438), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1436), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [55288] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1534), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1532), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [55327] = 21, - ACTIONS(35), 1, + [87235] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4621), 1, + anon_sym_this, + ACTIONS(4731), 1, + sym_identifier, + STATE(1010), 1, + sym_member_expression, + STATE(2052), 1, + sym__lhs_expression, + STATE(2053), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, + sym_string, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2921), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [87300] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1365), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3537), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(873), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, + sym__lhs_expression, + STATE(949), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2846), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2920), 9, sym__literal, sym_integer, sym_float, @@ -112414,90 +162294,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55402] = 6, - ACTIONS(3203), 1, - anon_sym_EQ_GT, - ACTIONS(3415), 1, - anon_sym_DOT, - ACTIONS(3417), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [55447] = 21, - ACTIONS(362), 1, + [87365] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1518), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2447), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -112507,51 +162341,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55522] = 21, - ACTIONS(362), 1, + [87430] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(4461), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4527), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1520), 1, + aux_sym_member_expression_repeat1, + STATE(2265), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(2268), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2608), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2922), 9, sym__literal, sym_integer, sym_float, @@ -112561,87 +162388,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55597] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(544), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(542), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [55636] = 21, - ACTIONS(362), 1, + [87495] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4763), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2616), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2487), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -112651,87 +162435,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55711] = 3, + [87560] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(919), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1558), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1556), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [55750] = 21, - ACTIONS(362), 1, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [87625] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4765), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2625), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2825), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -112741,51 +162529,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55825] = 21, - ACTIONS(35), 1, + [87690] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(1094), 1, + aux_sym_member_expression_repeat1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2691), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -112795,51 +162576,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55900] = 21, - ACTIONS(362), 1, + [87755] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3145), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4767), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2630), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1980), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -112849,51 +162623,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [55975] = 21, - ACTIONS(736), 1, + [87820] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(151), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(1932), 1, + STATE(2296), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2104), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -112903,51 +162670,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56050] = 21, - ACTIONS(35), 1, + [87885] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(1362), 1, + STATE(931), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1384), 1, + STATE(2296), 1, sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1544), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1506), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -112957,51 +162717,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56125] = 21, - ACTIONS(362), 1, + [87950] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(201), 1, + STATE(154), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -113011,87 +162764,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56200] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1580), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1578), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [56239] = 21, - ACTIONS(430), 1, + [88015] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, - anon_sym_this, - ACTIONS(540), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(546), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4769), 1, anon_sym_new, - STATE(259), 1, + STATE(1010), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, + STATE(2296), 1, sym_string, - STATE(2254), 1, + STATE(2550), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(282), 2, - sym__rhs_expression, - sym_call_expression, - STATE(480), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -113101,51 +162811,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56314] = 21, - ACTIONS(35), 1, + [88080] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(150), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2841), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -113155,51 +162858,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56389] = 21, - ACTIONS(362), 1, + [88145] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3321), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(201), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(851), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(769), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -113209,51 +162905,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56464] = 21, - ACTIONS(430), 1, + [88210] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(3167), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(259), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, - sym_string, - STATE(2181), 1, + STATE(1346), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1214), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -113263,51 +162952,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56539] = 21, - ACTIONS(362), 1, + [88275] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4653), 1, + anon_sym_this, + STATE(1783), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2866), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -113317,51 +162999,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56614] = 21, - ACTIONS(35), 1, + [88340] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4653), 1, + anon_sym_this, + STATE(1793), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2681), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -113371,51 +163046,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56689] = 21, - ACTIONS(362), 1, + [88405] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4653), 1, + anon_sym_this, + STATE(1807), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, + sym__lhs_expression, + STATE(2283), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(767), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -113425,51 +163093,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56764] = 21, - ACTIONS(362), 1, + [88470] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + ACTIONS(4771), 1, + anon_sym_new, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2820), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2663), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -113479,51 +163140,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56839] = 21, - ACTIONS(362), 1, + [88535] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(1512), 1, anon_sym_this, - ACTIONS(3321), 1, + ACTIONS(1568), 1, sym_identifier, - STATE(201), 1, + STATE(152), 1, + aux_sym_member_expression_repeat1, + STATE(205), 1, + sym__lhs_expression, + STATE(548), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(770), 2, - sym__rhs_expression, - sym_call_expression, - STATE(769), 9, + STATE(2912), 9, sym__literal, sym_integer, sym_float, @@ -113533,88 +163187,91 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [56914] = 4, - ACTIONS(3419), 1, - anon_sym_COLON, + [88600] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(2205), 1, + anon_sym_this, + ACTIONS(3589), 1, + sym_identifier, + STATE(904), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1626), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1628), 17, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [56955] = 21, - ACTIONS(362), 1, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2914), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [88665] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(910), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2369), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -113624,51 +163281,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57030] = 21, - ACTIONS(362), 1, + [88730] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3321), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(201), 1, + STATE(915), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(769), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -113678,51 +163328,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57105] = 21, - ACTIONS(430), 1, + [88795] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(538), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(2435), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(259), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(850), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1175), 1, + STATE(2296), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1198), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -113732,51 +163375,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57180] = 21, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(736), 1, + [88860] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2443), 1, + ACTIONS(4647), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, - sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(2082), 1, + ACTIONS(4653), 1, + anon_sym_this, + STATE(1767), 1, + aux_sym_member_expression_repeat1, + STATE(2281), 1, sym__lhs_expression, + STATE(2283), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1275), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -113786,51 +163422,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57255] = 21, - ACTIONS(362), 1, + [88925] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1534), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3484), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(859), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, + sym__lhs_expression, + STATE(949), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2466), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -113840,51 +163469,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57330] = 21, - ACTIONS(736), 1, + [88990] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3147), 1, + ACTIONS(1534), 1, anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(3484), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(860), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, + sym__lhs_expression, + STATE(949), 1, sym_member_expression, - STATE(1932), 1, + STATE(2296), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1283), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1992), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -113894,87 +163516,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57405] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3424), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3422), 20, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_DASH_GT, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [57444] = 21, - ACTIONS(942), 1, + [89055] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(954), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(958), 1, - anon_sym_new, - ACTIONS(960), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(962), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(964), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(966), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(968), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(972), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(974), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(2439), 1, + ACTIONS(1534), 1, + anon_sym_this, + ACTIONS(3484), 1, sym_identifier, - STATE(1207), 1, - sym_string, - STATE(1212), 1, - sym_member_expression, - STATE(1276), 1, - sym__constructor_call, - STATE(1277), 1, - sym__call, - STATE(2279), 1, + STATE(863), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, sym__lhs_expression, + STATE(949), 1, + sym_member_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(970), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1323), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1227), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -113984,51 +163563,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57519] = 21, - ACTIONS(35), 1, + [89120] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(2205), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3589), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(902), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2720), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2914), 9, sym__literal, sym_integer, sym_float, @@ -114038,51 +163610,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57594] = 21, - ACTIONS(362), 1, + [89185] = 18, + ACTIONS(41), 1, + anon_sym_this, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3641), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(930), 1, + aux_sym_member_expression_repeat1, + STATE(1004), 1, + sym__lhs_expression, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2759), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2888), 9, sym__literal, sym_integer, sym_float, @@ -114092,51 +163657,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57669] = 21, - ACTIONS(736), 1, + [89250] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3169), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + ACTIONS(2153), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(844), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(1932), 1, + STATE(2296), 1, sym_string, - STATE(2082), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1298), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1992), 9, + STATE(2916), 9, sym__literal, sym_integer, sym_float, @@ -114146,87 +163704,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57744] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1512), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1510), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [57783] = 21, - ACTIONS(362), 1, + [89315] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(576), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(201), 1, + ACTIONS(2153), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(846), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(433), 9, + STATE(2916), 9, sym__literal, sym_integer, sym_float, @@ -114236,51 +163751,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57858] = 21, - ACTIONS(35), 1, + [89380] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(2153), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(847), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2672), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2916), 9, sym__literal, sym_integer, sym_float, @@ -114290,51 +163798,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [57933] = 21, - ACTIONS(35), 1, + [89445] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3319), 1, + ACTIONS(1534), 1, + anon_sym_this, + ACTIONS(3484), 1, sym_identifier, - STATE(1362), 1, + STATE(864), 1, + aux_sym_member_expression_repeat1, + STATE(948), 1, + sym__lhs_expression, + STATE(949), 1, sym_member_expression, - STATE(1384), 1, + STATE(2296), 1, sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1589), 9, + STATE(2915), 9, sym__literal, sym_integer, sym_float, @@ -114344,87 +163845,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58008] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(580), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(578), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [58047] = 21, - ACTIONS(362), 1, + [89510] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(548), 1, + ACTIONS(1500), 1, sym_identifier, - STATE(201), 1, + ACTIONS(1502), 1, + anon_sym_this, + STATE(133), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, - sym_string, - STATE(2148), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(488), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -114434,51 +163892,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58122] = 21, - ACTIONS(35), 1, + [89575] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(854), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2686), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -114488,51 +163939,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58197] = 21, - ACTIONS(35), 1, + [89640] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(1500), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(1502), 1, + anon_sym_this, + STATE(124), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2884), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -114542,51 +163986,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58272] = 21, - ACTIONS(362), 1, + [89705] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, - sym_string, - STATE(2148), 1, + STATE(1602), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(767), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -114596,51 +164033,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58347] = 21, - ACTIONS(362), 1, + [89770] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3145), 1, + ACTIONS(1500), 1, sym_identifier, - ACTIONS(3147), 1, + ACTIONS(1502), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(126), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1980), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -114650,51 +164080,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58422] = 21, - ACTIONS(362), 1, + [89835] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(1516), 1, sym_identifier, - STATE(201), 1, + ACTIONS(2153), 1, + anon_sym_this, + STATE(205), 1, + sym__lhs_expression, + STATE(843), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1307), 9, + STATE(2916), 9, sym__literal, sym_integer, sym_float, @@ -114704,87 +164127,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58497] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1584), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1582), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [58536] = 21, - ACTIONS(362), 1, + [89900] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(1590), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3476), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(205), 1, + sym__lhs_expression, + STATE(852), 1, + aux_sym_member_expression_repeat1, + STATE(882), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2547), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2877), 9, sym__literal, sym_integer, sym_float, @@ -114794,51 +164174,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58611] = 21, - ACTIONS(736), 1, + [89965] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(892), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2088), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -114848,51 +164221,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58686] = 21, - ACTIONS(362), 1, + [90030] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(895), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2307), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -114902,51 +164268,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58761] = 21, - ACTIONS(362), 1, + [90095] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(201), 1, + STATE(891), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, - sym_string, - STATE(2179), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1641), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -114956,51 +164315,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58836] = 21, - ACTIONS(362), 1, + [90160] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(1500), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(1502), 1, + anon_sym_this, + STATE(127), 1, + aux_sym_member_expression_repeat1, + STATE(340), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(357), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2872), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2917), 9, sym__literal, sym_integer, sym_float, @@ -115010,49 +164362,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58911] = 19, - ACTIONS(485), 1, + [90225] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(488), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(494), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(497), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(500), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(503), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(506), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(512), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(515), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3426), 1, + ACTIONS(3609), 1, sym_identifier, - ACTIONS(3429), 1, + ACTIONS(3611), 1, anon_sym_this, - STATE(1557), 1, + STATE(921), 1, aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(1100), 1, sym_member_expression, - STATE(1865), 1, + STATE(1119), 1, sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(478), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2351), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -115062,51 +164409,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [58982] = 21, - ACTIONS(362), 1, + [90290] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3353), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(923), 1, + aux_sym_member_expression_repeat1, + STATE(1100), 1, sym_member_expression, - STATE(2007), 1, - sym_string, - STATE(2179), 1, + STATE(1119), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2809), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2246), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -115116,51 +164456,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59057] = 21, - ACTIONS(362), 1, + [90355] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(3609), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3611), 1, + anon_sym_this, + STATE(924), 1, + aux_sym_member_expression_repeat1, + STATE(1100), 1, sym_member_expression, - STATE(2007), 1, - sym_string, - STATE(2179), 1, + STATE(1119), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2122), 9, + STATE(2908), 9, sym__literal, sym_integer, sym_float, @@ -115170,51 +164503,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59132] = 21, - ACTIONS(736), 1, + [90420] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3063), 1, + ACTIONS(2585), 1, anon_sym_this, - ACTIONS(3347), 1, + ACTIONS(3561), 1, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, + STATE(894), 1, + aux_sym_member_expression_repeat1, + STATE(990), 1, sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, + STATE(993), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2075), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, + STATE(2918), 9, sym__literal, sym_integer, sym_float, @@ -115224,51 +164550,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59207] = 21, - ACTIONS(362), 1, + [90485] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(548), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, - sym_string, - STATE(2148), 1, + STATE(1599), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(488), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -115278,51 +164597,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59282] = 21, - ACTIONS(362), 1, + [90550] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2441), 1, + ACTIONS(4563), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4565), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1204), 1, - sym_string, - STATE(2179), 1, + STATE(1601), 1, + aux_sym_member_expression_repeat1, + STATE(2052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1307), 9, + STATE(2911), 9, sym__literal, sym_integer, sym_float, @@ -115332,51 +164644,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59357] = 21, - ACTIONS(35), 1, + [90615] = 18, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4497), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4577), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1618), 1, + aux_sym_member_expression_repeat1, + STATE(2208), 1, + sym__lhs_expression, + STATE(2223), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2805), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2925), 9, sym__literal, sym_integer, sym_float, @@ -115386,51 +164691,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59432] = 21, - ACTIONS(362), 1, + [90680] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(3191), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + STATE(1007), 1, sym_member_expression, - STATE(2179), 1, + STATE(1012), 1, sym__lhs_expression, - STATE(2256), 1, + STATE(2296), 1, sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2205), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -115440,87 +164736,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59507] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1500), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1498), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [59546] = 21, - ACTIONS(362), 1, + [90742] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, + STATE(1066), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2596), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -115530,87 +164781,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59621] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1406), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1404), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [59660] = 21, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(736), 1, + [90804] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(748), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(756), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(758), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(760), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(762), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(766), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(768), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3432), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1208), 1, - sym_string, - STATE(1210), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(2082), 1, + STATE(2296), 1, + sym_string, + STATE(2419), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1304), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1269), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -115620,51 +164826,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59735] = 21, - ACTIONS(362), 1, + [90866] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(3094), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -115674,51 +164871,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59810] = 21, - ACTIONS(35), 1, + [90928] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2352), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2855), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -115728,51 +164916,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59885] = 21, - ACTIONS(35), 1, + [90990] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2356), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2774), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -115782,51 +164961,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [59960] = 21, - ACTIONS(35), 1, + [91052] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(3277), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2753), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -115836,126 +165006,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60035] = 6, - ACTIONS(2124), 1, - anon_sym_DOT, - ACTIONS(2126), 1, - anon_sym_QMARK, - ACTIONS(3187), 1, - anon_sym_EQ_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_RBRACE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [60080] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1554), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1552), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [60119] = 21, - ACTIONS(35), 1, + [91114] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2343), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2739), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -115965,87 +165051,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60194] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1442), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1440), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [60233] = 21, - ACTIONS(35), 1, + [91176] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2862), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2738), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116055,51 +165096,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60308] = 21, - ACTIONS(430), 1, + [91238] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(566), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(259), 1, + STATE(1010), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, + STATE(2296), 1, sym_string, - STATE(2254), 1, + STATE(2845), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(281), 2, - sym__rhs_expression, - sym_call_expression, - STATE(416), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116109,88 +165141,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60383] = 4, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3436), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3434), 19, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [60424] = 21, - ACTIONS(35), 1, + [91300] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, + ACTIONS(4653), 1, anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4773), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2463), 1, sym__lhs_expression, + STATE(2521), 1, + sym_member_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2732), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2851), 9, sym__literal, sym_integer, sym_float, @@ -116200,87 +165186,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60499] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1434), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1432), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [60538] = 21, - ACTIONS(362), 1, + [91362] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2325), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2430), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116290,51 +165231,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60613] = 21, - ACTIONS(362), 1, + [91424] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2366), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2853), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116344,51 +165276,106 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60688] = 21, - ACTIONS(35), 1, + [91486] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1875), 11, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 14, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(45), 1, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [91520] = 5, + ACTIONS(4775), 1, + anon_sym_EQ, + STATE(371), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4753), 11, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4751), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, anon_sym_new, - ACTIONS(59), 1, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [91558] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2449), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(1362), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, + STATE(1084), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1459), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1506), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -116398,87 +165385,87 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60763] = 3, + [91620] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(3605), 1, + sym_identifier, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, + sym_member_expression, + STATE(1071), 1, + sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1496), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1494), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [60802] = 21, - ACTIONS(362), 1, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(2849), 9, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + sym_pair, + [91682] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, - STATE(2179), 1, + STATE(2937), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2325), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116488,51 +165475,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60877] = 21, - ACTIONS(35), 1, + [91744] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3221), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3223), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2943), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1544), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2163), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116542,51 +165520,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [60952] = 21, - ACTIONS(35), 1, + [91806] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2428), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2735), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116596,90 +165565,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61027] = 6, - ACTIONS(3203), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, - anon_sym_DOT, - ACTIONS(3440), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [61072] = 21, - ACTIONS(35), 1, + [91868] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(2946), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2734), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116689,51 +165610,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61147] = 21, - ACTIONS(35), 1, + [91930] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3605), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3607), 1, + anon_sym_this, + STATE(1007), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(1052), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2733), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -116743,51 +165655,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61222] = 21, - ACTIONS(35), 1, + [91992] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, + STATE(2282), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2731), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -116797,51 +165700,44 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61297] = 21, - ACTIONS(362), 1, + [92054] = 18, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4777), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, + ACTIONS(4779), 1, + sym__closing_brace_marker, + STATE(2430), 1, + sym__closing_brace, + STATE(2469), 1, + sym_pair, + STATE(2712), 1, + sym_structure_type_pair, + STATE(3168), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -116850,52 +165746,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [61372] = 21, - ACTIONS(362), 1, + [92118] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2374), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(765), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, + STATE(2412), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(767), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116905,51 +165791,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61447] = 21, - ACTIONS(362), 1, + [92180] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(380), 1, - anon_sym_new, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(548), 1, + ACTIONS(4327), 1, sym_identifier, - STATE(201), 1, + ACTIONS(4329), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(304), 1, + STATE(2296), 1, sym_string, - STATE(2148), 1, + STATE(2405), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(488), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -116959,87 +165836,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61522] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1538), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1536), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [61561] = 21, - ACTIONS(35), 1, + [92242] = 17, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(3927), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, + ACTIONS(3929), 1, + anon_sym_this, + STATE(1010), 1, sym_member_expression, - STATE(2035), 1, + STATE(2296), 1, sym_string, - STATE(2161), 1, + STATE(3131), 1, sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2818), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2844), 9, sym__literal, sym_integer, sym_float, @@ -117049,89 +165881,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61636] = 5, - ACTIONS(3442), 1, - anon_sym_RPAREN, - STATE(1598), 1, - aux_sym_variable_declaration_repeat2, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3447), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3445), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [61679] = 21, - ACTIONS(430), 1, + [92304] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, + ACTIONS(3605), 1, sym_identifier, - ACTIONS(566), 1, + ACTIONS(3607), 1, anon_sym_this, - STATE(259), 1, + STATE(1007), 1, sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, + STATE(1061), 1, sym__lhs_expression, + STATE(2296), 1, + sym_string, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(469), 2, - sym__rhs_expression, - sym_call_expression, - STATE(416), 9, + STATE(2849), 9, sym__literal, sym_integer, sym_float, @@ -117141,85 +165926,105 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61754] = 3, + [92366] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1546), 12, + ACTIONS(1755), 11, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 14, + sym__closing_brace_marker, anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_DASH_GT, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1544), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [61793] = 19, - ACTIONS(362), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [92400] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 11, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 13, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [92436] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(4327), 1, sym_identifier, - ACTIONS(3163), 1, + ACTIONS(4329), 1, anon_sym_this, - STATE(1557), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, + STATE(1010), 1, sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(2296), 1, sym_string, + STATE(2350), 1, + sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(518), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2351), 9, + STATE(2955), 9, sym__literal, sym_integer, sym_float, @@ -117229,51 +166034,42 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [61864] = 21, - ACTIONS(362), 1, + [92498] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(472), 1, - anon_sym_this, - ACTIONS(2445), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, + ACTIONS(4783), 1, + sym__closing_brace_marker, + STATE(1749), 1, + sym__closing_brace, + STATE(2476), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(207), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1449), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -117282,52 +166078,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [61939] = 21, - ACTIONS(362), 1, + [92559] = 17, + ACTIONS(209), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(552), 1, - anon_sym_this, - ACTIONS(3373), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1395), 1, + STATE(372), 1, + sym__closing_brace, + STATE(2514), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(214), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1573), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -117336,52 +166122,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62014] = 21, - ACTIONS(35), 1, + [92620] = 17, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(1569), 1, + sym__closing_brace, + STATE(2519), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2684), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -117390,52 +166166,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62089] = 21, - ACTIONS(362), 1, + [92681] = 17, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3353), 1, + ACTIONS(4779), 1, + sym__closing_brace_marker, + ACTIONS(4781), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(2007), 1, + STATE(1749), 1, + sym__closing_brace, + STATE(2496), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2246), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -117444,52 +166210,73 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62164] = 21, - ACTIONS(35), 1, + [92742] = 4, + ACTIONS(4749), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1987), 11, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(45), 1, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1990), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, anon_sym_new, - ACTIONS(59), 1, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [92777] = 17, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(1984), 1, + sym__closing_brace, + STATE(2508), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2705), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -117498,52 +166285,42 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62239] = 21, - ACTIONS(430), 1, + [92838] = 17, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3215), 1, - anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, - sym_member_expression, - STATE(1922), 1, + STATE(196), 1, + sym__closing_brace, + STATE(2469), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(469), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1974), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -117552,106 +166329,101 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62314] = 21, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + [92899] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(4785), 1, + anon_sym_DOT, + ACTIONS(4787), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 8, + anon_sym_in, + anon_sym_this, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, aux_sym_float_token1, - ACTIONS(83), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [92937] = 5, + ACTIONS(4789), 1, + anon_sym_EQ, + STATE(176), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(4753), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4751), 11, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2626), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [62389] = 21, - ACTIONS(35), 1, + sym_identifier, + [92973] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4791), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3282), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2744), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -117660,88 +166432,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62464] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1492), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1490), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [62503] = 21, - ACTIONS(362), 1, + [93028] = 14, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, + STATE(2683), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2641), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(2859), 9, sym__literal, sym_integer, sym_float, @@ -117751,51 +166471,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [62578] = 21, - ACTIONS(35), 1, + [93081] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4795), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3227), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2699), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -117804,52 +166511,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62653] = 21, - ACTIONS(35), 1, + [93136] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4797), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3229), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2695), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -117858,125 +166551,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62728] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1402), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1400), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [62767] = 4, - ACTIONS(2637), 1, - anon_sym_DASH_GT, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(3451), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3449), 19, - sym__lookback_semicolon, - anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [62808] = 21, - ACTIONS(362), 1, + [93191] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4799), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, + STATE(3171), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, + STATE(3231), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2291), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -117985,88 +166591,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62883] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1394), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1392), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [62922] = 21, - ACTIONS(362), 1, + [93246] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3229), 1, + ACTIONS(4801), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, + STATE(3171), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, + STATE(3232), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2436), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118075,52 +166631,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [62997] = 21, - ACTIONS(362), 1, + [93301] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3199), 1, + ACTIONS(4803), 1, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(2007), 1, + STATE(3171), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, + STATE(3234), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2122), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118129,88 +166671,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63072] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1426), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1424), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [63111] = 21, - ACTIONS(35), 1, + [93356] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4805), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3235), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(1636), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118219,52 +166711,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63186] = 21, - ACTIONS(35), 1, + [93411] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4807), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3237), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2718), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118273,52 +166751,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63261] = 21, - ACTIONS(35), 1, + [93466] = 14, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(2683), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2760), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3095), 9, sym__literal, sym_integer, sym_float, @@ -118328,51 +166790,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63336] = 21, - ACTIONS(35), 1, + [93519] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(2683), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3104), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2761), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3515), 8, sym__literal, sym_integer, sym_float, @@ -118381,52 +166830,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63411] = 21, - ACTIONS(35), 1, + [93574] = 14, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(2683), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2676), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(2984), 9, sym__literal, sym_integer, sym_float, @@ -118436,51 +166869,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63486] = 21, - ACTIONS(35), 1, + [93627] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4809), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3150), 1, + sym_pair, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2673), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118489,88 +166909,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63561] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1398), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1396), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [63600] = 21, - ACTIONS(35), 1, + [93682] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4781), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(2966), 1, + sym_pair, + STATE(3168), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2697), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3418), 8, sym__literal, sym_integer, sym_float, @@ -118579,52 +166949,36 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63675] = 21, - ACTIONS(362), 1, + [93737] = 14, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2447), 1, + ACTIONS(4793), 1, sym_identifier, - STATE(201), 1, - sym_member_expression, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1528), 1, + STATE(2683), 1, sym_string, - STATE(2179), 1, - sym__lhs_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1641), 9, + STATE(3031), 9, sym__literal, sym_integer, sym_float, @@ -118634,49 +166988,38 @@ static const uint16_t ts_small_parse_table[] = { sym_map, sym_object, sym_pair, - [63750] = 19, - ACTIONS(362), 1, + [93790] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(4811), 1, sym_identifier, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1557), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, + STATE(3171), 1, sym_string, + STATE(3188), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - ACTIONS(474), 4, - sym__lookback_semicolon, - anon_sym_LPAREN, - anon_sym_DASH_GT, - anon_sym_LT, - STATE(2351), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118685,52 +167028,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63821] = 21, - ACTIONS(430), 1, + [93845] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(442), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(448), 1, - anon_sym_new, - ACTIONS(450), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(452), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(454), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(456), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(458), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(462), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(464), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(3215), 1, - anon_sym_this, - ACTIONS(3249), 1, + ACTIONS(4813), 1, sym_identifier, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(1910), 1, - sym_member_expression, - STATE(1922), 1, + STATE(3171), 1, sym_string, - STATE(2181), 1, - sym__lhs_expression, + STATE(3240), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1974), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118739,142 +167068,78 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [63896] = 21, - ACTIONS(35), 1, + [93900] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4815), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(2858), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [63971] = 3, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - ACTIONS(1575), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1572), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [64010] = 21, - ACTIONS(35), 1, + STATE(3171), 1, + sym_string, + STATE(3205), 1, + sym_pair, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3335), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + [93955] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4817), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3260), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2659), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -118883,124 +167148,107 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, + [94010] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, + anon_sym_LBRACK, + ACTIONS(1323), 1, + anon_sym_null, + ACTIONS(1325), 1, + aux_sym_integer_token1, + ACTIONS(1327), 1, + aux_sym_integer_token2, + ACTIONS(1329), 1, + aux_sym_float_token1, + ACTIONS(1331), 1, + aux_sym_float_token2, + ACTIONS(1335), 1, + aux_sym_string_token1, + ACTIONS(1337), 1, + aux_sym_string_token3, + ACTIONS(4819), 1, + sym_identifier, + STATE(3171), 1, + sym_string, + STATE(3217), 1, sym_pair, - [64085] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1566), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, + ACTIONS(1333), 2, + anon_sym_true, + anon_sym_false, + STATE(3335), 8, + sym__literal, + sym_integer, + sym_float, + sym_bool, + sym_null, + sym_array, + sym_map, + sym_object, + [94065] = 4, + ACTIONS(4821), 1, anon_sym_EQ, - ACTIONS(1564), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [64124] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(526), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(528), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [64163] = 21, - ACTIONS(362), 1, + ACTIONS(1987), 10, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1990), 11, + anon_sym_this, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [94098] = 15, + ACTIONS(1317), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(390), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3189), 1, + ACTIONS(4823), 1, sym_identifier, - ACTIONS(3191), 1, - anon_sym_this, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(2179), 1, - sym__lhs_expression, - STATE(2256), 1, + STATE(3171), 1, sym_string, + STATE(3219), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(193), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2205), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -119009,52 +167257,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [64238] = 21, - ACTIONS(35), 1, + [94153] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4825), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3222), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2634), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -119063,52 +167297,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [64313] = 21, - ACTIONS(35), 1, + [94208] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4827), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3294), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2755), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -119117,52 +167337,38 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [64388] = 21, - ACTIONS(35), 1, + [94263] = 15, + ACTIONS(1317), 1, + anon_sym_LBRACE, + ACTIONS(1319), 1, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + ACTIONS(1323), 1, anon_sym_null, - ACTIONS(77), 1, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(81), 1, + ACTIONS(1329), 1, aux_sym_float_token1, - ACTIONS(83), 1, + ACTIONS(1331), 1, aux_sym_float_token2, - ACTIONS(87), 1, + ACTIONS(1335), 1, aux_sym_string_token1, - ACTIONS(89), 1, + ACTIONS(1337), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + ACTIONS(4829), 1, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, + STATE(3171), 1, sym_string, - STATE(2161), 1, - sym__lhs_expression, + STATE(3224), 1, + sym_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1333), 2, anon_sym_true, anon_sym_false, - STATE(2640), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, + STATE(3335), 8, sym__literal, sym_integer, sym_float, @@ -119171,22595 +167377,17572 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_map, sym_object, - sym_pair, - [64463] = 6, - ACTIONS(3239), 1, - anon_sym_EQ_GT, - ACTIONS(3453), 1, + [94318] = 6, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(4831), 1, anon_sym_DOT, - ACTIONS(3455), 1, + ACTIONS(4833), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1755), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 11, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_GT, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94354] = 5, + ACTIONS(4835), 1, anon_sym_EQ, - ACTIONS(1502), 17, - anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [64508] = 21, - ACTIONS(35), 1, + STATE(371), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4753), 7, + sym__closing_brace_marker, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(45), 1, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4751), 12, + anon_sym_case, + anon_sym_default, + anon_sym_this, + anon_sym_catch, + anon_sym_else, anon_sym_new, - ACTIONS(59), 1, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + [94388] = 7, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1753), 1, + sym_escape_sequence, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4837), 1, + anon_sym_DOT, + ACTIONS(4841), 1, + anon_sym_QMARK, + ACTIONS(4839), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1755), 16, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, aux_sym_integer_token2, - ACTIONS(81), 1, aux_sym_float_token1, - ACTIONS(83), 1, aux_sym_float_token2, - ACTIONS(87), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(89), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(854), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + sym_identifier, + [94426] = 6, + ACTIONS(4843), 1, + anon_sym_DOT, + ACTIONS(4845), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1757), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1755), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 10, + sym__lookback_semicolon, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(3163), 1, + anon_sym_LBRACK, + anon_sym_DASH_GT, + anon_sym_LT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94462] = 5, + ACTIONS(4847), 1, + anon_sym_EQ, + STATE(1013), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4751), 8, anon_sym_this, - ACTIONS(3299), 1, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + ACTIONS(4753), 10, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94495] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1755), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2629), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [64583] = 21, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(1753), 13, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94524] = 11, + ACTIONS(43), 1, + anon_sym_AT, ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + anon_sym_AT_COLON, + ACTIONS(4851), 1, + anon_sym_final, + ACTIONS(4853), 1, + anon_sym_class, + ACTIONS(4855), 1, + anon_sym_typedef, + ACTIONS(4857), 1, + anon_sym_function, + ACTIONS(4859), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2277), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(2289), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4849), 9, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + [94569] = 11, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(45), 1, + anon_sym_AT_COLON, + ACTIONS(4863), 1, + anon_sym_final, + ACTIONS(4865), 1, + anon_sym_class, + ACTIONS(4867), 1, + anon_sym_typedef, + ACTIONS(4869), 1, + anon_sym_function, + ACTIONS(4871), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2277), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + STATE(2288), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4861), 9, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + [94614] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1875), 7, + anon_sym_this, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1873), 13, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(81), 1, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94643] = 4, + ACTIONS(1757), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, aux_sym_float_token1, - ACTIONS(83), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 12, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94674] = 5, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4873), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1755), 8, + anon_sym_this, + anon_sym_EQ, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1753), 10, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_QMARK, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, + [94707] = 4, + ACTIONS(4821), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1987), 7, + sym__closing_brace_marker, anon_sym_LBRACE, - ACTIONS(998), 1, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1990), 12, + anon_sym_case, + anon_sym_default, anon_sym_this, - ACTIONS(2449), 1, + anon_sym_catch, + anon_sym_else, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(1362), 1, - sym_member_expression, - STATE(1384), 1, - sym_string, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(2161), 1, - sym__lhs_expression, + [94738] = 5, + ACTIONS(4875), 1, + anon_sym_EQ, + STATE(1042), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(4751), 9, + anon_sym_in, + anon_sym_this, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(1636), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1506), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [64658] = 6, - ACTIONS(3137), 1, - anon_sym_EQ_GT, - ACTIONS(3438), 1, + sym_identifier, + ACTIONS(4753), 9, anon_sym_DOT, - ACTIONS(3440), 1, + anon_sym_LBRACE, + anon_sym_LBRACK, anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + [94771] = 5, + ACTIONS(4879), 1, + anon_sym_LPAREN, + STATE(2273), 1, + aux_sym_variable_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 17, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [64703] = 21, - ACTIONS(362), 1, + ACTIONS(4882), 6, anon_sym_LBRACE, - ACTIONS(374), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, aux_sym_float_token2, - ACTIONS(394), 1, aux_sym_string_token1, - ACTIONS(396), 1, aux_sym_string_token3, - ACTIONS(414), 1, - anon_sym_new, - ACTIONS(3063), 1, + ACTIONS(4877), 12, anon_sym_this, - ACTIONS(3229), 1, + anon_sym_Void, + anon_sym_Int, + anon_sym_Float, + anon_sym_Bool, + anon_sym_Null, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(224), 1, - sym__constructor_call, - STATE(226), 1, - sym__call, - STATE(1892), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + [94804] = 6, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4884), 1, + anon_sym_DOT, + ACTIONS(4886), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, + ACTIONS(1755), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2589), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1998), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [64778] = 21, - ACTIONS(430), 1, + sym_identifier, + ACTIONS(1753), 9, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(442), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(450), 1, - anon_sym_null, - ACTIONS(452), 1, - aux_sym_integer_token1, - ACTIONS(454), 1, + anon_sym_LT, aux_sym_integer_token2, - ACTIONS(456), 1, - aux_sym_float_token1, - ACTIONS(458), 1, aux_sym_float_token2, - ACTIONS(462), 1, aux_sym_string_token1, - ACTIONS(464), 1, aux_sym_string_token3, - ACTIONS(546), 1, - anon_sym_new, - ACTIONS(560), 1, - sym_identifier, - ACTIONS(566), 1, - anon_sym_this, - STATE(259), 1, - sym_member_expression, - STATE(261), 1, - sym__constructor_call, - STATE(262), 1, - sym__call, - STATE(296), 1, - sym_string, - STATE(2254), 1, - sym__lhs_expression, + [94838] = 4, + ACTIONS(4749), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(460), 2, - anon_sym_true, - anon_sym_false, - STATE(267), 2, - sym__rhs_expression, - sym_call_expression, - STATE(416), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [64853] = 21, - ACTIONS(35), 1, - anon_sym_LBRACK, - ACTIONS(45), 1, + ACTIONS(1990), 8, + anon_sym_this, anon_sym_new, - ACTIONS(59), 1, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - ACTIONS(81), 1, aux_sym_float_token1, - ACTIONS(83), 1, + anon_sym_true, + anon_sym_false, + sym_identifier, + ACTIONS(1987), 10, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_EQ_GT, + aux_sym_integer_token2, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, - sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [94868] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1755), 7, + anon_sym_this, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2628), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [64928] = 21, - ACTIONS(35), 1, + sym_identifier, + ACTIONS(1753), 12, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, - anon_sym_null, - ACTIONS(77), 1, - aux_sym_integer_token1, - ACTIONS(79), 1, + anon_sym_QMARK, + anon_sym_LT, + anon_sym_EQ_GT, aux_sym_integer_token2, - ACTIONS(81), 1, - aux_sym_float_token1, - ACTIONS(83), 1, aux_sym_float_token2, - ACTIONS(87), 1, aux_sym_string_token1, - ACTIONS(89), 1, aux_sym_string_token3, - ACTIONS(854), 1, + [94896] = 5, + ACTIONS(4888), 1, + anon_sym_AT, + ACTIONS(4891), 1, + anon_sym_AT_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2277), 2, + sym_metadata, + aux_sym_class_declaration_repeat1, + ACTIONS(4894), 14, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [94927] = 5, + ACTIONS(4896), 1, + anon_sym_EQ, + STATE(1013), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4753), 7, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(3163), 1, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(4751), 8, anon_sym_this, - ACTIONS(3299), 1, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, + anon_sym_true, + anon_sym_false, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [94957] = 4, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, - anon_sym_true, - anon_sym_false, - STATE(2775), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65003] = 3, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4901), 5, + anon_sym_class, + anon_sym_interface, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + ACTIONS(4898), 10, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + [94985] = 9, + ACTIONS(4863), 1, + anon_sym_final, + ACTIONS(4865), 1, + anon_sym_class, + ACTIONS(4867), 1, + anon_sym_typedef, + ACTIONS(4869), 1, + anon_sym_function, + ACTIONS(4871), 1, + anon_sym_var, + ACTIONS(4905), 1, + anon_sym_interface, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1478), 12, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1476), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [65042] = 21, - ACTIONS(736), 1, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4903), 9, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + [95023] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1873), 1, + sym_escape_sequence, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(1875), 16, anon_sym_LBRACE, - ACTIONS(748), 1, anon_sym_LBRACK, - ACTIONS(752), 1, - anon_sym_new, - ACTIONS(754), 1, + anon_sym_this, anon_sym_null, - ACTIONS(756), 1, aux_sym_integer_token1, - ACTIONS(758), 1, aux_sym_integer_token2, - ACTIONS(760), 1, aux_sym_float_token1, - ACTIONS(762), 1, aux_sym_float_token2, - ACTIONS(766), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(768), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3347), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(1265), 1, - sym__call, - STATE(1266), 1, - sym__constructor_call, - STATE(1892), 1, - sym_member_expression, - STATE(1932), 1, - sym_string, - STATE(2082), 1, - sym__lhs_expression, + [95051] = 4, + ACTIONS(4907), 1, + anon_sym_LPAREN, + ACTIONS(4909), 1, + anon_sym_AT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(764), 2, - anon_sym_true, - anon_sym_false, - STATE(2203), 2, - sym__rhs_expression, - sym_call_expression, - STATE(1960), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65117] = 21, - ACTIONS(35), 1, + ACTIONS(4911), 15, + anon_sym_AT_COLON, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [95079] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1753), 1, + sym_escape_sequence, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(1755), 16, + anon_sym_LBRACE, anon_sym_LBRACK, - ACTIONS(45), 1, - anon_sym_new, - ACTIONS(59), 1, + anon_sym_this, anon_sym_null, - ACTIONS(77), 1, aux_sym_integer_token1, - ACTIONS(79), 1, aux_sym_integer_token2, - ACTIONS(81), 1, aux_sym_float_token1, - ACTIONS(83), 1, aux_sym_float_token2, - ACTIONS(87), 1, + anon_sym_true, + anon_sym_false, aux_sym_string_token1, - ACTIONS(89), 1, + aux_sym_string_token2, aux_sym_string_token3, - ACTIONS(854), 1, - anon_sym_LBRACE, - ACTIONS(3163), 1, - anon_sym_this, - ACTIONS(3299), 1, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, sym_identifier, - STATE(1633), 1, - sym__call, - STATE(1635), 1, - sym__constructor_call, - STATE(1989), 1, - sym_member_expression, - STATE(2035), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + [95107] = 9, + ACTIONS(4851), 1, + anon_sym_final, + ACTIONS(4853), 1, + anon_sym_class, + ACTIONS(4855), 1, + anon_sym_typedef, + ACTIONS(4857), 1, + anon_sym_function, + ACTIONS(4859), 1, + anon_sym_var, + ACTIONS(4913), 1, + anon_sym_interface, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4903), 9, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + [95145] = 4, + ACTIONS(4821), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(85), 2, + ACTIONS(1987), 7, + sym__lookback_semicolon, + anon_sym_LBRACE, + anon_sym_LBRACK, + aux_sym_integer_token2, + aux_sym_float_token2, + aux_sym_string_token1, + aux_sym_string_token3, + ACTIONS(1990), 8, + anon_sym_this, + anon_sym_new, + anon_sym_null, + aux_sym_integer_token1, + aux_sym_float_token1, anon_sym_true, anon_sym_false, - STATE(2623), 2, - sym__rhs_expression, - sym_call_expression, - STATE(2065), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65192] = 4, - ACTIONS(2637), 1, - anon_sym_DASH_GT, + sym_identifier, + [95172] = 3, + ACTIONS(4915), 1, + anon_sym_AT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3459), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4917), 15, + anon_sym_AT_COLON, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [95197] = 3, + ACTIONS(4919), 1, + anon_sym_AT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4921), 15, + anon_sym_AT_COLON, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + anon_sym_final, + anon_sym_class, + anon_sym_typedef, + anon_sym_function, + anon_sym_var, + [95222] = 8, + ACTIONS(4923), 1, + anon_sym_final, + ACTIONS(4925), 1, + anon_sym_class, + ACTIONS(4927), 1, + anon_sym_typedef, + ACTIONS(4929), 1, + anon_sym_function, + ACTIONS(4931), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4903), 9, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + [95257] = 8, + ACTIONS(4933), 1, + anon_sym_final, + ACTIONS(4935), 1, + anon_sym_class, + ACTIONS(4937), 1, + anon_sym_typedef, + ACTIONS(4939), 1, + anon_sym_function, + ACTIONS(4941), 1, + anon_sym_var, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2279), 2, + sym__modifier, + aux_sym_class_declaration_repeat2, + ACTIONS(4903), 9, + anon_sym_macro, + anon_sym_abstract, + anon_sym_static, + anon_sym_public, + anon_sym_private, + anon_sym_extern, + anon_sym_inline, + anon_sym_overload, + anon_sym_override, + [95292] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3457), 19, - sym__lookback_semicolon, + ACTIONS(1785), 12, + anon_sym_DOT, + anon_sym_in, anon_sym_RPAREN, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_EQ_GT, + [95315] = 6, + ACTIONS(4943), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(4945), 2, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [65233] = 3, + ACTIONS(1785), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + [95342] = 6, + ACTIONS(4949), 1, + anon_sym_DOT, + ACTIONS(4951), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1562), 12, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1757), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [95369] = 6, + ACTIONS(4597), 1, anon_sym_DOT, + ACTIONS(4599), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1560), 18, - sym__lookback_semicolon, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(1757), 2, + anon_sym_COLON, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [65272] = 19, - ACTIONS(485), 1, - anon_sym_LBRACE, - ACTIONS(488), 1, - anon_sym_LBRACK, - ACTIONS(494), 1, - anon_sym_null, - ACTIONS(497), 1, - aux_sym_integer_token1, - ACTIONS(500), 1, - aux_sym_integer_token2, - ACTIONS(503), 1, - aux_sym_float_token1, - ACTIONS(506), 1, - aux_sym_float_token2, - ACTIONS(512), 1, - aux_sym_string_token1, - ACTIONS(515), 1, - aux_sym_string_token3, - ACTIONS(3461), 1, - sym_identifier, - ACTIONS(3464), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1654), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(1785), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [95396] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(509), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(478), 3, + ACTIONS(1753), 2, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65342] = 6, - ACTIONS(2529), 1, + ACTIONS(1785), 9, + sym__closing_brace_marker, anon_sym_DOT, - ACTIONS(2531), 1, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, anon_sym_QMARK, - ACTIONS(3129), 1, + anon_sym_catch, + anon_sym_else, anon_sym_EQ_GT, + [95416] = 6, + ACTIONS(4759), 1, + anon_sym_DOT, + ACTIONS(4761), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1504), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1753), 2, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(1502), 16, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [65386] = 3, + ACTIONS(4945), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + ACTIONS(1785), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [95442] = 3, + ACTIONS(1757), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3469), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3467), 19, - sym__lookback_semicolon, + ACTIONS(1636), 9, + anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + anon_sym_EQ_GT, + [95461] = 3, + ACTIONS(4945), 1, anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1636), 9, + sym__closing_brace_marker, + anon_sym_DOT, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_catch, + anon_sym_else, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [65424] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + [95480] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4953), 1, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1654), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4955), 1, + aux_sym_string_token2, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4961), 1, + sym_escape_sequence, + STATE(2312), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95510] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4963), 1, + aux_sym_string_token1, + ACTIONS(4965), 1, + aux_sym_string_token2, + ACTIONS(4967), 1, + sym_escape_sequence, + STATE(2308), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95540] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4969), 1, + aux_sym_string_token1, + ACTIONS(4971), 1, + aux_sym_string_token2, + ACTIONS(4973), 1, + sym_escape_sequence, + STATE(2304), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95570] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4975), 1, + aux_sym_string_token1, + ACTIONS(4977), 1, + aux_sym_string_token2, + ACTIONS(4979), 1, + sym_escape_sequence, + STATE(2313), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95600] = 5, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4981), 1, + anon_sym_DOT, + ACTIONS(4983), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(466), 3, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65494] = 3, + ACTIONS(1785), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [95622] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4985), 1, + aux_sym_string_token1, + ACTIONS(4987), 1, + aux_sym_string_token2, + ACTIONS(4989), 1, + sym_escape_sequence, + STATE(2311), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95652] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_string_token2, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4961), 1, + sym_escape_sequence, + ACTIONS(4991), 1, + aux_sym_string_token1, + STATE(2312), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95682] = 6, + ACTIONS(4785), 1, + anon_sym_DOT, + ACTIONS(4787), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3475), 10, - anon_sym_BANG, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(1753), 2, + anon_sym_LPAREN, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - ACTIONS(3473), 19, - sym__lookback_semicolon, + ACTIONS(1757), 2, anon_sym_COLON, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_PERCENT, - anon_sym_STAR, - anon_sym_LT_LT, - anon_sym_GT_GT_GT, - anon_sym_CARET, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - sym__rangeOperator, - [65532] = 19, - ACTIONS(362), 1, + ACTIONS(1785), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [95706] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4639), 9, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1654), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [95722] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(522), 3, + ACTIONS(4631), 9, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65602] = 19, - ACTIONS(362), 1, + anon_sym_RPAREN, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + anon_sym_extends, + anon_sym_implements, + [95738] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_string_token2, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4961), 1, + sym_escape_sequence, + ACTIONS(4993), 1, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1654), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2312), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95768] = 5, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4995), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(474), 3, - anon_sym_LPAREN, + ACTIONS(1785), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_catch, + anon_sym_else, + anon_sym_while, + [95790] = 7, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1753), 1, + sym_escape_sequence, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4837), 1, + anon_sym_DOT, + ACTIONS(4841), 1, + anon_sym_QMARK, + ACTIONS(4839), 2, anon_sym_COLON, - anon_sym_LT, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65672] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + anon_sym_EQ_GT, + ACTIONS(1755), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1654), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [95816] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_string_token2, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4961), 1, + sym_escape_sequence, + ACTIONS(4999), 1, + aux_sym_string_token1, + STATE(2312), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95846] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5001), 1, + aux_sym_string_token1, + ACTIONS(5003), 1, + aux_sym_string_token2, + ACTIONS(5006), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(5009), 1, + anon_sym_DOLLAR, + ACTIONS(5012), 1, + sym_escape_sequence, + STATE(2312), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95876] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4955), 1, + aux_sym_string_token2, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(4961), 1, + sym_escape_sequence, + ACTIONS(5015), 1, + aux_sym_string_token1, + STATE(2312), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95906] = 5, + ACTIONS(4945), 1, + anon_sym_EQ_GT, + ACTIONS(5017), 1, + anon_sym_DOT, + ACTIONS(5019), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(518), 3, + ACTIONS(1785), 6, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_COMMA, + anon_sym_catch, + anon_sym_else, + [95928] = 9, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4957), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(4959), 1, + anon_sym_DOLLAR, + ACTIONS(5021), 1, + aux_sym_string_token1, + ACTIONS(5023), 1, + aux_sym_string_token2, + ACTIONS(5025), 1, + sym_escape_sequence, + STATE(2298), 2, + sym_interpolation, + aux_sym_string_repeat1, + STATE(2479), 2, + sym__interpolated_block, + sym__interpolated_identifier, + [95958] = 6, + ACTIONS(4831), 1, + anon_sym_DOT, + ACTIONS(4833), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1785), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + ACTIONS(4945), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [95981] = 6, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4597), 1, + anon_sym_DOT, + ACTIONS(4599), 1, + anon_sym_QMARK, + ACTIONS(5027), 1, anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_LT, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65742] = 6, - ACTIONS(3477), 1, + [96004] = 6, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4597), 1, anon_sym_DOT, - ACTIONS(3479), 1, + ACTIONS(4599), 1, anon_sym_QMARK, + ACTIONS(5029), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1508), 10, - anon_sym_this, - anon_sym_EQ, - anon_sym_null, - anon_sym_extends, - anon_sym_implements, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 14, - anon_sym_LPAREN, + ACTIONS(1753), 4, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DASH_GT, anon_sym_LT, - anon_sym_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [65785] = 19, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - ACTIONS(3481), 1, - anon_sym_RPAREN, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1986), 1, - sym__lhs_expression, - STATE(2408), 1, - sym_function_arg, + [96027] = 5, + ACTIONS(4945), 1, + anon_sym_EQ_GT, + ACTIONS(5031), 1, + anon_sym_DOT, + ACTIONS(5033), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2370), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65853] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(749), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(1785), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [96048] = 4, + ACTIONS(5035), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65918] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - anon_sym_this, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2427), 1, - sym_identifier, - STATE(694), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3361), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [96066] = 3, + STATE(3351), 1, + sym__access_identifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2386), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [65983] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(5038), 6, + anon_sym_default, anon_sym_null, - ACTIONS(384), 1, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [96082] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, + ACTIONS(5040), 1, sym_identifier, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1601), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(3015), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3441), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66048] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96108] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5044), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(198), 1, - sym__call, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2148), 1, - sym__lhs_expression, + STATE(3108), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3689), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66113] = 18, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96134] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2515), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5046), 1, sym_identifier, - STATE(755), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(3091), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3612), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2413), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66178] = 18, - ACTIONS(362), 1, + [96160] = 8, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, - sym_identifier, - STATE(731), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5052), 1, + anon_sym_extends, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(582), 1, + sym_block, + STATE(2520), 1, + sym_type_params, + STATE(2812), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2371), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66243] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, - sym_identifier, - STATE(728), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [96186] = 7, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5058), 1, + anon_sym_EQ, + STATE(2246), 1, + sym__assignmentOperator, + STATE(2526), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2371), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66308] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(5056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [96210] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5060), 1, sym_identifier, - STATE(735), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2854), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3391), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2371), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66373] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(744), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [96236] = 8, + ACTIONS(5062), 1, + anon_sym_STAR, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2467), 1, + sym_type_name, + STATE(2681), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66438] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1452), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [96262] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2434), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66503] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3483), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2141), 1, - sym__lhs_expression, + [96288] = 3, + STATE(3115), 1, + sym__access_identifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66568] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + ACTIONS(5070), 6, + anon_sym_default, anon_sym_null, - ACTIONS(384), 1, + anon_sym_get, + anon_sym_set, + anon_sym_dynamic, + anon_sym_never, + [96304] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2431), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96330] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2442), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96356] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2406), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96382] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2424), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96408] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2399), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96434] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2689), 1, + sym__type_path, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96460] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3383), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5072), 1, sym_identifier, - ACTIONS(3389), 1, - anon_sym_this, - STATE(1490), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2958), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3527), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2300), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66633] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96486] = 5, + ACTIONS(4175), 1, + sym__lookback_semicolon, + ACTIONS(5074), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2629), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [96506] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(244), 1, - sym__call, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2181), 1, - sym__lhs_expression, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5076), 1, + sym_identifier, + STATE(2960), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3543), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66698] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96532] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(550), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5078), 1, sym_identifier, - ACTIONS(552), 1, - anon_sym_this, - STATE(46), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2961), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3563), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2340), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66763] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96558] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(998), 1, - anon_sym_this, - ACTIONS(2469), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5080), 1, sym_identifier, - STATE(734), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2963), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3581), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2371), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66828] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96584] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(468), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5082), 1, sym_identifier, - ACTIONS(472), 1, - anon_sym_this, - STATE(29), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2969), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3648), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2377), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66893] = 18, - ACTIONS(362), 1, + [96610] = 8, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(5086), 1, + anon_sym_extends, + STATE(831), 1, + sym_block, + STATE(2494), 1, + sym_type_params, + STATE(2728), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96636] = 6, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(4949), 1, + anon_sym_DOT, + ACTIONS(4951), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5088), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [96658] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2415), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96684] = 6, + ACTIONS(1785), 1, + sym__lookback_semicolon, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5094), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5092), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [96706] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2426), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96732] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(468), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5096), 1, sym_identifier, - ACTIONS(472), 1, - anon_sym_this, - STATE(31), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2979), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3348), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2377), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [66958] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96758] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(468), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5098), 1, sym_identifier, - ACTIONS(472), 1, - anon_sym_this, - STATE(32), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2980), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3352), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2377), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67023] = 18, - ACTIONS(362), 1, + [96784] = 8, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3389), 1, - anon_sym_this, - STATE(1483), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5100), 1, + anon_sym_extends, + STATE(561), 1, + sym_block, + STATE(2457), 1, + sym_type_params, + STATE(2734), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2300), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67088] = 18, - ACTIONS(362), 1, + [96810] = 6, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(4785), 1, + anon_sym_DOT, + ACTIONS(4787), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5088), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [96832] = 8, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(5102), 1, + anon_sym_extends, + STATE(656), 1, + sym_block, + STATE(2462), 1, + sym_type_params, + STATE(2694), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96858] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5104), 1, sym_identifier, - STATE(687), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(3113), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3377), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2375), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67153] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [96884] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5106), 1, sym_identifier, - STATE(49), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2988), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3380), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2381), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67218] = 18, - ACTIONS(362), 1, + [96910] = 6, + ACTIONS(1785), 1, + sym__lookback_semicolon, + ACTIONS(4843), 1, + anon_sym_DOT, + ACTIONS(4845), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5092), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [96932] = 8, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(5108), 1, + anon_sym_extends, + STATE(746), 1, + sym_block, + STATE(2501), 1, + sym_type_params, + STATE(2543), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [96958] = 6, + ACTIONS(5110), 1, + anon_sym_LPAREN, + ACTIONS(5112), 1, + anon_sym_LT, + STATE(369), 1, + sym__arg_list, + STATE(2505), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4603), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [96980] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5114), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3485), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2177), 1, - sym__lhs_expression, + STATE(2947), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3398), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67283] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [97006] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2407), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97032] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2423), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97058] = 7, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5118), 1, + anon_sym_EQ, + STATE(2236), 1, + sym__assignmentOperator, + STATE(2526), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5116), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [97082] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2526), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4603), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [97100] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5120), 1, sym_identifier, - STATE(54), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2975), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3333), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2381), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67348] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [97126] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5122), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1048), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2985), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3367), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67413] = 18, - ACTIONS(362), 1, + [97152] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2397), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97178] = 8, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5124), 1, + anon_sym_extends, + STATE(618), 1, + sym_block, + STATE(2517), 1, + sym_type_params, + STATE(2557), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97204] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5126), 1, sym_identifier, - STATE(52), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2953), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3463), 1, + sym_range_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97230] = 3, + ACTIONS(1859), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1857), 6, + anon_sym_DOT, + anon_sym_in, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_QMARK, + anon_sym_EQ_GT, + [97246] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5128), 1, + anon_sym_STAR, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2485), 1, + sym_type_name, + STATE(2705), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2381), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67478] = 3, + [97272] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + STATE(2527), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 9, - anon_sym_this, - anon_sym_null, - anon_sym_extends, - anon_sym_implements, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 17, - anon_sym_LPAREN, + ACTIONS(4609), 5, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COLON, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_DASH_GT, - anon_sym_LT, anon_sym_GT, anon_sym_EQ, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [67513] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(550), 1, - sym_identifier, - ACTIONS(552), 1, - anon_sym_this, - STATE(42), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97290] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2427), 1, + sym__type_path, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2340), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67578] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(468), 1, - sym_identifier, - ACTIONS(472), 1, - anon_sym_this, - STATE(28), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97316] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5130), 1, + anon_sym_STAR, + STATE(2328), 1, + aux_sym_package_statement_repeat1, + STATE(2489), 1, + sym_type_name, + STATE(2650), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2377), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67643] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(719), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [97342] = 4, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2385), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67708] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(721), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [97360] = 4, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2385), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67773] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(722), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [97378] = 4, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2385), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67838] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(566), 1, - anon_sym_this, - ACTIONS(568), 1, - sym_identifier, - STATE(55), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_else, + [97396] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2381), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67903] = 18, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2515), 1, - sym_identifier, - STATE(754), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [97412] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2413), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [67968] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1630), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [97428] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68033] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3389), 1, - anon_sym_this, - STATE(1475), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2320), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 5, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + anon_sym_else, + [97444] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2448), 1, + aux_sym_package_statement_repeat1, + STATE(2516), 1, + sym_type_name, + STATE(2708), 1, + sym__type_path, + STATE(2878), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2300), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68098] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(748), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97470] = 8, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5134), 1, + anon_sym_STAR, + STATE(2369), 1, + aux_sym_package_statement_repeat1, + STATE(2474), 1, + sym_type_name, + STATE(2810), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2366), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68163] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(740), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97496] = 6, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(4597), 1, + anon_sym_DOT, + ACTIONS(4599), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2366), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68228] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5136), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [97518] = 8, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5138), 1, sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1052), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(3064), 1, + sym__parenthesized_expression, + STATE(3252), 1, + sym_integer, + STATE(3574), 1, + sym_range_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68293] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1263), 1, - sym__call, - STATE(1926), 1, - sym_string, - STATE(2279), 1, - sym__lhs_expression, + [97544] = 6, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(4949), 1, + anon_sym_DOT, + ACTIONS(4951), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5136), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [97566] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(194), 1, + sym__arg_list, + STATE(2532), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4603), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [97588] = 6, + ACTIONS(209), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(343), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2449), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97609] = 6, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(416), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97630] = 4, + ACTIONS(5074), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2629), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97647] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2507), 1, + sym_type_name, + STATE(3012), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [97670] = 4, + ACTIONS(5074), 1, + anon_sym_else, + STATE(587), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(2669), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97687] = 4, + ACTIONS(5074), 1, + anon_sym_else, + STATE(421), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68358] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(746), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(2679), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [97704] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2510), 1, + sym_type_name, + STATE(2861), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2366), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68423] = 18, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2515), 1, - sym_identifier, - STATE(751), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97727] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2451), 1, + aux_sym_package_statement_repeat1, + STATE(3096), 1, + sym_type_name, + STATE(3112), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2413), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68488] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(956), 1, - anon_sym_this, - ACTIONS(2451), 1, - sym_identifier, - STATE(718), 1, - aux_sym_member_expression_repeat1, - STATE(776), 1, - sym_member_expression, - STATE(777), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [97750] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2839), 1, + sym_type_name, + STATE(2872), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2385), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68553] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(550), 1, - sym_identifier, - ACTIONS(552), 1, - anon_sym_this, - STATE(44), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97773] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2533), 1, + sym_type_name, + STATE(2903), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2340), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68618] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3157), 1, - sym_identifier, - ACTIONS(3163), 1, - anon_sym_this, - STATE(1497), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [97796] = 5, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5146), 1, + anon_sym_DOT, + ACTIONS(5148), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2351), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68683] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1387), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(1785), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_RBRACK, + [97815] = 6, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(226), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2370), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68748] = 18, - ACTIONS(362), 1, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97836] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1278), 1, - sym__call, - STATE(1926), 1, - sym_string, - STATE(2082), 1, - sym__lhs_expression, + STATE(766), 1, + sym_block, + STATE(2761), 1, + sym_type_params, + STATE(2762), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68813] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(854), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97859] = 6, + ACTIONS(4783), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(1784), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68878] = 18, - ACTIONS(362), 1, + STATE(2401), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97880] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(739), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(771), 1, + sym_block, + STATE(2662), 1, + sym_type_params, + STATE(2663), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [68943] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1383), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [97903] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2391), 1, + aux_sym_package_statement_repeat1, + STATE(2468), 1, + sym_type_name, + STATE(2971), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2370), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69008] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1382), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [97926] = 6, + ACTIONS(4783), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(1809), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2370), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69073] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [97947] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(198), 1, - sym__call, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2179), 1, - sym__lhs_expression, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3791), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + STATE(2871), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69138] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(837), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [97970] = 5, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5154), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69203] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2483), 1, - sym_identifier, - ACTIONS(2485), 1, - anon_sym_this, - STATE(738), 1, - aux_sym_member_expression_repeat1, - STATE(832), 1, - sym__lhs_expression, - STATE(877), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5152), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [97989] = 6, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(336), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2366), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69268] = 18, - ACTIONS(362), 1, + STATE(2420), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98010] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(742), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(562), 1, + sym_block, + STATE(2736), 1, + sym_type_params, + STATE(2737), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69333] = 18, - ACTIONS(362), 1, + [98033] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, - sym_identifier, - STATE(689), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(784), 1, + sym_block, + STATE(2534), 1, + sym_type_params, + STATE(2797), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2375), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69398] = 18, - ACTIONS(362), 1, + [98056] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1986), 1, - sym__lhs_expression, - STATE(2561), 1, - sym_function_arg, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(605), 1, + sym_block, + STATE(2539), 1, + sym_type_params, + STATE(2540), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2370), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69463] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [98079] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(871), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, + STATE(3079), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69528] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - anon_sym_this, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2427), 1, - sym_identifier, - STATE(699), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [98102] = 5, + ACTIONS(4884), 1, + anon_sym_DOT, + ACTIONS(4886), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2386), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69593] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, - sym_identifier, - STATE(688), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(5152), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [98121] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2375), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69658] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(412), 1, - anon_sym_this, - ACTIONS(2376), 1, - sym_identifier, - STATE(686), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4689), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ, + [98134] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2418), 1, + aux_sym_package_statement_repeat1, + STATE(2525), 1, + sym_type_name, + STATE(2865), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2375), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69723] = 18, - ACTIONS(362), 1, + [98157] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(724), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(658), 1, + sym_block, + STATE(2604), 1, + sym_type_params, + STATE(2628), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2410), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69788] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1657), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [98180] = 5, + ACTIONS(4049), 1, + sym__lookback_semicolon, + ACTIONS(5158), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69853] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(2629), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98199] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(244), 1, - sym__call, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2254), 1, - sym__lhs_expression, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3777), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + STATE(3019), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69918] = 18, - ACTIONS(37), 1, - anon_sym_this, - ACTIONS(362), 1, + [98222] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(467), 1, + sym_block, + STATE(2592), 1, + sym_type_params, + STATE(2593), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98245] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2515), 1, - sym_identifier, - STATE(750), 1, - aux_sym_member_expression_repeat1, - STATE(789), 1, - sym__lhs_expression, - STATE(797), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3771), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2413), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [69983] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [98268] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3487), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2149), 1, - sym__lhs_expression, + ACTIONS(3761), 1, + anon_sym_RPAREN, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(2488), 1, + sym__rangeOperator, + STATE(2949), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70048] = 18, - ACTIONS(362), 1, + [98291] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2461), 1, + sym_type_name, + STATE(2868), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [98314] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(550), 1, - sym_identifier, - ACTIONS(552), 1, - anon_sym_this, - STATE(45), 1, - aux_sym_member_expression_repeat1, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(583), 1, + sym_block, + STATE(2817), 1, + sym_type_params, + STATE(2819), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2340), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70113] = 18, - ACTIONS(362), 1, + [98337] = 6, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(302), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98358] = 6, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(395), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2386), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98379] = 6, + ACTIONS(4779), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(1784), 1, + sym__closing_brace, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2452), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98400] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1054), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(501), 1, + sym_block, + STATE(2622), 1, + sym_type_params, + STATE(2623), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70178] = 18, - ACTIONS(362), 1, + [98423] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(737), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(777), 1, + sym_block, + STATE(2688), 1, + sym_type_params, + STATE(2710), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2410), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70243] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3223), 1, - anon_sym_this, - ACTIONS(3275), 1, - sym_identifier, - STATE(1245), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [98446] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2388), 1, + aux_sym_package_statement_repeat1, + STATE(2486), 1, + sym_type_name, + STATE(2968), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2390), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70308] = 18, - ACTIONS(362), 1, + [98469] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3223), 1, - anon_sym_this, - ACTIONS(3275), 1, - sym_identifier, - STATE(1248), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(473), 1, + sym_block, + STATE(2598), 1, + sym_type_params, + STATE(2599), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2390), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70373] = 18, - ACTIONS(362), 1, + [98492] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1211), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(672), 1, + sym_block, + STATE(2575), 1, + sym_type_params, + STATE(2576), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2406), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70438] = 18, - ACTIONS(362), 1, + [98515] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - anon_sym_this, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2427), 1, - sym_identifier, - STATE(700), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(747), 1, + sym_block, + STATE(2558), 1, + sym_type_params, + STATE(2561), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2386), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70503] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(376), 1, - anon_sym_this, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2427), 1, - sym_identifier, - STATE(696), 1, - aux_sym_member_expression_repeat1, - STATE(757), 1, - sym__lhs_expression, - STATE(759), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [98538] = 6, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(214), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2386), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70568] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3223), 1, - anon_sym_this, - ACTIONS(3275), 1, - sym_identifier, - STATE(1253), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2396), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98559] = 4, + ACTIONS(5162), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2390), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70633] = 18, - ACTIONS(362), 1, + ACTIONS(5160), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1833), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [98576] = 7, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(725), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(435), 1, + sym_block, + STATE(2571), 1, + sym_type_params, + STATE(2572), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2410), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70698] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(444), 1, - anon_sym_this, - ACTIONS(2461), 1, - sym_identifier, - STATE(736), 1, - aux_sym_member_expression_repeat1, - STATE(802), 1, - sym__lhs_expression, - STATE(815), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [98599] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2410), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70763] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, - sym_identifier, - STATE(1102), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(1753), 2, + anon_sym_LPAREN, + anon_sym_LT, + ACTIONS(1785), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [98614] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2405), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70828] = 18, - ACTIONS(362), 1, + ACTIONS(5164), 6, + anon_sym_DOT, + anon_sym_LPAREN, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1213), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [98627] = 7, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(429), 1, + sym_block, + STATE(2566), 1, + sym_type_params, + STATE(2567), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2406), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70893] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(179), 1, - sym__lhs_expression, - STATE(827), 1, - aux_sym_member_expression_repeat1, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [98650] = 4, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [70958] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1218), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98667] = 4, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2406), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71023] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3211), 1, - sym_identifier, - ACTIONS(3215), 1, - anon_sym_this, - STATE(1222), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98684] = 4, + ACTIONS(5168), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2406), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71088] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3191), 1, - anon_sym_this, - ACTIONS(3285), 1, - sym_identifier, - STATE(1302), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3361), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98701] = 4, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2401), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71153] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, - sym_identifier, - STATE(1068), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [98718] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(2681), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [98733] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3357), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [98748] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2437), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + ACTIONS(3368), 4, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + anon_sym_catch, + [98763] = 7, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(724), 1, + sym_block, + STATE(2605), 1, + sym_type_params, + STATE(2611), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2405), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71218] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [98786] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1610), 1, - sym__call, - STATE(1926), 1, - sym_string, - STATE(2161), 1, - sym__lhs_expression, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, + STATE(3063), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71283] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [98809] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, - sym_identifier, - STATE(1095), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3825), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, + STATE(3022), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2405), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71348] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1045), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [98832] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2450), 1, + aux_sym_package_statement_repeat1, + STATE(2511), 1, + sym_type_name, + STATE(2887), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71413] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3073), 1, - anon_sym_this, - ACTIONS(3149), 1, - sym_identifier, - STATE(1100), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [98855] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2393), 1, + aux_sym_package_statement_repeat1, + STATE(2841), 1, + aux_sym__type_path_repeat1, + STATE(3052), 1, + sym_type_name, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2405), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71478] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [98878] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1659), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71543] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3283), 1, - sym_identifier, - STATE(1295), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [98901] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2497), 1, + sym_type_name, + STATE(2848), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2400), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71608] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3191), 1, - anon_sym_this, - ACTIONS(3285), 1, - sym_identifier, - STATE(1268), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [98924] = 6, + ACTIONS(209), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(347), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2401), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71673] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3191), 1, - anon_sym_this, - ACTIONS(3285), 1, - sym_identifier, - STATE(1321), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [98945] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2470), 1, + sym_type_name, + STATE(2891), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2401), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71738] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3191), 1, - anon_sym_this, - ACTIONS(3285), 1, - sym_identifier, - STATE(1305), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [98968] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2941), 1, + sym_type_name, + STATE(2945), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2401), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71803] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(730), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + [98991] = 6, + ACTIONS(4779), 1, + sym__closing_brace_marker, + ACTIONS(5142), 1, + anon_sym_case, + ACTIONS(5144), 1, + anon_sym_default, + STATE(1809), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2396), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71868] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3283), 1, - sym_identifier, - STATE(1264), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [99012] = 6, + ACTIONS(5173), 1, + anon_sym_COLON, + ACTIONS(5175), 1, + anon_sym_QMARK, + ACTIONS(5177), 1, + anon_sym_EQ, + STATE(2249), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2400), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71933] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(5171), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99033] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3283), 1, - sym_identifier, - STATE(1274), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3743), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + STATE(2886), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2400), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [71998] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [99056] = 7, + ACTIONS(5064), 1, + sym__camelCaseIdentifier, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2394), 1, + aux_sym_package_statement_repeat1, + STATE(2487), 1, + sym_type_name, + STATE(2902), 1, + aux_sym__type_path_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99079] = 7, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3219), 1, - anon_sym_this, - ACTIONS(3283), 1, - sym_identifier, - STATE(1294), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3757), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + STATE(2901), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2400), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72063] = 18, - ACTIONS(362), 1, + [99102] = 6, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5179), 1, + anon_sym_extends, + STATE(576), 1, + sym_block, + STATE(2781), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99122] = 5, + ACTIONS(5183), 1, + sym__camelCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(3541), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5181), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [99140] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5188), 1, + sym_escape_sequence, + ACTIONS(5186), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(536), 1, - sym_identifier, - ACTIONS(538), 1, - anon_sym_this, - STATE(37), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99156] = 5, + ACTIONS(5190), 1, + anon_sym_DOT, + ACTIONS(5194), 1, + sym__lookback_semicolon, + STATE(585), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2394), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72128] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(729), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + ACTIONS(5192), 2, + anon_sym_as, + anon_sym_in, + [99174] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5110), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(350), 1, + sym__arg_list, + STATE(3157), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2396), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72193] = 18, - ACTIONS(362), 1, + [99194] = 6, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(726), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + ACTIONS(5198), 1, + anon_sym_extends, + STATE(734), 1, + sym_block, + STATE(2697), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2396), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72258] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + [99214] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5202), 1, + sym_escape_sequence, + ACTIONS(5200), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(876), 1, - anon_sym_this, - ACTIONS(2459), 1, - sym_identifier, - STATE(179), 1, - sym__lhs_expression, - STATE(213), 1, - sym_member_expression, - STATE(723), 1, - aux_sym_member_expression_repeat1, - STATE(1926), 1, - sym_string, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99230] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5110), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(346), 1, + sym__arg_list, + STATE(3167), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2396), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72323] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3255), 1, - anon_sym_this, - ACTIONS(3329), 1, - sym_identifier, - STATE(1381), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + [99250] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2392), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72388] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(536), 1, - sym_identifier, - ACTIONS(538), 1, - anon_sym_this, - STATE(41), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4712), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_EQ, + [99264] = 5, + ACTIONS(5206), 1, + anon_sym_case, + ACTIONS(5209), 1, + anon_sym_default, + ACTIONS(5212), 1, + sym__closing_brace_marker, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2394), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72453] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3489), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2110), 1, - sym__lhs_expression, + STATE(2466), 2, + sym_case_statement, + aux_sym_switch_block_repeat1, + [99282] = 5, + ACTIONS(5214), 1, + anon_sym_DOT, + ACTIONS(5218), 1, + sym__lookback_semicolon, + STATE(567), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72518] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1661), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5216), 2, + anon_sym_as, + anon_sym_in, + [99300] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(1868), 1, + sym__arg_list, + STATE(3257), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72583] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3491), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2092), 1, - sym__lhs_expression, + [99320] = 6, + ACTIONS(193), 1, + sym__closing_brace_marker, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(202), 1, + sym__closing_brace, + STATE(2691), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72648] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(536), 1, - sym_identifier, - ACTIONS(538), 1, - anon_sym_this, - STATE(36), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [99340] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1532), 1, + sym__arg_list, + STATE(3278), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2394), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72713] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(536), 1, - sym_identifier, - ACTIONS(538), 1, - anon_sym_this, - STATE(38), 1, - aux_sym_member_expression_repeat1, - STATE(238), 1, - sym_member_expression, - STATE(278), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [99360] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2394), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72778] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3315), 1, - anon_sym_this, - ACTIONS(3471), 1, - sym_identifier, - STATE(902), 1, - sym_member_expression, - STATE(1660), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4613), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [99372] = 4, + ACTIONS(5112), 1, + anon_sym_LT, + STATE(2976), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2387), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72843] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(4609), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [99388] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, - sym_identifier, - STATE(1069), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2391), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72908] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3337), 1, - sym_identifier, - ACTIONS(3339), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1388), 1, - aux_sym_member_expression_repeat1, - STATE(1689), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3969), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99406] = 5, + ACTIONS(5224), 1, + anon_sym_DOT, + ACTIONS(5228), 1, + sym__lookback_semicolon, + STATE(742), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2370), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [72973] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3255), 1, - anon_sym_this, - ACTIONS(3329), 1, - sym_identifier, - STATE(1377), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5226), 2, + anon_sym_as, + anon_sym_in, + [99424] = 4, + ACTIONS(5158), 1, + anon_sym_else, + STATE(572), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2392), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73038] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3255), 1, - anon_sym_this, - ACTIONS(3329), 1, - sym_identifier, - STATE(1378), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + ACTIONS(2629), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [99440] = 6, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, + anon_sym_COMMA, + ACTIONS(4783), 1, + sym__closing_brace_marker, + STATE(1763), 1, + sym__closing_brace, + STATE(2535), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99460] = 5, + ACTIONS(5232), 1, + anon_sym_COLON, + ACTIONS(5234), 1, + anon_sym_EQ, + STATE(2244), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2392), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73103] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(5230), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99478] = 5, + ACTIONS(87), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(89), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - ACTIONS(3493), 1, - anon_sym_new, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2074), 1, - sym__lhs_expression, + ACTIONS(5236), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, + STATE(1858), 2, + sym__parenthesized_expression, sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73168] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + [99496] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5240), 1, + sym_escape_sequence, + ACTIONS(5238), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3255), 1, - anon_sym_this, - ACTIONS(3329), 1, - sym_identifier, - STATE(1380), 1, - aux_sym_member_expression_repeat1, - STATE(1842), 1, - sym__lhs_expression, - STATE(1843), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99512] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(1903), 1, + sym__arg_list, + STATE(3262), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2392), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73233] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [99532] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5244), 1, + sym_escape_sequence, + ACTIONS(5242), 4, + aux_sym_string_token1, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99548] = 5, + ACTIONS(2591), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2593), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3223), 1, - anon_sym_this, - ACTIONS(3275), 1, - sym_identifier, - STATE(1256), 1, - aux_sym_member_expression_repeat1, - STATE(1864), 1, - sym_member_expression, - STATE(1865), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5246), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2390), 9, - sym__literal, + STATE(1514), 2, + sym__parenthesized_expression, sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73298] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3383), 1, - sym_identifier, - ACTIONS(3389), 1, - anon_sym_this, - STATE(1462), 1, - aux_sym_member_expression_repeat1, - STATE(1876), 1, - sym_member_expression, - STATE(1877), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [99566] = 3, + ACTIONS(5196), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2300), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73363] = 18, - ACTIONS(362), 1, + ACTIONS(5248), 4, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, - sym_identifier, - STATE(1103), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [99580] = 4, + ACTIONS(5112), 1, + anon_sym_LT, + STATE(2973), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2391), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73428] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, - sym_identifier, - STATE(1107), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4603), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [99596] = 5, + ACTIONS(5250), 1, + anon_sym_DOT, + ACTIONS(5254), 1, + sym__lookback_semicolon, + STATE(719), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2391), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73493] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3147), 1, - anon_sym_this, - ACTIONS(3151), 1, - sym_identifier, - STATE(1109), 1, - aux_sym_member_expression_repeat1, - STATE(1840), 1, - sym_member_expression, - STATE(1841), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5252), 2, + anon_sym_as, + anon_sym_in, + [99614] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(207), 1, + sym__arg_list, + STATE(3159), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2391), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73558] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1953), 1, - sym__lhs_expression, + [99634] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1770), 1, + sym__arg_list, + STATE(3214), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73620] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + [99654] = 5, + ACTIONS(1325), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1327), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1943), 1, - sym__lhs_expression, + ACTIONS(5042), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, + STATE(211), 2, + sym__parenthesized_expression, sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73682] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + [99672] = 5, + ACTIONS(5258), 1, + anon_sym_DOT, + ACTIONS(5262), 1, + sym__lookback_semicolon, + STATE(554), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5260), 2, + anon_sym_as, + anon_sym_in, + [99690] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5266), 1, + sym_escape_sequence, + ACTIONS(5264), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1956), 1, - sym__lhs_expression, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [99706] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73744] = 17, - ACTIONS(362), 1, + ACTIONS(4720), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_EQ, + [99720] = 5, + ACTIONS(5118), 1, + anon_sym_EQ, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + STATE(2236), 1, + sym__assignmentOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5116), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [99738] = 6, + ACTIONS(5268), 1, + sym__camelCaseIdentifier, + ACTIONS(5270), 1, + sym__lookback_semicolon, + STATE(551), 1, + sym__semicolon, + STATE(2837), 1, + aux_sym_package_statement_repeat1, + STATE(3020), 1, + sym_package_name, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99758] = 6, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1967), 1, - sym__lhs_expression, + ACTIONS(5272), 1, + anon_sym_extends, + STATE(793), 1, + sym_block, + STATE(2731), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73806] = 17, - ACTIONS(362), 1, + [99778] = 3, + ACTIONS(5136), 1, + anon_sym_COLON, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(1636), 4, + anon_sym_DOT, + anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_EQ_GT, + [99792] = 6, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, + anon_sym_COMMA, + ACTIONS(4779), 1, + sym__closing_brace_marker, + STATE(1763), 1, + sym__closing_brace, + STATE(2553), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99812] = 3, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5274), 4, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2414), 1, - sym__lhs_expression, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [99826] = 4, + ACTIONS(5276), 1, + anon_sym_LT, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73868] = 17, - ACTIONS(362), 1, + ACTIONS(4603), 3, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3389), 1, - anon_sym_this, - ACTIONS(3495), 1, - sym_identifier, - STATE(1926), 1, - sym_string, - STATE(2016), 1, - sym__lhs_expression, - STATE(2022), 1, - sym_member_expression, + anon_sym_DASH_GT, + [99842] = 4, + ACTIONS(5158), 1, + anon_sym_else, + STATE(587), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2300), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73930] = 17, - ACTIONS(362), 1, + ACTIONS(2669), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [99858] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + ACTIONS(5278), 1, + anon_sym_RBRACE, + STATE(194), 1, + sym__arg_list, + STATE(3152), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [99878] = 6, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2412), 1, - sym__lhs_expression, + ACTIONS(5280), 1, + anon_sym_extends, + STATE(798), 1, + sym_block, + STATE(2721), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [73992] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1970), 1, - sym__lhs_expression, + [99898] = 5, + ACTIONS(4945), 1, + anon_sym_EQ_GT, + ACTIONS(5282), 1, + anon_sym_DOT, + ACTIONS(5284), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74054] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1962), 1, - sym__lhs_expression, + ACTIONS(1785), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [99916] = 5, + ACTIONS(5286), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + sym__lookback_semicolon, + STATE(750), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74116] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1996), 1, - sym__lhs_expression, + ACTIONS(5288), 2, + anon_sym_as, + anon_sym_in, + [99934] = 6, + ACTIONS(5268), 1, + sym__camelCaseIdentifier, + ACTIONS(5292), 1, + sym__lookback_semicolon, + STATE(761), 1, + sym__semicolon, + STATE(3009), 1, + sym_package_name, + STATE(3013), 1, + aux_sym_package_statement_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74178] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2349), 1, - sym__lhs_expression, + [99954] = 4, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(338), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74240] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2004), 1, - sym__lhs_expression, + ACTIONS(4623), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [99970] = 4, + ACTIONS(5158), 1, + anon_sym_else, + STATE(421), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74302] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2064), 1, - sym__lhs_expression, + ACTIONS(2679), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [99986] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(222), 1, + sym__arg_list, + STATE(3248), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74364] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2649), 1, - sym_identifier, - ACTIONS(2651), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1874), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [100006] = 6, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(2008), 1, + sym__closing_brace, + STATE(2749), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2336), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74426] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(826), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + [100026] = 4, + ACTIONS(5276), 1, + anon_sym_LT, + STATE(1677), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74488] = 17, - ACTIONS(362), 1, + ACTIONS(4609), 3, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1978), 1, - sym__lhs_expression, + anon_sym_DASH_GT, + [100042] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(1814), 1, + sym__arg_list, + STATE(3307), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74550] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1944), 1, - sym__lhs_expression, + [100062] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1577), 1, + sym__arg_list, + STATE(3259), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74612] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1935), 1, - sym__lhs_expression, + [100082] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1539), 1, + sym__arg_list, + STATE(3288), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74674] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1983), 1, - sym__lhs_expression, + [100102] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74736] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(867), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4635), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [100114] = 6, + ACTIONS(209), 1, + sym__closing_brace_marker, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(375), 1, + sym__closing_brace, + STATE(2701), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74798] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1947), 1, - sym__lhs_expression, + [100134] = 5, + ACTIONS(5058), 1, + anon_sym_EQ, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + STATE(2246), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74860] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1946), 1, - sym__lhs_expression, + ACTIONS(5056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [100152] = 3, + ACTIONS(5196), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74922] = 17, - ACTIONS(362), 1, + ACTIONS(5294), 4, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1999), 1, - sym__lhs_expression, + anon_sym_LT, + anon_sym_extends, + anon_sym_implements, + [100166] = 6, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5296), 1, + anon_sym_extends, + STATE(441), 1, + sym_block, + STATE(2579), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100186] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1812), 1, + sym__arg_list, + STATE(3308), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [74984] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1929), 1, - sym__lhs_expression, + [100206] = 6, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(1573), 1, + sym__closing_brace, + STATE(2765), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75046] = 17, - ACTIONS(362), 1, + [100226] = 6, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1951), 1, - sym__lhs_expression, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5298), 1, + anon_sym_extends, + STATE(614), 1, + sym_block, + STATE(2552), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75108] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, + [100246] = 4, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(1753), 1, + sym_escape_sequence, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(1755), 4, aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1995), 1, - sym__lhs_expression, + aux_sym_string_token2, + anon_sym_DOLLAR_LBRACE, + anon_sym_DOLLAR, + [100262] = 3, + ACTIONS(5088), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75170] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1950), 1, - sym__lhs_expression, + ACTIONS(1636), 4, + anon_sym_DOT, + anon_sym_in, + anon_sym_QMARK, + anon_sym_EQ_GT, + [100276] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5140), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(230), 1, + sym__arg_list, + STATE(3226), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75232] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1975), 1, - sym__lhs_expression, + [100296] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75294] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(861), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(4700), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_GT, + anon_sym_EQ, + [100310] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5110), 1, + anon_sym_LPAREN, + ACTIONS(5196), 1, + anon_sym_DOT, + STATE(378), 1, + sym__arg_list, + STATE(3297), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75356] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1982), 1, - sym__lhs_expression, + [100330] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75418] = 18, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3497), 1, - sym_identifier, - ACTIONS(3499), 1, - sym__closing_brace_marker, - STATE(1955), 1, - sym__closing_brace, - STATE(2013), 1, - sym_pair, - STATE(2220), 1, - sym_structure_type_pair, - STATE(2536), 1, - sym_string, + ACTIONS(4623), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [100342] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [75482] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(4627), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_GT, + anon_sym_EQ, + [100354] = 5, + ACTIONS(1433), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(1435), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1994), 1, - sym__lhs_expression, + ACTIONS(5300), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, + STATE(382), 2, + sym__parenthesized_expression, sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75544] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [100372] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(820), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75606] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2354), 1, - sym__lhs_expression, + ACTIONS(3937), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [100390] = 3, + ACTIONS(5092), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75668] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, + ACTIONS(1636), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [100404] = 5, + ACTIONS(2031), 1, aux_sym_integer_token1, - ACTIONS(386), 1, + ACTIONS(2033), 1, aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1933), 1, - sym__lhs_expression, + ACTIONS(5302), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, + STATE(1779), 2, + sym__parenthesized_expression, sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75730] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1941), 1, - sym__lhs_expression, + [100422] = 4, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(213), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75792] = 17, - ACTIONS(362), 1, + ACTIONS(4623), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [100438] = 6, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1797), 1, + sym__arg_list, + STATE(3181), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100458] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + STATE(778), 1, + sym_block, + STATE(2595), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100475] = 5, + ACTIONS(4465), 1, + anon_sym_COMMA, + ACTIONS(4783), 1, + sym__closing_brace_marker, + STATE(1786), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100492] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(822), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75854] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [100509] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4017), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1971), 1, - sym__lhs_expression, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75916] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [100526] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4147), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1927), 1, - sym__lhs_expression, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [75978] = 17, - ACTIONS(362), 1, + [100543] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(2487), 1, - sym_identifier, - ACTIONS(2489), 1, - anon_sym_this, - STATE(797), 1, - sym_member_expression, - STATE(821), 1, - sym__lhs_expression, - STATE(1926), 1, - sym_string, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(427), 1, + sym_block, + STATE(2565), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2373), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76040] = 17, - ACTIONS(362), 1, + [100560] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1968), 1, - sym__lhs_expression, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(428), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76102] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [100577] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1977), 1, - sym__lhs_expression, + ACTIONS(4187), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76164] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [100594] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4143), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1976), 1, - sym__lhs_expression, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76226] = 17, - ACTIONS(362), 1, + [100611] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1964), 1, - sym__lhs_expression, + STATE(802), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76288] = 17, - ACTIONS(362), 1, + [100628] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5304), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100645] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1954), 1, - sym__lhs_expression, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5310), 1, + sym__lookback_semicolon, + STATE(3483), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76350] = 17, - ACTIONS(362), 1, + [100662] = 4, + ACTIONS(5218), 1, + sym__lookback_semicolon, + STATE(567), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5216), 2, + anon_sym_as, + anon_sym_in, + [100677] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, + ACTIONS(5312), 1, + anon_sym_COLON, + ACTIONS(5314), 1, + sym__lookback_semicolon, + STATE(3408), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100694] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5015), 1, aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1966), 1, - sym__lhs_expression, + ACTIONS(5316), 1, + aux_sym_string_token4, + ACTIONS(5318), 1, + sym_escape_sequence, + STATE(2775), 1, + aux_sym_string_repeat2, + [100713] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4151), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76412] = 17, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [100730] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2729), 1, + sym__function_arg_list, + STATE(3166), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100747] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3449), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(2061), 1, - sym__lhs_expression, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76474] = 17, - ACTIONS(362), 1, + [100764] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3061), 1, - sym_identifier, - ACTIONS(3063), 1, - anon_sym_this, - STATE(902), 1, - sym_member_expression, - STATE(1926), 1, - sym_string, - STATE(1952), 1, - sym__lhs_expression, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(436), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2439), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [76536] = 6, - ACTIONS(3501), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK, + [100781] = 5, + ACTIONS(4465), 1, + anon_sym_COMMA, + ACTIONS(4779), 1, + sym__closing_brace_marker, + STATE(1786), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100798] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5322), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1524), 2, + [100815] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5324), 1, anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1508), 9, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 11, - sym__closing_brace_marker, - anon_sym_LPAREN, + ACTIONS(5326), 1, + sym__lookback_semicolon, + STATE(3646), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100832] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4689), 4, + sym__lookback_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_DASH_GT, anon_sym_LT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, + [100843] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(442), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100860] = 5, + ACTIONS(5084), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(725), 1, + sym_block, + STATE(2730), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100877] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5328), 1, + anon_sym_COLON, + ACTIONS(5330), 1, + sym__lookback_semicolon, + STATE(3340), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100894] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(444), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100911] = 5, + ACTIONS(5084), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(723), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100928] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4975), 1, aux_sym_string_token3, - [76575] = 17, - ACTIONS(137), 1, - sym__closing_brace_marker, - ACTIONS(362), 1, + ACTIONS(5332), 1, + aux_sym_string_token4, + ACTIONS(5334), 1, + sym_escape_sequence, + STATE(2548), 1, + aux_sym_string_repeat2, + [100947] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(5336), 1, + anon_sym_COLON, + ACTIONS(5338), 1, + sym__lookback_semicolon, + STATE(3638), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [100964] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4161), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3505), 1, - sym_identifier, - STATE(1600), 1, - sym__closing_brace, - STATE(2042), 1, - sym_pair, - STATE(2536), 1, - sym_string, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [76636] = 17, - ACTIONS(135), 1, - sym__closing_brace_marker, - ACTIONS(362), 1, + [100981] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3505), 1, - sym_identifier, - STATE(1255), 1, - sym__closing_brace, - STATE(2025), 1, - sym_pair, - STATE(2536), 1, - sym_string, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(457), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [76697] = 17, - ACTIONS(129), 1, - sym__closing_brace_marker, - ACTIONS(362), 1, + [100998] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3505), 1, - sym_identifier, - STATE(216), 1, - sym__closing_brace, - STATE(2013), 1, - sym_pair, - STATE(2536), 1, - sym_string, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(458), 1, + sym_block, + STATE(2589), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [76758] = 17, - ACTIONS(362), 1, + [101015] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3505), 1, - sym_identifier, - ACTIONS(3507), 1, - sym__closing_brace_marker, - STATE(1285), 1, - sym__closing_brace, - STATE(2019), 1, - sym_pair, - STATE(2536), 1, - sym_string, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(459), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [76819] = 17, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(362), 1, + [101032] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3505), 1, - sym_identifier, - STATE(269), 1, - sym__closing_brace, - STATE(2043), 1, - sym_pair, - STATE(2536), 1, - sym_string, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5340), 1, + sym__lookback_semicolon, + STATE(3338), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [76880] = 5, - ACTIONS(3513), 1, - anon_sym_EQ, - STATE(203), 1, - sym__assignmentOperator, + [101049] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(693), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3509), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(3511), 14, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, + [101066] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4167), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [76917] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 9, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 13, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, + [101083] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [76951] = 4, - ACTIONS(1524), 1, - anon_sym_COLON, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(465), 1, + sym_block, + STATE(2591), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 15, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + [101100] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(466), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101117] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [76985] = 3, + ACTIONS(5342), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 16, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + [101134] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77017] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5344), 1, + sym__lookback_semicolon, + STATE(3355), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 16, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACE, + [101151] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77049] = 3, + STATE(694), 1, + sym_block, + STATE(2666), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 9, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 14, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, + [101168] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - anon_sym_COMMA, + STATE(695), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101185] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4169), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101202] = 5, + ACTIONS(5204), 1, anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77081] = 3, + ACTIONS(5346), 1, + anon_sym_COMMA, + ACTIONS(5348), 1, + anon_sym_GT, + STATE(3083), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 9, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 14, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LPAREN, + [101219] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(474), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101236] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77113] = 5, - ACTIONS(3515), 1, - anon_sym_EQ, - STATE(276), 1, - sym__assignmentOperator, + ACTIONS(5350), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3509), 10, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(3511), 11, - sym__closing_brace_marker, - anon_sym_DOT, + [101253] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5352), 1, + anon_sym_COLON, + ACTIONS(5354), 1, + sym__lookback_semicolon, + STATE(3511), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101270] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2637), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77149] = 4, - ACTIONS(3517), 1, - anon_sym_EQ, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1480), 14, - anon_sym_DOT, - anon_sym_RPAREN, + [101287] = 5, + ACTIONS(1785), 1, anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4981), 1, + anon_sym_DOT, + ACTIONS(4983), 1, anon_sym_QMARK, + ACTIONS(5136), 1, anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77183] = 14, - ACTIONS(362), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101304] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5356), 1, + sym__lookback_semicolon, + STATE(3678), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101321] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2643), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2327), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77236] = 15, - ACTIONS(362), 1, - anon_sym_LBRACE, - ACTIONS(374), 1, + [101338] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4171), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, - STATE(2443), 1, - sym_pair, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2843), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [77291] = 4, - ACTIONS(3517), 1, - anon_sym_EQ, + [101355] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4173), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 10, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1480), 11, + [101372] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(4639), 4, sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DASH_GT, + [101383] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(485), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101400] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4181), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77324] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3523), 1, - anon_sym_QMARK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 12, - anon_sym_LPAREN, - anon_sym_RPAREN, + [101417] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77361] = 15, - ACTIONS(362), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(491), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101434] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3505), 1, - sym_identifier, - STATE(2415), 1, - sym_pair, - STATE(2536), 1, - sym_string, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(492), 1, + sym_block, + STATE(2617), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2834), 8, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - [77416] = 14, - ACTIONS(362), 1, + [101451] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(493), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2317), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77469] = 14, - ACTIONS(362), 1, + [101468] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(374), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5358), 1, + sym__lookback_semicolon, + STATE(3330), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2337), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77522] = 14, - ACTIONS(362), 1, + [101485] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(374), 1, + STATE(660), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101502] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4025), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(382), 1, - anon_sym_null, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(388), 1, - aux_sym_float_token1, - ACTIONS(390), 1, - aux_sym_float_token2, - ACTIONS(394), 1, - aux_sym_string_token1, - ACTIONS(396), 1, - aux_sym_string_token3, - ACTIONS(3519), 1, - sym_identifier, - STATE(2213), 1, - sym_string, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(392), 2, - anon_sym_true, - anon_sym_false, - STATE(2364), 9, - sym__literal, - sym_integer, - sym_float, - sym_bool, - sym_null, - sym_array, - sym_map, - sym_object, - sym_pair, - [77575] = 6, - ACTIONS(1524), 1, - anon_sym_COLON, - ACTIONS(3525), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_QMARK, + [101519] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4189), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 11, - sym__closing_brace_marker, - anon_sym_LPAREN, + [101536] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77611] = 6, - ACTIONS(3529), 1, - anon_sym_DOT, - ACTIONS(3531), 1, - anon_sym_QMARK, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(499), 1, + sym_block, + STATE(2621), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101553] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(500), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101570] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5360), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 10, - sym__lookback_semicolon, - anon_sym_LPAREN, + [101587] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - anon_sym_LBRACK, + ACTIONS(5308), 1, anon_sym_DASH_GT, - anon_sym_LT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77647] = 7, - ACTIONS(3), 1, + ACTIONS(5362), 1, + sym__lookback_semicolon, + STATE(3486), 1, + sym_block, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3533), 1, - anon_sym_DOT, - ACTIONS(3537), 1, - anon_sym_QMARK, - ACTIONS(3535), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1508), 16, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_integer_token2, - aux_sym_float_token1, - aux_sym_float_token2, - anon_sym_true, - anon_sym_false, - aux_sym_string_token1, - aux_sym_string_token2, - aux_sym_string_token3, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - sym_identifier, - [77685] = 5, - ACTIONS(3539), 1, - anon_sym_EQ, - STATE(203), 1, - sym__assignmentOperator, + [101604] = 4, + ACTIONS(5366), 1, + sym__lookback_semicolon, + STATE(751), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3509), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(3511), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77718] = 5, - ACTIONS(3543), 1, + ACTIONS(5364), 2, + anon_sym_as, + anon_sym_in, + [101619] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(1858), 1, - aux_sym_variable_declaration_repeat1, + STATE(2547), 1, + sym__function_arg_list, + STATE(3319), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3546), 6, + [101636] = 5, + ACTIONS(5084), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(3541), 12, - anon_sym_this, - anon_sym_Void, - anon_sym_Int, - anon_sym_Float, - anon_sym_Bool, - anon_sym_Null, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [77751] = 12, - ACTIONS(39), 1, - anon_sym_AT, - ACTIONS(41), 1, - anon_sym_AT_COLON, - ACTIONS(3550), 1, - anon_sym_abstract, - ACTIONS(3552), 1, - anon_sym_final, - ACTIONS(3554), 1, - anon_sym_class, - ACTIONS(3556), 1, - anon_sym_typedef, - ACTIONS(3558), 1, - anon_sym_function, - ACTIONS(3560), 1, - anon_sym_var, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(736), 1, + sym_block, + STATE(2716), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1872), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(1884), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3548), 8, - anon_sym_macro, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [77798] = 5, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3562), 1, - anon_sym_DOT, + [101653] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(661), 1, + sym_block, + STATE(2799), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 8, - anon_sym_this, - anon_sym_EQ, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 10, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_COMMA, + [101670] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4197), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77831] = 12, - ACTIONS(39), 1, - anon_sym_AT, - ACTIONS(41), 1, - anon_sym_AT_COLON, - ACTIONS(3566), 1, - anon_sym_abstract, - ACTIONS(3568), 1, - anon_sym_final, - ACTIONS(3570), 1, - anon_sym_class, - ACTIONS(3572), 1, - anon_sym_typedef, - ACTIONS(3574), 1, - anon_sym_function, - ACTIONS(3576), 1, - anon_sym_var, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1872), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(1881), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3564), 8, - anon_sym_macro, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [77878] = 4, - ACTIONS(1524), 1, + [101687] = 3, + ACTIONS(5368), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 12, - sym__lookback_semicolon, + ACTIONS(1636), 3, anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_LT, anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77909] = 5, - ACTIONS(3578), 1, - anon_sym_EQ, - STATE(810), 1, - sym__assignmentOperator, + [101700] = 5, + ACTIONS(1785), 1, + sym__lookback_semicolon, + ACTIONS(5092), 1, + anon_sym_EQ_GT, + ACTIONS(5371), 1, + anon_sym_DOT, + ACTIONS(5373), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3509), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(3511), 10, + [101717] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4199), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77942] = 3, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 13, + [101734] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3979), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [77971] = 3, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1422), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1420), 13, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LPAREN, + [101751] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_DASH_GT, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [78000] = 12, - ACTIONS(39), 1, - anon_sym_AT, - ACTIONS(41), 1, - anon_sym_AT_COLON, - ACTIONS(3572), 1, - anon_sym_typedef, - ACTIONS(3574), 1, - anon_sym_function, - ACTIONS(3576), 1, - anon_sym_var, - ACTIONS(3580), 1, - anon_sym_abstract, - ACTIONS(3582), 1, - anon_sym_final, - ACTIONS(3584), 1, - anon_sym_class, + STATE(663), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1872), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - STATE(1881), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3564), 8, - anon_sym_macro, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [78047] = 4, - ACTIONS(3517), 1, - anon_sym_EQ, + [101768] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4201), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1480), 10, + [101785] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3995), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [78077] = 4, - ACTIONS(3586), 1, - anon_sym_EQ, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1483), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1480), 10, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LBRACE, - anon_sym_COMMA, + [101802] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4203), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [78107] = 5, - ACTIONS(3588), 1, - anon_sym_EQ, - STATE(276), 1, - sym__assignmentOperator, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3511), 7, - sym__closing_brace_marker, - anon_sym_LBRACE, + [101819] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(3509), 10, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [78139] = 3, + ACTIONS(3997), 1, + anon_sym_while, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 12, - anon_sym_DOT, + [101836] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, anon_sym_LPAREN, + STATE(2738), 1, + sym__function_arg_list, + STATE(3254), 1, + sym_type_params, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101853] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_COLON, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(515), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [101870] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4205), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_LT, - anon_sym_EQ_GT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [78167] = 6, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3590), 1, - anon_sym_DOT, - ACTIONS(3592), 1, - anon_sym_QMARK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1508), 7, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - ACTIONS(1506), 9, - anon_sym_LPAREN, + [101887] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_LT, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - [78201] = 5, - ACTIONS(3594), 1, - anon_sym_AT, - ACTIONS(3597), 1, - anon_sym_AT_COLON, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5375), 1, + sym__lookback_semicolon, + STATE(3621), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1872), 2, - sym_metadata, - aux_sym_class_declaration_repeat1, - ACTIONS(3600), 14, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [78232] = 4, - ACTIONS(3586), 1, - anon_sym_EQ, + [101904] = 5, + ACTIONS(2629), 1, + anon_sym_catch, + ACTIONS(4131), 1, + sym__lookback_semicolon, + ACTIONS(5377), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1480), 7, - sym__closing_brace_marker, + [101921] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1483), 10, - anon_sym_case, - anon_sym_default, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [78261] = 4, - ACTIONS(3602), 1, - anon_sym_LPAREN, - ACTIONS(3604), 1, - anon_sym_AT, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(521), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3606), 15, - anon_sym_AT_COLON, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [78289] = 5, - ACTIONS(3608), 1, - anon_sym_EQ, - STATE(810), 1, - sym__assignmentOperator, + [101938] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(522), 1, + sym_block, + STATE(2639), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3511), 7, - sym__lookback_semicolon, + [101955] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(3509), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [78319] = 4, - ACTIONS(3), 1, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(523), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(1508), 16, + [101972] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_integer_token2, - aux_sym_float_token1, - aux_sym_float_token2, - anon_sym_true, - anon_sym_false, - aux_sym_string_token1, - aux_sym_string_token2, - aux_sym_string_token3, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - sym_identifier, - [78347] = 4, - ACTIONS(3), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5379), 1, + sym__lookback_semicolon, + STATE(3656), 1, + sym_block, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1420), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(1422), 16, - anon_sym_LBRACE, - anon_sym_LBRACK, - anon_sym_this, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_integer_token2, - aux_sym_float_token1, - aux_sym_float_token2, - anon_sym_true, - anon_sym_false, - aux_sym_string_token1, - aux_sym_string_token2, - aux_sym_string_token3, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - sym_identifier, - [78375] = 4, - ACTIONS(3586), 1, - anon_sym_EQ, + [101989] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2813), 1, + sym__function_arg_list, + STATE(3285), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1480), 7, + [102006] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4037), 1, sym__lookback_semicolon, - anon_sym_LBRACE, + ACTIONS(4491), 1, anon_sym_LBRACK, - aux_sym_integer_token2, - aux_sym_float_token2, - aux_sym_string_token1, - aux_sym_string_token3, - ACTIONS(1483), 8, - anon_sym_this, - anon_sym_new, - anon_sym_null, - aux_sym_integer_token1, - aux_sym_float_token1, - anon_sym_true, - anon_sym_false, - sym_identifier, - [78402] = 3, - ACTIONS(3610), 1, - anon_sym_AT, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3612), 15, - anon_sym_AT_COLON, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [78427] = 3, - ACTIONS(3614), 1, - anon_sym_AT, + [102023] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4215), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3616), 15, - anon_sym_AT_COLON, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_class, - anon_sym_typedef, - anon_sym_function, - anon_sym_var, - [78452] = 6, - ACTIONS(3620), 1, - anon_sym_final, - ACTIONS(3622), 1, - anon_sym_function, - ACTIONS(3624), 1, - anon_sym_var, + [102040] = 5, + ACTIONS(5084), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(737), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1883), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3618), 9, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [78481] = 6, - ACTIONS(3558), 1, - anon_sym_function, - ACTIONS(3560), 1, - anon_sym_var, - ACTIONS(3626), 1, - anon_sym_final, + [102057] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4219), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1883), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3618), 9, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [78510] = 4, + [102074] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2559), 1, + sym__function_arg_list, + STATE(3306), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3631), 2, - anon_sym_function, - anon_sym_var, - STATE(1883), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3628), 10, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - [78535] = 6, - ACTIONS(3633), 1, - anon_sym_final, - ACTIONS(3635), 1, - anon_sym_function, - ACTIONS(3637), 1, - anon_sym_var, + [102091] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4221), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1883), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3618), 9, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [78564] = 6, - ACTIONS(3574), 1, - anon_sym_function, - ACTIONS(3576), 1, - anon_sym_var, - ACTIONS(3639), 1, - anon_sym_final, + [102108] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3993), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1883), 2, - sym__modifier, - aux_sym_function_declaration_repeat1, - ACTIONS(3618), 9, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - [78593] = 3, - ACTIONS(3554), 1, - anon_sym_class, - ACTIONS(3), 2, + [102125] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - ACTIONS(3641), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [78615] = 3, - ACTIONS(3643), 1, - anon_sym_class, + ACTIONS(4985), 1, + aux_sym_string_token3, + ACTIONS(5381), 1, + aux_sym_string_token4, + ACTIONS(5383), 1, + sym_escape_sequence, + STATE(2671), 1, + aux_sym_string_repeat2, + [102144] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4225), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3641), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [78637] = 3, - ACTIONS(3570), 1, - anon_sym_class, + [102161] = 4, + ACTIONS(5387), 1, + sym__lookback_semicolon, + STATE(584), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3641), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [78659] = 3, - ACTIONS(3584), 1, - anon_sym_class, + ACTIONS(5385), 2, + anon_sym_as, + anon_sym_in, + [102176] = 4, + ACTIONS(5194), 1, + sym__lookback_semicolon, + STATE(585), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3641), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [78681] = 3, - ACTIONS(3645), 1, - anon_sym_class, + ACTIONS(5192), 2, + anon_sym_as, + anon_sym_in, + [102191] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4047), 1, + anon_sym_RBRACE, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3641), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [78703] = 3, - ACTIONS(3647), 1, - anon_sym_class, + [102208] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4231), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3641), 12, - anon_sym_macro, - anon_sym_abstract, - anon_sym_static, - anon_sym_public, - anon_sym_private, - anon_sym_extern, - anon_sym_inline, - anon_sym_overload, - anon_sym_override, - anon_sym_final, - anon_sym_function, - anon_sym_var, - [78725] = 3, + [102225] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(534), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1502), 9, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - sym_identifier, - [78745] = 6, - ACTIONS(3649), 1, - anon_sym_DOT, - ACTIONS(3653), 1, - anon_sym_QMARK, + [102242] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3461), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3651), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 4, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - [78770] = 9, - ACTIONS(3), 1, + [102259] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3999), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3655), 1, - aux_sym_string_token1, - ACTIONS(3657), 1, - aux_sym_string_token2, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3663), 1, - sym_escape_sequence, - STATE(1918), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [78800] = 9, - ACTIONS(3), 1, + [102276] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3463), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3665), 1, - aux_sym_string_token1, - ACTIONS(3667), 1, - aux_sym_string_token2, - ACTIONS(3669), 1, - sym_escape_sequence, - STATE(1912), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [78830] = 7, - ACTIONS(2593), 1, - anon_sym_RBRACK, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [102293] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4067), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1506), 2, - anon_sym_LPAREN, + [102310] = 5, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [78856] = 6, - ACTIONS(3521), 1, - anon_sym_DOT, - ACTIONS(3523), 1, - anon_sym_QMARK, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(194), 1, + sym__arg_list, + STATE(3152), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [78880] = 9, - ACTIONS(3), 1, + [102327] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4241), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3673), 1, - aux_sym_string_token1, - ACTIONS(3675), 1, - aux_sym_string_token2, - ACTIONS(3677), 1, - sym_escape_sequence, - STATE(1894), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [78910] = 6, - ACTIONS(3501), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK, + [102344] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3444), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3651), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [78934] = 9, - ACTIONS(3), 1, + [102361] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4245), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3679), 1, - aux_sym_string_token1, - ACTIONS(3681), 1, - aux_sym_string_token2, - ACTIONS(3683), 1, - sym_escape_sequence, - STATE(1911), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [78964] = 6, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [102378] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4057), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [78988] = 7, - ACTIONS(3), 1, + [102395] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4247), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3533), 1, - anon_sym_DOT, - ACTIONS(3537), 1, - anon_sym_QMARK, - ACTIONS(3535), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1508), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [79014] = 6, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [102412] = 5, + ACTIONS(5062), 1, + anon_sym_STAR, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2467), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [79038] = 2, + [102429] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4257), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3323), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [79054] = 6, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_QMARK, + [102446] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4011), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1524), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [102463] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4055), 1, anon_sym_RBRACK, - [79078] = 2, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3379), 9, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - anon_sym_extends, - anon_sym_implements, - [79094] = 9, - ACTIONS(3), 1, + [102480] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3451), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3689), 1, - aux_sym_string_token1, - ACTIONS(3691), 1, - aux_sym_string_token2, - ACTIONS(3693), 1, - sym_escape_sequence, - STATE(1914), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79124] = 7, - ACTIONS(2577), 1, - anon_sym_RBRACK, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [102497] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4079), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79150] = 7, - ACTIONS(2589), 1, - anon_sym_RBRACK, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [102514] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4041), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102531] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4013), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79176] = 3, + [102548] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1502), 7, + ACTIONS(4689), 4, sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_case, - anon_sym_default, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - [79194] = 9, - ACTIONS(3), 1, + anon_sym_DASH_GT, + anon_sym_LT, + [102559] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5389), 1, + anon_sym_RPAREN, + ACTIONS(5392), 1, + anon_sym_COMMA, + STATE(3109), 1, + aux_sym__function_type_args_repeat1, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3657), 1, - aux_sym_string_token2, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3663), 1, - sym_escape_sequence, - ACTIONS(3695), 1, - aux_sym_string_token1, - STATE(1918), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79224] = 9, - ACTIONS(3), 1, + [102576] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4005), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3657), 1, - aux_sym_string_token2, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3663), 1, - sym_escape_sequence, - ACTIONS(3697), 1, - aux_sym_string_token1, - STATE(1918), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79254] = 9, - ACTIONS(3), 1, + [102593] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(1883), 1, + sym__arg_list, + STATE(3279), 1, + sym_type_params, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3657), 1, - aux_sym_string_token2, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3663), 1, - sym_escape_sequence, - ACTIONS(3699), 1, - aux_sym_string_token1, - STATE(1918), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79284] = 9, - ACTIONS(3), 1, + [102610] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(763), 1, + sym_block, + STATE(2760), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3657), 1, - aux_sym_string_token2, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3663), 1, - sym_escape_sequence, - ACTIONS(3701), 1, - aux_sym_string_token1, - STATE(1918), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79314] = 6, - ACTIONS(3685), 1, + [102627] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(764), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102644] = 5, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(5088), 1, + anon_sym_EQ_GT, + ACTIONS(5146), 1, anon_sym_DOT, - ACTIONS(3687), 1, + ACTIONS(5148), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - ACTIONS(1502), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [79338] = 9, - ACTIONS(3), 1, + [102661] = 4, + ACTIONS(3995), 1, + sym__lookback_semicolon, + ACTIONS(5394), 1, + anon_sym_catch, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3659), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3661), 1, - anon_sym_DOLLAR, - ACTIONS(3703), 1, - aux_sym_string_token1, - ACTIONS(3705), 1, - aux_sym_string_token2, - ACTIONS(3707), 1, - sym_escape_sequence, - STATE(1913), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79368] = 7, - ACTIONS(2605), 1, - anon_sym_RBRACK, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + STATE(628), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102676] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(707), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79394] = 9, - ACTIONS(3), 1, + [102693] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4049), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3709), 1, - aux_sym_string_token1, - ACTIONS(3711), 1, - aux_sym_string_token2, - ACTIONS(3714), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(3717), 1, - anon_sym_DOLLAR, - ACTIONS(3720), 1, - sym_escape_sequence, - STATE(1918), 2, - sym_interpolation, - aux_sym_string_repeat1, - STATE(2006), 2, - sym__interpolated_block, - sym__interpolated_identifier, - [79424] = 7, - ACTIONS(2597), 1, - anon_sym_RBRACK, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [102710] = 4, + ACTIONS(5398), 1, + sym__lookback_semicolon, + STATE(419), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - anon_sym_COMMA, - sym_identifier, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3671), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79450] = 6, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, - ACTIONS(3723), 1, - anon_sym_COLON, + ACTIONS(5396), 2, + anon_sym_as, + anon_sym_in, + [102725] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3431), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 4, - anon_sym_RPAREN, - anon_sym_COMMA, + [102742] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - [79473] = 6, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, - ACTIONS(3725), 1, - anon_sym_COLON, + ACTIONS(5400), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 4, - anon_sym_RPAREN, + [102759] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4999), 1, + aux_sym_string_token3, + ACTIONS(5316), 1, + aux_sym_string_token4, + ACTIONS(5318), 1, + sym_escape_sequence, + STATE(2775), 1, + aux_sym_string_repeat2, + [102778] = 5, + ACTIONS(5402), 1, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - [79496] = 3, - ACTIONS(3651), 1, - anon_sym_COLON, + ACTIONS(5404), 1, + sym__closing_brace_marker, + STATE(2967), 1, + sym__closing_brace, + STATE(2982), 1, + aux_sym_structure_type_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 7, - sym__closing_brace_marker, - anon_sym_DOT, - anon_sym_case, - anon_sym_default, - anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - [79513] = 6, - ACTIONS(3525), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_QMARK, + [102795] = 4, + ACTIONS(4043), 1, + sym__lookback_semicolon, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3651), 2, + STATE(636), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [102810] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5408), 1, anon_sym_COLON, - anon_sym_EQ_GT, - [79536] = 6, - ACTIONS(1502), 1, + ACTIONS(5410), 1, sym__lookback_semicolon, - ACTIONS(3529), 1, - anon_sym_DOT, - ACTIONS(3531), 1, - anon_sym_QMARK, + STATE(3624), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3727), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79558] = 6, - ACTIONS(1502), 1, + [102827] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4065), 1, sym__lookback_semicolon, - ACTIONS(3729), 1, - anon_sym_DOT, - ACTIONS(3731), 1, - anon_sym_QMARK, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3727), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79580] = 3, - ACTIONS(1524), 1, - anon_sym_COLON, + [102844] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4019), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 6, - anon_sym_DOT, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_EQ_GT, - [79596] = 8, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3737), 1, - anon_sym_extends, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(589), 1, - sym_block, - STATE(2052), 1, - sym_type_params, - STATE(2070), 1, - aux_sym_class_declaration_repeat2, + [102861] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4031), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79622] = 6, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2047), 1, - sym_type_params, + [102878] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4043), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [79644] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [102895] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3745), 1, - anon_sym_extends, - STATE(326), 1, + STATE(652), 1, sym_block, - STATE(2044), 1, - sym_type_params, - STATE(2260), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79670] = 3, - STATE(2453), 1, - sym__access_identifier, + [102912] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5412), 1, + sym__lookback_semicolon, + STATE(3502), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3747), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [79686] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - STATE(2027), 1, - sym_type_params, + [102929] = 5, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5414), 1, + anon_sym_STAR, + STATE(2460), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3363), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [79704] = 3, - ACTIONS(3671), 1, + [102946] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4039), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [102963] = 3, + ACTIONS(5416), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 6, - anon_sym_DOT, + ACTIONS(1636), 3, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_EQ_GT, - sym_identifier, - [79720] = 8, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3749), 1, - anon_sym_extends, - STATE(500), 1, - sym_block, - STATE(2021), 1, - sym_type_params, - STATE(2283), 1, - aux_sym_class_declaration_repeat2, + [102976] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4271), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79746] = 6, - ACTIONS(3751), 1, - anon_sym_LPAREN, - ACTIONS(3753), 1, + [102993] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4045), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103010] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4969), 1, + aux_sym_string_token3, + ACTIONS(5418), 1, + aux_sym_string_token4, + ACTIONS(5420), 1, + sym_escape_sequence, + STATE(2696), 1, + aux_sym_string_repeat2, + [103029] = 5, + ACTIONS(5050), 1, anon_sym_LT, - STATE(241), 1, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(369), 1, sym__arg_list, - STATE(2008), 1, + STATE(3264), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [79768] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [103046] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3757), 1, - anon_sym_extends, - STATE(448), 1, + STATE(670), 1, sym_block, - STATE(2030), 1, - sym_type_params, - STATE(2152), 1, - aux_sym_class_declaration_repeat2, + STATE(2569), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79794] = 6, - ACTIONS(3735), 1, + [103063] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2039), 1, + STATE(3269), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [79816] = 5, - ACTIONS(3651), 1, + ACTIONS(5422), 2, + anon_sym_LBRACE, + anon_sym_implements, + [103078] = 5, + ACTIONS(1785), 1, + sym__lookback_semicolon, + ACTIONS(5092), 1, anon_sym_EQ_GT, - ACTIONS(3761), 1, + ACTIONS(5424), 1, anon_sym_DOT, - ACTIONS(3763), 1, + ACTIONS(5426), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 4, + [103095] = 5, + ACTIONS(193), 1, sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, + ACTIONS(4465), 1, anon_sym_COMMA, - [79836] = 6, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + STATE(215), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3765), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79858] = 3, - STATE(2726), 1, - sym__access_identifier, + [103112] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4097), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3767), 6, - anon_sym_default, - anon_sym_null, - anon_sym_get, - anon_sym_set, - anon_sym_dynamic, - anon_sym_never, - [79874] = 6, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_QMARK, + [103129] = 4, + ACTIONS(4065), 1, + sym__lookback_semicolon, + ACTIONS(5428), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3765), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [79896] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + STATE(2970), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [103144] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3769), 1, - anon_sym_extends, - STATE(365), 1, + STATE(735), 1, sym_block, - STATE(2036), 1, - sym_type_params, - STATE(2116), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79922] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - STATE(2026), 1, - sym_type_params, + [103161] = 4, + ACTIONS(5432), 1, + sym__lookback_semicolon, + STATE(447), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [79940] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + ACTIONS(5430), 2, + anon_sym_as, + anon_sym_in, + [103176] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4991), 1, + aux_sym_string_token3, + ACTIONS(5316), 1, + aux_sym_string_token4, + ACTIONS(5318), 1, + sym_escape_sequence, + STATE(2775), 1, + aux_sym_string_repeat2, + [103195] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3771), 1, - anon_sym_extends, - STATE(365), 1, + STATE(772), 1, sym_block, - STATE(2038), 1, - sym_type_params, - STATE(2241), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79966] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3773), 1, - anon_sym_extends, - STATE(326), 1, - sym_block, - STATE(2049), 1, - sym_type_params, - STATE(2076), 1, - aux_sym_class_declaration_repeat2, + [103212] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3977), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [79992] = 7, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3777), 1, - anon_sym_EQ, - STATE(1852), 1, - sym__assignmentOperator, - STATE(2026), 1, - sym_type_params, + [103229] = 5, + ACTIONS(1785), 1, + anon_sym_in, + ACTIONS(4995), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_QMARK, + ACTIONS(5088), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3775), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [80016] = 8, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3779), 1, - anon_sym_extends, - STATE(502), 1, - sym_block, - STATE(2051), 1, - sym_type_params, - STATE(2066), 1, - aux_sym_class_declaration_repeat2, + [103246] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80042] = 8, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3781), 1, - anon_sym_extends, - STATE(448), 1, - sym_block, - STATE(2048), 1, - sym_type_params, - STATE(2268), 1, - aux_sym_class_declaration_repeat2, + [103263] = 5, + ACTIONS(209), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, + anon_sym_COMMA, + STATE(385), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80068] = 6, - ACTIONS(1630), 1, - anon_sym_LBRACE, - ACTIONS(3783), 1, - anon_sym_else, - ACTIONS(3785), 1, - anon_sym_elseif, - STATE(2033), 1, - sym_block, + [103280] = 3, + ACTIONS(4009), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1616), 3, + ACTIONS(5434), 3, sym__closing_brace_marker, anon_sym_case, anon_sym_default, - [80090] = 7, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3789), 1, - anon_sym_EQ, - STATE(1853), 1, - sym__assignmentOperator, - STATE(2026), 1, - sym_type_params, + [103293] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [80114] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(329), 1, - sym_block, - STATE(2077), 1, - sym_type_params, - STATE(2078), 1, - aux_sym_interface_declaration_repeat1, + [103310] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4035), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80137] = 7, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(658), 1, - sym_block, - STATE(2261), 1, - aux_sym_class_declaration_repeat2, - STATE(2271), 1, - sym_type_params, + [103327] = 5, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5436), 1, + anon_sym_STAR, + STATE(2503), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80160] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(412), 1, - sym_block, - STATE(2227), 1, - aux_sym_class_declaration_repeat2, - STATE(2228), 1, - sym_type_params, + [103344] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4009), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80183] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(424), 1, - sym_block, - STATE(2221), 1, - aux_sym_class_declaration_repeat2, - STATE(2225), 1, - sym_type_params, + [103361] = 5, + ACTIONS(5438), 1, + anon_sym_STAR, + ACTIONS(5440), 1, + sym__pascalCaseIdentifier, + STATE(2707), 1, + aux_sym__type_path_repeat1, + STATE(3482), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80206] = 7, - ACTIONS(3735), 1, + [103378] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_block, - STATE(2215), 1, - aux_sym_class_declaration_repeat2, - STATE(2216), 1, + STATE(3118), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80229] = 4, - ACTIONS(3795), 1, - anon_sym_EQ, + ACTIONS(5443), 2, + anon_sym_LBRACE, + anon_sym_extends, + [103393] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3189), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3793), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(1544), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [80246] = 7, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [103410] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(641), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(671), 1, sym_block, - STATE(2200), 1, - aux_sym_class_declaration_repeat2, - STATE(2201), 1, - sym_type_params, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80269] = 3, - ACTIONS(1520), 1, - anon_sym_EQ, + [103427] = 5, + ACTIONS(1785), 1, + anon_sym_COLON, + ACTIONS(5152), 1, + anon_sym_EQ_GT, + ACTIONS(5445), 1, + anon_sym_DOT, + ACTIONS(5447), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1518), 5, - anon_sym_DOT, - anon_sym_RPAREN, + [103444] = 5, + ACTIONS(5402), 1, anon_sym_COMMA, - anon_sym_QMARK, - anon_sym_EQ_GT, - [80284] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2398), 1, - sym_type_name, - STATE(2403), 1, - aux_sym_import_statement_repeat1, - STATE(2652), 1, - sym_package_name, + ACTIONS(5404), 1, + sym__closing_brace_marker, + STATE(2672), 1, + aux_sym_structure_type_repeat1, + STATE(2853), 1, + sym__closing_brace, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80307] = 5, - ACTIONS(3801), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_QMARK, + [103461] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4183), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3803), 2, + [103478] = 5, + ACTIONS(1785), 1, anon_sym_COLON, + ACTIONS(5152), 1, anon_sym_EQ_GT, - [80326] = 5, - ACTIONS(3671), 1, - anon_sym_EQ_GT, - ACTIONS(3807), 1, + ACTIONS(5449), 1, anon_sym_DOT, - ACTIONS(3809), 1, + ACTIONS(5451), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [80345] = 5, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3811), 1, - anon_sym_DOT, - ACTIONS(3813), 1, - anon_sym_QMARK, + [103495] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3442), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [80364] = 7, - ACTIONS(3733), 1, + [103512] = 5, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(526), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(773), 1, sym_block, - STATE(2166), 1, - aux_sym_class_declaration_repeat2, - STATE(2168), 1, - sym_type_params, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80387] = 6, - ACTIONS(129), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(177), 1, - sym__closing_brace, + [103529] = 3, + ACTIONS(2625), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2053), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80408] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(424), 1, - sym_block, - STATE(2222), 1, - sym_type_params, - STATE(2284), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(1833), 3, + anon_sym_DOT, + anon_sym_QMARK, + anon_sym_EQ_GT, + [103542] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5346), 1, + anon_sym_COMMA, + ACTIONS(5453), 1, + anon_sym_GT, + STATE(2951), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80431] = 5, - ACTIONS(3590), 1, - anon_sym_DOT, - ACTIONS(3592), 1, - anon_sym_QMARK, + [103559] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4083), 1, + anon_sym_while, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(3803), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [80450] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(324), 1, - sym_block, - STATE(2232), 1, - aux_sym_class_declaration_repeat2, - STATE(2233), 1, - sym_type_params, + [103576] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2665), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80473] = 7, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [103593] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(543), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(785), 1, sym_block, - STATE(2170), 1, - sym_type_params, - STATE(2286), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80496] = 7, - ACTIONS(3735), 1, + [103610] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(327), 1, - sym_block, - STATE(2128), 1, + ACTIONS(5455), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, - STATE(2129), 1, - aux_sym_class_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80519] = 2, + [103627] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4131), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3422), 6, - anon_sym_RPAREN, - anon_sym_COMMA, + [103644] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_EQ, - [80532] = 7, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(618), 1, - sym_block, - STATE(2191), 1, - aux_sym_class_declaration_repeat2, - STATE(2192), 1, + ACTIONS(5457), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80555] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, + [103661] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - STATE(327), 1, + ACTIONS(5459), 1, + anon_sym_COLON, + ACTIONS(5461), 1, + sym__lookback_semicolon, + STATE(3642), 1, sym_block, - STATE(2239), 1, - aux_sym_class_declaration_repeat2, - STATE(2240), 1, - sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80578] = 6, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(280), 1, - sym__closing_brace, + [103678] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4061), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1979), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80599] = 6, - ACTIONS(129), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(190), 1, - sym__closing_brace, + [103695] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5392), 1, + anon_sym_COMMA, + ACTIONS(5463), 1, + anon_sym_RPAREN, + STATE(2892), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1963), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80620] = 5, - ACTIONS(3651), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_DOT, - ACTIONS(3821), 1, - anon_sym_QMARK, + [103712] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(796), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [80639] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, + [103729] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - STATE(487), 1, + ACTIONS(5466), 1, + anon_sym_COLON, + ACTIONS(5468), 1, + sym__lookback_semicolon, + STATE(3550), 1, sym_block, - STATE(2242), 1, - aux_sym_class_declaration_repeat2, - STATE(2243), 1, - sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80662] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + [103746] = 5, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(412), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(801), 1, sym_block, - STATE(2207), 1, - sym_type_params, - STATE(2277), 1, - aux_sym_class_declaration_repeat2, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80685] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + [103763] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - STATE(324), 1, + STATE(790), 1, sym_block, - STATE(2139), 1, - sym_type_params, - STATE(2140), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80708] = 7, - ACTIONS(3735), 1, + [103780] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(419), 1, - sym_block, - STATE(2235), 1, - aux_sym_class_declaration_repeat2, - STATE(2236), 1, + ACTIONS(5470), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80731] = 6, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(264), 1, - sym__closing_brace, + [103797] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4119), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2053), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80752] = 5, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3823), 1, - anon_sym_DOT, - ACTIONS(3825), 1, - anon_sym_QMARK, + [103814] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5054), 1, + anon_sym_implements, + STATE(577), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [80771] = 6, - ACTIONS(137), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(294), 1, - sym__closing_brace, + [103831] = 4, + ACTIONS(5474), 1, + sym__lookback_semicolon, + STATE(807), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1985), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80792] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(5472), 2, + anon_sym_as, + anon_sym_in, + [103846] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - STATE(487), 1, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(578), 1, sym_block, - STATE(2107), 1, - sym_type_params, - STATE(2108), 1, - aux_sym_class_declaration_repeat2, + STATE(2784), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80815] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3755), 1, + [103863] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, + ACTIONS(5156), 1, anon_sym_extends, - STATE(449), 1, + STATE(579), 1, sym_block, - STATE(2057), 1, - sym_type_params, - STATE(2059), 1, + STATE(2938), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80838] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(1958), 1, - aux_sym_package_statement_repeat1, - STATE(2304), 1, - sym_type_name, - STATE(2305), 1, - aux_sym_import_statement_repeat1, - STATE(2652), 1, - sym_package_name, + [103880] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5476), 1, + anon_sym_COLON, + ACTIONS(5478), 1, + sym__lookback_semicolon, + STATE(3556), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103897] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5480), 1, + anon_sym_COLON, + ACTIONS(5482), 1, + sym__lookback_semicolon, + STATE(3582), 1, + sym_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [103914] = 3, + ACTIONS(4157), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80861] = 6, - ACTIONS(137), 1, + ACTIONS(5484), 3, sym__closing_brace_marker, - ACTIONS(3815), 1, anon_sym_case, - ACTIONS(3817), 1, anon_sym_default, - STATE(301), 1, - sym__closing_brace, + [103927] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4157), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2053), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80882] = 6, - ACTIONS(3829), 1, - anon_sym_COLON, - ACTIONS(3831), 1, - anon_sym_QMARK, - ACTIONS(3833), 1, - anon_sym_EQ, - STATE(1846), 1, - sym__assignmentOperator, + [103944] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4175), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3827), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [80903] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(1997), 1, - aux_sym_package_statement_repeat1, - STATE(2357), 1, - aux_sym_import_statement_repeat1, - STATE(2418), 1, - sym_type_name, - STATE(2652), 1, - sym_package_name, + [103961] = 5, + ACTIONS(4603), 1, + anon_sym_DASH_GT, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5486), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80926] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2001), 1, - aux_sym_package_statement_repeat1, - STATE(2358), 1, - aux_sym_import_statement_repeat1, - STATE(2420), 1, - sym_type_name, - STATE(2652), 1, - sym_package_name, + [103978] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(4109), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [80949] = 3, + [103995] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5346), 1, + anon_sym_COMMA, + ACTIONS(5488), 1, + anon_sym_GT, + STATE(3081), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1506), 2, - anon_sym_LPAREN, - anon_sym_LT, - ACTIONS(1502), 4, - sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [80964] = 6, - ACTIONS(3507), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(1299), 1, - sym__closing_brace, + [104012] = 4, + ACTIONS(5058), 1, + anon_sym_EQ, + STATE(2246), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2000), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [80985] = 6, - ACTIONS(135), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(231), 1, - sym__closing_brace, + ACTIONS(5056), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [104027] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3691), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2053), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [81006] = 5, - ACTIONS(3671), 1, - anon_sym_EQ_GT, - ACTIONS(3823), 1, - anon_sym_DOT, - ACTIONS(3825), 1, - anon_sym_QMARK, + [104044] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4135), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, + [104061] = 5, + ACTIONS(197), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, anon_sym_COMMA, - anon_sym_RBRACK, - sym_identifier, - [81025] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2003), 1, - aux_sym_package_statement_repeat1, - STATE(2302), 1, - aux_sym_import_statement_repeat1, - STATE(2314), 1, - sym_type_name, - STATE(2652), 1, - sym_package_name, + STATE(1758), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81048] = 7, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(603), 1, - sym_block, - STATE(2172), 1, - aux_sym_interface_declaration_repeat1, - STATE(2224), 1, - sym_type_params, + [104078] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81071] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(329), 1, - sym_block, - STATE(2258), 1, - aux_sym_interface_declaration_repeat1, - STATE(2259), 1, - sym_type_params, - ACTIONS(3), 2, + ACTIONS(4631), 4, + sym__closing_brace_marker, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DASH_GT, + [104089] = 6, + ACTIONS(3), 1, sym__closing_brace_unmarker, + ACTIONS(4659), 1, sym_comment, - [81094] = 7, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3735), 1, + ACTIONS(4963), 1, + aux_sym_string_token3, + ACTIONS(5490), 1, + aux_sym_string_token4, + ACTIONS(5492), 1, + sym_escape_sequence, + STATE(2759), 1, + aux_sym_string_repeat2, + [104108] = 5, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(581), 1, - sym_block, - STATE(2068), 1, - aux_sym_interface_declaration_repeat1, - STATE(2069), 1, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1564), 1, + sym__arg_list, + STATE(3246), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81117] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2404), 1, - aux_sym_import_statement_repeat1, - STATE(2432), 1, - sym_type_name, - STATE(2652), 1, - sym_package_name, + [104125] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3671), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81140] = 5, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3807), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_QMARK, + [104142] = 4, + ACTIONS(5496), 1, + sym__lookback_semicolon, + STATE(749), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_RBRACK, - [81159] = 7, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(449), 1, - sym_block, - STATE(2265), 1, - aux_sym_interface_declaration_repeat1, - STATE(2267), 1, - sym_type_params, + ACTIONS(5494), 2, + anon_sym_as, + anon_sym_in, + [104157] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4315), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81182] = 6, - ACTIONS(3507), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(1296), 1, - sym__closing_brace, + [104174] = 4, + ACTIONS(4097), 1, + sym__lookback_semicolon, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2053), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [81203] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2409), 1, - aux_sym_import_statement_repeat1, - STATE(2433), 1, - sym_type_name, - STATE(2652), 1, - sym_package_name, + STATE(621), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104189] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3273), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81226] = 6, - ACTIONS(135), 1, - sym__closing_brace_marker, - ACTIONS(3815), 1, - anon_sym_case, - ACTIONS(3817), 1, - anon_sym_default, - STATE(232), 1, - sym__closing_brace, + [104206] = 4, + ACTIONS(5290), 1, + sym__lookback_semicolon, + STATE(750), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(1991), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [81247] = 7, - ACTIONS(3797), 1, - sym__camelCaseIdentifier, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2389), 1, - sym_type_name, - STATE(2395), 1, - aux_sym_import_statement_repeat1, - STATE(2652), 1, - sym_package_name, + ACTIONS(5288), 2, + anon_sym_as, + anon_sym_in, + [104221] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(4993), 1, + aux_sym_string_token3, + ACTIONS(5316), 1, + aux_sym_string_token4, + ACTIONS(5318), 1, + sym_escape_sequence, + STATE(2775), 1, + aux_sym_string_repeat2, + [104240] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(826), 1, + sym_block, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81270] = 7, - ACTIONS(3733), 1, + [104257] = 5, + ACTIONS(5054), 1, + anon_sym_implements, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3739), 1, + STATE(827), 1, + sym_block, + STATE(2679), 1, + aux_sym_class_declaration_repeat3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [104274] = 5, + ACTIONS(5054), 1, anon_sym_implements, - STATE(568), 1, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(828), 1, sym_block, - STATE(2119), 1, - aux_sym_class_declaration_repeat2, - STATE(2175), 1, - sym_type_params, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81293] = 5, - ACTIONS(3789), 1, - anon_sym_EQ, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - STATE(1853), 1, - sym__assignmentOperator, + [104291] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3345), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3787), 2, - anon_sym_RPAREN, + [104308] = 4, + ACTIONS(4227), 1, + sym__lookback_semicolon, + ACTIONS(5406), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(642), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104323] = 5, + ACTIONS(207), 1, + sym__closing_brace_marker, + ACTIONS(4465), 1, anon_sym_COMMA, - [81311] = 4, - ACTIONS(3), 1, + STATE(1524), 1, + sym__closing_brace, + STATE(3030), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3839), 1, - sym_escape_sequence, - ACTIONS(3837), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [81327] = 3, - ACTIONS(3765), 1, - anon_sym_COLON, + [104340] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4227), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 4, - anon_sym_DOT, - anon_sym_RBRACE, - anon_sym_QMARK, - anon_sym_EQ_GT, - [81341] = 4, - ACTIONS(3751), 1, - anon_sym_LPAREN, - STATE(237), 1, - sym__arg_list, + [104357] = 4, + ACTIONS(5118), 1, + anon_sym_EQ, + STATE(2236), 1, + sym__assignmentOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - sym__closing_brace_marker, + ACTIONS(5116), 2, + anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DASH_GT, - [81357] = 4, - ACTIONS(3), 1, + [104372] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, + anon_sym_LBRACK, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3843), 1, - sym_escape_sequence, - ACTIONS(3841), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [81373] = 5, - ACTIONS(3651), 1, - anon_sym_EQ_GT, - ACTIONS(3845), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_QMARK, + [104389] = 4, + ACTIONS(5262), 1, + sym__lookback_semicolon, + STATE(554), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1502), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [81391] = 4, - ACTIONS(3849), 1, - anon_sym_LT, - STATE(1393), 1, - sym_type_params, + ACTIONS(5260), 2, + anon_sym_as, + anon_sym_in, + [104404] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2631), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3363), 3, + [104421] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4127), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [81407] = 4, - ACTIONS(3849), 1, - anon_sym_LT, - STATE(1399), 1, - sym_type_params, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, + [104438] = 4, + ACTIONS(4311), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - [81423] = 6, - ACTIONS(129), 1, - sym__closing_brace_marker, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(199), 1, - sym__closing_brace, - STATE(2090), 1, - aux_sym_map_repeat1, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81443] = 6, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, - anon_sym_RBRACK, - ACTIONS(3127), 1, + STATE(965), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104453] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - STATE(2417), 1, - aux_sym_array_repeat1, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81463] = 4, - ACTIONS(3), 1, + [104470] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5500), 1, + sym__lookback_semicolon, + STATE(3450), 1, + sym_block, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3853), 1, - sym_escape_sequence, - ACTIONS(3851), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [81479] = 4, + [104487] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3395), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(3857), 1, + ACTIONS(5502), 1, + aux_sym_string_token3, + ACTIONS(5504), 1, + aux_sym_string_token4, + ACTIONS(5507), 1, sym_escape_sequence, - ACTIONS(3855), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [81495] = 6, - ACTIONS(3859), 1, - sym__camelCaseIdentifier, - ACTIONS(3861), 1, + STATE(2775), 1, + aux_sym_string_repeat2, + [104506] = 4, + ACTIONS(5228), 1, sym__lookback_semicolon, - STATE(373), 1, + STATE(742), 1, sym__semicolon, - STATE(2355), 1, - aux_sym_package_statement_repeat1, - STATE(2416), 1, - sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81515] = 4, - ACTIONS(3753), 1, - anon_sym_LT, - STATE(2359), 1, - sym_type_params, + ACTIONS(5226), 2, + anon_sym_as, + anon_sym_in, + [104521] = 4, + ACTIONS(4253), 1, + sym__lookback_semicolon, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3369), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [81531] = 6, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3507), 1, - sym__closing_brace_marker, - STATE(1290), 1, - sym__closing_brace, - STATE(2100), 1, - aux_sym_map_repeat1, + STATE(598), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104536] = 4, + ACTIONS(4259), 1, + sym__lookback_semicolon, + ACTIONS(5512), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81551] = 6, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2583), 1, - sym_identifier, - ACTIONS(2585), 1, - anon_sym_RBRACK, - ACTIONS(3127), 1, + STATE(2826), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104551] = 4, + ACTIONS(4263), 1, + sym__lookback_semicolon, + ACTIONS(5510), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(602), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104566] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1727), 1, anon_sym_LBRACK, - STATE(2399), 1, - aux_sym_array_repeat1, + ACTIONS(4111), 1, + anon_sym_RBRACK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81571] = 6, - ACTIONS(3733), 1, + [104583] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(3739), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3863), 1, - anon_sym_extends, - STATE(531), 1, + STATE(606), 1, sym_block, - STATE(2055), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81591] = 4, - ACTIONS(3), 1, + [104600] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4253), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(1506), 1, - sym_escape_sequence, - ACTIONS(3395), 1, sym_comment, - ACTIONS(1508), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [81607] = 5, - ACTIONS(3867), 1, - anon_sym_COLON, - ACTIONS(3869), 1, - anon_sym_EQ, - STATE(1851), 1, - sym__assignmentOperator, + [104617] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5392), 1, + anon_sym_COMMA, + ACTIONS(5514), 1, + anon_sym_RPAREN, + STATE(3109), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3865), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [81625] = 4, - ACTIONS(3753), 1, - anon_sym_LT, - STATE(2356), 1, - sym_type_params, + [104634] = 5, + ACTIONS(5048), 1, + anon_sym_LBRACE, + ACTIONS(5156), 1, + anon_sym_extends, + STATE(607), 1, + sym_block, + STATE(2938), 1, + aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3363), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + [104651] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, - [81641] = 6, - ACTIONS(135), 1, - sym__closing_brace_marker, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(1251), 1, - sym__closing_brace, - STATE(2274), 1, - aux_sym_map_repeat1, + ACTIONS(5276), 1, + anon_sym_LT, + ACTIONS(5516), 1, + sym__lookback_semicolon, + STATE(1676), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81661] = 2, + [104668] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4259), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [81673] = 2, + [104685] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3349), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [81685] = 2, + ACTIONS(5164), 4, + sym__lookback_semicolon, + anon_sym_DOT, + anon_sym_as, + anon_sym_in, + [104696] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4263), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3359), 5, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [81697] = 6, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2579), 1, - sym_identifier, - ACTIONS(2581), 1, - anon_sym_RBRACK, - ACTIONS(3127), 1, - anon_sym_LBRACK, - STATE(2299), 1, - aux_sym_array_repeat1, + [104713] = 4, + ACTIONS(4273), 1, + sym__lookback_semicolon, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81717] = 6, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + STATE(417), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104728] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(3871), 1, - anon_sym_extends, - STATE(378), 1, + ACTIONS(5520), 1, + anon_sym_COLON, + ACTIONS(5522), 1, + sym__lookback_semicolon, + STATE(3413), 1, sym_block, - STATE(2080), 1, - aux_sym_class_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81737] = 5, - ACTIONS(3777), 1, - anon_sym_EQ, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - STATE(1852), 1, - sym__assignmentOperator, + [104745] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4273), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3775), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [81755] = 6, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2599), 1, - sym_identifier, - ACTIONS(2601), 1, - anon_sym_RBRACK, - ACTIONS(3127), 1, + [104762] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4027), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - STATE(2428), 1, - aux_sym_array_repeat1, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81775] = 4, - ACTIONS(3873), 1, - anon_sym_else, - ACTIONS(3875), 1, - anon_sym_elseif, + [104779] = 4, + ACTIONS(4317), 1, + sym__lookback_semicolon, + ACTIONS(5524), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1916), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [81791] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + STATE(955), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104794] = 4, + ACTIONS(4279), 1, + sym__lookback_semicolon, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3434), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [81805] = 3, - ACTIONS(3727), 1, - anon_sym_COLON, + STATE(2435), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104809] = 4, + ACTIONS(4283), 1, + sym__lookback_semicolon, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 4, + STATE(970), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104824] = 4, + ACTIONS(4287), 1, sym__lookback_semicolon, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [81819] = 6, - ACTIONS(3739), 1, + ACTIONS(5166), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2439), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104839] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3877), 1, - anon_sym_extends, - STATE(375), 1, + STATE(806), 1, sym_block, - STATE(2144), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81839] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [104856] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4279), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3449), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [81853] = 6, - ACTIONS(3739), 1, + [104873] = 5, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(5084), 1, anon_sym_LBRACE, - ACTIONS(3879), 1, - anon_sym_extends, - STATE(375), 1, + STATE(686), 1, sym_block, - STATE(2231), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81873] = 4, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(228), 1, - sym__arg_list, + [104890] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4283), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - anon_sym_RPAREN, - anon_sym_COMMA, + [104907] = 5, + ACTIONS(4603), 1, anon_sym_DASH_GT, - [81889] = 4, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3395), 1, - sym_comment, - ACTIONS(3883), 1, - sym_escape_sequence, - ACTIONS(3881), 4, - aux_sym_string_token1, - aux_sym_string_token2, - anon_sym_DOLLAR_LBRACE, - anon_sym_DOLLAR, - [81905] = 6, - ACTIONS(3735), 1, + ACTIONS(5276), 1, anon_sym_LT, - ACTIONS(3759), 1, - anon_sym_LPAREN, - ACTIONS(3885), 1, - anon_sym_RBRACE, - STATE(195), 1, - sym__arg_list, - STATE(2585), 1, + ACTIONS(5526), 1, + sym__lookback_semicolon, + STATE(1676), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81925] = 6, - ACTIONS(137), 1, - sym__closing_brace_marker, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(1585), 1, - sym__closing_brace, - STATE(2085), 1, - aux_sym_map_repeat1, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [81945] = 6, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(1628), 1, + [104924] = 5, + ACTIONS(1785), 1, + anon_sym_RBRACE, + ACTIONS(4995), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_QMARK, + ACTIONS(5136), 1, anon_sym_EQ_GT, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(270), 1, - sym__closing_brace, - STATE(2199), 1, - aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81965] = 6, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3887), 1, - anon_sym_extends, - STATE(490), 1, - sym_block, - STATE(2247), 1, - aux_sym_class_declaration_repeat2, + [104941] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4287), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [81985] = 6, - ACTIONS(2571), 1, + [104958] = 5, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5392), 1, anon_sym_COMMA, - ACTIONS(2607), 1, - sym_identifier, - ACTIONS(2609), 1, - anon_sym_RBRACK, - ACTIONS(3127), 1, - anon_sym_LBRACK, - STATE(2318), 1, - aux_sym_array_repeat1, + ACTIONS(5528), 1, + anon_sym_RPAREN, + STATE(2892), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82005] = 2, + [104975] = 4, + ACTIONS(3361), 1, + anon_sym_else, + ACTIONS(5531), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3305), 5, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2805), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [104990] = 5, + ACTIONS(5204), 1, anon_sym_DASH_GT, - anon_sym_GT, - anon_sym_EQ, - [82017] = 4, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(228), 1, - sym__arg_list, + ACTIONS(5392), 1, + anon_sym_COMMA, + ACTIONS(5534), 1, + anon_sym_RPAREN, + STATE(2892), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [82033] = 6, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3889), 1, - anon_sym_extends, - STATE(378), 1, - sym_block, - STATE(2255), 1, - aux_sym_class_declaration_repeat2, + [105007] = 4, + ACTIONS(4291), 1, + sym__lookback_semicolon, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82053] = 6, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3891), 1, - anon_sym_extends, - STATE(490), 1, - sym_block, - STATE(2099), 1, - aux_sym_class_declaration_repeat2, + STATE(2373), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105022] = 4, + ACTIONS(4297), 1, + sym__lookback_semicolon, + ACTIONS(5524), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(958), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105037] = 4, + ACTIONS(4303), 1, + sym__lookback_semicolon, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82073] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + STATE(2376), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105052] = 5, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5128), 1, + anon_sym_STAR, + STATE(2485), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3457), 4, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_GT, - anon_sym_EQ, - [82087] = 6, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3893), 1, - anon_sym_extends, - STATE(598), 1, - sym_block, - STATE(2257), 1, - aux_sym_class_declaration_repeat2, + [105069] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4291), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82107] = 6, - ACTIONS(3733), 1, + [105086] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(3739), 1, + ACTIONS(5054), 1, anon_sym_implements, - ACTIONS(3895), 1, - anon_sym_extends, - STATE(664), 1, + STATE(615), 1, sym_block, - STATE(2264), 1, - aux_sym_class_declaration_repeat2, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82127] = 5, - ACTIONS(3897), 1, - anon_sym_case, - ACTIONS(3900), 1, - anon_sym_default, - ACTIONS(3903), 1, - sym__closing_brace_marker, + [105103] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5537), 1, + anon_sym_COLON, + ACTIONS(5539), 1, + sym__lookback_semicolon, + STATE(3433), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - STATE(2053), 2, - sym_case_statement, - aux_sym_switch_block_repeat1, - [82145] = 6, - ACTIONS(3859), 1, - sym__camelCaseIdentifier, - ACTIONS(3905), 1, + [105120] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4297), 1, sym__lookback_semicolon, - STATE(524), 1, - sym__semicolon, - STATE(2331), 1, - aux_sym_package_statement_repeat1, - STATE(2332), 1, - sym_package_name, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82165] = 5, - ACTIONS(3733), 1, + [105137] = 5, + ACTIONS(5306), 1, anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(610), 1, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5541), 1, + sym__lookback_semicolon, + STATE(3589), 1, sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82182] = 5, - ACTIONS(3907), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - sym__closing_brace_marker, - STATE(2361), 1, - sym__closing_brace, - STATE(2363), 1, - aux_sym_structure_type_repeat1, + [105154] = 5, + ACTIONS(5306), 1, + anon_sym_LBRACE, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5543), 1, + sym__lookback_semicolon, + STATE(3632), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82199] = 5, - ACTIONS(3755), 1, + [105171] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, + ACTIONS(5156), 1, anon_sym_extends, - STATE(395), 1, + STATE(451), 1, sym_block, - STATE(2083), 1, + STATE(2560), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82216] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(3911), 1, + [105188] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4303), 1, sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82233] = 5, - ACTIONS(3755), 1, + [105205] = 5, + ACTIONS(5048), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, + ACTIONS(5156), 1, anon_sym_extends, - STATE(397), 1, + STATE(418), 1, sym_block, - STATE(2446), 1, + STATE(2938), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82250] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(608), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [105222] = 5, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2674), 1, + sym__function_arg_list, + STATE(3267), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82267] = 4, - ACTIONS(3735), 1, + [105239] = 6, + ACTIONS(3), 1, + sym__closing_brace_unmarker, + ACTIONS(4659), 1, + sym_comment, + ACTIONS(5021), 1, + aux_sym_string_token3, + ACTIONS(5545), 1, + aux_sym_string_token4, + ACTIONS(5547), 1, + sym_escape_sequence, + STATE(2833), 1, + aux_sym_string_repeat2, + [105258] = 5, + ACTIONS(5050), 1, anon_sym_LT, - STATE(2610), 1, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1756), 1, + sym__arg_list, + STATE(3146), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3913), 2, - anon_sym_LBRACE, - anon_sym_extends, - [82282] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3917), 1, - anon_sym_COLON, - ACTIONS(3919), 1, + [105275] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3455), 1, sym__lookback_semicolon, - STATE(2861), 1, - sym_block, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82299] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3921), 1, - anon_sym_COLON, - ACTIONS(3923), 1, + [105292] = 4, + ACTIONS(3977), 1, sym__lookback_semicolon, - STATE(2859), 1, - sym_block, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82316] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - STATE(2540), 1, - sym_type_params, + STATE(594), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105307] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4311), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3925), 2, - anon_sym_LBRACE, - anon_sym_implements, - [82331] = 5, - ACTIONS(1502), 1, - sym__lookback_semicolon, - ACTIONS(3727), 1, - anon_sym_EQ_GT, - ACTIONS(3927), 1, - anon_sym_DOT, - ACTIONS(3929), 1, - anon_sym_QMARK, + [105324] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82348] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(600), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(2681), 2, + anon_sym_catch, + anon_sym_else, + STATE(2805), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105337] = 3, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(3357), 2, + anon_sym_catch, + anon_sym_else, + STATE(2805), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105350] = 3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82365] = 5, - ACTIONS(1468), 1, + ACTIONS(3368), 2, + anon_sym_catch, + anon_sym_else, + STATE(2805), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105363] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4317), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RPAREN, - STATE(2429), 1, - aux_sym__arg_list_repeat1, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82382] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(652), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [105380] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4163), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82399] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(659), 1, - sym_block, - STATE(2273), 1, - aux_sym_interface_declaration_repeat1, + [105397] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(4021), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82416] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(660), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [105414] = 5, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2675), 1, + sym__lookback_semicolon, + ACTIONS(4491), 1, + anon_sym_LBRACK, + STATE(2478), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82433] = 6, + [105431] = 6, ACTIONS(3), 1, sym__closing_brace_unmarker, - ACTIONS(3395), 1, + ACTIONS(4659), 1, sym_comment, - ACTIONS(3695), 1, + ACTIONS(4953), 1, aux_sym_string_token3, - ACTIONS(3931), 1, + ACTIONS(5316), 1, aux_sym_string_token4, - ACTIONS(3933), 1, + ACTIONS(5318), 1, sym_escape_sequence, - STATE(2217), 1, + STATE(2775), 1, aux_sym_string_repeat2, - [82452] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(3937), 1, - anon_sym_GT, - STATE(2407), 1, - aux_sym_type_params_repeat1, + [105450] = 4, + ACTIONS(5254), 1, + sym__lookback_semicolon, + STATE(719), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82469] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2062), 1, - sym__function_arg_list, - STATE(2469), 1, - sym_type_params, + ACTIONS(5252), 2, + anon_sym_as, + anon_sym_in, + [105465] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5549), 1, + sym__camelCaseIdentifier, + STATE(3161), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82486] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2063), 1, - sym__function_arg_list, - STATE(2470), 1, - sym_type_params, + [105479] = 3, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82503] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2587), 1, - sym_identifier, - ACTIONS(2589), 1, - anon_sym_RBRACK, - STATE(2426), 1, - aux_sym_array_repeat1, + STATE(630), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105491] = 4, + ACTIONS(5268), 1, + sym__camelCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2950), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82520] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(491), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [105505] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82537] = 5, - ACTIONS(3755), 1, + ACTIONS(4720), 2, + sym__lookback_semicolon, anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(495), 1, - sym_block, - STATE(2101), 1, - aux_sym_interface_declaration_repeat1, + [105517] = 4, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5551), 1, + sym__lookback_semicolon, + STATE(568), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82554] = 5, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(496), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [105531] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5553), 1, + sym__camelCaseIdentifier, + STATE(3192), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82571] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(3941), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + [105545] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2707), 1, + aux_sym__type_path_repeat1, + STATE(2839), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82588] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [105559] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5555), 1, + sym__camelCaseIdentifier, + STATE(3274), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82605] = 6, - ACTIONS(3), 1, + [105573] = 2, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3665), 1, - aux_sym_string_token3, - ACTIONS(3943), 1, - aux_sym_string_token4, - ACTIONS(3945), 1, - sym_escape_sequence, - STATE(2093), 1, - aux_sym_string_repeat2, - [82624] = 5, - ACTIONS(3735), 1, + ACTIONS(4635), 3, + sym__closing_brace_marker, + anon_sym_COMMA, + anon_sym_DASH_GT, + [105583] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5557), 1, + anon_sym_DOT, + ACTIONS(5559), 1, + anon_sym_QMARK, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [105597] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3947), 1, - anon_sym_LPAREN, - STATE(1282), 1, - sym__arg_list, - STATE(2477), 1, + ACTIONS(5561), 1, + anon_sym_EQ, + STATE(3448), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82641] = 5, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(476), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [105611] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3743), 1, + anon_sym_RBRACK, + STATE(2886), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82658] = 5, - ACTIONS(3369), 1, + [105625] = 3, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(3949), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82675] = 5, - ACTIONS(137), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(1473), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + ACTIONS(4700), 2, + sym__lookback_semicolon, + anon_sym_LBRACE, + [105637] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2483), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82692] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3951), 1, - anon_sym_COLON, - ACTIONS(3953), 1, - sym__lookback_semicolon, - STATE(2806), 1, - sym_block, + [105651] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5563), 1, + anon_sym_DOT, + ACTIONS(5565), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82709] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2583), 1, - sym_identifier, - ACTIONS(2585), 1, - anon_sym_RBRACK, - STATE(2399), 1, - aux_sym_array_repeat1, + [105665] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82726] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2591), 1, - sym_identifier, - ACTIONS(2593), 1, - anon_sym_RBRACK, - STATE(2431), 1, - aux_sym_array_repeat1, + STATE(628), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105677] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5567), 1, + anon_sym_DOT, + ACTIONS(5569), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82743] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3955), 1, - anon_sym_COLON, - ACTIONS(3957), 1, - sym__lookback_semicolon, - STATE(2802), 1, - sym_block, + [105691] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82760] = 5, - ACTIONS(129), 1, + ACTIONS(5434), 3, sym__closing_brace_marker, - ACTIONS(3197), 1, + anon_sym_case, + anon_sym_default, + [105701] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5571), 3, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(186), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + anon_sym_EQ, + [105711] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5573), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82777] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2096), 1, - sym__function_arg_list, - STATE(2495), 1, - sym_type_params, + [105725] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82794] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2097), 1, - sym__function_arg_list, - STATE(2496), 1, - sym_type_params, + ACTIONS(5181), 3, + anon_sym_STAR, + sym__camelCaseIdentifier, + sym__pascalCaseIdentifier, + [105735] = 3, + ACTIONS(3357), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82811] = 6, - ACTIONS(3), 1, + STATE(3008), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105747] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(2935), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3697), 1, - aux_sym_string_token3, - ACTIONS(3931), 1, - aux_sym_string_token4, - ACTIONS(3933), 1, - sym_escape_sequence, - STATE(2217), 1, - aux_sym_string_repeat2, - [82830] = 5, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(3959), 1, - sym_identifier, - STATE(2793), 1, - sym_integer, + [105761] = 3, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82847] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3961), 1, + STATE(636), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [105773] = 3, + ACTIONS(5416), 1, + anon_sym_EQ_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5575), 2, anon_sym_RPAREN, - ACTIONS(3964), 1, anon_sym_COMMA, - STATE(2423), 1, - aux_sym__function_type_args_repeat1, + [105785] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5577), 1, + sym_identifier, + STATE(3221), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82864] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3966), 1, - anon_sym_COLON, - ACTIONS(3968), 1, - sym__lookback_semicolon, - STATE(2786), 1, - sym_block, + [105799] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2480), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82881] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3970), 1, - anon_sym_COLON, - ACTIONS(3972), 1, - sym__lookback_semicolon, - STATE(2782), 1, - sym_block, + [105813] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5579), 1, + anon_sym_EQ, + STATE(3453), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82898] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3974), 1, - anon_sym_COLON, - ACTIONS(3976), 1, - sym__lookback_semicolon, - STATE(2814), 1, - sym_block, + [105827] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82915] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + ACTIONS(5581), 3, + sym__lookback_semicolon, anon_sym_LBRACE, - STATE(404), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + anon_sym_COLON, + [105837] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82932] = 5, - ACTIONS(3197), 1, - anon_sym_COMMA, - ACTIONS(3507), 1, + ACTIONS(5583), 3, sym__closing_brace_marker, - STATE(1314), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + anon_sym_case, + anon_sym_default, + [105847] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2461), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82949] = 5, - ACTIONS(3755), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(334), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [105861] = 4, + ACTIONS(5585), 1, + anon_sym_RPAREN, + ACTIONS(5587), 1, + anon_sym_COMMA, + STATE(3034), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82966] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(3980), 1, + [105875] = 4, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(5591), 1, sym__lookback_semicolon, - STATE(2698), 1, - sym_block, + STATE(706), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [82983] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3982), 1, - anon_sym_COLON, - ACTIONS(3984), 1, - sym__lookback_semicolon, - STATE(2822), 1, - sym_block, + [105889] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2464), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83000] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2595), 1, - sym_identifier, - ACTIONS(2597), 1, - anon_sym_RBRACK, - STATE(2374), 1, - aux_sym_array_repeat1, + [105903] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5593), 1, + sym__camelCaseIdentifier, + STATE(3299), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83017] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(3986), 1, - sym__lookback_semicolon, - STATE(2703), 1, - sym_block, + [105917] = 3, + ACTIONS(5595), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83034] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2126), 1, - sym__function_arg_list, - STATE(2515), 1, - sym_type_params, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [105929] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3793), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83051] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(330), 1, - sym_block, - STATE(2138), 1, - aux_sym_class_declaration_repeat2, + [105943] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2707), 1, + aux_sym__type_path_repeat1, + STATE(3097), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83068] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [105957] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83085] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(3988), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + ACTIONS(5597), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [105969] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5599), 1, + sym__camelCaseIdentifier, + STATE(3207), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83102] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2127), 1, - sym__function_arg_list, - STATE(2516), 1, - sym_type_params, + [105983] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3991), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83119] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3990), 1, - anon_sym_COLON, - ACTIONS(3992), 1, - sym__lookback_semicolon, - STATE(2683), 1, - sym_block, + [105997] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3825), 1, + anon_sym_RPAREN, + STATE(3022), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83136] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(3994), 1, - sym__lookback_semicolon, - STATE(2754), 1, - sym_block, + [106011] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5601), 1, + anon_sym_DOT, + ACTIONS(5603), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83153] = 5, - ACTIONS(3996), 1, - sym__camelCaseIdentifier, - ACTIONS(3999), 1, + [106025] = 4, + ACTIONS(5068), 1, sym__pascalCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2652), 1, - sym_package_name, + STATE(2497), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83170] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, + [106039] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2747), 1, + ACTIONS(5605), 1, anon_sym_RPAREN, - STATE(2368), 1, + STATE(2881), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83187] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4001), 1, - sym__lookback_semicolon, - STATE(2752), 1, - sym_block, + [106053] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5607), 1, + sym_identifier, + STATE(3211), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83204] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106067] = 4, + ACTIONS(3969), 1, + anon_sym_RPAREN, + ACTIONS(5609), 1, + anon_sym_COMMA, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83221] = 5, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(4003), 1, - sym_identifier, - STATE(2669), 1, - sym_integer, + [106081] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3795), 1, + anon_sym_RPAREN, + STATE(3040), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83238] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(4005), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + [106095] = 4, + ACTIONS(3937), 1, + anon_sym_RBRACK, + ACTIONS(5612), 1, + anon_sym_COMMA, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83255] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(680), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106109] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3757), 1, + anon_sym_RBRACK, + STATE(2901), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83272] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4007), 1, - anon_sym_COLON, - ACTIONS(4009), 1, - sym__lookback_semicolon, - STATE(2712), 1, - sym_block, + [106123] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(2981), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83289] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3935), 1, + [106137] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(4011), 1, - anon_sym_GT, - STATE(2365), 1, - aux_sym_type_params_repeat1, + ACTIONS(3835), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83306] = 5, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(3765), 1, + [106151] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2470), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [106165] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(3823), 1, + ACTIONS(5615), 1, anon_sym_DOT, - ACTIONS(3825), 1, + ACTIONS(5617), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83323] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4013), 1, - anon_sym_COLON, - ACTIONS(4015), 1, - sym__lookback_semicolon, - STATE(2677), 1, - sym_block, + [106179] = 3, + ACTIONS(5428), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83340] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4017), 1, - anon_sym_COLON, - ACTIONS(4019), 1, - sym__lookback_semicolon, - STATE(2710), 1, - sym_block, + STATE(2970), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106191] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5619), 1, + sym_identifier, + STATE(3268), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83357] = 3, - ACTIONS(1592), 1, - sym__lookback_semicolon, + [106205] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2512), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1544), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [83370] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4021), 1, - anon_sym_COLON, - ACTIONS(4023), 1, - sym__lookback_semicolon, - STATE(2707), 1, - sym_block, + [106219] = 4, + ACTIONS(5392), 1, + anon_sym_COMMA, + ACTIONS(5621), 1, + anon_sym_RPAREN, + STATE(3050), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83387] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4025), 1, - anon_sym_COLON, - ACTIONS(4027), 1, - sym__lookback_semicolon, - STATE(2704), 1, - sym_block, + [106233] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83404] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(409), 1, - sym_block, - STATE(2206), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5623), 2, + anon_sym_COMMA, + anon_sym_GT, + [106245] = 4, + ACTIONS(5623), 1, + anon_sym_GT, + ACTIONS(5625), 1, + anon_sym_COMMA, + STATE(2894), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83421] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(410), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106259] = 3, + ACTIONS(5628), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83438] = 5, - ACTIONS(2569), 1, - sym_identifier, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2573), 1, - anon_sym_RBRACK, - STATE(2417), 1, - aux_sym_array_repeat1, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [106271] = 3, + ACTIONS(5630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83455] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(661), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(4720), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [106283] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5371), 1, + anon_sym_DOT, + ACTIONS(5373), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83472] = 2, + [106297] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5632), 1, + sym_identifier, + STATE(3315), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3422), 4, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_DASH_GT, - anon_sym_LT, - [83483] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4029), 1, - anon_sym_COLON, - ACTIONS(4031), 1, - sym__lookback_semicolon, - STATE(2656), 1, - sym_block, + [106311] = 4, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(5634), 1, + anon_sym_RBRACK, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83500] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4033), 1, - anon_sym_COLON, - ACTIONS(4035), 1, - sym__lookback_semicolon, - STATE(2630), 1, - sym_block, + [106325] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(2936), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83517] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3964), 1, + [106339] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - ACTIONS(4037), 1, - anon_sym_RPAREN, - STATE(2423), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(3759), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83534] = 5, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(4040), 1, - sym_identifier, - STATE(2678), 1, - sym_integer, + [106353] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2533), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83551] = 6, - ACTIONS(3), 1, + [106367] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2518), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3699), 1, - aux_sym_string_token3, - ACTIONS(3931), 1, - aux_sym_string_token4, - ACTIONS(3933), 1, - sym_escape_sequence, - STATE(2217), 1, - aux_sym_string_repeat2, - [83570] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106381] = 4, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(5636), 1, + anon_sym_RBRACK, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83587] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, + [106395] = 4, + ACTIONS(5638), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_block, - STATE(2280), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5640), 1, + anon_sym_implements, + STATE(2905), 1, + aux_sym_class_declaration_repeat3, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83604] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106409] = 3, + ACTIONS(5428), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83621] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2173), 1, - sym__function_arg_list, - STATE(2565), 1, - sym_type_params, + STATE(2856), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106421] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83638] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4042), 1, - sym__lookback_semicolon, - STATE(2657), 1, - sym_block, + STATE(634), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106433] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5643), 1, + anon_sym_DOT, + ACTIONS(5645), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83655] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4044), 1, - sym__lookback_semicolon, - STATE(2655), 1, - sym_block, + [106447] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5647), 1, + sym_identifier, + STATE(3134), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83672] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106461] = 4, + ACTIONS(5042), 1, + anon_sym_LPAREN, + ACTIONS(5649), 1, + sym_identifier, + STATE(3216), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83689] = 2, + [106475] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5651), 1, + anon_sym_DOT, + ACTIONS(5653), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3379), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [83700] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2167), 1, - sym__function_arg_list, - STATE(2562), 1, - sym_type_params, + [106489] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5655), 1, + anon_sym_DOT, + ACTIONS(5657), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83717] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(4046), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + [106503] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83734] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3741), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2499), 1, - sym_type_params, + ACTIONS(1857), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [106513] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5659), 1, + anon_sym_DOT, + ACTIONS(5661), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83751] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2155), 1, - sym__function_arg_list, - STATE(2615), 1, - sym_type_params, + [106527] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5663), 1, + anon_sym_DOT, + ACTIONS(5665), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83768] = 2, + [106541] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5667), 1, + anon_sym_DOT, + ACTIONS(5669), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3323), 4, - sym__closing_brace_marker, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DASH_GT, - [83779] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(4048), 1, - anon_sym_RPAREN, - STATE(2423), 1, - aux_sym__function_type_args_repeat1, + [106555] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5671), 1, + anon_sym_DOT, + ACTIONS(5673), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83796] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(392), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106569] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5675), 1, + anon_sym_DOT, + ACTIONS(5677), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83813] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(4051), 1, - anon_sym_GT, - STATE(2310), 1, - aux_sym_type_params_repeat1, + [106583] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5679), 1, + anon_sym_DOT, + ACTIONS(5681), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83830] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2263), 1, - sym__function_arg_list, - STATE(2611), 1, - sym_type_params, + [106597] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5683), 1, + anon_sym_DOT, + ACTIONS(5685), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83847] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4053), 1, - anon_sym_COLON, - ACTIONS(4055), 1, - sym__lookback_semicolon, - STATE(2813), 1, - sym_block, + [106611] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5445), 1, + anon_sym_DOT, + ACTIONS(5447), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83864] = 6, - ACTIONS(3), 1, + [106625] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5424), 1, + anon_sym_DOT, + ACTIONS(5426), 1, + anon_sym_QMARK, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3679), 1, - aux_sym_string_token3, - ACTIONS(4057), 1, - aux_sym_string_token4, - ACTIONS(4059), 1, - sym_escape_sequence, - STATE(2071), 1, - aux_sym_string_repeat2, - [83883] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__arg_list_repeat1, + [106639] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5687), 1, + anon_sym_DOT, + ACTIONS(5689), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83900] = 6, - ACTIONS(3), 1, + [106653] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4995), 1, + anon_sym_DOT, + ACTIONS(4997), 1, + anon_sym_QMARK, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3703), 1, - aux_sym_string_token3, - ACTIONS(4061), 1, - aux_sym_string_token4, - ACTIONS(4063), 1, - sym_escape_sequence, - STATE(2137), 1, - aux_sym_string_repeat2, - [83919] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_RPAREN, - STATE(2437), 1, - aux_sym__arg_list_repeat1, + [106667] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5282), 1, + anon_sym_DOT, + ACTIONS(5284), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83936] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4065), 1, - sym__lookback_semicolon, - STATE(2869), 1, - sym_block, + [106681] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5691), 1, + anon_sym_DOT, + ACTIONS(5693), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83953] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4067), 1, - anon_sym_LPAREN, - STATE(1649), 1, - sym__arg_list, - STATE(2508), 1, - sym_type_params, + [106695] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5146), 1, + anon_sym_DOT, + ACTIONS(5148), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83970] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4069), 1, - sym__lookback_semicolon, - STATE(2847), 1, - sym_block, + [106709] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5695), 1, + anon_sym_DOT, + ACTIONS(5697), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [83987] = 5, - ACTIONS(1502), 1, - sym__lookback_semicolon, - ACTIONS(3727), 1, + [106723] = 4, + ACTIONS(1757), 1, anon_sym_EQ_GT, - ACTIONS(4071), 1, + ACTIONS(5699), 1, anon_sym_DOT, - ACTIONS(4073), 1, + ACTIONS(5701), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84004] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(4075), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + [106737] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5449), 1, + anon_sym_DOT, + ACTIONS(5451), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84021] = 3, - ACTIONS(2937), 1, - sym__lookback_semicolon, + [106751] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5017), 1, + anon_sym_DOT, + ACTIONS(5019), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4077), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [84034] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(599), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106765] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5031), 1, + anon_sym_DOT, + ACTIONS(5033), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84051] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4079), 1, - anon_sym_COLON, - ACTIONS(4081), 1, - sym__lookback_semicolon, - STATE(2736), 1, - sym_block, + [106779] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(5703), 1, + anon_sym_DOT, + ACTIONS(5705), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84068] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(596), 1, - sym_block, - STATE(2131), 1, - aux_sym_class_declaration_repeat2, + [106793] = 4, + ACTIONS(3761), 1, + anon_sym_RPAREN, + ACTIONS(3763), 1, + anon_sym_COMMA, + STATE(2949), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84085] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(595), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106807] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(4207), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84102] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(655), 1, - sym_block, - STATE(2275), 1, - aux_sym_class_declaration_repeat2, + [106821] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(4269), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84119] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(677), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106835] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5707), 1, + anon_sym_EQ, + STATE(3381), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84136] = 5, - ACTIONS(3733), 1, + [106849] = 4, + ACTIONS(5709), 1, anon_sym_LBRACE, - ACTIONS(3791), 1, + ACTIONS(5711), 1, anon_sym_extends, - STATE(504), 1, - sym_block, - STATE(2446), 1, + STATE(2938), 1, aux_sym_interface_declaration_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84153] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4083), 1, - anon_sym_COLON, - ACTIONS(4085), 1, - sym__lookback_semicolon, - STATE(2790), 1, - sym_block, + [106863] = 3, + ACTIONS(5428), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84170] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2133), 1, - sym__function_arg_list, - STATE(2514), 1, - sym_type_params, + STATE(3111), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [106875] = 3, + ACTIONS(5714), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84187] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(678), 1, - sym_block, - STATE(2211), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [106887] = 4, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5718), 1, + sym__lookback_semicolon, + STATE(720), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84204] = 2, + [106901] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5720), 1, + sym__camelCaseIdentifier, + STATE(3175), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3422), 4, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_LT, - [84215] = 5, - ACTIONS(3735), 1, + [106915] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2134), 1, - sym__function_arg_list, - STATE(2521), 1, + ACTIONS(5722), 1, + anon_sym_EQ, + STATE(3396), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84232] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3395), 1, - sym_comment, - ACTIONS(3689), 1, - aux_sym_string_token3, - ACTIONS(4087), 1, - aux_sym_string_token4, - ACTIONS(4089), 1, - sym_escape_sequence, - STATE(2194), 1, - aux_sym_string_repeat2, - [84251] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__arg_list, - STATE(2585), 1, - sym_type_params, + [106929] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3771), 1, + anon_sym_RBRACK, + STATE(3011), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84268] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(573), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106943] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2707), 1, + aux_sym__type_path_repeat1, + STATE(3082), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84285] = 5, - ACTIONS(3735), 1, + [106957] = 4, + ACTIONS(5050), 1, anon_sym_LT, - ACTIONS(3751), 1, - anon_sym_LPAREN, - STATE(241), 1, - sym__arg_list, - STATE(2550), 1, + ACTIONS(5724), 1, + anon_sym_EQ, + STATE(3402), 1, sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84302] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [106971] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5726), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84319] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4091), 1, - sym__lookback_semicolon, - STATE(2727), 1, - sym_block, + [106985] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3765), 1, + anon_sym_RPAREN, + STATE(2954), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84336] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4093), 1, - sym__lookback_semicolon, - STATE(2723), 1, - sym_block, + [106999] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3765), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84353] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4095), 1, + [107013] = 4, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(5728), 1, sym__lookback_semicolon, - STATE(2621), 1, - sym_block, + STATE(566), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84370] = 4, - ACTIONS(3777), 1, - anon_sym_EQ, - STATE(1852), 1, - sym__assignmentOperator, + [107027] = 4, + ACTIONS(5346), 1, + anon_sym_COMMA, + ACTIONS(5730), 1, + anon_sym_GT, + STATE(2894), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3775), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [84385] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2607), 1, - sym_identifier, - ACTIONS(2609), 1, - anon_sym_RBRACK, - STATE(2318), 1, - aux_sym_array_repeat1, + [107041] = 3, + ACTIONS(5732), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84402] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4097), 1, - sym__lookback_semicolon, - STATE(2622), 1, - sym_block, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [107053] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5734), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84419] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4099), 1, - sym__lookback_semicolon, - STATE(2848), 1, - sym_block, + [107067] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(5736), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84436] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4101), 1, - sym__lookback_semicolon, - STATE(2714), 1, - sym_block, + [107081] = 4, + ACTIONS(1757), 1, + anon_sym_EQ_GT, + ACTIONS(4981), 1, + anon_sym_DOT, + ACTIONS(4983), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84453] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(567), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107095] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5738), 1, + sym__camelCaseIdentifier, + STATE(3239), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84470] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(565), 1, - sym_block, - STATE(2171), 1, - aux_sym_class_declaration_repeat2, + [107109] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84487] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, + ACTIONS(4613), 3, + sym__closing_brace_marker, + anon_sym_COMMA, anon_sym_DASH_GT, - ACTIONS(4103), 1, - sym__lookback_semicolon, - STATE(2730), 1, - sym_block, + [107119] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5740), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84504] = 6, - ACTIONS(3), 1, + [107133] = 3, + ACTIONS(5630), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3701), 1, - aux_sym_string_token3, - ACTIONS(3931), 1, - aux_sym_string_token4, - ACTIONS(3933), 1, - sym_escape_sequence, - STATE(2217), 1, - aux_sym_string_repeat2, - [84523] = 5, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(4105), 1, - sym_identifier, - STATE(2649), 1, - sym_integer, + ACTIONS(4712), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [107145] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5742), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84540] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2703), 1, + [107159] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5744), 1, anon_sym_RPAREN, - STATE(2326), 1, - aux_sym__arg_list_repeat1, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84557] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_COLON, - ACTIONS(4109), 1, - sym__lookback_semicolon, - STATE(2713), 1, - sym_block, + [107173] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84574] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4111), 1, + ACTIONS(5746), 3, sym__lookback_semicolon, - STATE(2729), 1, - sym_block, + anon_sym_LBRACE, + anon_sym_COLON, + [107183] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5748), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84591] = 5, - ACTIONS(139), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, - anon_sym_COMMA, - STATE(255), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + [107197] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84608] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(528), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5484), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [107207] = 4, + ACTIONS(5587), 1, + anon_sym_COMMA, + ACTIONS(5750), 1, + anon_sym_RPAREN, + STATE(2866), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84625] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(503), 1, - sym_block, - STATE(2169), 1, - aux_sym_class_declaration_repeat2, + [107221] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84642] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4113), 1, - anon_sym_COLON, - ACTIONS(4115), 1, - sym__lookback_semicolon, - STATE(2627), 1, - sym_block, + ACTIONS(5752), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [107233] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84659] = 5, - ACTIONS(2571), 1, + ACTIONS(5754), 3, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2603), 1, - sym_identifier, - ACTIONS(2605), 1, - anon_sym_RBRACK, - STATE(2290), 1, - aux_sym_array_repeat1, + anon_sym_EQ, + [107243] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2507), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84676] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4117), 1, - sym__lookback_semicolon, - STATE(2658), 1, - sym_block, + [107257] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5756), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84693] = 5, - ACTIONS(1502), 1, - anon_sym_COLON, - ACTIONS(3803), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_DOT, - ACTIONS(4121), 1, - anon_sym_QMARK, + [107271] = 3, + ACTIONS(2681), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84710] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(3008), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107283] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2510), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84727] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(494), 1, - sym_block, - STATE(2248), 1, - aux_sym_class_declaration_repeat2, + [107297] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3843), 1, + anon_sym_RPAREN, + STATE(3079), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84744] = 4, - ACTIONS(3789), 1, - anon_sym_EQ, - STATE(1853), 1, - sym__assignmentOperator, + [107311] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3787), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [84759] = 5, - ACTIONS(2571), 1, + ACTIONS(4623), 3, + sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(2599), 1, - sym_identifier, - ACTIONS(2601), 1, - anon_sym_RBRACK, - STATE(2428), 1, - aux_sym_array_repeat1, + anon_sym_DASH_GT, + [107321] = 3, + ACTIONS(5758), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84776] = 5, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(4123), 1, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107333] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5760), 1, anon_sym_RPAREN, - STATE(2313), 1, - aux_sym__function_type_args_repeat1, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84793] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(511), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107347] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84810] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, + ACTIONS(4627), 3, + sym__closing_brace_marker, anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(2292), 1, - aux_sym__arg_list_repeat1, + anon_sym_DASH_GT, + [107357] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5762), 1, + sym__camelCaseIdentifier, + STATE(3298), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84827] = 3, - ACTIONS(4125), 1, - anon_sym_COLON, + [107371] = 3, + ACTIONS(5764), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 3, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [107383] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5766), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ_GT, - [84840] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(349), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84857] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107397] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5768), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84874] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_block, - STATE(2214), 1, - aux_sym_class_declaration_repeat2, + [107411] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(4115), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84891] = 6, - ACTIONS(3), 1, - sym__closing_brace_unmarker, - ACTIONS(3395), 1, - sym_comment, - ACTIONS(4127), 1, - aux_sym_string_token3, - ACTIONS(4129), 1, - aux_sym_string_token4, - ACTIONS(4132), 1, - sym_escape_sequence, - STATE(2217), 1, - aux_sym_string_repeat2, - [84910] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107425] = 4, + ACTIONS(5770), 1, + anon_sym_COMMA, + ACTIONS(5773), 1, + sym__closing_brace_marker, + STATE(2982), 1, + aux_sym_structure_type_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84927] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107439] = 3, + ACTIONS(5775), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84944] = 5, - ACTIONS(3907), 1, - anon_sym_COMMA, - ACTIONS(3909), 1, - sym__closing_brace_marker, - STATE(2056), 1, - aux_sym_structure_type_repeat1, - STATE(2335), 1, - sym__closing_brace, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107451] = 3, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84961] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5777), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [107463] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5779), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84978] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(432), 1, - sym_block, - STATE(2237), 1, - aux_sym_class_declaration_repeat2, + [107477] = 3, + ACTIONS(5781), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [84995] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4135), 1, + ACTIONS(5716), 2, anon_sym_COLON, - ACTIONS(4137), 1, - sym__lookback_semicolon, - STATE(2687), 1, - sym_block, + anon_sym_EQ_GT, + [107489] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(5783), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85012] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(525), 1, - sym_block, - STATE(2060), 1, - aux_sym_interface_declaration_repeat1, + [107503] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5785), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85029] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(432), 1, - sym_block, - STATE(2218), 1, - aux_sym_class_declaration_repeat2, + [107517] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5787), 1, + sym__camelCaseIdentifier, + STATE(3287), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85046] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107531] = 3, + ACTIONS(5789), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85063] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(321), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107543] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3777), 1, + anon_sym_RBRACK, + STATE(3019), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85080] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(494), 1, - sym_block, - STATE(2219), 1, - aux_sym_class_declaration_repeat2, + [107557] = 3, + ACTIONS(5791), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85097] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(482), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107569] = 3, + ACTIONS(5793), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85114] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4139), 1, - sym__lookback_semicolon, - STATE(2660), 1, - sym_block, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107581] = 3, + ACTIONS(5795), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85131] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(425), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107593] = 3, + ACTIONS(5797), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85148] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(420), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107605] = 3, + ACTIONS(5799), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85165] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(372), 1, - sym_block, - STATE(2226), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107617] = 3, + ACTIONS(5801), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85182] = 5, - ACTIONS(1502), 1, + ACTIONS(5716), 2, anon_sym_COLON, - ACTIONS(3803), 1, anon_sym_EQ_GT, - ACTIONS(4141), 1, - anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_QMARK, + [107629] = 3, + ACTIONS(5803), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85199] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107641] = 3, + ACTIONS(5805), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85216] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_block, - STATE(2182), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107653] = 3, + ACTIONS(5807), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85233] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(380), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107665] = 3, + ACTIONS(5809), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85250] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(418), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [107677] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85267] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(410), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(638), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107689] = 3, + ACTIONS(5811), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85284] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(409), 1, - sym_block, - STATE(2229), 1, - aux_sym_class_declaration_repeat2, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [107701] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85301] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(381), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(621), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107713] = 4, + ACTIONS(2629), 1, + anon_sym_catch, + ACTIONS(5377), 1, + anon_sym_else, + STATE(729), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85318] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(328), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107727] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3855), 1, + anon_sym_RPAREN, + STATE(2879), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85335] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(330), 1, - sym_block, - STATE(2238), 1, - aux_sym_class_declaration_repeat2, + [107741] = 3, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85352] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4145), 1, - anon_sym_COLON, - ACTIONS(4147), 1, - sym__lookback_semicolon, - STATE(2685), 1, - sym_block, + STATE(961), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107753] = 3, + ACTIONS(5813), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85369] = 5, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(334), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + STATE(3008), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107765] = 4, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(5816), 1, + sym__lookback_semicolon, + STATE(732), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85386] = 5, - ACTIONS(1502), 1, - anon_sym_RBRACE, - ACTIONS(3765), 1, - anon_sym_EQ_GT, - ACTIONS(3807), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_QMARK, + [107779] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(2875), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85403] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107793] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3789), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85420] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107807] = 4, + ACTIONS(5068), 1, + sym__pascalCaseIdentifier, + STATE(2523), 1, + sym_type_name, + STATE(2707), 1, + aux_sym__type_path_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85437] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4149), 1, - sym__lookback_semicolon, - STATE(2618), 1, - sym_block, + [107821] = 4, + ACTIONS(5268), 1, + sym__camelCaseIdentifier, + STATE(2458), 1, + aux_sym_package_statement_repeat1, + STATE(2867), 1, + sym_package_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85454] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4151), 1, - sym__lookback_semicolon, - STATE(2680), 1, - sym_block, + [107835] = 3, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85471] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4153), 1, - sym__lookback_semicolon, - STATE(2666), 1, - sym_block, + STATE(642), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107847] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5818), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85488] = 5, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(476), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [107861] = 3, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85505] = 6, - ACTIONS(3), 1, + STATE(643), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107873] = 3, + ACTIONS(5406), 1, + anon_sym_catch, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3673), 1, - aux_sym_string_token3, - ACTIONS(4155), 1, - aux_sym_string_token4, - ACTIONS(4157), 1, - sym_escape_sequence, - STATE(2269), 1, - aux_sym_string_repeat2, - [85524] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4159), 1, - anon_sym_LPAREN, - STATE(241), 1, - sym__arg_list, - STATE(2609), 1, - sym_type_params, + STATE(644), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107885] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(3051), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85541] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(483), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107899] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(3779), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85558] = 3, - ACTIONS(4161), 1, - anon_sym_COLON, + [107913] = 4, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(5820), 1, + sym__lookback_semicolon, + STATE(553), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1628), 3, - anon_sym_DOT, - anon_sym_QMARK, - anon_sym_EQ_GT, - [85571] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(636), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107927] = 3, + ACTIONS(5630), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85588] = 5, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(496), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + ACTIONS(4700), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [107939] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3855), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85605] = 5, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(495), 1, - sym_block, - STATE(2245), 1, - aux_sym_interface_declaration_repeat1, + [107953] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5822), 1, + sym__camelCaseIdentifier, + STATE(3170), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85622] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(491), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107967] = 4, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(5824), 1, + anon_sym_RBRACK, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85639] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(536), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [107981] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85656] = 5, - ACTIONS(2571), 1, + STATE(622), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [107993] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2579), 1, - sym_identifier, - ACTIONS(2581), 1, - anon_sym_RBRACK, - STATE(2299), 1, - aux_sym_array_repeat1, + ACTIONS(3797), 1, + anon_sym_RPAREN, + STATE(3103), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85673] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(4164), 1, + [108007] = 3, + ACTIONS(5498), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(965), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108019] = 3, + ACTIONS(5826), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5716), 2, anon_sym_COLON, - ACTIONS(4166), 1, - sym__lookback_semicolon, - STATE(2833), 1, - sym_block, + anon_sym_EQ_GT, + [108031] = 3, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85690] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(547), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(969), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108043] = 4, + ACTIONS(5752), 1, + sym__closing_brace_marker, + ACTIONS(5828), 1, + anon_sym_COMMA, + STATE(3030), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85707] = 5, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(397), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [108057] = 3, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85724] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4168), 1, - sym__lookback_semicolon, - STATE(2648), 1, - sym_block, + ACTIONS(5831), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [108069] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85741] = 5, - ACTIONS(3743), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(395), 1, - sym_block, - STATE(2252), 1, - aux_sym_interface_declaration_repeat1, + STATE(597), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108081] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85758] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3743), 1, + ACTIONS(5833), 3, + sym__lookback_semicolon, anon_sym_LBRACE, - STATE(392), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + anon_sym_COLON, + [108091] = 4, + ACTIONS(5835), 1, + anon_sym_RPAREN, + ACTIONS(5837), 1, + anon_sym_COMMA, + STATE(3034), 1, + aux_sym__function_arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85775] = 6, - ACTIONS(3), 1, + [108105] = 4, + ACTIONS(4523), 1, + anon_sym_COMMA, + ACTIONS(5840), 1, + anon_sym_RBRACK, + STATE(3106), 1, + aux_sym_map_repeat1, + ACTIONS(3), 2, sym__closing_brace_unmarker, - ACTIONS(3395), 1, sym_comment, - ACTIONS(3655), 1, - aux_sym_string_token3, - ACTIONS(3931), 1, - aux_sym_string_token4, - ACTIONS(3933), 1, - sym_escape_sequence, - STATE(2217), 1, - aux_sym_string_repeat2, - [85794] = 5, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - ACTIONS(4170), 1, - sym_identifier, - STATE(2651), 1, - sym_integer, + [108119] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85811] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(538), 1, - sym_block, - STATE(2180), 1, - aux_sym_class_declaration_repeat2, + STATE(598), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108131] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85828] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4172), 1, - sym__lookback_semicolon, - STATE(2645), 1, - sym_block, + STATE(599), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108143] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85845] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3791), 1, - anon_sym_extends, - STATE(548), 1, - sym_block, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + STATE(601), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108155] = 3, + ACTIONS(5512), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85862] = 5, - ACTIONS(135), 1, - sym__closing_brace_marker, - ACTIONS(3197), 1, + STATE(2826), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108167] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - STATE(1242), 1, - sym__closing_brace, - STATE(2419), 1, - aux_sym_map_repeat1, + ACTIONS(3797), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85879] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(539), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [108181] = 3, + ACTIONS(5512), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85896] = 3, - ACTIONS(2825), 1, - sym__lookback_semicolon, + STATE(2827), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108193] = 3, + ACTIONS(5512), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4174), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [85909] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(321), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(2828), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108205] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85926] = 5, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2575), 1, - sym_identifier, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(2306), 1, - aux_sym_array_repeat1, + STATE(602), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108217] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85943] = 5, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4176), 1, - anon_sym_LPAREN, - STATE(1258), 1, - sym__arg_list, - STATE(2567), 1, - sym_type_params, + STATE(603), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108229] = 3, + ACTIONS(5510), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85960] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(445), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(604), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108241] = 4, + ACTIONS(2669), 1, + anon_sym_catch, + ACTIONS(5377), 1, + anon_sym_else, + STATE(758), 1, + sym_else_clause, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108255] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(3781), 1, + anon_sym_RPAREN, + STATE(3063), 1, + aux_sym__arg_list_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108269] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85977] = 5, - ACTIONS(3835), 1, + ACTIONS(4712), 2, + sym__lookback_semicolon, + anon_sym_LBRACE, + [108281] = 3, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(3964), 1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5842), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(4178), 1, + [108293] = 4, + ACTIONS(5842), 1, anon_sym_RPAREN, - STATE(2313), 1, + ACTIONS(5844), 1, + anon_sym_COMMA, + STATE(3050), 1, aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [85994] = 5, - ACTIONS(3915), 1, - anon_sym_LBRACE, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4181), 1, + [108307] = 4, + ACTIONS(3741), 1, + anon_sym_COMMA, + ACTIONS(4117), 1, + anon_sym_RBRACK, + STATE(2883), 1, + aux_sym_array_repeat1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108321] = 4, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5847), 1, sym__lookback_semicolon, - STATE(2675), 1, - sym_block, + STATE(555), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86011] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(517), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [108335] = 3, + ACTIONS(5394), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86028] = 5, - ACTIONS(3739), 1, - anon_sym_implements, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(320), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(623), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108347] = 3, + ACTIONS(5406), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86045] = 5, - ACTIONS(3369), 1, - anon_sym_DASH_GT, - ACTIONS(3849), 1, - anon_sym_LT, - ACTIONS(4183), 1, - sym__lookback_semicolon, - STATE(1399), 1, - sym_type_params, + STATE(624), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108359] = 3, + ACTIONS(5524), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86062] = 5, - ACTIONS(3733), 1, - anon_sym_LBRACE, - ACTIONS(3739), 1, - anon_sym_implements, - STATE(657), 1, - sym_block, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + STATE(951), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108371] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86079] = 5, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2717), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__arg_list_repeat1, + STATE(417), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108383] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86096] = 4, - ACTIONS(4185), 1, - sym_identifier, - ACTIONS(4187), 1, - anon_sym_LPAREN, - STATE(2617), 1, - sym__parenthesized_expression, + STATE(609), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108395] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86110] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2739), 1, - anon_sym_RPAREN, - STATE(2292), 1, - aux_sym__arg_list_repeat1, + STATE(610), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108407] = 3, + ACTIONS(5524), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86124] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(4189), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + STATE(955), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108419] = 3, + ACTIONS(5849), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [108431] = 3, + ACTIONS(5524), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86138] = 4, - ACTIONS(2633), 1, + STATE(956), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108443] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(3783), 1, anon_sym_RPAREN, - STATE(2293), 1, + STATE(3075), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86152] = 4, - ACTIONS(2633), 1, + [108457] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2737), 1, + ACTIONS(3783), 1, anon_sym_RPAREN, - STATE(2297), 1, + STATE(2881), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86166] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4191), 1, + [108471] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5851), 1, anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86180] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, + [108485] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [86192] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4193), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + STATE(2435), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108497] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86206] = 4, - ACTIONS(962), 1, - aux_sym_integer_token1, - ACTIONS(964), 1, - aux_sym_integer_token2, - STATE(1231), 1, - sym_integer, + STATE(2436), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108509] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86220] = 4, - ACTIONS(2771), 1, - anon_sym_RPAREN, - ACTIONS(4195), 1, - anon_sym_COMMA, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + STATE(2438), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108521] = 3, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86234] = 2, + STATE(970), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108533] = 3, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4174), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [86244] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2577), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + STATE(971), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108545] = 3, + ACTIONS(5498), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86258] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4198), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_QMARK, + STATE(972), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108557] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86272] = 4, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(4202), 1, - anon_sym_RBRACK, - STATE(2444), 1, - aux_sym_map_repeat1, + STATE(2439), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108569] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86286] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2389), 1, - sym_type_name, - STATE(2397), 1, - aux_sym_import_statement_repeat1, + ACTIONS(5853), 3, + sym__closing_brace_marker, + anon_sym_case, + anon_sym_default, + [108579] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86300] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2717), 1, - anon_sym_RPAREN, - STATE(2308), 1, - aux_sym__arg_list_repeat1, + STATE(2440), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108591] = 3, + ACTIONS(5166), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86314] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4206), 1, - sym__lookback_semicolon, - STATE(569), 1, - sym__semicolon, + STATE(2441), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108603] = 4, + ACTIONS(3763), 1, + anon_sym_COMMA, + ACTIONS(5855), 1, + anon_sym_RPAREN, + STATE(2881), 1, + aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86328] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2397), 1, - aux_sym_import_statement_repeat1, - STATE(2398), 1, - sym_type_name, + [108617] = 3, + ACTIONS(1823), 1, + aux_sym_integer_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86342] = 4, - ACTIONS(2571), 1, + ACTIONS(1821), 2, + anon_sym_LPAREN, + aux_sym_integer_token2, + [108629] = 4, + ACTIONS(4523), 1, anon_sym_COMMA, - ACTIONS(4208), 1, + ACTIONS(5857), 1, anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86356] = 4, - ACTIONS(2633), 1, + [108643] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2707), 1, + ACTIONS(3853), 1, anon_sym_RPAREN, - STATE(2309), 1, + STATE(2987), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86370] = 4, - ACTIONS(2633), 1, + [108657] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2707), 1, + ACTIONS(3853), 1, anon_sym_RPAREN, - STATE(2297), 1, + STATE(2881), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86384] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4210), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [108671] = 3, + ACTIONS(5859), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86398] = 4, - ACTIONS(3935), 1, + ACTIONS(5716), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [108683] = 4, + ACTIONS(5346), 1, anon_sym_COMMA, - ACTIONS(4212), 1, + ACTIONS(5861), 1, anon_sym_GT, - STATE(2434), 1, + STATE(2894), 1, aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86412] = 4, - ACTIONS(4214), 1, - anon_sym_RPAREN, - ACTIONS(4216), 1, + [108697] = 4, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5863), 1, + sym__lookback_semicolon, + STATE(836), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108711] = 4, + ACTIONS(5346), 1, anon_sym_COMMA, - STATE(2311), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(5865), 1, + anon_sym_GT, + STATE(2894), 1, + aux_sym_type_params_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86426] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [108725] = 3, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4214), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [86438] = 4, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(4219), 1, - anon_sym_RPAREN, - STATE(2311), 1, - aux_sym__function_type_args_repeat1, + STATE(2373), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108737] = 3, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86452] = 4, - ACTIONS(4221), 1, - anon_sym_DOT, - ACTIONS(4223), 1, - sym__lookback_semicolon, - STATE(564), 1, - sym__semicolon, + STATE(2374), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108749] = 3, + ACTIONS(5132), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86466] = 4, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(4225), 1, - anon_sym_RBRACK, - STATE(2444), 1, - aux_sym_map_repeat1, + STATE(2375), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108761] = 3, + ACTIONS(5524), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(958), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108773] = 3, + ACTIONS(5524), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86480] = 2, + STATE(959), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108785] = 3, + ACTIONS(5524), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(1518), 3, + STATE(952), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108797] = 3, + ACTIONS(5132), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2376), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108809] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5867), 1, anon_sym_RPAREN, - anon_sym_COMMA, + STATE(2488), 1, + sym__rangeOperator, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [108823] = 3, + ACTIONS(5132), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2377), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108835] = 3, + ACTIONS(5132), 1, + anon_sym_catch, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + STATE(2378), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108847] = 4, + ACTIONS(5050), 1, + anon_sym_LT, + ACTIONS(5869), 1, anon_sym_EQ, - [86490] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + STATE(3494), 1, + sym_type_params, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4227), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [86502] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2605), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [108861] = 3, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86516] = 4, - ACTIONS(4229), 1, + ACTIONS(5871), 2, anon_sym_RPAREN, - ACTIONS(4231), 1, anon_sym_COMMA, - STATE(2319), 1, - aux_sym__function_arg_list_repeat1, + [108873] = 4, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5873), 1, + sym__lookback_semicolon, + STATE(745), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86530] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2703), 1, - anon_sym_RPAREN, - STATE(2326), 1, - aux_sym__arg_list_repeat1, + [108887] = 4, + ACTIONS(5196), 1, + anon_sym_DOT, + ACTIONS(5875), 1, + sym__lookback_semicolon, + STATE(586), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86544] = 4, - ACTIONS(452), 1, - aux_sym_integer_token1, - ACTIONS(454), 1, - aux_sym_integer_token2, - STATE(239), 1, - sym_integer, + [108901] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5877), 1, + sym__camelCaseIdentifier, + STATE(3249), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86558] = 3, - ACTIONS(4234), 1, + [108915] = 3, + ACTIONS(5630), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3434), 2, + ACTIONS(5879), 2, sym__closing_brace_marker, anon_sym_COMMA, - [86570] = 2, + [108927] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + ACTIONS(5881), 1, + sym__camelCaseIdentifier, + STATE(3255), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4236), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [86580] = 4, - ACTIONS(4187), 1, - anon_sym_LPAREN, - ACTIONS(4238), 1, - sym_identifier, - STATE(2463), 1, - sym__parenthesized_expression, + [108941] = 3, + ACTIONS(5883), 1, + sym__camelCaseIdentifier, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86594] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2693), 1, - anon_sym_RPAREN, - STATE(2328), 1, - aux_sym__arg_list_repeat1, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [108953] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86608] = 4, - ACTIONS(2633), 1, + STATE(594), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [108965] = 4, + ACTIONS(3763), 1, anon_sym_COMMA, - ACTIONS(2693), 1, + ACTIONS(5885), 1, anon_sym_RPAREN, - STATE(2297), 1, + STATE(2881), 1, aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86622] = 3, - ACTIONS(4125), 1, + [108979] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4240), 2, - anon_sym_RPAREN, + ACTIONS(5752), 2, anon_sym_COMMA, - [86634] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4242), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + anon_sym_RBRACK, + [108991] = 3, + ACTIONS(5518), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86648] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + STATE(595), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [109003] = 4, + ACTIONS(5752), 1, + anon_sym_RBRACK, + ACTIONS(5887), 1, + anon_sym_COMMA, + STATE(3106), 1, + aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3449), 2, - sym__closing_brace_marker, + [109017] = 4, + ACTIONS(3741), 1, anon_sym_COMMA, - [86660] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + ACTIONS(3791), 1, + anon_sym_RBRACK, + STATE(2871), 1, + aux_sym_array_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3457), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [86672] = 4, - ACTIONS(3859), 1, - sym__camelCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2384), 1, - sym_package_name, + [109031] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5890), 1, + anon_sym_RPAREN, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86686] = 4, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4246), 1, - sym__lookback_semicolon, - STATE(562), 1, - sym__semicolon, + [109045] = 4, + ACTIONS(5392), 1, + anon_sym_COMMA, + ACTIONS(5892), 1, + anon_sym_RPAREN, + STATE(3050), 1, + aux_sym__function_type_args_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86700] = 4, - ACTIONS(384), 1, - aux_sym_integer_token1, - ACTIONS(386), 1, - aux_sym_integer_token2, - STATE(187), 1, - sym_integer, + [109059] = 4, + ACTIONS(2679), 1, + anon_sym_catch, + ACTIONS(5377), 1, + anon_sym_else, + STATE(740), 1, + sym_else_clause, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86714] = 2, + [109073] = 3, + ACTIONS(3368), 1, + anon_sym_catch, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4248), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [86724] = 2, + STATE(3008), 2, + sym_catch_statement, + aux_sym_try_statement_repeat1, + [109085] = 4, + ACTIONS(5066), 1, + sym__pascalCaseIdentifier, + STATE(2707), 1, + aux_sym__type_path_repeat1, + STATE(2941), 1, + sym_type_name, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4250), 3, + [109099] = 4, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5894), 1, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [86734] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_DOT, - ACTIONS(4254), 1, - anon_sym_QMARK, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86748] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [109113] = 3, + ACTIONS(5236), 1, + anon_sym_LPAREN, + STATE(3244), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4256), 2, + [109124] = 3, + ACTIONS(5896), 1, anon_sym_RPAREN, + ACTIONS(5898), 1, anon_sym_COMMA, - [86760] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4258), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [86772] = 2, + [109135] = 3, + ACTIONS(5900), 1, + anon_sym_DOT, + ACTIONS(5902), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4077), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [86782] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4260), 1, - anon_sym_DOT, - ACTIONS(4262), 1, - anon_sym_QMARK, + [109146] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(72), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86796] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2681), 1, - anon_sym_RPAREN, - STATE(2346), 1, - aux_sym__arg_list_repeat1, + [109157] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86810] = 4, - ACTIONS(4187), 1, - anon_sym_LPAREN, - ACTIONS(4264), 1, - sym_identifier, - STATE(2571), 1, - sym__parenthesized_expression, + ACTIONS(5904), 2, + anon_sym_LBRACE, + anon_sym_extends, + [109166] = 3, + ACTIONS(5906), 1, + anon_sym_DOT, + ACTIONS(5908), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86824] = 2, + [109177] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(73), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4266), 3, - sym__closing_brace_marker, - anon_sym_case, - anon_sym_default, - [86834] = 3, - ACTIONS(3978), 1, + [109188] = 3, + ACTIONS(5304), 1, + sym__lookback_semicolon, + ACTIONS(5308), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3434), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [86846] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2673), 1, - anon_sym_RPAREN, - STATE(2348), 1, - aux_sym__arg_list_repeat1, + [109199] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86860] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2673), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [109210] = 3, + ACTIONS(5910), 1, + anon_sym_DOT, + ACTIONS(5912), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86874] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2687), 1, - anon_sym_RPAREN, - STATE(2437), 1, - aux_sym__arg_list_repeat1, + [109221] = 3, + ACTIONS(4873), 1, + anon_sym_DOT, + ACTIONS(5914), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86888] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4268), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [109232] = 3, + ACTIONS(5916), 1, + sym__lookback_semicolon, + STATE(590), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86902] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4270), 1, - anon_sym_EQ, - STATE(2646), 1, - sym_type_params, + [109243] = 3, + ACTIONS(5918), 1, + anon_sym_DOT, + ACTIONS(5920), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86916] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + [109254] = 3, + ACTIONS(5922), 1, + anon_sym_DOT, + ACTIONS(5924), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3449), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [86928] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3927), 1, + [109265] = 3, + ACTIONS(4884), 1, anon_sym_DOT, - ACTIONS(3929), 1, + ACTIONS(4886), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86942] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + [109276] = 3, + ACTIONS(5090), 1, + anon_sym_DOT, + ACTIONS(5094), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3457), 2, - sym__lookback_semicolon, - anon_sym_LBRACE, - [86954] = 2, + [109287] = 3, + ACTIONS(5926), 1, + anon_sym_DOT, + ACTIONS(5928), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3305), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [86964] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4272), 1, - anon_sym_EQ, - STATE(2722), 1, - sym_type_params, + [109298] = 3, + ACTIONS(5048), 1, + anon_sym_LBRACE, + STATE(563), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86978] = 4, - ACTIONS(3859), 1, - sym__camelCaseIdentifier, - STATE(2113), 1, - aux_sym_package_statement_repeat1, - STATE(2425), 1, - sym_package_name, + [109309] = 3, + ACTIONS(4949), 1, + anon_sym_DOT, + ACTIONS(4951), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [86992] = 2, + [109320] = 3, + ACTIONS(4831), 1, + anon_sym_DOT, + ACTIONS(4833), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3349), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [87002] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2397), 1, - aux_sym_import_statement_repeat1, - STATE(2432), 1, - sym_type_name, + [109331] = 3, + ACTIONS(5930), 1, + anon_sym_LBRACE, + STATE(1761), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87016] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2397), 1, - aux_sym_import_statement_repeat1, - STATE(2433), 1, - sym_type_name, + [109342] = 3, + ACTIONS(5932), 1, + anon_sym_DOT, + ACTIONS(5934), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87030] = 2, + [109353] = 3, + ACTIONS(4785), 1, + anon_sym_DOT, + ACTIONS(4787), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3355), 3, - sym__closing_brace_marker, - anon_sym_COMMA, + [109364] = 3, + ACTIONS(5308), 1, anon_sym_DASH_GT, - [87040] = 4, - ACTIONS(756), 1, - aux_sym_integer_token1, - ACTIONS(758), 1, - aux_sym_integer_token2, - STATE(1327), 1, - sym_integer, + ACTIONS(5400), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87054] = 2, + [109375] = 3, + ACTIONS(5936), 1, + anon_sym_DOT, + ACTIONS(5938), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4274), 3, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_EQ, - [87064] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4276), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [109386] = 3, + ACTIONS(5940), 1, + anon_sym_DOT, + ACTIONS(5942), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87078] = 4, - ACTIONS(4278), 1, - anon_sym_COMMA, - ACTIONS(4281), 1, - sym__closing_brace_marker, - STATE(2363), 1, - aux_sym_structure_type_repeat1, + [109397] = 3, + ACTIONS(5150), 1, + anon_sym_DOT, + ACTIONS(5154), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87092] = 3, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [109408] = 3, + ACTIONS(4943), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4283), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [87104] = 4, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(4285), 1, - anon_sym_GT, - STATE(2434), 1, - aux_sym_type_params_repeat1, + [109419] = 3, + ACTIONS(4759), 1, + anon_sym_DOT, + ACTIONS(4761), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87118] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4287), 1, + [109430] = 3, + ACTIONS(5944), 1, anon_sym_DOT, - ACTIONS(4289), 1, + ACTIONS(5946), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87132] = 2, + [109441] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(65), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3359), 3, - sym__closing_brace_marker, - anon_sym_COMMA, - anon_sym_DASH_GT, - [87142] = 4, - ACTIONS(2631), 1, - anon_sym_RPAREN, - ACTIONS(2633), 1, - anon_sym_COMMA, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [109452] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(28), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87156] = 4, - ACTIONS(2631), 1, - anon_sym_RPAREN, - ACTIONS(2633), 1, - anon_sym_COMMA, - STATE(2362), 1, - aux_sym__arg_list_repeat1, + [109463] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1782), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87170] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4291), 1, + [109474] = 3, + ACTIONS(4843), 1, anon_sym_DOT, - ACTIONS(4293), 1, + ACTIONS(4845), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87184] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4295), 1, - anon_sym_DOT, - ACTIONS(4297), 1, - anon_sym_QMARK, + [109485] = 3, + ACTIONS(5948), 1, + sym__lookback_semicolon, + STATE(743), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87198] = 2, + [109496] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(51), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4299), 3, - sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [87208] = 4, - ACTIONS(1524), 1, + [109507] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(4301), 1, - anon_sym_DOT, - ACTIONS(4303), 1, - anon_sym_QMARK, + ACTIONS(5714), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87222] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(4305), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [109518] = 3, + ACTIONS(5236), 1, + anon_sym_LPAREN, + STATE(3125), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87236] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4307), 1, - anon_sym_DOT, - ACTIONS(4309), 1, - anon_sym_QMARK, + [109529] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(213), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87250] = 4, - ACTIONS(77), 1, - aux_sym_integer_token1, - ACTIONS(79), 1, - aux_sym_integer_token2, - STATE(1461), 1, - sym_integer, + [109540] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(69), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87264] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4311), 1, - anon_sym_DOT, - ACTIONS(4313), 1, - anon_sym_QMARK, + [109551] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5455), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87278] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, + [109562] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3591), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4315), 2, - anon_sym_COMMA, - anon_sym_GT, - [87290] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4317), 1, + [109573] = 3, + ACTIONS(5950), 1, sym__lookback_semicolon, - STATE(632), 1, + STATE(423), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87304] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2745), 1, - anon_sym_RPAREN, - STATE(2429), 1, - aux_sym__arg_list_repeat1, + [109584] = 3, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(345), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87318] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4319), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_QMARK, + [109595] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87332] = 4, - ACTIONS(4323), 1, - anon_sym_RPAREN, - ACTIONS(4325), 1, - anon_sym_COMMA, - STATE(2319), 1, - aux_sym__function_arg_list_repeat1, + ACTIONS(5952), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [109604] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(220), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87346] = 4, - ACTIONS(4327), 1, - anon_sym_DOT, - ACTIONS(4329), 1, + [109615] = 3, + ACTIONS(5954), 1, sym__lookback_semicolon, - STATE(624), 1, + STATE(478), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87360] = 4, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4331), 1, + [109626] = 3, + ACTIONS(5956), 1, sym__lookback_semicolon, - STATE(668), 1, + STATE(479), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87374] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4333), 1, - anon_sym_DOT, - ACTIONS(4335), 1, - anon_sym_QMARK, + [109637] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5457), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87388] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4337), 1, - anon_sym_DOT, - ACTIONS(4339), 1, - anon_sym_QMARK, + [109648] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3599), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87402] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4141), 1, - anon_sym_DOT, - ACTIONS(4143), 1, - anon_sym_QMARK, + [109659] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87416] = 4, - ACTIONS(2633), 1, + ACTIONS(3937), 2, anon_sym_COMMA, - ACTIONS(2747), 1, + anon_sym_RBRACK, + [109668] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5958), 1, anon_sym_RPAREN, - STATE(2368), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87430] = 4, - ACTIONS(4341), 1, - anon_sym_DOT, - ACTIONS(4343), 1, - sym__lookback_semicolon, - STATE(681), 1, - sym__semicolon, + [109679] = 3, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2563), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87444] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4071), 1, - anon_sym_DOT, - ACTIONS(4073), 1, - anon_sym_QMARK, + [109690] = 3, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(353), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87458] = 4, - ACTIONS(1524), 1, + [109701] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(3823), 1, - anon_sym_DOT, - ACTIONS(3825), 1, - anon_sym_QMARK, + ACTIONS(5952), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87472] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3845), 1, - anon_sym_DOT, - ACTIONS(3847), 1, - anon_sym_QMARK, + [109712] = 3, + ACTIONS(5960), 1, + sym__lookback_semicolon, + STATE(803), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87486] = 4, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(4345), 1, - anon_sym_RBRACK, - STATE(2444), 1, - aux_sym_map_repeat1, + [109723] = 3, + ACTIONS(5962), 1, + sym__lookback_semicolon, + STATE(804), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87500] = 4, - ACTIONS(1524), 1, + [109734] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(4347), 1, - anon_sym_DOT, - ACTIONS(4349), 1, - anon_sym_QMARK, + ACTIONS(5716), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87514] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2383), 1, - sym_type_name, - STATE(2397), 1, - aux_sym_import_statement_repeat1, + [109745] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5470), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87528] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4351), 1, - anon_sym_DOT, - ACTIONS(4353), 1, - anon_sym_QMARK, + [109756] = 3, + ACTIONS(5474), 1, + sym__lookback_semicolon, + STATE(807), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87542] = 4, - ACTIONS(4355), 1, - sym__pascalCaseIdentifier, - STATE(2397), 1, - aux_sym_import_statement_repeat1, - STATE(2781), 1, - sym_type_name, + [109767] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(31), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87556] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4358), 1, + [109778] = 3, + ACTIONS(5964), 1, sym__lookback_semicolon, - STATE(683), 1, + STATE(813), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87570] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2597), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [109789] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87584] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3811), 1, - anon_sym_DOT, - ACTIONS(3813), 1, - anon_sym_QMARK, + [109800] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(35), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87598] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4119), 1, - anon_sym_DOT, - ACTIONS(4121), 1, - anon_sym_QMARK, + [109811] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(7), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87612] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(4360), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [109822] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87626] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2379), 1, - sym_type_name, - STATE(2397), 1, - aux_sym_import_statement_repeat1, + ACTIONS(5773), 2, + sym__closing_brace_marker, + anon_sym_COMMA, + [109831] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87640] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2397), 1, - aux_sym_import_statement_repeat1, - STATE(2440), 1, - sym_type_name, + [109842] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1811), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87654] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3761), 1, - anon_sym_DOT, - ACTIONS(3763), 1, - anon_sym_QMARK, + [109853] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(36), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87668] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(3819), 1, - anon_sym_DOT, - ACTIONS(3821), 1, - anon_sym_QMARK, + [109864] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87682] = 4, - ACTIONS(3935), 1, - anon_sym_COMMA, - ACTIONS(4362), 1, - anon_sym_GT, - STATE(2434), 1, - aux_sym_type_params_repeat1, + [109875] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(86), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87696] = 4, - ACTIONS(4325), 1, - anon_sym_COMMA, - ACTIONS(4364), 1, - anon_sym_RPAREN, - STATE(2382), 1, - aux_sym__function_arg_list_repeat1, + [109886] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87710] = 4, - ACTIONS(3799), 1, - sym__pascalCaseIdentifier, - STATE(2397), 1, - aux_sym_import_statement_repeat1, - STATE(2441), 1, - sym_type_name, + [109897] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(29), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87724] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4366), 1, - anon_sym_DOT, - ACTIONS(4368), 1, - anon_sym_QMARK, + [109908] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87738] = 2, + ACTIONS(5416), 2, + anon_sym_COLON, + anon_sym_EQ_GT, + [109917] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5758), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4370), 3, + [109928] = 3, + ACTIONS(5496), 1, sym__lookback_semicolon, - anon_sym_LBRACE, - anon_sym_COLON, - [87748] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4372), 1, - anon_sym_EQ, - STATE(2854), 1, - sym_type_params, + STATE(749), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87762] = 4, - ACTIONS(1524), 1, - anon_sym_EQ_GT, - ACTIONS(4374), 1, - anon_sym_DOT, - ACTIONS(4376), 1, - anon_sym_QMARK, + [109939] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3334), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87776] = 4, - ACTIONS(3735), 1, - anon_sym_LT, - ACTIONS(4378), 1, - anon_sym_EQ, - STATE(2857), 1, - sym_type_params, + [109950] = 3, + ACTIONS(5966), 1, + sym__lookback_semicolon, + STATE(505), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87790] = 3, - ACTIONS(1628), 1, - anon_sym_EQ_GT, + [109961] = 3, + ACTIONS(5968), 1, + sym__lookback_semicolon, + STATE(506), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4380), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [87802] = 4, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4382), 1, + [109972] = 3, + ACTIONS(5970), 1, sym__lookback_semicolon, - STATE(388), 1, + STATE(810), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87816] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(2593), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [109983] = 3, + ACTIONS(5972), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(5974), 1, + aux_sym_preprocessor_statement_token2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87830] = 4, - ACTIONS(4384), 1, + [109994] = 3, + ACTIONS(5976), 1, anon_sym_DOT, - ACTIONS(4386), 1, - sym__lookback_semicolon, - STATE(391), 1, - sym__semicolon, + ACTIONS(5978), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87844] = 4, - ACTIONS(4380), 1, - sym__closing_brace_marker, - ACTIONS(4388), 1, + [110005] = 3, + ACTIONS(5980), 1, + anon_sym_RPAREN, + ACTIONS(5982), 1, anon_sym_COMMA, - STATE(2419), 1, - aux_sym_map_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87858] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4391), 1, + [110016] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(34), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110027] = 3, + ACTIONS(5984), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(5986), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110038] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(5), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110049] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5322), 1, sym__lookback_semicolon, - STATE(398), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87872] = 4, - ACTIONS(4187), 1, + [110060] = 3, + ACTIONS(5042), 1, anon_sym_LPAREN, - ACTIONS(4393), 1, - sym_identifier, - STATE(2583), 1, + STATE(41), 1, sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87886] = 4, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(4395), 1, - anon_sym_RBRACK, - STATE(2444), 1, - aux_sym_map_repeat1, + [110071] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(19), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87900] = 4, - ACTIONS(3964), 1, - anon_sym_COMMA, - ACTIONS(4397), 1, + [110082] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(78), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110093] = 3, + ACTIONS(5988), 1, anon_sym_RPAREN, - STATE(2311), 1, - aux_sym__function_type_args_repeat1, + ACTIONS(5990), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87914] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, + [110104] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5775), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2781), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [87926] = 4, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4399), 1, + [110115] = 3, + ACTIONS(5992), 1, sym__lookback_semicolon, - STATE(470), 1, + STATE(676), 1, sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87940] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(4401), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [110126] = 3, + ACTIONS(5290), 1, + sym__lookback_semicolon, + STATE(750), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87954] = 4, - ACTIONS(2781), 1, - anon_sym_RBRACK, - ACTIONS(4403), 1, - anon_sym_COMMA, - STATE(2427), 1, - aux_sym_array_repeat1, + [110137] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87968] = 4, - ACTIONS(2571), 1, + ACTIONS(3969), 2, + anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(2589), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [110146] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3606), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87982] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2705), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [110157] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(40), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [87996] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2705), 1, + [110168] = 3, + ACTIONS(5994), 1, + anon_sym_LBRACE, + STATE(358), 1, + sym_switch_block, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110179] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(5996), 1, anon_sym_RPAREN, - STATE(2402), 1, - aux_sym__arg_list_repeat1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88010] = 4, - ACTIONS(2571), 1, - anon_sym_COMMA, - ACTIONS(4406), 1, - anon_sym_RBRACK, - STATE(2427), 1, - aux_sym_array_repeat1, + [110190] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(22), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88024] = 4, - ACTIONS(4408), 1, - anon_sym_DOT, - ACTIONS(4410), 1, - sym__lookback_semicolon, - STATE(475), 1, - sym__semicolon, + [110201] = 3, + ACTIONS(5256), 1, + anon_sym_LPAREN, + STATE(1794), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88038] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4412), 1, - sym__lookback_semicolon, - STATE(484), 1, - sym__semicolon, + [110212] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(3), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88052] = 4, - ACTIONS(4315), 1, - anon_sym_GT, - ACTIONS(4414), 1, - anon_sym_COMMA, - STATE(2434), 1, - aux_sym_type_params_repeat1, + [110223] = 3, + ACTIONS(5998), 1, + anon_sym_LBRACE, + STATE(200), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88066] = 4, - ACTIONS(4187), 1, + [110234] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5789), 1, + anon_sym_in, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110245] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - ACTIONS(4417), 1, - sym_identifier, - STATE(2523), 1, - sym__parenthesized_expression, + STATE(3497), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88080] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RPAREN, - STATE(2295), 1, - aux_sym__arg_list_repeat1, + [110256] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5791), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88094] = 4, - ACTIONS(2633), 1, - anon_sym_COMMA, - ACTIONS(2723), 1, - anon_sym_RPAREN, - STATE(2297), 1, - aux_sym__arg_list_repeat1, + [110267] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3657), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88108] = 4, - ACTIONS(3231), 1, - anon_sym_COMMA, - ACTIONS(4419), 1, - anon_sym_RBRACK, - STATE(2444), 1, - aux_sym_map_repeat1, + [110278] = 3, + ACTIONS(6000), 1, + anon_sym_LBRACE, + STATE(331), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88122] = 4, - ACTIONS(1524), 1, + [110289] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, - ACTIONS(3807), 1, - anon_sym_DOT, - ACTIONS(3809), 1, - anon_sym_QMARK, + ACTIONS(5793), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88136] = 4, - ACTIONS(4421), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - sym__lookback_semicolon, - STATE(462), 1, - sym__semicolon, + [110300] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3576), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88150] = 4, - ACTIONS(4204), 1, - anon_sym_DOT, - ACTIONS(4425), 1, - sym__lookback_semicolon, - STATE(463), 1, - sym__semicolon, + [110311] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5795), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88164] = 3, - ACTIONS(4234), 1, - anon_sym_DASH_GT, + [110322] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3676), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4427), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [88176] = 3, - ACTIONS(1628), 1, + [110333] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(235), 1, + sym__arg_list, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110344] = 3, + ACTIONS(1636), 1, anon_sym_EQ_GT, + ACTIONS(5797), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4380), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [88188] = 4, - ACTIONS(4380), 1, - anon_sym_RBRACK, - ACTIONS(4429), 1, - anon_sym_COMMA, - STATE(2444), 1, - aux_sym_map_repeat1, + [110355] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3687), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88202] = 4, - ACTIONS(4432), 1, - anon_sym_LBRACE, - ACTIONS(4434), 1, - anon_sym_implements, - STATE(2445), 1, - aux_sym_class_declaration_repeat2, + [110366] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5799), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88216] = 4, - ACTIONS(4437), 1, - anon_sym_LBRACE, - ACTIONS(4439), 1, - anon_sym_extends, - STATE(2446), 1, - aux_sym_interface_declaration_repeat1, + [110377] = 3, + ACTIONS(4469), 1, + anon_sym_DOT, + ACTIONS(4471), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88230] = 3, - ACTIONS(4442), 1, - anon_sym_RPAREN, - ACTIONS(4444), 1, - anon_sym_COMMA, + [110388] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5801), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88241] = 2, + [110399] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5803), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2771), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [88250] = 3, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(323), 1, - sym_block, + [110410] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(53), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88261] = 3, - ACTIONS(4446), 1, - sym__lookback_semicolon, - STATE(408), 1, - sym__semicolon, + [110421] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5805), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88272] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4005), 1, - sym__lookback_semicolon, + [110432] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5807), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88283] = 3, - ACTIONS(2985), 1, + [110443] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5350), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88294] = 3, - ACTIONS(4448), 1, - anon_sym_RPAREN, - ACTIONS(4450), 1, - anon_sym_COMMA, + [110454] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5809), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88305] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2817), 1, - anon_sym_RBRACK, + [110465] = 3, + ACTIONS(5986), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(6002), 1, + aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88316] = 3, - ACTIONS(4452), 1, - anon_sym_DOT, - ACTIONS(4454), 1, - anon_sym_QMARK, + [110476] = 3, + ACTIONS(6004), 1, + sym__lookback_semicolon, + STATE(811), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88327] = 3, - ACTIONS(4456), 1, - sym__camelCaseIdentifier, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, + [110487] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5781), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88338] = 3, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(670), 1, - sym_block, + [110498] = 3, + ACTIONS(6006), 1, + anon_sym_RPAREN, + ACTIONS(6008), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88349] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2919), 1, - anon_sym_RPAREN, + [110509] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88360] = 3, - ACTIONS(4460), 1, + ACTIONS(6010), 2, sym__lookback_semicolon, - STATE(451), 1, - sym__semicolon, + anon_sym_DOT, + [110518] = 3, + ACTIONS(5140), 1, + anon_sym_LPAREN, + STATE(3400), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88371] = 2, + [110529] = 3, + ACTIONS(6012), 1, + sym__lookback_semicolon, + STATE(765), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2781), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [88380] = 3, - ACTIONS(2871), 1, + [110540] = 3, + ACTIONS(6014), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + STATE(445), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88391] = 3, - ACTIONS(3755), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_block, + [110551] = 3, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1523), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88402] = 3, - ACTIONS(4462), 1, - anon_sym_LBRACE, - STATE(234), 1, - sym_switch_block, + [110562] = 3, + ACTIONS(5236), 1, + anon_sym_LPAREN, + STATE(3156), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88413] = 3, - ACTIONS(3751), 1, + [110573] = 3, + ACTIONS(5140), 1, anon_sym_LPAREN, - STATE(1948), 1, + STATE(229), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88424] = 3, - ACTIONS(4464), 1, - anon_sym_DOT, - ACTIONS(4466), 1, - anon_sym_QMARK, + [110584] = 3, + ACTIONS(6016), 1, + sym__lookback_semicolon, + STATE(446), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110595] = 3, + ACTIONS(5236), 1, + anon_sym_LPAREN, + STATE(3148), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88435] = 3, - ACTIONS(4468), 1, + [110606] = 3, + ACTIONS(6018), 1, anon_sym_RPAREN, - ACTIONS(4470), 1, + ACTIONS(6020), 1, anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88446] = 3, - ACTIONS(3017), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [110617] = 3, + ACTIONS(1640), 1, + anon_sym_DOT_DOT_DOT, + STATE(2488), 1, + sym__rangeOperator, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88457] = 3, - ACTIONS(3949), 1, + [110628] = 3, + ACTIONS(5432), 1, sym__lookback_semicolon, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + STATE(447), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88468] = 3, - ACTIONS(3939), 1, + [110639] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(2086), 1, + STATE(2790), 1, sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88479] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2089), 1, - sym__function_arg_list, + [110650] = 3, + ACTIONS(6022), 1, + sym__lookback_semicolon, + STATE(448), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88490] = 3, - ACTIONS(2887), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [110661] = 3, + ACTIONS(5952), 1, + anon_sym_EQ_GT, + ACTIONS(6024), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88501] = 3, - ACTIONS(3759), 1, + [110672] = 3, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(290), 1, + STATE(1805), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88512] = 3, - ACTIONS(2863), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [110683] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88523] = 3, - ACTIONS(2851), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + ACTIONS(3935), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [110692] = 3, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1531), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88534] = 3, - ACTIONS(3941), 1, - sym__lookback_semicolon, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + [110703] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5826), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88545] = 3, - ACTIONS(2831), 1, + [110714] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5360), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88556] = 3, - ACTIONS(3947), 1, + [110725] = 3, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(1311), 1, + STATE(2011), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88567] = 3, - ACTIONS(2889), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [110736] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88578] = 3, - ACTIONS(2895), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + ACTIONS(5835), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110745] = 3, + ACTIONS(5110), 1, + anon_sym_LPAREN, + STATE(338), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88589] = 3, - ACTIONS(4472), 1, - anon_sym_DOT, - ACTIONS(4474), 1, - anon_sym_QMARK, + [110756] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88600] = 2, + ACTIONS(3955), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [110765] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5486), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4125), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [88609] = 3, - ACTIONS(3501), 1, - anon_sym_DOT, - ACTIONS(3503), 1, - anon_sym_QMARK, + [110776] = 3, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2739), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88620] = 3, - ACTIONS(3649), 1, - anon_sym_DOT, - ACTIONS(3653), 1, - anon_sym_QMARK, + [110787] = 3, + ACTIONS(6026), 1, + anon_sym_LBRACE, + STATE(410), 1, + sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88631] = 3, - ACTIONS(3801), 1, - anon_sym_DOT, - ACTIONS(3805), 1, - anon_sym_QMARK, + [110798] = 2, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88642] = 3, - ACTIONS(3521), 1, + ACTIONS(6028), 2, + anon_sym_LBRACE, + anon_sym_implements, + [110807] = 3, + ACTIONS(6030), 1, anon_sym_DOT, - ACTIONS(3523), 1, + ACTIONS(6032), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88653] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4476), 1, - sym__camelCaseIdentifier, + [110818] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88664] = 3, - ACTIONS(4478), 1, - anon_sym_RPAREN, - ACTIONS(4480), 1, - anon_sym_COMMA, + [110829] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5516), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88675] = 2, + [110840] = 3, + ACTIONS(6034), 1, + anon_sym_RPAREN, + ACTIONS(6036), 1, + anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4482), 2, - anon_sym_COLON, - anon_sym_EQ_GT, - [88684] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4484), 1, - sym__camelCaseIdentifier, + [110851] = 3, + ACTIONS(6038), 1, + sym__lookback_semicolon, + STATE(677), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88695] = 3, - ACTIONS(3835), 1, + [110862] = 3, + ACTIONS(5204), 1, anon_sym_DASH_GT, - ACTIONS(4486), 1, + ACTIONS(5879), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88706] = 3, - ACTIONS(4488), 1, - anon_sym_DOT, - ACTIONS(4490), 1, - anon_sym_QMARK, + [110873] = 3, + ACTIONS(5974), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(6040), 1, + aux_sym_preprocessor_statement_token1, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88717] = 3, - ACTIONS(4492), 1, - anon_sym_DOT, - ACTIONS(4494), 1, - anon_sym_QMARK, + [110884] = 3, + ACTIONS(5084), 1, + anon_sym_LBRACE, + STATE(667), 1, + sym_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88728] = 3, - ACTIONS(3525), 1, - anon_sym_DOT, - ACTIONS(3527), 1, - anon_sym_QMARK, + [110895] = 3, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1538), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88739] = 3, - ACTIONS(3685), 1, - anon_sym_DOT, - ACTIONS(3687), 1, - anon_sym_QMARK, + [110906] = 3, + ACTIONS(5220), 1, + anon_sym_LPAREN, + STATE(1926), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88750] = 3, - ACTIONS(3939), 1, + [110917] = 3, + ACTIONS(5300), 1, anon_sym_LPAREN, - STATE(2120), 1, - sym__function_arg_list, + STATE(48), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88761] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2124), 1, - sym__function_arg_list, + [110928] = 3, + ACTIONS(6042), 1, + sym_identifier, + STATE(3179), 1, + sym_structure_type_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88772] = 3, - ACTIONS(3729), 1, - anon_sym_DOT, - ACTIONS(3731), 1, - anon_sym_QMARK, + [110939] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5849), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88783] = 3, - ACTIONS(2997), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [110950] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(6044), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88794] = 3, - ACTIONS(3741), 1, + [110961] = 3, + ACTIONS(5986), 1, + aux_sym_preprocessor_statement_token2, + ACTIONS(6046), 1, + aux_sym_preprocessor_statement_token1, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [110972] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(228), 1, - sym__arg_list, + STATE(2555), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88805] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(3988), 1, + [110983] = 3, + ACTIONS(5366), 1, sym__lookback_semicolon, + STATE(751), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88816] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4496), 1, - sym__camelCaseIdentifier, + [110994] = 3, + ACTIONS(6048), 1, + sym__lookback_semicolon, + STATE(662), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88827] = 3, - ACTIONS(3590), 1, - anon_sym_DOT, - ACTIONS(3592), 1, - anon_sym_QMARK, + [111005] = 3, + ACTIONS(5222), 1, + anon_sym_LPAREN, + STATE(1550), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88838] = 3, - ACTIONS(4498), 1, + [111016] = 3, + ACTIONS(4597), 1, anon_sym_DOT, - ACTIONS(4500), 1, + ACTIONS(4599), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88849] = 3, - ACTIONS(3835), 1, + [111027] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(59), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111038] = 3, + ACTIONS(5308), 1, anon_sym_DASH_GT, - ACTIONS(4427), 1, + ACTIONS(5526), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111049] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(6050), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88860] = 3, - ACTIONS(3562), 1, - anon_sym_DOT, - ACTIONS(4502), 1, - anon_sym_QMARK, + [111060] = 3, + ACTIONS(5398), 1, + sym__lookback_semicolon, + STATE(419), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88871] = 2, + [111071] = 3, + ACTIONS(1636), 1, + anon_sym_EQ_GT, + ACTIONS(5859), 1, + anon_sym_in, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(3999), 2, - sym__camelCaseIdentifier, - sym__pascalCaseIdentifier, - [88880] = 3, - ACTIONS(2983), 1, + [111082] = 3, + ACTIONS(5387), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + STATE(584), 1, + sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88891] = 3, - ACTIONS(4067), 1, + [111093] = 2, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + ACTIONS(5438), 2, + anon_sym_STAR, + sym__pascalCaseIdentifier, + [111102] = 3, + ACTIONS(5110), 1, anon_sym_LPAREN, - STATE(1551), 1, + STATE(390), 1, sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88902] = 3, - ACTIONS(4504), 1, + [111113] = 3, + ACTIONS(6052), 1, + sym__lookback_semicolon, + STATE(420), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111124] = 3, + ACTIONS(5194), 1, + sym__lookback_semicolon, + STATE(585), 1, + sym__semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111135] = 3, + ACTIONS(6054), 1, anon_sym_DOT, - ACTIONS(4506), 1, + ACTIONS(6056), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88913] = 3, - ACTIONS(4508), 1, + [111146] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(60), 1, + sym__parenthesized_expression, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111157] = 3, + ACTIONS(6058), 1, anon_sym_DOT, - ACTIONS(4510), 1, + ACTIONS(6060), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88924] = 3, - ACTIONS(4512), 1, + [111168] = 3, + ACTIONS(6062), 1, anon_sym_DOT, - ACTIONS(4514), 1, + ACTIONS(6064), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88935] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2891), 1, - anon_sym_RBRACK, + [111179] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(61), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88946] = 3, - ACTIONS(4516), 1, - anon_sym_DOT, - ACTIONS(4518), 1, - anon_sym_QMARK, + [111190] = 3, + ACTIONS(5308), 1, + anon_sym_DASH_GT, + ACTIONS(5342), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88957] = 3, - ACTIONS(3939), 1, + [111201] = 3, + ACTIONS(5320), 1, anon_sym_LPAREN, - STATE(2244), 1, + STATE(2581), 1, sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88968] = 3, - ACTIONS(3939), 1, + [111212] = 3, + ACTIONS(5220), 1, anon_sym_LPAREN, - STATE(2197), 1, - sym__function_arg_list, + STATE(1902), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88979] = 3, - ACTIONS(3939), 1, + [111223] = 3, + ACTIONS(5256), 1, anon_sym_LPAREN, - STATE(2202), 1, - sym__function_arg_list, + STATE(1819), 1, + sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [88990] = 3, - ACTIONS(4520), 1, - anon_sym_DOT, - ACTIONS(4522), 1, - anon_sym_QMARK, + [111234] = 3, + ACTIONS(5300), 1, + anon_sym_LPAREN, + STATE(14), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89001] = 3, - ACTIONS(4524), 1, + [111245] = 3, + ACTIONS(6066), 1, anon_sym_DOT, - ACTIONS(4526), 1, + ACTIONS(6068), 1, anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89012] = 3, - ACTIONS(3911), 1, - sym__lookback_semicolon, - ACTIONS(3978), 1, - anon_sym_DASH_GT, + [111256] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(62), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89023] = 3, - ACTIONS(2917), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111267] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(88), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89034] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2223), 1, - sym__function_arg_list, + [111278] = 3, + ACTIONS(6070), 1, + anon_sym_DOT, + ACTIONS(6072), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89045] = 3, - ACTIONS(4528), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(4530), 1, - aux_sym_preprocessor_statement_token2, + [111289] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(63), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89056] = 3, - ACTIONS(4532), 1, + [111300] = 3, + ACTIONS(6074), 1, anon_sym_LBRACE, - STATE(206), 1, + STATE(1761), 1, sym_switch_block, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89067] = 3, - ACTIONS(2961), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111311] = 3, + ACTIONS(5204), 1, + anon_sym_DASH_GT, + ACTIONS(6076), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89078] = 3, - ACTIONS(4534), 1, - sym__lookback_semicolon, - STATE(338), 1, - sym__semicolon, + [111322] = 3, + ACTIONS(6078), 1, + anon_sym_DOT, + ACTIONS(6080), 1, + anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89089] = 3, - ACTIONS(3013), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111333] = 3, + ACTIONS(5042), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__parenthesized_expression, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89100] = 3, - ACTIONS(4536), 1, - sym__lookback_semicolon, - STATE(645), 1, - sym__semicolon, + [111344] = 3, + ACTIONS(5320), 1, + anon_sym_LPAREN, + STATE(2725), 1, + sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89111] = 3, - ACTIONS(4538), 1, + [111355] = 2, + ACTIONS(6082), 1, anon_sym_DOT, - ACTIONS(4540), 1, - anon_sym_QMARK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [89122] = 3, - ACTIONS(4542), 1, - sym__lookback_semicolon, - STATE(501), 1, - sym__semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89133] = 3, - ACTIONS(2921), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111363] = 2, + ACTIONS(6084), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89144] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4046), 1, - sym__lookback_semicolon, + [111371] = 2, + ACTIONS(6086), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89155] = 3, - ACTIONS(4544), 1, + [111379] = 2, + ACTIONS(6088), 1, anon_sym_DOT, - ACTIONS(4546), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89166] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4548), 1, + [111387] = 2, + ACTIONS(6090), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89177] = 3, - ACTIONS(2949), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111395] = 2, + ACTIONS(6092), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89188] = 3, - ACTIONS(2366), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111403] = 2, + ACTIONS(6094), 1, + ts_builtin_sym_end, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89199] = 3, - ACTIONS(1628), 1, - anon_sym_EQ_GT, - ACTIONS(4482), 1, - anon_sym_COLON, + [111411] = 2, + ACTIONS(5304), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89210] = 3, - ACTIONS(2861), 1, + [111419] = 2, + ACTIONS(3691), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89221] = 3, - ACTIONS(2977), 1, + [111427] = 2, + ACTIONS(4165), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89232] = 3, - ACTIONS(2951), 1, + [111435] = 2, + ACTIONS(6096), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89243] = 2, + [111443] = 2, + ACTIONS(6098), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4550), 2, - anon_sym_LBRACE, - anon_sym_implements, - [89252] = 3, - ACTIONS(3751), 1, + [111451] = 2, + ACTIONS(6100), 1, anon_sym_LPAREN, - STATE(305), 1, - sym__arg_list, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [89263] = 3, - ACTIONS(2885), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89274] = 3, - ACTIONS(3477), 1, - anon_sym_DOT, - ACTIONS(3479), 1, - anon_sym_QMARK, + [111459] = 2, + ACTIONS(5760), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89285] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4075), 1, - sym__lookback_semicolon, + [111467] = 2, + ACTIONS(6102), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89296] = 3, - ACTIONS(4552), 1, - aux_sym_preprocessor_statement_token1, - ACTIONS(4554), 1, - aux_sym_preprocessor_statement_token2, + [111475] = 2, + ACTIONS(5716), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89307] = 3, - ACTIONS(2937), 1, + [111483] = 2, + ACTIONS(4197), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89318] = 2, + [111491] = 2, + ACTIONS(6104), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2815), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - [89327] = 3, - ACTIONS(2855), 1, + [111499] = 2, + ACTIONS(6106), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89338] = 3, - ACTIONS(3001), 1, + [111507] = 2, + ACTIONS(4045), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [89349] = 3, - ACTIONS(3751), 1, - anon_sym_LPAREN, - STATE(237), 1, - sym__arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89360] = 3, - ACTIONS(2364), 1, + [111515] = 2, + ACTIONS(6108), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89371] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2879), 1, - anon_sym_RBRACK, + [111523] = 2, + ACTIONS(4093), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89382] = 3, - ACTIONS(3015), 1, + [111531] = 2, + ACTIONS(4205), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89393] = 3, - ACTIONS(3021), 1, + [111539] = 2, + ACTIONS(4301), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89404] = 3, - ACTIONS(3225), 1, + [111547] = 2, + ACTIONS(6110), 1, anon_sym_DOT, - ACTIONS(3227), 1, - anon_sym_QMARK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89415] = 3, - ACTIONS(3733), 1, - anon_sym_LBRACE, - STATE(635), 1, - sym_block, + [111555] = 2, + ACTIONS(6112), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89426] = 3, - ACTIONS(2971), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111563] = 2, + ACTIONS(4207), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89437] = 3, - ACTIONS(2853), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111571] = 2, + ACTIONS(4113), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89448] = 3, - ACTIONS(3025), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111579] = 2, + ACTIONS(5766), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89459] = 3, - ACTIONS(3009), 1, + [111587] = 2, + ACTIONS(2665), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89470] = 2, + [111595] = 2, + ACTIONS(2625), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4229), 2, + [111603] = 2, + ACTIONS(6114), 1, anon_sym_RPAREN, - anon_sym_COMMA, - [89479] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2111), 1, - sym__function_arg_list, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89490] = 3, - ACTIONS(2877), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111611] = 2, + ACTIONS(5768), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89501] = 3, - ACTIONS(2963), 1, + [111619] = 2, + ACTIONS(4267), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89512] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2123), 1, - sym__function_arg_list, + [111627] = 2, + ACTIONS(4257), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89523] = 3, - ACTIONS(2955), 1, + [111635] = 2, + ACTIONS(6116), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89534] = 3, - ACTIONS(4176), 1, + [111643] = 2, + ACTIONS(6118), 1, anon_sym_LPAREN, - STATE(1243), 1, - sym__arg_list, - ACTIONS(3), 2, - sym__closing_brace_unmarker, - sym_comment, - [89545] = 3, - ACTIONS(4556), 1, - sym_identifier, - STATE(2593), 1, - sym_structure_type_pair, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89556] = 3, - ACTIONS(2909), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111651] = 2, + ACTIONS(4269), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89567] = 3, - ACTIONS(2875), 1, + [111659] = 2, + ACTIONS(4061), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89578] = 3, - ACTIONS(4558), 1, - anon_sym_LBRACE, - STATE(1309), 1, - sym_switch_block, + [111667] = 2, + ACTIONS(6120), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89589] = 3, - ACTIONS(2859), 1, + [111675] = 2, + ACTIONS(4159), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89600] = 3, - ACTIONS(2869), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111683] = 2, + ACTIONS(6122), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89611] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4560), 1, - sym__camelCaseIdentifier, + [111691] = 2, + ACTIONS(4115), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89622] = 3, - ACTIONS(2819), 1, + [111699] = 2, + ACTIONS(3671), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89633] = 3, - ACTIONS(2897), 1, + [111707] = 2, + ACTIONS(4029), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89644] = 3, - ACTIONS(2865), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111715] = 2, + ACTIONS(6124), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89655] = 3, - ACTIONS(3978), 1, - anon_sym_DASH_GT, - ACTIONS(4183), 1, + [111723] = 2, + ACTIONS(3981), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89666] = 2, + [111731] = 2, + ACTIONS(5779), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4562), 2, - sym__lookback_semicolon, - anon_sym_DOT, - [89675] = 3, - ACTIONS(4564), 1, - sym__lookback_semicolon, - STATE(527), 1, - sym__semicolon, + [111739] = 2, + ACTIONS(6126), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89686] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4566), 1, + [111747] = 2, + ACTIONS(6128), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89697] = 3, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, - ACTIONS(4568), 1, - sym__camelCaseIdentifier, + [111755] = 2, + ACTIONS(4001), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89708] = 3, - ACTIONS(4570), 1, - anon_sym_LBRACE, - STATE(293), 1, - sym_switch_block, + [111763] = 2, + ACTIONS(4315), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89719] = 3, - ACTIONS(2925), 1, + [111771] = 2, + ACTIONS(4131), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89730] = 3, - ACTIONS(3759), 1, - anon_sym_LPAREN, - STATE(228), 1, - sym__arg_list, + [111779] = 2, + ACTIONS(6130), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89741] = 3, - ACTIONS(3529), 1, - anon_sym_DOT, - ACTIONS(3531), 1, - anon_sym_QMARK, + [111787] = 2, + ACTIONS(4199), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89752] = 2, + [111795] = 2, + ACTIONS(5322), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4572), 2, - sym__lookback_semicolon, + [111803] = 2, + ACTIONS(6132), 1, anon_sym_DOT, - [89761] = 3, - ACTIONS(3035), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89772] = 3, - ACTIONS(4574), 1, + [111811] = 2, + ACTIONS(5894), 1, anon_sym_RPAREN, - ACTIONS(4576), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89783] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4578), 1, - anon_sym_RPAREN, + [111819] = 2, + ACTIONS(6134), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89794] = 3, - ACTIONS(3011), 1, + [111827] = 2, + ACTIONS(4019), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89805] = 3, - ACTIONS(2915), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111835] = 2, + ACTIONS(5785), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89816] = 2, + [111843] = 2, + ACTIONS(6136), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4281), 2, - sym__closing_brace_marker, - anon_sym_COMMA, - [89825] = 3, - ACTIONS(4482), 1, - anon_sym_EQ_GT, - ACTIONS(4580), 1, - anon_sym_COLON, + [111851] = 2, + ACTIONS(6138), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89836] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2931), 1, - anon_sym_RBRACK, + [111859] = 2, + ACTIONS(4189), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89847] = 2, + [111867] = 2, + ACTIONS(6140), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(2773), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [89856] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2903), 1, - anon_sym_RBRACK, + [111875] = 2, + ACTIONS(6142), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89867] = 3, - ACTIONS(2905), 1, + [111883] = 2, + ACTIONS(4031), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89878] = 3, - ACTIONS(4554), 1, - aux_sym_preprocessor_statement_token2, - ACTIONS(4582), 1, - aux_sym_preprocessor_statement_token1, + [111891] = 2, + ACTIONS(4139), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89889] = 3, - ACTIONS(2899), 1, + [111899] = 2, + ACTIONS(6144), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111907] = 2, + ACTIONS(2643), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89900] = 3, - ACTIONS(3835), 1, - anon_sym_DASH_GT, - ACTIONS(4584), 1, + [111915] = 2, + ACTIONS(6146), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [111923] = 2, + ACTIONS(5573), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89911] = 3, - ACTIONS(2849), 1, + [111931] = 2, + ACTIONS(5455), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89922] = 3, - ACTIONS(2939), 1, + [111939] = 2, + ACTIONS(4137), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89933] = 3, - ACTIONS(2857), 1, + [111947] = 2, + ACTIONS(4181), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89944] = 3, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(323), 1, - sym_block, + [111955] = 2, + ACTIONS(6148), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89955] = 3, - ACTIONS(2825), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111963] = 2, + ACTIONS(6150), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89966] = 3, - ACTIONS(2841), 1, - sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, + [111971] = 2, + ACTIONS(6152), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89977] = 3, - ACTIONS(4586), 1, + [111979] = 2, + ACTIONS(5726), 1, anon_sym_RPAREN, - ACTIONS(4588), 1, - anon_sym_COMMA, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89988] = 3, - ACTIONS(4159), 1, - anon_sym_LPAREN, - STATE(237), 1, - sym__arg_list, + [111987] = 2, + ACTIONS(6154), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [89999] = 2, + [111995] = 2, + ACTIONS(6156), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - ACTIONS(4590), 2, - anon_sym_LBRACE, - anon_sym_extends, - [90008] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2098), 1, - sym__function_arg_list, + [112003] = 2, + ACTIONS(4151), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90019] = 3, - ACTIONS(3743), 1, - anon_sym_LBRACE, - STATE(486), 1, - sym_block, + [112011] = 2, + ACTIONS(6158), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90030] = 3, - ACTIONS(1468), 1, - anon_sym_LBRACK, - ACTIONS(2913), 1, - anon_sym_RBRACE, + [112019] = 2, + ACTIONS(4201), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112027] = 2, + ACTIONS(6160), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90041] = 3, - ACTIONS(2839), 1, + [112035] = 2, + ACTIONS(4091), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90052] = 3, - ACTIONS(3939), 1, - anon_sym_LPAREN, - STATE(2103), 1, - sym__function_arg_list, + [112043] = 2, + ACTIONS(6162), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112051] = 2, + ACTIONS(4047), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90063] = 3, - ACTIONS(2883), 1, + [112059] = 2, + ACTIONS(6164), 1, sym__lookback_semicolon, - ACTIONS(3207), 1, - anon_sym_LBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90074] = 3, - ACTIONS(4592), 1, - anon_sym_LBRACE, - STATE(268), 1, - sym_switch_block, + [112067] = 2, + ACTIONS(4209), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90085] = 2, - ACTIONS(4594), 1, - sym__lookback_semicolon, + [112075] = 2, + ACTIONS(3983), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90093] = 2, - ACTIONS(4596), 1, + [112083] = 2, + ACTIONS(6166), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90101] = 2, - ACTIONS(4598), 1, - anon_sym_RPAREN, + [112091] = 2, + ACTIONS(6168), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90109] = 2, - ACTIONS(4600), 1, + [112099] = 2, + ACTIONS(6170), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90117] = 2, - ACTIONS(4602), 1, + [112107] = 2, + ACTIONS(4015), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90125] = 2, - ACTIONS(2857), 1, + [112115] = 2, + ACTIONS(4121), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90133] = 2, - ACTIONS(4604), 1, - anon_sym_RBRACE, + [112123] = 2, + ACTIONS(6172), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90141] = 2, - ACTIONS(4606), 1, - anon_sym_RPAREN, + [112131] = 2, + ACTIONS(6174), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90149] = 2, - ACTIONS(2841), 1, - sym__lookback_semicolon, + [112139] = 2, + ACTIONS(5952), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90157] = 2, - ACTIONS(4608), 1, + [112147] = 2, + ACTIONS(4171), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90165] = 2, - ACTIONS(2867), 1, + [112155] = 2, + ACTIONS(4065), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90173] = 2, - ACTIONS(2839), 1, + [112163] = 2, + ACTIONS(3273), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90181] = 2, - ACTIONS(4610), 1, + [112171] = 2, + ACTIONS(4017), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90189] = 2, - ACTIONS(2913), 1, - anon_sym_RBRACE, + [112179] = 2, + ACTIONS(6176), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90197] = 2, - ACTIONS(2883), 1, + [112187] = 2, + ACTIONS(4271), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90205] = 2, - ACTIONS(1592), 1, + [112195] = 2, + ACTIONS(4123), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90213] = 2, - ACTIONS(2899), 1, + [112203] = 2, + ACTIONS(4179), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90221] = 2, - ACTIONS(2853), 1, - sym__lookback_semicolon, + [112211] = 2, + ACTIONS(6178), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90229] = 2, - ACTIONS(4183), 1, - sym__lookback_semicolon, + [112219] = 2, + ACTIONS(6180), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90237] = 2, - ACTIONS(4612), 1, + [112227] = 2, + ACTIONS(6182), 1, anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90245] = 2, - ACTIONS(2577), 1, + [112235] = 2, + ACTIONS(4097), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112243] = 2, + ACTIONS(4235), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90253] = 2, - ACTIONS(4614), 1, - anon_sym_DASH_GT, + [112251] = 2, + ACTIONS(6184), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90261] = 2, - ACTIONS(2825), 1, + [112259] = 2, + ACTIONS(6186), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90269] = 2, - ACTIONS(2907), 1, - anon_sym_RBRACK, + [112267] = 2, + ACTIONS(4081), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90277] = 2, - ACTIONS(2905), 1, + [112275] = 2, + ACTIONS(4211), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90285] = 2, - ACTIONS(4189), 1, - anon_sym_RBRACK, + [112283] = 2, + ACTIONS(6010), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90293] = 2, - ACTIONS(2849), 1, - sym__lookback_semicolon, + [112291] = 2, + ACTIONS(4003), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90301] = 2, - ACTIONS(4616), 1, - sym__lookback_semicolon, + [112299] = 2, + ACTIONS(6188), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90309] = 2, - ACTIONS(4618), 1, - anon_sym_EQ, + [112307] = 2, + ACTIONS(5457), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90317] = 2, - ACTIONS(2903), 1, + [112315] = 2, + ACTIONS(3789), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90325] = 2, - ACTIONS(4620), 1, - sym__lookback_semicolon, + [112323] = 2, + ACTIONS(5818), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90333] = 2, - ACTIONS(4622), 1, - sym__rangeOperator, + [112331] = 2, + ACTIONS(4187), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90341] = 2, - ACTIONS(2915), 1, + [112339] = 2, + ACTIONS(3345), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90349] = 2, - ACTIONS(4624), 1, - sym__rangeOperator, + [112347] = 2, + ACTIONS(6190), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90357] = 2, - ACTIONS(4244), 1, - anon_sym_DOT, + [112355] = 2, + ACTIONS(3987), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90365] = 2, - ACTIONS(2931), 1, - anon_sym_RBRACK, + [112363] = 2, + ACTIONS(4223), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90373] = 2, - ACTIONS(1598), 1, - sym__lookback_semicolon, + [112371] = 2, + ACTIONS(6192), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90381] = 2, - ACTIONS(4626), 1, - sym__lookback_semicolon, + [112379] = 2, + ACTIONS(6194), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90389] = 2, - ACTIONS(4628), 1, - sym__lookback_semicolon, + [112387] = 2, + ACTIONS(6196), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90397] = 2, - ACTIONS(4630), 1, + [112395] = 2, + ACTIONS(6198), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90405] = 2, - ACTIONS(4632), 1, + [112403] = 2, + ACTIONS(4247), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90413] = 2, - ACTIONS(2923), 1, + [112411] = 2, + ACTIONS(3449), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90421] = 2, - ACTIONS(4634), 1, - sym__lookback_semicolon, + [112419] = 2, + ACTIONS(6200), 1, + anon_sym_EQ, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90429] = 2, - ACTIONS(2605), 1, - anon_sym_RBRACK, + [112427] = 2, + ACTIONS(6202), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90437] = 2, - ACTIONS(4636), 1, - anon_sym_COLON, + [112435] = 2, + ACTIONS(4227), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90445] = 2, - ACTIONS(4638), 1, + [112443] = 2, + ACTIONS(6204), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90453] = 2, - ACTIONS(3035), 1, - sym__lookback_semicolon, + [112451] = 2, + ACTIONS(6206), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90461] = 2, - ACTIONS(3011), 1, + [112459] = 2, + ACTIONS(4229), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90469] = 2, - ACTIONS(4640), 1, + [112467] = 2, + ACTIONS(4101), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90477] = 2, - ACTIONS(4208), 1, - anon_sym_RBRACK, + [112475] = 2, + ACTIONS(4145), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90485] = 2, - ACTIONS(2935), 1, - anon_sym_RBRACK, + [112483] = 2, + ACTIONS(4149), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90493] = 2, - ACTIONS(4642), 1, - sym__rangeOperator, + [112491] = 2, + ACTIONS(6208), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90501] = 2, - ACTIONS(2925), 1, - sym__lookback_semicolon, + [112499] = 2, + ACTIONS(5734), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90509] = 2, - ACTIONS(4644), 1, - anon_sym_RPAREN, + [112507] = 2, + ACTIONS(2637), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90517] = 2, - ACTIONS(2945), 1, - sym__lookback_semicolon, + [112515] = 2, + ACTIONS(3779), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90525] = 2, - ACTIONS(2927), 1, - sym__lookback_semicolon, + [112523] = 2, + ACTIONS(6210), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90533] = 2, - ACTIONS(4646), 1, - anon_sym_DOT, + [112531] = 2, + ACTIONS(6212), 1, + anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90541] = 2, - ACTIONS(4648), 1, + [112539] = 2, + ACTIONS(3229), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90549] = 2, - ACTIONS(2939), 1, - sym__lookback_semicolon, + [112547] = 2, + ACTIONS(6214), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90557] = 2, - ACTIONS(4650), 1, + [112555] = 2, + ACTIONS(4245), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90565] = 2, - ACTIONS(4652), 1, - sym__rangeOperator, + [112563] = 2, + ACTIONS(6216), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90573] = 2, - ACTIONS(4654), 1, + [112571] = 2, + ACTIONS(6218), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90581] = 2, - ACTIONS(4656), 1, - sym__lookback_semicolon, + [112579] = 2, + ACTIONS(6220), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90589] = 2, - ACTIONS(2819), 1, - sym__lookback_semicolon, + [112587] = 2, + ACTIONS(3793), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90597] = 2, - ACTIONS(4658), 1, - anon_sym_RBRACE, + [112595] = 2, + ACTIONS(6222), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90605] = 2, - ACTIONS(4660), 1, + [112603] = 2, + ACTIONS(4127), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90613] = 2, - ACTIONS(2929), 1, - sym__lookback_semicolon, + [112611] = 2, + ACTIONS(6224), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90621] = 2, - ACTIONS(4662), 1, + [112619] = 2, + ACTIONS(2631), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90629] = 2, - ACTIONS(2897), 1, + [112627] = 2, + ACTIONS(4037), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90637] = 2, - ACTIONS(4664), 1, + [112635] = 2, + ACTIONS(3463), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90645] = 2, - ACTIONS(4666), 1, - anon_sym_RPAREN, + [112643] = 2, + ACTIONS(6226), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90653] = 2, - ACTIONS(4668), 1, - anon_sym_RBRACE, + [112651] = 2, + ACTIONS(5196), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90661] = 2, - ACTIONS(2865), 1, + [112659] = 2, + ACTIONS(6228), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90669] = 2, - ACTIONS(3003), 1, - sym__lookback_semicolon, + [112667] = 2, + ACTIONS(6230), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90677] = 2, - ACTIONS(4670), 1, - anon_sym_RPAREN, + [112675] = 2, + ACTIONS(3835), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90685] = 2, - ACTIONS(3027), 1, + [112683] = 2, + ACTIONS(6232), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90693] = 2, - ACTIONS(2875), 1, - sym__lookback_semicolon, + [112691] = 2, + ACTIONS(6234), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90701] = 2, - ACTIONS(2947), 1, - sym__lookback_semicolon, + [112699] = 2, + ACTIONS(6236), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90709] = 2, - ACTIONS(3007), 1, - sym__lookback_semicolon, + [112707] = 2, + ACTIONS(6238), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90717] = 2, - ACTIONS(2869), 1, + [112715] = 2, + ACTIONS(4233), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90725] = 2, - ACTIONS(4672), 1, - sym__lookback_semicolon, + [112723] = 2, + ACTIONS(6240), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90733] = 2, - ACTIONS(2955), 1, + [112731] = 2, + ACTIONS(4103), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90741] = 2, - ACTIONS(2879), 1, + [112739] = 2, + ACTIONS(4111), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90749] = 2, - ACTIONS(2893), 1, + [112747] = 2, + ACTIONS(6242), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112755] = 2, + ACTIONS(6244), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90757] = 2, - ACTIONS(2963), 1, + [112763] = 2, + ACTIONS(4161), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90765] = 2, - ACTIONS(4674), 1, - sym__lookback_semicolon, + [112771] = 2, + ACTIONS(6246), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90773] = 2, - ACTIONS(4676), 1, + [112779] = 2, + ACTIONS(4009), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90781] = 2, - ACTIONS(2971), 1, + [112787] = 2, + ACTIONS(4213), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90789] = 2, - ACTIONS(3009), 1, - sym__lookback_semicolon, + [112795] = 2, + ACTIONS(4055), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90797] = 2, - ACTIONS(4678), 1, + [112803] = 2, + ACTIONS(3995), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90805] = 2, - ACTIONS(2877), 1, + [112811] = 2, + ACTIONS(6248), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90813] = 2, - ACTIONS(3025), 1, + [112819] = 2, + ACTIONS(6250), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112827] = 2, + ACTIONS(4215), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90821] = 2, - ACTIONS(4680), 1, + [112835] = 2, + ACTIONS(4119), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90829] = 2, - ACTIONS(4682), 1, - anon_sym_RBRACE, + [112843] = 2, + ACTIONS(6252), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90837] = 2, - ACTIONS(4684), 1, + [112851] = 2, + ACTIONS(4025), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90845] = 2, - ACTIONS(4686), 1, - sym__lookback_semicolon, + [112859] = 2, + ACTIONS(6254), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90853] = 2, - ACTIONS(4688), 1, + [112867] = 2, + ACTIONS(4011), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90861] = 2, - ACTIONS(2909), 1, + [112875] = 2, + ACTIONS(5360), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90869] = 2, - ACTIONS(3015), 1, + [112883] = 2, + ACTIONS(6256), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90877] = 2, - ACTIONS(4690), 1, + [112891] = 2, + ACTIONS(6258), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90885] = 2, - ACTIONS(2999), 1, + [112899] = 2, + ACTIONS(6260), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112907] = 2, + ACTIONS(3993), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90893] = 2, - ACTIONS(4692), 1, - anon_sym_DOT, + [112915] = 2, + ACTIONS(5416), 1, + anon_sym_EQ_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90901] = 2, - ACTIONS(2993), 1, - sym__lookback_semicolon, + [112923] = 2, + ACTIONS(6262), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90909] = 2, - ACTIONS(4694), 1, + [112931] = 2, + ACTIONS(6264), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90917] = 2, - ACTIONS(4696), 1, - anon_sym_EQ, + [112939] = 2, + ACTIONS(4007), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90925] = 2, - ACTIONS(4698), 1, + [112947] = 2, + ACTIONS(4253), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90933] = 2, - ACTIONS(4700), 1, - anon_sym_RPAREN, + [112955] = 2, + ACTIONS(4023), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90941] = 2, - ACTIONS(3021), 1, + [112963] = 2, + ACTIONS(4167), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90949] = 2, - ACTIONS(4702), 1, + [112971] = 2, + ACTIONS(4255), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [112979] = 2, + ACTIONS(3985), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90957] = 2, - ACTIONS(4704), 1, + [112987] = 2, + ACTIONS(4217), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90965] = 2, - ACTIONS(4706), 1, - ts_builtin_sym_end, + [112995] = 2, + ACTIONS(5350), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90973] = 2, - ACTIONS(4708), 1, + [113003] = 2, + ACTIONS(4259), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90981] = 2, - ACTIONS(4710), 1, - sym__lookback_semicolon, + [113011] = 2, + ACTIONS(5740), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90989] = 2, - ACTIONS(3023), 1, + [113019] = 2, + ACTIONS(4219), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [90997] = 2, - ACTIONS(2957), 1, + [113027] = 2, + ACTIONS(4261), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91005] = 2, - ACTIONS(3019), 1, + [113035] = 2, + ACTIONS(4191), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91013] = 2, - ACTIONS(2855), 1, + [113043] = 2, + ACTIONS(4033), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91021] = 2, - ACTIONS(2951), 1, + [113051] = 2, + ACTIONS(5516), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91029] = 2, - ACTIONS(4712), 1, + [113059] = 2, + ACTIONS(4263), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91037] = 2, - ACTIONS(4075), 1, + [113067] = 2, + ACTIONS(4073), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91045] = 2, - ACTIONS(2843), 1, + [113075] = 2, + ACTIONS(3461), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91053] = 2, - ACTIONS(2861), 1, + [113083] = 2, + ACTIONS(4059), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91061] = 2, - ACTIONS(4714), 1, + [113091] = 2, + ACTIONS(6266), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91069] = 2, - ACTIONS(4716), 1, - anon_sym_DOT, + [113099] = 2, + ACTIONS(4117), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91077] = 2, - ACTIONS(2366), 1, + [113107] = 2, + ACTIONS(4249), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91085] = 2, - ACTIONS(4718), 1, + [113115] = 2, + ACTIONS(6268), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91093] = 2, - ACTIONS(2885), 1, + [113123] = 2, + ACTIONS(5589), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113131] = 2, + ACTIONS(4043), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91101] = 2, - ACTIONS(4720), 1, - anon_sym_COLON, + [113139] = 2, + ACTIONS(5742), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91109] = 2, - ACTIONS(2949), 1, + [113147] = 2, + ACTIONS(4295), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91117] = 2, - ACTIONS(4722), 1, - anon_sym_RBRACE, + [113155] = 2, + ACTIONS(4027), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91125] = 2, - ACTIONS(4724), 1, - anon_sym_DASH_GT, + [113163] = 2, + ACTIONS(6270), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91133] = 2, - ACTIONS(2917), 1, + [113171] = 2, + ACTIONS(4125), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91141] = 2, - ACTIONS(2937), 1, + [113179] = 2, + ACTIONS(4079), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91149] = 2, - ACTIONS(4726), 1, - anon_sym_DASH_GT, + [113187] = 2, + ACTIONS(4035), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91157] = 2, - ACTIONS(4728), 1, + [113195] = 2, + ACTIONS(6272), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91165] = 2, - ACTIONS(2973), 1, + [113203] = 2, + ACTIONS(6274), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113211] = 2, + ACTIONS(4083), 1, + anon_sym_while, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113219] = 2, + ACTIONS(6276), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113227] = 2, + ACTIONS(4075), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91173] = 2, - ACTIONS(4730), 1, + [113235] = 2, + ACTIONS(4273), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91181] = 2, - ACTIONS(2953), 1, + [113243] = 2, + ACTIONS(6278), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91189] = 2, - ACTIONS(4732), 1, - anon_sym_DOT, + [113251] = 2, + ACTIONS(4085), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91197] = 2, - ACTIONS(4734), 1, - anon_sym_DASH_GT, + [113259] = 2, + ACTIONS(4275), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91205] = 2, - ACTIONS(2911), 1, - anon_sym_RBRACK, + [113267] = 2, + ACTIONS(6280), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91213] = 2, - ACTIONS(2821), 1, + [113275] = 2, + ACTIONS(4133), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91221] = 2, - ACTIONS(2933), 1, - sym__lookback_semicolon, + [113283] = 2, + ACTIONS(6282), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91229] = 2, - ACTIONS(2921), 1, - sym__lookback_semicolon, + [113291] = 2, + ACTIONS(3991), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91237] = 2, - ACTIONS(4736), 1, - anon_sym_RBRACE, + [113299] = 2, + ACTIONS(5744), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91245] = 2, - ACTIONS(3013), 1, + [113307] = 2, + ACTIONS(4185), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91253] = 2, - ACTIONS(4738), 1, - anon_sym_DOT, + [113315] = 2, + ACTIONS(4021), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91261] = 2, - ACTIONS(4740), 1, - anon_sym_DOT, + [113323] = 2, + ACTIONS(3759), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91269] = 2, - ACTIONS(4742), 1, - anon_sym_DOT, + [113331] = 2, + ACTIONS(4277), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113339] = 2, + ACTIONS(6284), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91277] = 2, - ACTIONS(4046), 1, + [113347] = 2, + ACTIONS(4053), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91285] = 2, - ACTIONS(4744), 1, - anon_sym_RPAREN, + [113355] = 2, + ACTIONS(4193), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91293] = 2, - ACTIONS(4746), 1, - anon_sym_RBRACE, + [113363] = 2, + ACTIONS(4129), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91301] = 2, - ACTIONS(2961), 1, - sym__lookback_semicolon, + [113371] = 2, + ACTIONS(6286), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91309] = 2, - ACTIONS(4748), 1, + [113379] = 2, + ACTIONS(6288), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91317] = 2, - ACTIONS(4750), 1, - anon_sym_DOT, + [113387] = 2, + ACTIONS(5851), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91325] = 2, - ACTIONS(4752), 1, - anon_sym_DOT, + [113395] = 2, + ACTIONS(4041), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113403] = 2, + ACTIONS(6290), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91333] = 2, - ACTIONS(2975), 1, + [113411] = 2, + ACTIONS(4221), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91341] = 2, - ACTIONS(2895), 1, + [113419] = 2, + ACTIONS(4251), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91349] = 2, - ACTIONS(4305), 1, - anon_sym_RBRACK, + [113427] = 2, + ACTIONS(3979), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91357] = 2, - ACTIONS(2969), 1, + [113435] = 2, + ACTIONS(4203), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91365] = 2, - ACTIONS(4754), 1, - anon_sym_DOT, + [113443] = 2, + ACTIONS(5748), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91373] = 2, - ACTIONS(4756), 1, - anon_sym_DOT, + [113451] = 2, + ACTIONS(6292), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91381] = 2, - ACTIONS(3001), 1, + [113459] = 2, + ACTIONS(3989), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91389] = 2, - ACTIONS(4204), 1, - anon_sym_DOT, + [113467] = 2, + ACTIONS(4049), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91397] = 2, - ACTIONS(4758), 1, + [113475] = 2, + ACTIONS(4141), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91405] = 2, - ACTIONS(4760), 1, - anon_sym_DOT, + [113483] = 2, + ACTIONS(4173), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91413] = 2, - ACTIONS(4762), 1, - anon_sym_DOT, + [113491] = 2, + ACTIONS(4051), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91421] = 2, - ACTIONS(4764), 1, - anon_sym_DOT, + [113499] = 2, + ACTIONS(4157), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91429] = 2, - ACTIONS(4766), 1, + [113507] = 2, + ACTIONS(6294), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91437] = 2, - ACTIONS(4768), 1, - anon_sym_DOT, + [113515] = 2, + ACTIONS(4279), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91445] = 2, - ACTIONS(4770), 1, - anon_sym_DOT, + [113523] = 2, + ACTIONS(6296), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91453] = 2, - ACTIONS(2891), 1, - anon_sym_RBRACK, + [113531] = 2, + ACTIONS(4067), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91461] = 2, - ACTIONS(4772), 1, + [113539] = 2, + ACTIONS(4281), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91469] = 2, - ACTIONS(4774), 1, + [113547] = 2, + ACTIONS(6298), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91477] = 2, - ACTIONS(4776), 1, - anon_sym_DOT, + [113555] = 2, + ACTIONS(6300), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91485] = 2, - ACTIONS(4778), 1, - sym__rangeOperator, + [113563] = 2, + ACTIONS(6302), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91493] = 2, - ACTIONS(4005), 1, + [113571] = 2, + ACTIONS(4283), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91501] = 2, - ACTIONS(4780), 1, + [113579] = 2, + ACTIONS(6304), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91509] = 2, - ACTIONS(4782), 1, - anon_sym_DOT, + [113587] = 2, + ACTIONS(6306), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91517] = 2, - ACTIONS(4784), 1, - anon_sym_RBRACE, + [113595] = 2, + ACTIONS(4285), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91525] = 2, - ACTIONS(2977), 1, + [113603] = 2, + ACTIONS(3455), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91533] = 2, - ACTIONS(4786), 1, - anon_sym_DOT, + [113611] = 2, + ACTIONS(6308), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113619] = 2, + ACTIONS(4225), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91541] = 2, - ACTIONS(4788), 1, + [113627] = 2, + ACTIONS(4287), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113635] = 2, + ACTIONS(6310), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91549] = 2, - ACTIONS(4790), 1, - anon_sym_DASH_GT, + [113643] = 2, + ACTIONS(6312), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91557] = 2, - ACTIONS(4792), 1, + [113651] = 2, + ACTIONS(4289), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91565] = 2, - ACTIONS(4794), 1, - anon_sym_DOT, + [113659] = 2, + ACTIONS(5526), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91573] = 2, - ACTIONS(4796), 1, + [113667] = 2, + ACTIONS(6314), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91581] = 2, - ACTIONS(3005), 1, + [113675] = 2, + ACTIONS(3189), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91589] = 2, - ACTIONS(4798), 1, + [113683] = 2, + ACTIONS(4057), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91597] = 2, - ACTIONS(4800), 1, - anon_sym_DOT, + [113691] = 2, + ACTIONS(5867), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91605] = 2, - ACTIONS(4802), 1, - anon_sym_DOT, + [113699] = 2, + ACTIONS(6316), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91613] = 2, - ACTIONS(2995), 1, - anon_sym_RBRACE, + [113707] = 2, + ACTIONS(5470), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91621] = 2, - ACTIONS(3988), 1, + [113715] = 2, + ACTIONS(4039), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91629] = 2, - ACTIONS(4804), 1, - anon_sym_DOT, + [113723] = 2, + ACTIONS(4099), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91637] = 2, - ACTIONS(4806), 1, - anon_sym_DOT, + [113731] = 2, + ACTIONS(6318), 1, + anon_sym_DASH_GT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [113739] = 2, + ACTIONS(3997), 1, + anon_sym_while, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91645] = 2, - ACTIONS(4808), 1, + [113747] = 2, + ACTIONS(4143), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91653] = 2, - ACTIONS(4810), 1, + [113755] = 2, + ACTIONS(4195), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91661] = 2, - ACTIONS(4812), 1, - anon_sym_DOT, + [113763] = 2, + ACTIONS(6320), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91669] = 2, - ACTIONS(4814), 1, - anon_sym_DOT, + [113771] = 2, + ACTIONS(4109), 1, + anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91677] = 2, - ACTIONS(4816), 1, + [113779] = 2, + ACTIONS(6322), 1, anon_sym_COLON, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91685] = 2, - ACTIONS(2997), 1, + [113787] = 2, + ACTIONS(6324), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91693] = 2, - ACTIONS(4818), 1, - anon_sym_DOT, + [113795] = 2, + ACTIONS(4175), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91701] = 2, - ACTIONS(4820), 1, + [113803] = 2, + ACTIONS(6326), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91709] = 2, - ACTIONS(2597), 1, - anon_sym_RBRACK, + [113811] = 2, + ACTIONS(6328), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91717] = 2, - ACTIONS(4822), 1, + [113819] = 2, + ACTIONS(4319), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91725] = 2, - ACTIONS(4824), 1, + [113827] = 2, + ACTIONS(6330), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91733] = 2, - ACTIONS(4826), 1, - anon_sym_DOT, + [113835] = 2, + ACTIONS(3451), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91741] = 2, - ACTIONS(4828), 1, - anon_sym_RPAREN, + [113843] = 2, + ACTIONS(3442), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91749] = 2, - ACTIONS(4458), 1, - sym__pascalCaseIdentifier, + [113851] = 2, + ACTIONS(6332), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91757] = 2, - ACTIONS(4830), 1, - anon_sym_DOT, + [113859] = 2, + ACTIONS(4177), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91765] = 2, - ACTIONS(4832), 1, - anon_sym_DOT, + [113867] = 2, + ACTIONS(4005), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91773] = 2, - ACTIONS(4834), 1, + [113875] = 2, + ACTIONS(6334), 1, anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91781] = 2, - ACTIONS(4836), 1, + [113883] = 2, + ACTIONS(6336), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91789] = 2, - ACTIONS(4838), 1, - anon_sym_DOT, + [113891] = 2, + ACTIONS(4291), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91797] = 2, - ACTIONS(4840), 1, - anon_sym_DOT, + [113899] = 2, + ACTIONS(6338), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91805] = 2, - ACTIONS(4842), 1, + [113907] = 2, + ACTIONS(4231), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91813] = 2, - ACTIONS(4482), 1, - anon_sym_EQ_GT, + [113915] = 2, + ACTIONS(4293), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91821] = 2, - ACTIONS(4844), 1, + [113923] = 2, + ACTIONS(6340), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91829] = 2, - ACTIONS(4846), 1, - anon_sym_DOT, + [113931] = 2, + ACTIONS(6342), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91837] = 2, - ACTIONS(4848), 1, - anon_sym_DOT, + [113939] = 2, + ACTIONS(5342), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91845] = 2, - ACTIONS(4850), 1, - anon_sym_DASH_GT, + [113947] = 2, + ACTIONS(4297), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91853] = 2, - ACTIONS(4852), 1, + [113955] = 2, + ACTIONS(6344), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91861] = 2, - ACTIONS(4854), 1, - anon_sym_DOT, + [113963] = 2, + ACTIONS(6346), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91869] = 2, - ACTIONS(2991), 1, + [113971] = 2, + ACTIONS(4299), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91877] = 2, - ACTIONS(4856), 1, - anon_sym_DASH_GT, + [113979] = 2, + ACTIONS(5756), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91885] = 2, - ACTIONS(4125), 1, - anon_sym_EQ_GT, + [113987] = 2, + ACTIONS(4243), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91893] = 2, - ACTIONS(4858), 1, - anon_sym_LPAREN, + [113995] = 2, + ACTIONS(3999), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91901] = 2, - ACTIONS(2889), 1, + [114003] = 2, + ACTIONS(4303), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91909] = 2, - ACTIONS(2959), 1, - sym__lookback_semicolon, + [114011] = 2, + ACTIONS(6348), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91917] = 2, - ACTIONS(4860), 1, + [114019] = 2, + ACTIONS(4063), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91925] = 2, - ACTIONS(4862), 1, + [114027] = 2, + ACTIONS(4305), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91933] = 2, - ACTIONS(2845), 1, + [114035] = 2, + ACTIONS(3444), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91941] = 2, - ACTIONS(3941), 1, + [114043] = 2, + ACTIONS(6350), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91949] = 2, - ACTIONS(2823), 1, - sym__lookback_semicolon, + [114051] = 2, + ACTIONS(6352), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114059] = 2, + ACTIONS(4095), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91957] = 2, - ACTIONS(2831), 1, + [114067] = 2, + ACTIONS(4013), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91965] = 2, - ACTIONS(3033), 1, - anon_sym_RBRACK, + [114075] = 2, + ACTIONS(6354), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91973] = 2, - ACTIONS(4864), 1, - anon_sym_EQ, + [114083] = 2, + ACTIONS(6356), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91981] = 2, - ACTIONS(2983), 1, - sym__lookback_semicolon, + [114091] = 2, + ACTIONS(6358), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91989] = 2, - ACTIONS(2847), 1, - sym__lookback_semicolon, + [114099] = 2, + ACTIONS(6360), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [91997] = 2, - ACTIONS(4866), 1, - anon_sym_EQ, + [114107] = 2, + ACTIONS(6362), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92005] = 2, - ACTIONS(2851), 1, - sym__lookback_semicolon, + [114115] = 2, + ACTIONS(6364), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92013] = 2, - ACTIONS(4868), 1, - sym__lookback_semicolon, + [114123] = 2, + ACTIONS(6366), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92021] = 2, - ACTIONS(2863), 1, - sym__lookback_semicolon, + [114131] = 2, + ACTIONS(6368), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92029] = 2, - ACTIONS(4870), 1, - sym__lookback_semicolon, + [114139] = 2, + ACTIONS(6370), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92037] = 2, - ACTIONS(2873), 1, - sym__lookback_semicolon, + [114147] = 2, + ACTIONS(6372), 1, + anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92045] = 2, - ACTIONS(3911), 1, + [114155] = 2, + ACTIONS(6374), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114163] = 2, + ACTIONS(6376), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114171] = 2, + ACTIONS(6378), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114179] = 2, + ACTIONS(6380), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114187] = 2, + ACTIONS(6382), 1, + anon_sym_DOT, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114195] = 2, + ACTIONS(4311), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92053] = 2, - ACTIONS(2881), 1, + [114203] = 2, + ACTIONS(6384), 1, + anon_sym_RPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114211] = 2, + ACTIONS(4237), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92061] = 2, - ACTIONS(2887), 1, + [114219] = 2, + ACTIONS(6386), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92069] = 2, - ACTIONS(4872), 1, - anon_sym_RPAREN, + [114227] = 2, + ACTIONS(5400), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92077] = 2, - ACTIONS(2901), 1, + [114235] = 2, + ACTIONS(4077), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92085] = 2, - ACTIONS(3949), 1, + [114243] = 2, + ACTIONS(4313), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92093] = 2, - ACTIONS(4874), 1, + [114251] = 2, + ACTIONS(4147), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92101] = 2, - ACTIONS(2364), 1, + [114259] = 2, + ACTIONS(4239), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92109] = 2, - ACTIONS(4562), 1, + [114267] = 2, + ACTIONS(6388), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114275] = 2, + ACTIONS(6390), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92117] = 2, - ACTIONS(4876), 1, - anon_sym_RPAREN, + [114283] = 2, + ACTIONS(6392), 1, + anon_sym_RBRACE, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92125] = 2, - ACTIONS(4878), 1, - anon_sym_DOT, + [114291] = 2, + ACTIONS(6394), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92133] = 2, - ACTIONS(4572), 1, + [114299] = 2, + ACTIONS(6396), 1, anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92141] = 2, - ACTIONS(4880), 1, - anon_sym_LPAREN, + [114307] = 2, + ACTIONS(5890), 1, + anon_sym_RPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92149] = 2, - ACTIONS(4882), 1, - anon_sym_RBRACE, + [114315] = 2, + ACTIONS(4317), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92157] = 2, - ACTIONS(2593), 1, + [114323] = 2, + ACTIONS(4183), 1, anon_sym_RBRACK, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92165] = 2, - ACTIONS(4884), 1, - anon_sym_RPAREN, + [114331] = 2, + ACTIONS(5486), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92173] = 2, - ACTIONS(4886), 1, - anon_sym_LPAREN, + [114339] = 2, + ACTIONS(4163), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92181] = 2, - ACTIONS(3017), 1, + [114347] = 2, + ACTIONS(4135), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92189] = 2, - ACTIONS(4401), 1, - anon_sym_RBRACK, + [114355] = 2, + ACTIONS(4169), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92197] = 2, - ACTIONS(2919), 1, - anon_sym_RPAREN, + [114363] = 2, + ACTIONS(6398), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92205] = 2, - ACTIONS(4888), 1, - anon_sym_DOT, + [114371] = 2, + ACTIONS(2675), 1, + sym__lookback_semicolon, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114379] = 2, + ACTIONS(4241), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92213] = 2, - ACTIONS(2859), 1, + [114387] = 2, + ACTIONS(3431), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92221] = 2, - ACTIONS(4890), 1, + [114395] = 2, + ACTIONS(6400), 1, anon_sym_LPAREN, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92229] = 2, - ACTIONS(4406), 1, - anon_sym_RBRACK, + [114403] = 2, + ACTIONS(6402), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92237] = 2, - ACTIONS(4892), 1, - anon_sym_LPAREN, + [114411] = 2, + ACTIONS(6404), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92245] = 2, - ACTIONS(2589), 1, - anon_sym_RBRACK, + [114419] = 2, + ACTIONS(6406), 1, + anon_sym_DASH_GT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92253] = 2, - ACTIONS(2985), 1, + [114427] = 2, + ACTIONS(3977), 1, sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92261] = 2, - ACTIONS(2871), 1, - sym__lookback_semicolon, + [114435] = 2, + ACTIONS(6408), 1, + anon_sym_DOT, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, - [92269] = 2, - ACTIONS(2817), 1, - anon_sym_RBRACK, + [114443] = 2, + ACTIONS(6410), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114451] = 2, + ACTIONS(6412), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114459] = 2, + ACTIONS(6414), 1, + anon_sym_LPAREN, + ACTIONS(3), 2, + sym__closing_brace_unmarker, + sym_comment, + [114467] = 2, + ACTIONS(4265), 1, + sym__lookback_semicolon, ACTIONS(3), 2, sym__closing_brace_unmarker, sym_comment, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(706)] = 0, - [SMALL_STATE(707)] = 111, - [SMALL_STATE(708)] = 222, - [SMALL_STATE(709)] = 333, - [SMALL_STATE(710)] = 444, - [SMALL_STATE(711)] = 554, - [SMALL_STATE(712)] = 662, - [SMALL_STATE(713)] = 771, - [SMALL_STATE(714)] = 880, - [SMALL_STATE(715)] = 989, - [SMALL_STATE(716)] = 1098, - [SMALL_STATE(717)] = 1207, - [SMALL_STATE(718)] = 1316, - [SMALL_STATE(719)] = 1418, - [SMALL_STATE(720)] = 1520, - [SMALL_STATE(721)] = 1622, - [SMALL_STATE(722)] = 1724, - [SMALL_STATE(723)] = 1826, - [SMALL_STATE(724)] = 1926, - [SMALL_STATE(725)] = 2026, - [SMALL_STATE(726)] = 2126, - [SMALL_STATE(727)] = 2226, - [SMALL_STATE(728)] = 2326, - [SMALL_STATE(729)] = 2426, - [SMALL_STATE(730)] = 2526, - [SMALL_STATE(731)] = 2626, - [SMALL_STATE(732)] = 2726, - [SMALL_STATE(733)] = 2826, - [SMALL_STATE(734)] = 2926, - [SMALL_STATE(735)] = 3026, - [SMALL_STATE(736)] = 3126, - [SMALL_STATE(737)] = 3226, - [SMALL_STATE(738)] = 3326, - [SMALL_STATE(739)] = 3425, - [SMALL_STATE(740)] = 3524, - [SMALL_STATE(741)] = 3623, - [SMALL_STATE(742)] = 3704, - [SMALL_STATE(743)] = 3803, - [SMALL_STATE(744)] = 3882, - [SMALL_STATE(745)] = 3981, - [SMALL_STATE(746)] = 4080, - [SMALL_STATE(747)] = 4179, - [SMALL_STATE(748)] = 4278, - [SMALL_STATE(749)] = 4377, - [SMALL_STATE(750)] = 4476, - [SMALL_STATE(751)] = 4574, - [SMALL_STATE(752)] = 4672, - [SMALL_STATE(753)] = 4770, - [SMALL_STATE(754)] = 4840, - [SMALL_STATE(755)] = 4938, - [SMALL_STATE(756)] = 5036, - [SMALL_STATE(757)] = 5102, - [SMALL_STATE(758)] = 5165, - [SMALL_STATE(759)] = 5242, - [SMALL_STATE(760)] = 5305, - [SMALL_STATE(761)] = 5384, - [SMALL_STATE(762)] = 5461, - [SMALL_STATE(763)] = 5530, - [SMALL_STATE(764)] = 5602, - [SMALL_STATE(765)] = 5674, - [SMALL_STATE(766)] = 5738, - [SMALL_STATE(767)] = 5805, - [SMALL_STATE(768)] = 5872, - [SMALL_STATE(769)] = 5939, - [SMALL_STATE(770)] = 6006, - [SMALL_STATE(771)] = 6065, - [SMALL_STATE(772)] = 6126, - [SMALL_STATE(773)] = 6184, - [SMALL_STATE(774)] = 6246, - [SMALL_STATE(775)] = 6307, - [SMALL_STATE(776)] = 6376, - [SMALL_STATE(777)] = 6431, - [SMALL_STATE(778)] = 6486, - [SMALL_STATE(779)] = 6541, - [SMALL_STATE(780)] = 6616, - [SMALL_STATE(781)] = 6671, - [SMALL_STATE(782)] = 6726, - [SMALL_STATE(783)] = 6801, - [SMALL_STATE(784)] = 6856, - [SMALL_STATE(785)] = 6931, - [SMALL_STATE(786)] = 7005, - [SMALL_STATE(787)] = 7063, - [SMALL_STATE(788)] = 7119, - [SMALL_STATE(789)] = 7187, - [SMALL_STATE(790)] = 7241, - [SMALL_STATE(791)] = 7315, - [SMALL_STATE(792)] = 7389, - [SMALL_STATE(793)] = 7457, - [SMALL_STATE(794)] = 7531, - [SMALL_STATE(795)] = 7591, - [SMALL_STATE(796)] = 7665, - [SMALL_STATE(797)] = 7739, - [SMALL_STATE(798)] = 7793, - [SMALL_STATE(799)] = 7867, - [SMALL_STATE(800)] = 7935, - [SMALL_STATE(801)] = 8009, - [SMALL_STATE(802)] = 8062, - [SMALL_STATE(803)] = 8115, - [SMALL_STATE(804)] = 8192, - [SMALL_STATE(805)] = 8263, - [SMALL_STATE(806)] = 8316, - [SMALL_STATE(807)] = 8369, - [SMALL_STATE(808)] = 8446, - [SMALL_STATE(809)] = 8523, - [SMALL_STATE(810)] = 8600, - [SMALL_STATE(811)] = 8653, - [SMALL_STATE(812)] = 8730, - [SMALL_STATE(813)] = 8807, - [SMALL_STATE(814)] = 8860, - [SMALL_STATE(815)] = 8937, - [SMALL_STATE(816)] = 8990, - [SMALL_STATE(817)] = 9067, - [SMALL_STATE(818)] = 9144, - [SMALL_STATE(819)] = 9221, - [SMALL_STATE(820)] = 9307, - [SMALL_STATE(821)] = 9375, - [SMALL_STATE(822)] = 9443, - [SMALL_STATE(823)] = 9511, - [SMALL_STATE(824)] = 9585, - [SMALL_STATE(825)] = 9653, - [SMALL_STATE(826)] = 9721, - [SMALL_STATE(827)] = 9789, - [SMALL_STATE(828)] = 9875, - [SMALL_STATE(829)] = 9943, - [SMALL_STATE(830)] = 10011, - [SMALL_STATE(831)] = 10079, - [SMALL_STATE(832)] = 10151, - [SMALL_STATE(833)] = 10203, - [SMALL_STATE(834)] = 10271, - [SMALL_STATE(835)] = 10337, - [SMALL_STATE(836)] = 10409, - [SMALL_STATE(837)] = 10477, - [SMALL_STATE(838)] = 10563, - [SMALL_STATE(839)] = 10637, - [SMALL_STATE(840)] = 10707, - [SMALL_STATE(841)] = 10777, - [SMALL_STATE(842)] = 10851, - [SMALL_STATE(843)] = 10919, - [SMALL_STATE(844)] = 10993, - [SMALL_STATE(845)] = 11065, - [SMALL_STATE(846)] = 11137, - [SMALL_STATE(847)] = 11205, - [SMALL_STATE(848)] = 11279, - [SMALL_STATE(849)] = 11349, - [SMALL_STATE(850)] = 11417, - [SMALL_STATE(851)] = 11487, - [SMALL_STATE(852)] = 11555, - [SMALL_STATE(853)] = 11629, - [SMALL_STATE(854)] = 11699, - [SMALL_STATE(855)] = 11785, - [SMALL_STATE(856)] = 11857, - [SMALL_STATE(857)] = 11931, - [SMALL_STATE(858)] = 12005, - [SMALL_STATE(859)] = 12073, - [SMALL_STATE(860)] = 12141, - [SMALL_STATE(861)] = 12215, - [SMALL_STATE(862)] = 12283, - [SMALL_STATE(863)] = 12357, - [SMALL_STATE(864)] = 12429, - [SMALL_STATE(865)] = 12497, - [SMALL_STATE(866)] = 12569, - [SMALL_STATE(867)] = 12637, - [SMALL_STATE(868)] = 12705, - [SMALL_STATE(869)] = 12771, - [SMALL_STATE(870)] = 12845, - [SMALL_STATE(871)] = 12917, - [SMALL_STATE(872)] = 13003, - [SMALL_STATE(873)] = 13077, - [SMALL_STATE(874)] = 13147, - [SMALL_STATE(875)] = 13215, - [SMALL_STATE(876)] = 13289, - [SMALL_STATE(877)] = 13363, - [SMALL_STATE(878)] = 13415, - [SMALL_STATE(879)] = 13481, - [SMALL_STATE(880)] = 13549, - [SMALL_STATE(881)] = 13617, - [SMALL_STATE(882)] = 13689, - [SMALL_STATE(883)] = 13758, - [SMALL_STATE(884)] = 13827, - [SMALL_STATE(885)] = 13892, - [SMALL_STATE(886)] = 13957, - [SMALL_STATE(887)] = 14026, - [SMALL_STATE(888)] = 14091, - [SMALL_STATE(889)] = 14156, - [SMALL_STATE(890)] = 14221, - [SMALL_STATE(891)] = 14286, - [SMALL_STATE(892)] = 14351, - [SMALL_STATE(893)] = 14416, - [SMALL_STATE(894)] = 14481, - [SMALL_STATE(895)] = 14546, - [SMALL_STATE(896)] = 14611, - [SMALL_STATE(897)] = 14676, - [SMALL_STATE(898)] = 14745, - [SMALL_STATE(899)] = 14810, - [SMALL_STATE(900)] = 14875, - [SMALL_STATE(901)] = 14940, - [SMALL_STATE(902)] = 15005, - [SMALL_STATE(903)] = 15056, - [SMALL_STATE(904)] = 15125, - [SMALL_STATE(905)] = 15190, - [SMALL_STATE(906)] = 15255, - [SMALL_STATE(907)] = 15324, - [SMALL_STATE(908)] = 15392, - [SMALL_STATE(909)] = 15460, - [SMALL_STATE(910)] = 15528, - [SMALL_STATE(911)] = 15596, - [SMALL_STATE(912)] = 15664, - [SMALL_STATE(913)] = 15726, - [SMALL_STATE(914)] = 15794, - [SMALL_STATE(915)] = 15862, - [SMALL_STATE(916)] = 15930, - [SMALL_STATE(917)] = 15998, - [SMALL_STATE(918)] = 16066, - [SMALL_STATE(919)] = 16134, - [SMALL_STATE(920)] = 16202, - [SMALL_STATE(921)] = 16270, - [SMALL_STATE(922)] = 16338, - [SMALL_STATE(923)] = 16406, - [SMALL_STATE(924)] = 16474, - [SMALL_STATE(925)] = 16542, - [SMALL_STATE(926)] = 16610, - [SMALL_STATE(927)] = 16678, - [SMALL_STATE(928)] = 16746, - [SMALL_STATE(929)] = 16814, - [SMALL_STATE(930)] = 16882, - [SMALL_STATE(931)] = 16950, - [SMALL_STATE(932)] = 17018, - [SMALL_STATE(933)] = 17086, - [SMALL_STATE(934)] = 17154, - [SMALL_STATE(935)] = 17222, - [SMALL_STATE(936)] = 17290, - [SMALL_STATE(937)] = 17358, - [SMALL_STATE(938)] = 17426, - [SMALL_STATE(939)] = 17494, - [SMALL_STATE(940)] = 17562, - [SMALL_STATE(941)] = 17630, - [SMALL_STATE(942)] = 17698, - [SMALL_STATE(943)] = 17766, - [SMALL_STATE(944)] = 17834, - [SMALL_STATE(945)] = 17902, - [SMALL_STATE(946)] = 17970, - [SMALL_STATE(947)] = 18038, - [SMALL_STATE(948)] = 18106, - [SMALL_STATE(949)] = 18174, - [SMALL_STATE(950)] = 18242, - [SMALL_STATE(951)] = 18310, - [SMALL_STATE(952)] = 18378, - [SMALL_STATE(953)] = 18446, - [SMALL_STATE(954)] = 18514, - [SMALL_STATE(955)] = 18582, - [SMALL_STATE(956)] = 18650, - [SMALL_STATE(957)] = 18718, - [SMALL_STATE(958)] = 18786, - [SMALL_STATE(959)] = 18854, - [SMALL_STATE(960)] = 18922, - [SMALL_STATE(961)] = 18990, - [SMALL_STATE(962)] = 19058, - [SMALL_STATE(963)] = 19126, - [SMALL_STATE(964)] = 19194, - [SMALL_STATE(965)] = 19262, - [SMALL_STATE(966)] = 19330, - [SMALL_STATE(967)] = 19398, - [SMALL_STATE(968)] = 19466, - [SMALL_STATE(969)] = 19534, - [SMALL_STATE(970)] = 19602, - [SMALL_STATE(971)] = 19670, - [SMALL_STATE(972)] = 19738, - [SMALL_STATE(973)] = 19806, - [SMALL_STATE(974)] = 19874, - [SMALL_STATE(975)] = 19942, - [SMALL_STATE(976)] = 20010, - [SMALL_STATE(977)] = 20078, - [SMALL_STATE(978)] = 20146, - [SMALL_STATE(979)] = 20214, - [SMALL_STATE(980)] = 20282, - [SMALL_STATE(981)] = 20350, - [SMALL_STATE(982)] = 20412, - [SMALL_STATE(983)] = 20480, - [SMALL_STATE(984)] = 20548, - [SMALL_STATE(985)] = 20616, - [SMALL_STATE(986)] = 20684, - [SMALL_STATE(987)] = 20752, - [SMALL_STATE(988)] = 20820, - [SMALL_STATE(989)] = 20888, - [SMALL_STATE(990)] = 20956, - [SMALL_STATE(991)] = 21024, - [SMALL_STATE(992)] = 21092, - [SMALL_STATE(993)] = 21160, - [SMALL_STATE(994)] = 21228, - [SMALL_STATE(995)] = 21296, - [SMALL_STATE(996)] = 21364, - [SMALL_STATE(997)] = 21426, - [SMALL_STATE(998)] = 21494, - [SMALL_STATE(999)] = 21562, - [SMALL_STATE(1000)] = 21630, - [SMALL_STATE(1001)] = 21698, - [SMALL_STATE(1002)] = 21766, - [SMALL_STATE(1003)] = 21834, - [SMALL_STATE(1004)] = 21902, - [SMALL_STATE(1005)] = 21970, - [SMALL_STATE(1006)] = 22032, - [SMALL_STATE(1007)] = 22100, - [SMALL_STATE(1008)] = 22168, - [SMALL_STATE(1009)] = 22236, - [SMALL_STATE(1010)] = 22298, - [SMALL_STATE(1011)] = 22366, - [SMALL_STATE(1012)] = 22434, - [SMALL_STATE(1013)] = 22502, - [SMALL_STATE(1014)] = 22570, - [SMALL_STATE(1015)] = 22638, - [SMALL_STATE(1016)] = 22706, - [SMALL_STATE(1017)] = 22774, - [SMALL_STATE(1018)] = 22842, - [SMALL_STATE(1019)] = 22910, - [SMALL_STATE(1020)] = 22978, - [SMALL_STATE(1021)] = 23046, - [SMALL_STATE(1022)] = 23114, - [SMALL_STATE(1023)] = 23182, - [SMALL_STATE(1024)] = 23250, - [SMALL_STATE(1025)] = 23318, - [SMALL_STATE(1026)] = 23386, - [SMALL_STATE(1027)] = 23454, - [SMALL_STATE(1028)] = 23522, - [SMALL_STATE(1029)] = 23590, - [SMALL_STATE(1030)] = 23658, - [SMALL_STATE(1031)] = 23726, - [SMALL_STATE(1032)] = 23794, - [SMALL_STATE(1033)] = 23862, - [SMALL_STATE(1034)] = 23924, - [SMALL_STATE(1035)] = 23992, - [SMALL_STATE(1036)] = 24060, - [SMALL_STATE(1037)] = 24128, - [SMALL_STATE(1038)] = 24210, - [SMALL_STATE(1039)] = 24292, - [SMALL_STATE(1040)] = 24374, - [SMALL_STATE(1041)] = 24453, - [SMALL_STATE(1042)] = 24532, - [SMALL_STATE(1043)] = 24611, - [SMALL_STATE(1044)] = 24671, - [SMALL_STATE(1045)] = 24747, - [SMALL_STATE(1046)] = 24827, - [SMALL_STATE(1047)] = 24907, - [SMALL_STATE(1048)] = 24983, - [SMALL_STATE(1049)] = 25063, - [SMALL_STATE(1050)] = 25149, - [SMALL_STATE(1051)] = 25225, - [SMALL_STATE(1052)] = 25301, - [SMALL_STATE(1053)] = 25381, - [SMALL_STATE(1054)] = 25441, - [SMALL_STATE(1055)] = 25521, - [SMALL_STATE(1056)] = 25608, - [SMALL_STATE(1057)] = 25695, - [SMALL_STATE(1058)] = 25754, - [SMALL_STATE(1059)] = 25813, - [SMALL_STATE(1060)] = 25872, - [SMALL_STATE(1061)] = 25931, - [SMALL_STATE(1062)] = 26018, - [SMALL_STATE(1063)] = 26077, - [SMALL_STATE(1064)] = 26136, - [SMALL_STATE(1065)] = 26223, - [SMALL_STATE(1066)] = 26310, - [SMALL_STATE(1067)] = 26393, - [SMALL_STATE(1068)] = 26452, - [SMALL_STATE(1069)] = 26530, - [SMALL_STATE(1070)] = 26606, - [SMALL_STATE(1071)] = 26660, - [SMALL_STATE(1072)] = 26714, - [SMALL_STATE(1073)] = 26798, - [SMALL_STATE(1074)] = 26882, - [SMALL_STATE(1075)] = 26966, - [SMALL_STATE(1076)] = 27050, - [SMALL_STATE(1077)] = 27134, - [SMALL_STATE(1078)] = 27218, - [SMALL_STATE(1079)] = 27302, - [SMALL_STATE(1080)] = 27386, - [SMALL_STATE(1081)] = 27470, - [SMALL_STATE(1082)] = 27554, - [SMALL_STATE(1083)] = 27638, - [SMALL_STATE(1084)] = 27722, - [SMALL_STATE(1085)] = 27806, - [SMALL_STATE(1086)] = 27890, - [SMALL_STATE(1087)] = 27974, - [SMALL_STATE(1088)] = 28058, - [SMALL_STATE(1089)] = 28142, - [SMALL_STATE(1090)] = 28226, - [SMALL_STATE(1091)] = 28310, - [SMALL_STATE(1092)] = 28394, - [SMALL_STATE(1093)] = 28478, - [SMALL_STATE(1094)] = 28562, - [SMALL_STATE(1095)] = 28646, - [SMALL_STATE(1096)] = 28724, - [SMALL_STATE(1097)] = 28806, - [SMALL_STATE(1098)] = 28890, - [SMALL_STATE(1099)] = 28968, - [SMALL_STATE(1100)] = 29052, - [SMALL_STATE(1101)] = 29130, - [SMALL_STATE(1102)] = 29214, - [SMALL_STATE(1103)] = 29292, - [SMALL_STATE(1104)] = 29368, - [SMALL_STATE(1105)] = 29452, - [SMALL_STATE(1106)] = 29536, - [SMALL_STATE(1107)] = 29620, - [SMALL_STATE(1108)] = 29696, - [SMALL_STATE(1109)] = 29772, - [SMALL_STATE(1110)] = 29848, - [SMALL_STATE(1111)] = 29932, - [SMALL_STATE(1112)] = 30016, - [SMALL_STATE(1113)] = 30100, - [SMALL_STATE(1114)] = 30184, - [SMALL_STATE(1115)] = 30268, - [SMALL_STATE(1116)] = 30352, - [SMALL_STATE(1117)] = 30433, - [SMALL_STATE(1118)] = 30514, - [SMALL_STATE(1119)] = 30567, - [SMALL_STATE(1120)] = 30648, - [SMALL_STATE(1121)] = 30729, - [SMALL_STATE(1122)] = 30810, - [SMALL_STATE(1123)] = 30867, - [SMALL_STATE(1124)] = 30948, - [SMALL_STATE(1125)] = 31029, - [SMALL_STATE(1126)] = 31110, - [SMALL_STATE(1127)] = 31191, - [SMALL_STATE(1128)] = 31272, - [SMALL_STATE(1129)] = 31353, - [SMALL_STATE(1130)] = 31434, - [SMALL_STATE(1131)] = 31515, - [SMALL_STATE(1132)] = 31596, - [SMALL_STATE(1133)] = 31647, - [SMALL_STATE(1134)] = 31728, - [SMALL_STATE(1135)] = 31809, - [SMALL_STATE(1136)] = 31862, - [SMALL_STATE(1137)] = 31919, - [SMALL_STATE(1138)] = 31972, - [SMALL_STATE(1139)] = 32053, - [SMALL_STATE(1140)] = 32134, - [SMALL_STATE(1141)] = 32215, - [SMALL_STATE(1142)] = 32272, - [SMALL_STATE(1143)] = 32353, - [SMALL_STATE(1144)] = 32434, - [SMALL_STATE(1145)] = 32515, - [SMALL_STATE(1146)] = 32596, - [SMALL_STATE(1147)] = 32677, - [SMALL_STATE(1148)] = 32734, - [SMALL_STATE(1149)] = 32787, - [SMALL_STATE(1150)] = 32868, - [SMALL_STATE(1151)] = 32949, - [SMALL_STATE(1152)] = 33030, - [SMALL_STATE(1153)] = 33111, - [SMALL_STATE(1154)] = 33192, - [SMALL_STATE(1155)] = 33273, - [SMALL_STATE(1156)] = 33354, - [SMALL_STATE(1157)] = 33435, - [SMALL_STATE(1158)] = 33516, - [SMALL_STATE(1159)] = 33597, - [SMALL_STATE(1160)] = 33678, - [SMALL_STATE(1161)] = 33759, - [SMALL_STATE(1162)] = 33840, - [SMALL_STATE(1163)] = 33889, - [SMALL_STATE(1164)] = 33970, - [SMALL_STATE(1165)] = 34051, - [SMALL_STATE(1166)] = 34132, - [SMALL_STATE(1167)] = 34213, - [SMALL_STATE(1168)] = 34294, - [SMALL_STATE(1169)] = 34375, - [SMALL_STATE(1170)] = 34456, - [SMALL_STATE(1171)] = 34537, - [SMALL_STATE(1172)] = 34618, - [SMALL_STATE(1173)] = 34699, - [SMALL_STATE(1174)] = 34748, - [SMALL_STATE(1175)] = 34799, - [SMALL_STATE(1176)] = 34844, - [SMALL_STATE(1177)] = 34897, - [SMALL_STATE(1178)] = 34946, - [SMALL_STATE(1179)] = 35027, - [SMALL_STATE(1180)] = 35108, - [SMALL_STATE(1181)] = 35189, - [SMALL_STATE(1182)] = 35246, - [SMALL_STATE(1183)] = 35327, - [SMALL_STATE(1184)] = 35408, - [SMALL_STATE(1185)] = 35450, - [SMALL_STATE(1186)] = 35492, - [SMALL_STATE(1187)] = 35576, - [SMALL_STATE(1188)] = 35624, - [SMALL_STATE(1189)] = 35708, - [SMALL_STATE(1190)] = 35792, - [SMALL_STATE(1191)] = 35876, - [SMALL_STATE(1192)] = 35932, - [SMALL_STATE(1193)] = 36016, - [SMALL_STATE(1194)] = 36064, - [SMALL_STATE(1195)] = 36148, - [SMALL_STATE(1196)] = 36232, - [SMALL_STATE(1197)] = 36280, - [SMALL_STATE(1198)] = 36362, - [SMALL_STATE(1199)] = 36410, - [SMALL_STATE(1200)] = 36494, - [SMALL_STATE(1201)] = 36538, - [SMALL_STATE(1202)] = 36582, - [SMALL_STATE(1203)] = 36624, - [SMALL_STATE(1204)] = 36708, - [SMALL_STATE(1205)] = 36752, - [SMALL_STATE(1206)] = 36794, - [SMALL_STATE(1207)] = 36836, - [SMALL_STATE(1208)] = 36880, - [SMALL_STATE(1209)] = 36924, - [SMALL_STATE(1210)] = 37004, - [SMALL_STATE(1211)] = 37050, - [SMALL_STATE(1212)] = 37126, - [SMALL_STATE(1213)] = 37172, - [SMALL_STATE(1214)] = 37248, - [SMALL_STATE(1215)] = 37296, - [SMALL_STATE(1216)] = 37380, - [SMALL_STATE(1217)] = 37428, - [SMALL_STATE(1218)] = 37476, - [SMALL_STATE(1219)] = 37552, - [SMALL_STATE(1220)] = 37636, - [SMALL_STATE(1221)] = 37678, - [SMALL_STATE(1222)] = 37762, - [SMALL_STATE(1223)] = 37838, - [SMALL_STATE(1224)] = 37914, - [SMALL_STATE(1225)] = 37955, - [SMALL_STATE(1226)] = 37996, - [SMALL_STATE(1227)] = 38043, - [SMALL_STATE(1228)] = 38090, - [SMALL_STATE(1229)] = 38131, - [SMALL_STATE(1230)] = 38172, - [SMALL_STATE(1231)] = 38213, - [SMALL_STATE(1232)] = 38254, - [SMALL_STATE(1233)] = 38295, - [SMALL_STATE(1234)] = 38336, - [SMALL_STATE(1235)] = 38377, - [SMALL_STATE(1236)] = 38418, - [SMALL_STATE(1237)] = 38469, - [SMALL_STATE(1238)] = 38510, - [SMALL_STATE(1239)] = 38551, - [SMALL_STATE(1240)] = 38592, - [SMALL_STATE(1241)] = 38633, - [SMALL_STATE(1242)] = 38680, - [SMALL_STATE(1243)] = 38721, - [SMALL_STATE(1244)] = 38762, - [SMALL_STATE(1245)] = 38803, - [SMALL_STATE(1246)] = 38876, - [SMALL_STATE(1247)] = 38917, - [SMALL_STATE(1248)] = 38958, - [SMALL_STATE(1249)] = 39031, - [SMALL_STATE(1250)] = 39072, - [SMALL_STATE(1251)] = 39113, - [SMALL_STATE(1252)] = 39154, - [SMALL_STATE(1253)] = 39227, - [SMALL_STATE(1254)] = 39300, - [SMALL_STATE(1255)] = 39341, - [SMALL_STATE(1256)] = 39382, - [SMALL_STATE(1257)] = 39455, - [SMALL_STATE(1258)] = 39496, - [SMALL_STATE(1259)] = 39537, - [SMALL_STATE(1260)] = 39578, - [SMALL_STATE(1261)] = 39619, - [SMALL_STATE(1262)] = 39660, - [SMALL_STATE(1263)] = 39701, - [SMALL_STATE(1264)] = 39742, - [SMALL_STATE(1265)] = 39815, - [SMALL_STATE(1266)] = 39856, - [SMALL_STATE(1267)] = 39897, - [SMALL_STATE(1268)] = 39938, - [SMALL_STATE(1269)] = 40011, - [SMALL_STATE(1270)] = 40058, - [SMALL_STATE(1271)] = 40099, - [SMALL_STATE(1272)] = 40140, - [SMALL_STATE(1273)] = 40181, - [SMALL_STATE(1274)] = 40222, - [SMALL_STATE(1275)] = 40295, - [SMALL_STATE(1276)] = 40342, - [SMALL_STATE(1277)] = 40383, - [SMALL_STATE(1278)] = 40424, - [SMALL_STATE(1279)] = 40465, - [SMALL_STATE(1280)] = 40506, - [SMALL_STATE(1281)] = 40579, - [SMALL_STATE(1282)] = 40658, - [SMALL_STATE(1283)] = 40699, - [SMALL_STATE(1284)] = 40740, - [SMALL_STATE(1285)] = 40781, - [SMALL_STATE(1286)] = 40822, - [SMALL_STATE(1287)] = 40863, - [SMALL_STATE(1288)] = 40904, - [SMALL_STATE(1289)] = 40945, - [SMALL_STATE(1290)] = 40986, - [SMALL_STATE(1291)] = 41027, - [SMALL_STATE(1292)] = 41068, - [SMALL_STATE(1293)] = 41109, - [SMALL_STATE(1294)] = 41150, - [SMALL_STATE(1295)] = 41223, - [SMALL_STATE(1296)] = 41296, - [SMALL_STATE(1297)] = 41337, - [SMALL_STATE(1298)] = 41416, - [SMALL_STATE(1299)] = 41457, - [SMALL_STATE(1300)] = 41498, - [SMALL_STATE(1301)] = 41539, - [SMALL_STATE(1302)] = 41590, - [SMALL_STATE(1303)] = 41663, - [SMALL_STATE(1304)] = 41704, - [SMALL_STATE(1305)] = 41745, - [SMALL_STATE(1306)] = 41818, - [SMALL_STATE(1307)] = 41859, - [SMALL_STATE(1308)] = 41906, - [SMALL_STATE(1309)] = 41947, - [SMALL_STATE(1310)] = 41988, - [SMALL_STATE(1311)] = 42061, - [SMALL_STATE(1312)] = 42102, - [SMALL_STATE(1313)] = 42153, - [SMALL_STATE(1314)] = 42232, - [SMALL_STATE(1315)] = 42273, - [SMALL_STATE(1316)] = 42314, - [SMALL_STATE(1317)] = 42355, - [SMALL_STATE(1318)] = 42396, - [SMALL_STATE(1319)] = 42437, - [SMALL_STATE(1320)] = 42484, - [SMALL_STATE(1321)] = 42535, - [SMALL_STATE(1322)] = 42608, - [SMALL_STATE(1323)] = 42649, - [SMALL_STATE(1324)] = 42690, - [SMALL_STATE(1325)] = 42731, - [SMALL_STATE(1326)] = 42778, - [SMALL_STATE(1327)] = 42819, - [SMALL_STATE(1328)] = 42860, - [SMALL_STATE(1329)] = 42938, - [SMALL_STATE(1330)] = 43016, - [SMALL_STATE(1331)] = 43094, - [SMALL_STATE(1332)] = 43172, - [SMALL_STATE(1333)] = 43250, - [SMALL_STATE(1334)] = 43328, - [SMALL_STATE(1335)] = 43406, - [SMALL_STATE(1336)] = 43484, - [SMALL_STATE(1337)] = 43562, - [SMALL_STATE(1338)] = 43640, - [SMALL_STATE(1339)] = 43718, - [SMALL_STATE(1340)] = 43796, - [SMALL_STATE(1341)] = 43836, - [SMALL_STATE(1342)] = 43914, - [SMALL_STATE(1343)] = 43992, - [SMALL_STATE(1344)] = 44070, - [SMALL_STATE(1345)] = 44148, - [SMALL_STATE(1346)] = 44188, - [SMALL_STATE(1347)] = 44266, - [SMALL_STATE(1348)] = 44344, - [SMALL_STATE(1349)] = 44422, - [SMALL_STATE(1350)] = 44500, - [SMALL_STATE(1351)] = 44578, - [SMALL_STATE(1352)] = 44656, - [SMALL_STATE(1353)] = 44734, - [SMALL_STATE(1354)] = 44812, - [SMALL_STATE(1355)] = 44890, - [SMALL_STATE(1356)] = 44968, - [SMALL_STATE(1357)] = 45010, - [SMALL_STATE(1358)] = 45050, - [SMALL_STATE(1359)] = 45128, - [SMALL_STATE(1360)] = 45206, - [SMALL_STATE(1361)] = 45284, - [SMALL_STATE(1362)] = 45362, - [SMALL_STATE(1363)] = 45406, - [SMALL_STATE(1364)] = 45446, - [SMALL_STATE(1365)] = 45524, - [SMALL_STATE(1366)] = 45602, - [SMALL_STATE(1367)] = 45680, - [SMALL_STATE(1368)] = 45758, - [SMALL_STATE(1369)] = 45836, - [SMALL_STATE(1370)] = 45914, - [SMALL_STATE(1371)] = 45992, - [SMALL_STATE(1372)] = 46070, - [SMALL_STATE(1373)] = 46148, - [SMALL_STATE(1374)] = 46226, - [SMALL_STATE(1375)] = 46304, - [SMALL_STATE(1376)] = 46382, - [SMALL_STATE(1377)] = 46460, - [SMALL_STATE(1378)] = 46532, - [SMALL_STATE(1379)] = 46604, - [SMALL_STATE(1380)] = 46676, - [SMALL_STATE(1381)] = 46748, - [SMALL_STATE(1382)] = 46820, - [SMALL_STATE(1383)] = 46892, - [SMALL_STATE(1384)] = 46964, - [SMALL_STATE(1385)] = 47006, - [SMALL_STATE(1386)] = 47084, - [SMALL_STATE(1387)] = 47156, - [SMALL_STATE(1388)] = 47228, - [SMALL_STATE(1389)] = 47300, - [SMALL_STATE(1390)] = 47378, - [SMALL_STATE(1391)] = 47456, - [SMALL_STATE(1392)] = 47534, - [SMALL_STATE(1393)] = 47612, - [SMALL_STATE(1394)] = 47652, - [SMALL_STATE(1395)] = 47730, - [SMALL_STATE(1396)] = 47772, - [SMALL_STATE(1397)] = 47850, - [SMALL_STATE(1398)] = 47928, - [SMALL_STATE(1399)] = 48006, - [SMALL_STATE(1400)] = 48046, - [SMALL_STATE(1401)] = 48124, - [SMALL_STATE(1402)] = 48202, - [SMALL_STATE(1403)] = 48252, - [SMALL_STATE(1404)] = 48330, - [SMALL_STATE(1405)] = 48370, - [SMALL_STATE(1406)] = 48448, - [SMALL_STATE(1407)] = 48526, - [SMALL_STATE(1408)] = 48570, - [SMALL_STATE(1409)] = 48614, - [SMALL_STATE(1410)] = 48692, - [SMALL_STATE(1411)] = 48732, - [SMALL_STATE(1412)] = 48810, - [SMALL_STATE(1413)] = 48888, - [SMALL_STATE(1414)] = 48966, - [SMALL_STATE(1415)] = 49044, - [SMALL_STATE(1416)] = 49122, - [SMALL_STATE(1417)] = 49200, - [SMALL_STATE(1418)] = 49278, - [SMALL_STATE(1419)] = 49356, - [SMALL_STATE(1420)] = 49398, - [SMALL_STATE(1421)] = 49476, - [SMALL_STATE(1422)] = 49554, - [SMALL_STATE(1423)] = 49632, - [SMALL_STATE(1424)] = 49710, - [SMALL_STATE(1425)] = 49788, - [SMALL_STATE(1426)] = 49866, - [SMALL_STATE(1427)] = 49944, - [SMALL_STATE(1428)] = 50022, - [SMALL_STATE(1429)] = 50100, - [SMALL_STATE(1430)] = 50178, - [SMALL_STATE(1431)] = 50256, - [SMALL_STATE(1432)] = 50334, - [SMALL_STATE(1433)] = 50412, - [SMALL_STATE(1434)] = 50490, - [SMALL_STATE(1435)] = 50568, - [SMALL_STATE(1436)] = 50646, - [SMALL_STATE(1437)] = 50724, - [SMALL_STATE(1438)] = 50802, - [SMALL_STATE(1439)] = 50880, - [SMALL_STATE(1440)] = 50958, - [SMALL_STATE(1441)] = 51036, - [SMALL_STATE(1442)] = 51114, - [SMALL_STATE(1443)] = 51192, - [SMALL_STATE(1444)] = 51238, - [SMALL_STATE(1445)] = 51316, - [SMALL_STATE(1446)] = 51356, - [SMALL_STATE(1447)] = 51431, - [SMALL_STATE(1448)] = 51470, - [SMALL_STATE(1449)] = 51545, - [SMALL_STATE(1450)] = 51590, - [SMALL_STATE(1451)] = 51665, - [SMALL_STATE(1452)] = 51740, - [SMALL_STATE(1453)] = 51811, - [SMALL_STATE(1454)] = 51886, - [SMALL_STATE(1455)] = 51961, - [SMALL_STATE(1456)] = 52036, - [SMALL_STATE(1457)] = 52111, - [SMALL_STATE(1458)] = 52186, - [SMALL_STATE(1459)] = 52261, - [SMALL_STATE(1460)] = 52300, - [SMALL_STATE(1461)] = 52375, - [SMALL_STATE(1462)] = 52414, - [SMALL_STATE(1463)] = 52485, - [SMALL_STATE(1464)] = 52524, - [SMALL_STATE(1465)] = 52599, - [SMALL_STATE(1466)] = 52674, - [SMALL_STATE(1467)] = 52749, - [SMALL_STATE(1468)] = 52788, - [SMALL_STATE(1469)] = 52863, - [SMALL_STATE(1470)] = 52938, - [SMALL_STATE(1471)] = 53013, - [SMALL_STATE(1472)] = 53088, - [SMALL_STATE(1473)] = 53163, - [SMALL_STATE(1474)] = 53202, - [SMALL_STATE(1475)] = 53241, - [SMALL_STATE(1476)] = 53312, - [SMALL_STATE(1477)] = 53387, - [SMALL_STATE(1478)] = 53462, - [SMALL_STATE(1479)] = 53537, - [SMALL_STATE(1480)] = 53612, - [SMALL_STATE(1481)] = 53687, - [SMALL_STATE(1482)] = 53762, - [SMALL_STATE(1483)] = 53833, - [SMALL_STATE(1484)] = 53904, - [SMALL_STATE(1485)] = 53979, - [SMALL_STATE(1486)] = 54054, - [SMALL_STATE(1487)] = 54129, - [SMALL_STATE(1488)] = 54204, - [SMALL_STATE(1489)] = 54279, - [SMALL_STATE(1490)] = 54318, - [SMALL_STATE(1491)] = 54389, - [SMALL_STATE(1492)] = 54464, - [SMALL_STATE(1493)] = 54539, - [SMALL_STATE(1494)] = 54614, - [SMALL_STATE(1495)] = 54689, - [SMALL_STATE(1496)] = 54764, - [SMALL_STATE(1497)] = 54839, - [SMALL_STATE(1498)] = 54910, - [SMALL_STATE(1499)] = 54985, - [SMALL_STATE(1500)] = 55060, - [SMALL_STATE(1501)] = 55135, - [SMALL_STATE(1502)] = 55210, - [SMALL_STATE(1503)] = 55249, - [SMALL_STATE(1504)] = 55288, - [SMALL_STATE(1505)] = 55327, - [SMALL_STATE(1506)] = 55402, - [SMALL_STATE(1507)] = 55447, - [SMALL_STATE(1508)] = 55522, - [SMALL_STATE(1509)] = 55597, - [SMALL_STATE(1510)] = 55636, - [SMALL_STATE(1511)] = 55711, - [SMALL_STATE(1512)] = 55750, - [SMALL_STATE(1513)] = 55825, - [SMALL_STATE(1514)] = 55900, - [SMALL_STATE(1515)] = 55975, - [SMALL_STATE(1516)] = 56050, - [SMALL_STATE(1517)] = 56125, - [SMALL_STATE(1518)] = 56200, - [SMALL_STATE(1519)] = 56239, - [SMALL_STATE(1520)] = 56314, - [SMALL_STATE(1521)] = 56389, - [SMALL_STATE(1522)] = 56464, - [SMALL_STATE(1523)] = 56539, - [SMALL_STATE(1524)] = 56614, - [SMALL_STATE(1525)] = 56689, - [SMALL_STATE(1526)] = 56764, - [SMALL_STATE(1527)] = 56839, - [SMALL_STATE(1528)] = 56914, - [SMALL_STATE(1529)] = 56955, - [SMALL_STATE(1530)] = 57030, - [SMALL_STATE(1531)] = 57105, - [SMALL_STATE(1532)] = 57180, - [SMALL_STATE(1533)] = 57255, - [SMALL_STATE(1534)] = 57330, - [SMALL_STATE(1535)] = 57405, - [SMALL_STATE(1536)] = 57444, - [SMALL_STATE(1537)] = 57519, - [SMALL_STATE(1538)] = 57594, - [SMALL_STATE(1539)] = 57669, - [SMALL_STATE(1540)] = 57744, - [SMALL_STATE(1541)] = 57783, - [SMALL_STATE(1542)] = 57858, - [SMALL_STATE(1543)] = 57933, - [SMALL_STATE(1544)] = 58008, - [SMALL_STATE(1545)] = 58047, - [SMALL_STATE(1546)] = 58122, - [SMALL_STATE(1547)] = 58197, - [SMALL_STATE(1548)] = 58272, - [SMALL_STATE(1549)] = 58347, - [SMALL_STATE(1550)] = 58422, - [SMALL_STATE(1551)] = 58497, - [SMALL_STATE(1552)] = 58536, - [SMALL_STATE(1553)] = 58611, - [SMALL_STATE(1554)] = 58686, - [SMALL_STATE(1555)] = 58761, - [SMALL_STATE(1556)] = 58836, - [SMALL_STATE(1557)] = 58911, - [SMALL_STATE(1558)] = 58982, - [SMALL_STATE(1559)] = 59057, - [SMALL_STATE(1560)] = 59132, - [SMALL_STATE(1561)] = 59207, - [SMALL_STATE(1562)] = 59282, - [SMALL_STATE(1563)] = 59357, - [SMALL_STATE(1564)] = 59432, - [SMALL_STATE(1565)] = 59507, - [SMALL_STATE(1566)] = 59546, - [SMALL_STATE(1567)] = 59621, - [SMALL_STATE(1568)] = 59660, - [SMALL_STATE(1569)] = 59735, - [SMALL_STATE(1570)] = 59810, - [SMALL_STATE(1571)] = 59885, - [SMALL_STATE(1572)] = 59960, - [SMALL_STATE(1573)] = 60035, - [SMALL_STATE(1574)] = 60080, - [SMALL_STATE(1575)] = 60119, - [SMALL_STATE(1576)] = 60194, - [SMALL_STATE(1577)] = 60233, - [SMALL_STATE(1578)] = 60308, - [SMALL_STATE(1579)] = 60383, - [SMALL_STATE(1580)] = 60424, - [SMALL_STATE(1581)] = 60499, - [SMALL_STATE(1582)] = 60538, - [SMALL_STATE(1583)] = 60613, - [SMALL_STATE(1584)] = 60688, - [SMALL_STATE(1585)] = 60763, - [SMALL_STATE(1586)] = 60802, - [SMALL_STATE(1587)] = 60877, - [SMALL_STATE(1588)] = 60952, - [SMALL_STATE(1589)] = 61027, - [SMALL_STATE(1590)] = 61072, - [SMALL_STATE(1591)] = 61147, - [SMALL_STATE(1592)] = 61222, - [SMALL_STATE(1593)] = 61297, - [SMALL_STATE(1594)] = 61372, - [SMALL_STATE(1595)] = 61447, - [SMALL_STATE(1596)] = 61522, - [SMALL_STATE(1597)] = 61561, - [SMALL_STATE(1598)] = 61636, - [SMALL_STATE(1599)] = 61679, - [SMALL_STATE(1600)] = 61754, - [SMALL_STATE(1601)] = 61793, - [SMALL_STATE(1602)] = 61864, - [SMALL_STATE(1603)] = 61939, - [SMALL_STATE(1604)] = 62014, - [SMALL_STATE(1605)] = 62089, - [SMALL_STATE(1606)] = 62164, - [SMALL_STATE(1607)] = 62239, - [SMALL_STATE(1608)] = 62314, - [SMALL_STATE(1609)] = 62389, - [SMALL_STATE(1610)] = 62464, - [SMALL_STATE(1611)] = 62503, - [SMALL_STATE(1612)] = 62578, - [SMALL_STATE(1613)] = 62653, - [SMALL_STATE(1614)] = 62728, - [SMALL_STATE(1615)] = 62767, - [SMALL_STATE(1616)] = 62808, - [SMALL_STATE(1617)] = 62883, - [SMALL_STATE(1618)] = 62922, - [SMALL_STATE(1619)] = 62997, - [SMALL_STATE(1620)] = 63072, - [SMALL_STATE(1621)] = 63111, - [SMALL_STATE(1622)] = 63186, - [SMALL_STATE(1623)] = 63261, - [SMALL_STATE(1624)] = 63336, - [SMALL_STATE(1625)] = 63411, - [SMALL_STATE(1626)] = 63486, - [SMALL_STATE(1627)] = 63561, - [SMALL_STATE(1628)] = 63600, - [SMALL_STATE(1629)] = 63675, - [SMALL_STATE(1630)] = 63750, - [SMALL_STATE(1631)] = 63821, - [SMALL_STATE(1632)] = 63896, - [SMALL_STATE(1633)] = 63971, - [SMALL_STATE(1634)] = 64010, - [SMALL_STATE(1635)] = 64085, - [SMALL_STATE(1636)] = 64124, - [SMALL_STATE(1637)] = 64163, - [SMALL_STATE(1638)] = 64238, - [SMALL_STATE(1639)] = 64313, - [SMALL_STATE(1640)] = 64388, - [SMALL_STATE(1641)] = 64463, - [SMALL_STATE(1642)] = 64508, - [SMALL_STATE(1643)] = 64583, - [SMALL_STATE(1644)] = 64658, - [SMALL_STATE(1645)] = 64703, - [SMALL_STATE(1646)] = 64778, - [SMALL_STATE(1647)] = 64853, - [SMALL_STATE(1648)] = 64928, - [SMALL_STATE(1649)] = 65003, - [SMALL_STATE(1650)] = 65042, - [SMALL_STATE(1651)] = 65117, - [SMALL_STATE(1652)] = 65192, - [SMALL_STATE(1653)] = 65233, - [SMALL_STATE(1654)] = 65272, - [SMALL_STATE(1655)] = 65342, - [SMALL_STATE(1656)] = 65386, - [SMALL_STATE(1657)] = 65424, - [SMALL_STATE(1658)] = 65494, - [SMALL_STATE(1659)] = 65532, - [SMALL_STATE(1660)] = 65602, - [SMALL_STATE(1661)] = 65672, - [SMALL_STATE(1662)] = 65742, - [SMALL_STATE(1663)] = 65785, - [SMALL_STATE(1664)] = 65853, - [SMALL_STATE(1665)] = 65918, - [SMALL_STATE(1666)] = 65983, - [SMALL_STATE(1667)] = 66048, - [SMALL_STATE(1668)] = 66113, - [SMALL_STATE(1669)] = 66178, - [SMALL_STATE(1670)] = 66243, - [SMALL_STATE(1671)] = 66308, - [SMALL_STATE(1672)] = 66373, - [SMALL_STATE(1673)] = 66438, - [SMALL_STATE(1674)] = 66503, - [SMALL_STATE(1675)] = 66568, - [SMALL_STATE(1676)] = 66633, - [SMALL_STATE(1677)] = 66698, - [SMALL_STATE(1678)] = 66763, - [SMALL_STATE(1679)] = 66828, - [SMALL_STATE(1680)] = 66893, - [SMALL_STATE(1681)] = 66958, - [SMALL_STATE(1682)] = 67023, - [SMALL_STATE(1683)] = 67088, - [SMALL_STATE(1684)] = 67153, - [SMALL_STATE(1685)] = 67218, - [SMALL_STATE(1686)] = 67283, - [SMALL_STATE(1687)] = 67348, - [SMALL_STATE(1688)] = 67413, - [SMALL_STATE(1689)] = 67478, - [SMALL_STATE(1690)] = 67513, - [SMALL_STATE(1691)] = 67578, - [SMALL_STATE(1692)] = 67643, - [SMALL_STATE(1693)] = 67708, - [SMALL_STATE(1694)] = 67773, - [SMALL_STATE(1695)] = 67838, - [SMALL_STATE(1696)] = 67903, - [SMALL_STATE(1697)] = 67968, - [SMALL_STATE(1698)] = 68033, - [SMALL_STATE(1699)] = 68098, - [SMALL_STATE(1700)] = 68163, - [SMALL_STATE(1701)] = 68228, - [SMALL_STATE(1702)] = 68293, - [SMALL_STATE(1703)] = 68358, - [SMALL_STATE(1704)] = 68423, - [SMALL_STATE(1705)] = 68488, - [SMALL_STATE(1706)] = 68553, - [SMALL_STATE(1707)] = 68618, - [SMALL_STATE(1708)] = 68683, - [SMALL_STATE(1709)] = 68748, - [SMALL_STATE(1710)] = 68813, - [SMALL_STATE(1711)] = 68878, - [SMALL_STATE(1712)] = 68943, - [SMALL_STATE(1713)] = 69008, - [SMALL_STATE(1714)] = 69073, - [SMALL_STATE(1715)] = 69138, - [SMALL_STATE(1716)] = 69203, - [SMALL_STATE(1717)] = 69268, - [SMALL_STATE(1718)] = 69333, - [SMALL_STATE(1719)] = 69398, - [SMALL_STATE(1720)] = 69463, - [SMALL_STATE(1721)] = 69528, - [SMALL_STATE(1722)] = 69593, - [SMALL_STATE(1723)] = 69658, - [SMALL_STATE(1724)] = 69723, - [SMALL_STATE(1725)] = 69788, - [SMALL_STATE(1726)] = 69853, - [SMALL_STATE(1727)] = 69918, - [SMALL_STATE(1728)] = 69983, - [SMALL_STATE(1729)] = 70048, - [SMALL_STATE(1730)] = 70113, - [SMALL_STATE(1731)] = 70178, - [SMALL_STATE(1732)] = 70243, - [SMALL_STATE(1733)] = 70308, - [SMALL_STATE(1734)] = 70373, - [SMALL_STATE(1735)] = 70438, - [SMALL_STATE(1736)] = 70503, - [SMALL_STATE(1737)] = 70568, - [SMALL_STATE(1738)] = 70633, - [SMALL_STATE(1739)] = 70698, - [SMALL_STATE(1740)] = 70763, - [SMALL_STATE(1741)] = 70828, - [SMALL_STATE(1742)] = 70893, - [SMALL_STATE(1743)] = 70958, - [SMALL_STATE(1744)] = 71023, - [SMALL_STATE(1745)] = 71088, - [SMALL_STATE(1746)] = 71153, - [SMALL_STATE(1747)] = 71218, - [SMALL_STATE(1748)] = 71283, - [SMALL_STATE(1749)] = 71348, - [SMALL_STATE(1750)] = 71413, - [SMALL_STATE(1751)] = 71478, - [SMALL_STATE(1752)] = 71543, - [SMALL_STATE(1753)] = 71608, - [SMALL_STATE(1754)] = 71673, - [SMALL_STATE(1755)] = 71738, - [SMALL_STATE(1756)] = 71803, - [SMALL_STATE(1757)] = 71868, - [SMALL_STATE(1758)] = 71933, - [SMALL_STATE(1759)] = 71998, - [SMALL_STATE(1760)] = 72063, - [SMALL_STATE(1761)] = 72128, - [SMALL_STATE(1762)] = 72193, - [SMALL_STATE(1763)] = 72258, - [SMALL_STATE(1764)] = 72323, - [SMALL_STATE(1765)] = 72388, - [SMALL_STATE(1766)] = 72453, - [SMALL_STATE(1767)] = 72518, - [SMALL_STATE(1768)] = 72583, - [SMALL_STATE(1769)] = 72648, - [SMALL_STATE(1770)] = 72713, - [SMALL_STATE(1771)] = 72778, - [SMALL_STATE(1772)] = 72843, - [SMALL_STATE(1773)] = 72908, - [SMALL_STATE(1774)] = 72973, - [SMALL_STATE(1775)] = 73038, - [SMALL_STATE(1776)] = 73103, - [SMALL_STATE(1777)] = 73168, - [SMALL_STATE(1778)] = 73233, - [SMALL_STATE(1779)] = 73298, - [SMALL_STATE(1780)] = 73363, - [SMALL_STATE(1781)] = 73428, - [SMALL_STATE(1782)] = 73493, - [SMALL_STATE(1783)] = 73558, - [SMALL_STATE(1784)] = 73620, - [SMALL_STATE(1785)] = 73682, - [SMALL_STATE(1786)] = 73744, - [SMALL_STATE(1787)] = 73806, - [SMALL_STATE(1788)] = 73868, - [SMALL_STATE(1789)] = 73930, - [SMALL_STATE(1790)] = 73992, - [SMALL_STATE(1791)] = 74054, - [SMALL_STATE(1792)] = 74116, - [SMALL_STATE(1793)] = 74178, - [SMALL_STATE(1794)] = 74240, - [SMALL_STATE(1795)] = 74302, - [SMALL_STATE(1796)] = 74364, - [SMALL_STATE(1797)] = 74426, - [SMALL_STATE(1798)] = 74488, - [SMALL_STATE(1799)] = 74550, - [SMALL_STATE(1800)] = 74612, - [SMALL_STATE(1801)] = 74674, - [SMALL_STATE(1802)] = 74736, - [SMALL_STATE(1803)] = 74798, - [SMALL_STATE(1804)] = 74860, - [SMALL_STATE(1805)] = 74922, - [SMALL_STATE(1806)] = 74984, - [SMALL_STATE(1807)] = 75046, - [SMALL_STATE(1808)] = 75108, - [SMALL_STATE(1809)] = 75170, - [SMALL_STATE(1810)] = 75232, - [SMALL_STATE(1811)] = 75294, - [SMALL_STATE(1812)] = 75356, - [SMALL_STATE(1813)] = 75418, - [SMALL_STATE(1814)] = 75482, - [SMALL_STATE(1815)] = 75544, - [SMALL_STATE(1816)] = 75606, - [SMALL_STATE(1817)] = 75668, - [SMALL_STATE(1818)] = 75730, - [SMALL_STATE(1819)] = 75792, - [SMALL_STATE(1820)] = 75854, - [SMALL_STATE(1821)] = 75916, - [SMALL_STATE(1822)] = 75978, - [SMALL_STATE(1823)] = 76040, - [SMALL_STATE(1824)] = 76102, - [SMALL_STATE(1825)] = 76164, - [SMALL_STATE(1826)] = 76226, - [SMALL_STATE(1827)] = 76288, - [SMALL_STATE(1828)] = 76350, - [SMALL_STATE(1829)] = 76412, - [SMALL_STATE(1830)] = 76474, - [SMALL_STATE(1831)] = 76536, - [SMALL_STATE(1832)] = 76575, - [SMALL_STATE(1833)] = 76636, - [SMALL_STATE(1834)] = 76697, - [SMALL_STATE(1835)] = 76758, - [SMALL_STATE(1836)] = 76819, - [SMALL_STATE(1837)] = 76880, - [SMALL_STATE(1838)] = 76917, - [SMALL_STATE(1839)] = 76951, - [SMALL_STATE(1840)] = 76985, - [SMALL_STATE(1841)] = 77017, - [SMALL_STATE(1842)] = 77049, - [SMALL_STATE(1843)] = 77081, - [SMALL_STATE(1844)] = 77113, - [SMALL_STATE(1845)] = 77149, - [SMALL_STATE(1846)] = 77183, - [SMALL_STATE(1847)] = 77236, - [SMALL_STATE(1848)] = 77291, - [SMALL_STATE(1849)] = 77324, - [SMALL_STATE(1850)] = 77361, - [SMALL_STATE(1851)] = 77416, - [SMALL_STATE(1852)] = 77469, - [SMALL_STATE(1853)] = 77522, - [SMALL_STATE(1854)] = 77575, - [SMALL_STATE(1855)] = 77611, - [SMALL_STATE(1856)] = 77647, - [SMALL_STATE(1857)] = 77685, - [SMALL_STATE(1858)] = 77718, - [SMALL_STATE(1859)] = 77751, - [SMALL_STATE(1860)] = 77798, - [SMALL_STATE(1861)] = 77831, - [SMALL_STATE(1862)] = 77878, - [SMALL_STATE(1863)] = 77909, - [SMALL_STATE(1864)] = 77942, - [SMALL_STATE(1865)] = 77971, - [SMALL_STATE(1866)] = 78000, - [SMALL_STATE(1867)] = 78047, - [SMALL_STATE(1868)] = 78077, - [SMALL_STATE(1869)] = 78107, - [SMALL_STATE(1870)] = 78139, - [SMALL_STATE(1871)] = 78167, - [SMALL_STATE(1872)] = 78201, - [SMALL_STATE(1873)] = 78232, - [SMALL_STATE(1874)] = 78261, - [SMALL_STATE(1875)] = 78289, - [SMALL_STATE(1876)] = 78319, - [SMALL_STATE(1877)] = 78347, - [SMALL_STATE(1878)] = 78375, - [SMALL_STATE(1879)] = 78402, - [SMALL_STATE(1880)] = 78427, - [SMALL_STATE(1881)] = 78452, - [SMALL_STATE(1882)] = 78481, - [SMALL_STATE(1883)] = 78510, - [SMALL_STATE(1884)] = 78535, - [SMALL_STATE(1885)] = 78564, - [SMALL_STATE(1886)] = 78593, - [SMALL_STATE(1887)] = 78615, - [SMALL_STATE(1888)] = 78637, - [SMALL_STATE(1889)] = 78659, - [SMALL_STATE(1890)] = 78681, - [SMALL_STATE(1891)] = 78703, - [SMALL_STATE(1892)] = 78725, - [SMALL_STATE(1893)] = 78745, - [SMALL_STATE(1894)] = 78770, - [SMALL_STATE(1895)] = 78800, - [SMALL_STATE(1896)] = 78830, - [SMALL_STATE(1897)] = 78856, - [SMALL_STATE(1898)] = 78880, - [SMALL_STATE(1899)] = 78910, - [SMALL_STATE(1900)] = 78934, - [SMALL_STATE(1901)] = 78964, - [SMALL_STATE(1902)] = 78988, - [SMALL_STATE(1903)] = 79014, - [SMALL_STATE(1904)] = 79038, - [SMALL_STATE(1905)] = 79054, - [SMALL_STATE(1906)] = 79078, - [SMALL_STATE(1907)] = 79094, - [SMALL_STATE(1908)] = 79124, - [SMALL_STATE(1909)] = 79150, - [SMALL_STATE(1910)] = 79176, - [SMALL_STATE(1911)] = 79194, - [SMALL_STATE(1912)] = 79224, - [SMALL_STATE(1913)] = 79254, - [SMALL_STATE(1914)] = 79284, - [SMALL_STATE(1915)] = 79314, - [SMALL_STATE(1916)] = 79338, - [SMALL_STATE(1917)] = 79368, - [SMALL_STATE(1918)] = 79394, - [SMALL_STATE(1919)] = 79424, - [SMALL_STATE(1920)] = 79450, - [SMALL_STATE(1921)] = 79473, - [SMALL_STATE(1922)] = 79496, - [SMALL_STATE(1923)] = 79513, - [SMALL_STATE(1924)] = 79536, - [SMALL_STATE(1925)] = 79558, - [SMALL_STATE(1926)] = 79580, - [SMALL_STATE(1927)] = 79596, - [SMALL_STATE(1928)] = 79622, - [SMALL_STATE(1929)] = 79644, - [SMALL_STATE(1930)] = 79670, - [SMALL_STATE(1931)] = 79686, - [SMALL_STATE(1932)] = 79704, - [SMALL_STATE(1933)] = 79720, - [SMALL_STATE(1934)] = 79746, - [SMALL_STATE(1935)] = 79768, - [SMALL_STATE(1936)] = 79794, - [SMALL_STATE(1937)] = 79816, - [SMALL_STATE(1938)] = 79836, - [SMALL_STATE(1939)] = 79858, - [SMALL_STATE(1940)] = 79874, - [SMALL_STATE(1941)] = 79896, - [SMALL_STATE(1942)] = 79922, - [SMALL_STATE(1943)] = 79940, - [SMALL_STATE(1944)] = 79966, - [SMALL_STATE(1945)] = 79992, - [SMALL_STATE(1946)] = 80016, - [SMALL_STATE(1947)] = 80042, - [SMALL_STATE(1948)] = 80068, - [SMALL_STATE(1949)] = 80090, - [SMALL_STATE(1950)] = 80114, - [SMALL_STATE(1951)] = 80137, - [SMALL_STATE(1952)] = 80160, - [SMALL_STATE(1953)] = 80183, - [SMALL_STATE(1954)] = 80206, - [SMALL_STATE(1955)] = 80229, - [SMALL_STATE(1956)] = 80246, - [SMALL_STATE(1957)] = 80269, - [SMALL_STATE(1958)] = 80284, - [SMALL_STATE(1959)] = 80307, - [SMALL_STATE(1960)] = 80326, - [SMALL_STATE(1961)] = 80345, - [SMALL_STATE(1962)] = 80364, - [SMALL_STATE(1963)] = 80387, - [SMALL_STATE(1964)] = 80408, - [SMALL_STATE(1965)] = 80431, - [SMALL_STATE(1966)] = 80450, - [SMALL_STATE(1967)] = 80473, - [SMALL_STATE(1968)] = 80496, - [SMALL_STATE(1969)] = 80519, - [SMALL_STATE(1970)] = 80532, - [SMALL_STATE(1971)] = 80555, - [SMALL_STATE(1972)] = 80578, - [SMALL_STATE(1973)] = 80599, - [SMALL_STATE(1974)] = 80620, - [SMALL_STATE(1975)] = 80639, - [SMALL_STATE(1976)] = 80662, - [SMALL_STATE(1977)] = 80685, - [SMALL_STATE(1978)] = 80708, - [SMALL_STATE(1979)] = 80731, - [SMALL_STATE(1980)] = 80752, - [SMALL_STATE(1981)] = 80771, - [SMALL_STATE(1982)] = 80792, - [SMALL_STATE(1983)] = 80815, - [SMALL_STATE(1984)] = 80838, - [SMALL_STATE(1985)] = 80861, - [SMALL_STATE(1986)] = 80882, - [SMALL_STATE(1987)] = 80903, - [SMALL_STATE(1988)] = 80926, - [SMALL_STATE(1989)] = 80949, - [SMALL_STATE(1990)] = 80964, - [SMALL_STATE(1991)] = 80985, - [SMALL_STATE(1992)] = 81006, - [SMALL_STATE(1993)] = 81025, - [SMALL_STATE(1994)] = 81048, - [SMALL_STATE(1995)] = 81071, - [SMALL_STATE(1996)] = 81094, - [SMALL_STATE(1997)] = 81117, - [SMALL_STATE(1998)] = 81140, - [SMALL_STATE(1999)] = 81159, - [SMALL_STATE(2000)] = 81182, - [SMALL_STATE(2001)] = 81203, - [SMALL_STATE(2002)] = 81226, - [SMALL_STATE(2003)] = 81247, - [SMALL_STATE(2004)] = 81270, - [SMALL_STATE(2005)] = 81293, - [SMALL_STATE(2006)] = 81311, - [SMALL_STATE(2007)] = 81327, - [SMALL_STATE(2008)] = 81341, - [SMALL_STATE(2009)] = 81357, - [SMALL_STATE(2010)] = 81373, - [SMALL_STATE(2011)] = 81391, - [SMALL_STATE(2012)] = 81407, - [SMALL_STATE(2013)] = 81423, - [SMALL_STATE(2014)] = 81443, - [SMALL_STATE(2015)] = 81463, - [SMALL_STATE(2016)] = 81479, - [SMALL_STATE(2017)] = 81495, - [SMALL_STATE(2018)] = 81515, - [SMALL_STATE(2019)] = 81531, - [SMALL_STATE(2020)] = 81551, - [SMALL_STATE(2021)] = 81571, - [SMALL_STATE(2022)] = 81591, - [SMALL_STATE(2023)] = 81607, - [SMALL_STATE(2024)] = 81625, - [SMALL_STATE(2025)] = 81641, - [SMALL_STATE(2026)] = 81661, - [SMALL_STATE(2027)] = 81673, - [SMALL_STATE(2028)] = 81685, - [SMALL_STATE(2029)] = 81697, - [SMALL_STATE(2030)] = 81717, - [SMALL_STATE(2031)] = 81737, - [SMALL_STATE(2032)] = 81755, - [SMALL_STATE(2033)] = 81775, - [SMALL_STATE(2034)] = 81791, - [SMALL_STATE(2035)] = 81805, - [SMALL_STATE(2036)] = 81819, - [SMALL_STATE(2037)] = 81839, - [SMALL_STATE(2038)] = 81853, - [SMALL_STATE(2039)] = 81873, - [SMALL_STATE(2040)] = 81889, - [SMALL_STATE(2041)] = 81905, - [SMALL_STATE(2042)] = 81925, - [SMALL_STATE(2043)] = 81945, - [SMALL_STATE(2044)] = 81965, - [SMALL_STATE(2045)] = 81985, - [SMALL_STATE(2046)] = 82005, - [SMALL_STATE(2047)] = 82017, - [SMALL_STATE(2048)] = 82033, - [SMALL_STATE(2049)] = 82053, - [SMALL_STATE(2050)] = 82073, - [SMALL_STATE(2051)] = 82087, - [SMALL_STATE(2052)] = 82107, - [SMALL_STATE(2053)] = 82127, - [SMALL_STATE(2054)] = 82145, - [SMALL_STATE(2055)] = 82165, - [SMALL_STATE(2056)] = 82182, - [SMALL_STATE(2057)] = 82199, - [SMALL_STATE(2058)] = 82216, - [SMALL_STATE(2059)] = 82233, - [SMALL_STATE(2060)] = 82250, - [SMALL_STATE(2061)] = 82267, - [SMALL_STATE(2062)] = 82282, - [SMALL_STATE(2063)] = 82299, - [SMALL_STATE(2064)] = 82316, - [SMALL_STATE(2065)] = 82331, - [SMALL_STATE(2066)] = 82348, - [SMALL_STATE(2067)] = 82365, - [SMALL_STATE(2068)] = 82382, - [SMALL_STATE(2069)] = 82399, - [SMALL_STATE(2070)] = 82416, - [SMALL_STATE(2071)] = 82433, - [SMALL_STATE(2072)] = 82452, - [SMALL_STATE(2073)] = 82469, - [SMALL_STATE(2074)] = 82486, - [SMALL_STATE(2075)] = 82503, - [SMALL_STATE(2076)] = 82520, - [SMALL_STATE(2077)] = 82537, - [SMALL_STATE(2078)] = 82554, - [SMALL_STATE(2079)] = 82571, - [SMALL_STATE(2080)] = 82588, - [SMALL_STATE(2081)] = 82605, - [SMALL_STATE(2082)] = 82624, - [SMALL_STATE(2083)] = 82641, - [SMALL_STATE(2084)] = 82658, - [SMALL_STATE(2085)] = 82675, - [SMALL_STATE(2086)] = 82692, - [SMALL_STATE(2087)] = 82709, - [SMALL_STATE(2088)] = 82726, - [SMALL_STATE(2089)] = 82743, - [SMALL_STATE(2090)] = 82760, - [SMALL_STATE(2091)] = 82777, - [SMALL_STATE(2092)] = 82794, - [SMALL_STATE(2093)] = 82811, - [SMALL_STATE(2094)] = 82830, - [SMALL_STATE(2095)] = 82847, - [SMALL_STATE(2096)] = 82864, - [SMALL_STATE(2097)] = 82881, - [SMALL_STATE(2098)] = 82898, - [SMALL_STATE(2099)] = 82915, - [SMALL_STATE(2100)] = 82932, - [SMALL_STATE(2101)] = 82949, - [SMALL_STATE(2102)] = 82966, - [SMALL_STATE(2103)] = 82983, - [SMALL_STATE(2104)] = 83000, - [SMALL_STATE(2105)] = 83017, - [SMALL_STATE(2106)] = 83034, - [SMALL_STATE(2107)] = 83051, - [SMALL_STATE(2108)] = 83068, - [SMALL_STATE(2109)] = 83085, - [SMALL_STATE(2110)] = 83102, - [SMALL_STATE(2111)] = 83119, - [SMALL_STATE(2112)] = 83136, - [SMALL_STATE(2113)] = 83153, - [SMALL_STATE(2114)] = 83170, - [SMALL_STATE(2115)] = 83187, - [SMALL_STATE(2116)] = 83204, - [SMALL_STATE(2117)] = 83221, - [SMALL_STATE(2118)] = 83238, - [SMALL_STATE(2119)] = 83255, - [SMALL_STATE(2120)] = 83272, - [SMALL_STATE(2121)] = 83289, - [SMALL_STATE(2122)] = 83306, - [SMALL_STATE(2123)] = 83323, - [SMALL_STATE(2124)] = 83340, - [SMALL_STATE(2125)] = 83357, - [SMALL_STATE(2126)] = 83370, - [SMALL_STATE(2127)] = 83387, - [SMALL_STATE(2128)] = 83404, - [SMALL_STATE(2129)] = 83421, - [SMALL_STATE(2130)] = 83438, - [SMALL_STATE(2131)] = 83455, - [SMALL_STATE(2132)] = 83472, - [SMALL_STATE(2133)] = 83483, - [SMALL_STATE(2134)] = 83500, - [SMALL_STATE(2135)] = 83517, - [SMALL_STATE(2136)] = 83534, - [SMALL_STATE(2137)] = 83551, - [SMALL_STATE(2138)] = 83570, - [SMALL_STATE(2139)] = 83587, - [SMALL_STATE(2140)] = 83604, - [SMALL_STATE(2141)] = 83621, - [SMALL_STATE(2142)] = 83638, - [SMALL_STATE(2143)] = 83655, - [SMALL_STATE(2144)] = 83672, - [SMALL_STATE(2145)] = 83689, - [SMALL_STATE(2146)] = 83700, - [SMALL_STATE(2147)] = 83717, - [SMALL_STATE(2148)] = 83734, - [SMALL_STATE(2149)] = 83751, - [SMALL_STATE(2150)] = 83768, - [SMALL_STATE(2151)] = 83779, - [SMALL_STATE(2152)] = 83796, - [SMALL_STATE(2153)] = 83813, - [SMALL_STATE(2154)] = 83830, - [SMALL_STATE(2155)] = 83847, - [SMALL_STATE(2156)] = 83864, - [SMALL_STATE(2157)] = 83883, - [SMALL_STATE(2158)] = 83900, - [SMALL_STATE(2159)] = 83919, - [SMALL_STATE(2160)] = 83936, - [SMALL_STATE(2161)] = 83953, - [SMALL_STATE(2162)] = 83970, - [SMALL_STATE(2163)] = 83987, - [SMALL_STATE(2164)] = 84004, - [SMALL_STATE(2165)] = 84021, - [SMALL_STATE(2166)] = 84034, - [SMALL_STATE(2167)] = 84051, - [SMALL_STATE(2168)] = 84068, - [SMALL_STATE(2169)] = 84085, - [SMALL_STATE(2170)] = 84102, - [SMALL_STATE(2171)] = 84119, - [SMALL_STATE(2172)] = 84136, - [SMALL_STATE(2173)] = 84153, - [SMALL_STATE(2174)] = 84170, - [SMALL_STATE(2175)] = 84187, - [SMALL_STATE(2176)] = 84204, - [SMALL_STATE(2177)] = 84215, - [SMALL_STATE(2178)] = 84232, - [SMALL_STATE(2179)] = 84251, - [SMALL_STATE(2180)] = 84268, - [SMALL_STATE(2181)] = 84285, - [SMALL_STATE(2182)] = 84302, - [SMALL_STATE(2183)] = 84319, - [SMALL_STATE(2184)] = 84336, - [SMALL_STATE(2185)] = 84353, - [SMALL_STATE(2186)] = 84370, - [SMALL_STATE(2187)] = 84385, - [SMALL_STATE(2188)] = 84402, - [SMALL_STATE(2189)] = 84419, - [SMALL_STATE(2190)] = 84436, - [SMALL_STATE(2191)] = 84453, - [SMALL_STATE(2192)] = 84470, - [SMALL_STATE(2193)] = 84487, - [SMALL_STATE(2194)] = 84504, - [SMALL_STATE(2195)] = 84523, - [SMALL_STATE(2196)] = 84540, - [SMALL_STATE(2197)] = 84557, - [SMALL_STATE(2198)] = 84574, - [SMALL_STATE(2199)] = 84591, - [SMALL_STATE(2200)] = 84608, - [SMALL_STATE(2201)] = 84625, - [SMALL_STATE(2202)] = 84642, - [SMALL_STATE(2203)] = 84659, - [SMALL_STATE(2204)] = 84676, - [SMALL_STATE(2205)] = 84693, - [SMALL_STATE(2206)] = 84710, - [SMALL_STATE(2207)] = 84727, - [SMALL_STATE(2208)] = 84744, - [SMALL_STATE(2209)] = 84759, - [SMALL_STATE(2210)] = 84776, - [SMALL_STATE(2211)] = 84793, - [SMALL_STATE(2212)] = 84810, - [SMALL_STATE(2213)] = 84827, - [SMALL_STATE(2214)] = 84840, - [SMALL_STATE(2215)] = 84857, - [SMALL_STATE(2216)] = 84874, - [SMALL_STATE(2217)] = 84891, - [SMALL_STATE(2218)] = 84910, - [SMALL_STATE(2219)] = 84927, - [SMALL_STATE(2220)] = 84944, - [SMALL_STATE(2221)] = 84961, - [SMALL_STATE(2222)] = 84978, - [SMALL_STATE(2223)] = 84995, - [SMALL_STATE(2224)] = 85012, - [SMALL_STATE(2225)] = 85029, - [SMALL_STATE(2226)] = 85046, - [SMALL_STATE(2227)] = 85063, - [SMALL_STATE(2228)] = 85080, - [SMALL_STATE(2229)] = 85097, - [SMALL_STATE(2230)] = 85114, - [SMALL_STATE(2231)] = 85131, - [SMALL_STATE(2232)] = 85148, - [SMALL_STATE(2233)] = 85165, - [SMALL_STATE(2234)] = 85182, - [SMALL_STATE(2235)] = 85199, - [SMALL_STATE(2236)] = 85216, - [SMALL_STATE(2237)] = 85233, - [SMALL_STATE(2238)] = 85250, - [SMALL_STATE(2239)] = 85267, - [SMALL_STATE(2240)] = 85284, - [SMALL_STATE(2241)] = 85301, - [SMALL_STATE(2242)] = 85318, - [SMALL_STATE(2243)] = 85335, - [SMALL_STATE(2244)] = 85352, - [SMALL_STATE(2245)] = 85369, - [SMALL_STATE(2246)] = 85386, - [SMALL_STATE(2247)] = 85403, - [SMALL_STATE(2248)] = 85420, - [SMALL_STATE(2249)] = 85437, - [SMALL_STATE(2250)] = 85454, - [SMALL_STATE(2251)] = 85471, - [SMALL_STATE(2252)] = 85488, - [SMALL_STATE(2253)] = 85505, - [SMALL_STATE(2254)] = 85524, - [SMALL_STATE(2255)] = 85541, - [SMALL_STATE(2256)] = 85558, - [SMALL_STATE(2257)] = 85571, - [SMALL_STATE(2258)] = 85588, - [SMALL_STATE(2259)] = 85605, - [SMALL_STATE(2260)] = 85622, - [SMALL_STATE(2261)] = 85639, - [SMALL_STATE(2262)] = 85656, - [SMALL_STATE(2263)] = 85673, - [SMALL_STATE(2264)] = 85690, - [SMALL_STATE(2265)] = 85707, - [SMALL_STATE(2266)] = 85724, - [SMALL_STATE(2267)] = 85741, - [SMALL_STATE(2268)] = 85758, - [SMALL_STATE(2269)] = 85775, - [SMALL_STATE(2270)] = 85794, - [SMALL_STATE(2271)] = 85811, - [SMALL_STATE(2272)] = 85828, - [SMALL_STATE(2273)] = 85845, - [SMALL_STATE(2274)] = 85862, - [SMALL_STATE(2275)] = 85879, - [SMALL_STATE(2276)] = 85896, - [SMALL_STATE(2277)] = 85909, - [SMALL_STATE(2278)] = 85926, - [SMALL_STATE(2279)] = 85943, - [SMALL_STATE(2280)] = 85960, - [SMALL_STATE(2281)] = 85977, - [SMALL_STATE(2282)] = 85994, - [SMALL_STATE(2283)] = 86011, - [SMALL_STATE(2284)] = 86028, - [SMALL_STATE(2285)] = 86045, - [SMALL_STATE(2286)] = 86062, - [SMALL_STATE(2287)] = 86079, - [SMALL_STATE(2288)] = 86096, - [SMALL_STATE(2289)] = 86110, - [SMALL_STATE(2290)] = 86124, - [SMALL_STATE(2291)] = 86138, - [SMALL_STATE(2292)] = 86152, - [SMALL_STATE(2293)] = 86166, - [SMALL_STATE(2294)] = 86180, - [SMALL_STATE(2295)] = 86192, - [SMALL_STATE(2296)] = 86206, - [SMALL_STATE(2297)] = 86220, - [SMALL_STATE(2298)] = 86234, - [SMALL_STATE(2299)] = 86244, - [SMALL_STATE(2300)] = 86258, - [SMALL_STATE(2301)] = 86272, - [SMALL_STATE(2302)] = 86286, - [SMALL_STATE(2303)] = 86300, - [SMALL_STATE(2304)] = 86314, - [SMALL_STATE(2305)] = 86328, - [SMALL_STATE(2306)] = 86342, - [SMALL_STATE(2307)] = 86356, - [SMALL_STATE(2308)] = 86370, - [SMALL_STATE(2309)] = 86384, - [SMALL_STATE(2310)] = 86398, - [SMALL_STATE(2311)] = 86412, - [SMALL_STATE(2312)] = 86426, - [SMALL_STATE(2313)] = 86438, - [SMALL_STATE(2314)] = 86452, - [SMALL_STATE(2315)] = 86466, - [SMALL_STATE(2316)] = 86480, - [SMALL_STATE(2317)] = 86490, - [SMALL_STATE(2318)] = 86502, - [SMALL_STATE(2319)] = 86516, - [SMALL_STATE(2320)] = 86530, - [SMALL_STATE(2321)] = 86544, - [SMALL_STATE(2322)] = 86558, - [SMALL_STATE(2323)] = 86570, - [SMALL_STATE(2324)] = 86580, - [SMALL_STATE(2325)] = 86594, - [SMALL_STATE(2326)] = 86608, - [SMALL_STATE(2327)] = 86622, - [SMALL_STATE(2328)] = 86634, - [SMALL_STATE(2329)] = 86648, - [SMALL_STATE(2330)] = 86660, - [SMALL_STATE(2331)] = 86672, - [SMALL_STATE(2332)] = 86686, - [SMALL_STATE(2333)] = 86700, - [SMALL_STATE(2334)] = 86714, - [SMALL_STATE(2335)] = 86724, - [SMALL_STATE(2336)] = 86734, - [SMALL_STATE(2337)] = 86748, - [SMALL_STATE(2338)] = 86760, - [SMALL_STATE(2339)] = 86772, - [SMALL_STATE(2340)] = 86782, - [SMALL_STATE(2341)] = 86796, - [SMALL_STATE(2342)] = 86810, - [SMALL_STATE(2343)] = 86824, - [SMALL_STATE(2344)] = 86834, - [SMALL_STATE(2345)] = 86846, - [SMALL_STATE(2346)] = 86860, - [SMALL_STATE(2347)] = 86874, - [SMALL_STATE(2348)] = 86888, - [SMALL_STATE(2349)] = 86902, - [SMALL_STATE(2350)] = 86916, - [SMALL_STATE(2351)] = 86928, - [SMALL_STATE(2352)] = 86942, - [SMALL_STATE(2353)] = 86954, - [SMALL_STATE(2354)] = 86964, - [SMALL_STATE(2355)] = 86978, - [SMALL_STATE(2356)] = 86992, - [SMALL_STATE(2357)] = 87002, - [SMALL_STATE(2358)] = 87016, - [SMALL_STATE(2359)] = 87030, - [SMALL_STATE(2360)] = 87040, - [SMALL_STATE(2361)] = 87054, - [SMALL_STATE(2362)] = 87064, - [SMALL_STATE(2363)] = 87078, - [SMALL_STATE(2364)] = 87092, - [SMALL_STATE(2365)] = 87104, - [SMALL_STATE(2366)] = 87118, - [SMALL_STATE(2367)] = 87132, - [SMALL_STATE(2368)] = 87142, - [SMALL_STATE(2369)] = 87156, - [SMALL_STATE(2370)] = 87170, - [SMALL_STATE(2371)] = 87184, - [SMALL_STATE(2372)] = 87198, - [SMALL_STATE(2373)] = 87208, - [SMALL_STATE(2374)] = 87222, - [SMALL_STATE(2375)] = 87236, - [SMALL_STATE(2376)] = 87250, - [SMALL_STATE(2377)] = 87264, - [SMALL_STATE(2378)] = 87278, - [SMALL_STATE(2379)] = 87290, - [SMALL_STATE(2380)] = 87304, - [SMALL_STATE(2381)] = 87318, - [SMALL_STATE(2382)] = 87332, - [SMALL_STATE(2383)] = 87346, - [SMALL_STATE(2384)] = 87360, - [SMALL_STATE(2385)] = 87374, - [SMALL_STATE(2386)] = 87388, - [SMALL_STATE(2387)] = 87402, - [SMALL_STATE(2388)] = 87416, - [SMALL_STATE(2389)] = 87430, - [SMALL_STATE(2390)] = 87444, - [SMALL_STATE(2391)] = 87458, - [SMALL_STATE(2392)] = 87472, - [SMALL_STATE(2393)] = 87486, - [SMALL_STATE(2394)] = 87500, - [SMALL_STATE(2395)] = 87514, - [SMALL_STATE(2396)] = 87528, - [SMALL_STATE(2397)] = 87542, - [SMALL_STATE(2398)] = 87556, - [SMALL_STATE(2399)] = 87570, - [SMALL_STATE(2400)] = 87584, - [SMALL_STATE(2401)] = 87598, - [SMALL_STATE(2402)] = 87612, - [SMALL_STATE(2403)] = 87626, - [SMALL_STATE(2404)] = 87640, - [SMALL_STATE(2405)] = 87654, - [SMALL_STATE(2406)] = 87668, - [SMALL_STATE(2407)] = 87682, - [SMALL_STATE(2408)] = 87696, - [SMALL_STATE(2409)] = 87710, - [SMALL_STATE(2410)] = 87724, - [SMALL_STATE(2411)] = 87738, - [SMALL_STATE(2412)] = 87748, - [SMALL_STATE(2413)] = 87762, - [SMALL_STATE(2414)] = 87776, - [SMALL_STATE(2415)] = 87790, - [SMALL_STATE(2416)] = 87802, - [SMALL_STATE(2417)] = 87816, - [SMALL_STATE(2418)] = 87830, - [SMALL_STATE(2419)] = 87844, - [SMALL_STATE(2420)] = 87858, - [SMALL_STATE(2421)] = 87872, - [SMALL_STATE(2422)] = 87886, - [SMALL_STATE(2423)] = 87900, - [SMALL_STATE(2424)] = 87914, - [SMALL_STATE(2425)] = 87926, - [SMALL_STATE(2426)] = 87940, - [SMALL_STATE(2427)] = 87954, - [SMALL_STATE(2428)] = 87968, - [SMALL_STATE(2429)] = 87982, - [SMALL_STATE(2430)] = 87996, - [SMALL_STATE(2431)] = 88010, - [SMALL_STATE(2432)] = 88024, - [SMALL_STATE(2433)] = 88038, - [SMALL_STATE(2434)] = 88052, - [SMALL_STATE(2435)] = 88066, - [SMALL_STATE(2436)] = 88080, - [SMALL_STATE(2437)] = 88094, - [SMALL_STATE(2438)] = 88108, - [SMALL_STATE(2439)] = 88122, - [SMALL_STATE(2440)] = 88136, - [SMALL_STATE(2441)] = 88150, - [SMALL_STATE(2442)] = 88164, - [SMALL_STATE(2443)] = 88176, - [SMALL_STATE(2444)] = 88188, - [SMALL_STATE(2445)] = 88202, - [SMALL_STATE(2446)] = 88216, - [SMALL_STATE(2447)] = 88230, - [SMALL_STATE(2448)] = 88241, - [SMALL_STATE(2449)] = 88250, - [SMALL_STATE(2450)] = 88261, - [SMALL_STATE(2451)] = 88272, - [SMALL_STATE(2452)] = 88283, - [SMALL_STATE(2453)] = 88294, - [SMALL_STATE(2454)] = 88305, - [SMALL_STATE(2455)] = 88316, - [SMALL_STATE(2456)] = 88327, - [SMALL_STATE(2457)] = 88338, - [SMALL_STATE(2458)] = 88349, - [SMALL_STATE(2459)] = 88360, - [SMALL_STATE(2460)] = 88371, - [SMALL_STATE(2461)] = 88380, - [SMALL_STATE(2462)] = 88391, - [SMALL_STATE(2463)] = 88402, - [SMALL_STATE(2464)] = 88413, - [SMALL_STATE(2465)] = 88424, - [SMALL_STATE(2466)] = 88435, - [SMALL_STATE(2467)] = 88446, - [SMALL_STATE(2468)] = 88457, - [SMALL_STATE(2469)] = 88468, - [SMALL_STATE(2470)] = 88479, - [SMALL_STATE(2471)] = 88490, - [SMALL_STATE(2472)] = 88501, - [SMALL_STATE(2473)] = 88512, - [SMALL_STATE(2474)] = 88523, - [SMALL_STATE(2475)] = 88534, - [SMALL_STATE(2476)] = 88545, - [SMALL_STATE(2477)] = 88556, - [SMALL_STATE(2478)] = 88567, - [SMALL_STATE(2479)] = 88578, - [SMALL_STATE(2480)] = 88589, - [SMALL_STATE(2481)] = 88600, - [SMALL_STATE(2482)] = 88609, - [SMALL_STATE(2483)] = 88620, - [SMALL_STATE(2484)] = 88631, - [SMALL_STATE(2485)] = 88642, - [SMALL_STATE(2486)] = 88653, - [SMALL_STATE(2487)] = 88664, - [SMALL_STATE(2488)] = 88675, - [SMALL_STATE(2489)] = 88684, - [SMALL_STATE(2490)] = 88695, - [SMALL_STATE(2491)] = 88706, - [SMALL_STATE(2492)] = 88717, - [SMALL_STATE(2493)] = 88728, - [SMALL_STATE(2494)] = 88739, - [SMALL_STATE(2495)] = 88750, - [SMALL_STATE(2496)] = 88761, - [SMALL_STATE(2497)] = 88772, - [SMALL_STATE(2498)] = 88783, - [SMALL_STATE(2499)] = 88794, - [SMALL_STATE(2500)] = 88805, - [SMALL_STATE(2501)] = 88816, - [SMALL_STATE(2502)] = 88827, - [SMALL_STATE(2503)] = 88838, - [SMALL_STATE(2504)] = 88849, - [SMALL_STATE(2505)] = 88860, - [SMALL_STATE(2506)] = 88871, - [SMALL_STATE(2507)] = 88880, - [SMALL_STATE(2508)] = 88891, - [SMALL_STATE(2509)] = 88902, - [SMALL_STATE(2510)] = 88913, - [SMALL_STATE(2511)] = 88924, - [SMALL_STATE(2512)] = 88935, - [SMALL_STATE(2513)] = 88946, - [SMALL_STATE(2514)] = 88957, - [SMALL_STATE(2515)] = 88968, - [SMALL_STATE(2516)] = 88979, - [SMALL_STATE(2517)] = 88990, - [SMALL_STATE(2518)] = 89001, - [SMALL_STATE(2519)] = 89012, - [SMALL_STATE(2520)] = 89023, - [SMALL_STATE(2521)] = 89034, - [SMALL_STATE(2522)] = 89045, - [SMALL_STATE(2523)] = 89056, - [SMALL_STATE(2524)] = 89067, - [SMALL_STATE(2525)] = 89078, - [SMALL_STATE(2526)] = 89089, - [SMALL_STATE(2527)] = 89100, - [SMALL_STATE(2528)] = 89111, - [SMALL_STATE(2529)] = 89122, - [SMALL_STATE(2530)] = 89133, - [SMALL_STATE(2531)] = 89144, - [SMALL_STATE(2532)] = 89155, - [SMALL_STATE(2533)] = 89166, - [SMALL_STATE(2534)] = 89177, - [SMALL_STATE(2535)] = 89188, - [SMALL_STATE(2536)] = 89199, - [SMALL_STATE(2537)] = 89210, - [SMALL_STATE(2538)] = 89221, - [SMALL_STATE(2539)] = 89232, - [SMALL_STATE(2540)] = 89243, - [SMALL_STATE(2541)] = 89252, - [SMALL_STATE(2542)] = 89263, - [SMALL_STATE(2543)] = 89274, - [SMALL_STATE(2544)] = 89285, - [SMALL_STATE(2545)] = 89296, - [SMALL_STATE(2546)] = 89307, - [SMALL_STATE(2547)] = 89318, - [SMALL_STATE(2548)] = 89327, - [SMALL_STATE(2549)] = 89338, - [SMALL_STATE(2550)] = 89349, - [SMALL_STATE(2551)] = 89360, - [SMALL_STATE(2552)] = 89371, - [SMALL_STATE(2553)] = 89382, - [SMALL_STATE(2554)] = 89393, - [SMALL_STATE(2555)] = 89404, - [SMALL_STATE(2556)] = 89415, - [SMALL_STATE(2557)] = 89426, - [SMALL_STATE(2558)] = 89437, - [SMALL_STATE(2559)] = 89448, - [SMALL_STATE(2560)] = 89459, - [SMALL_STATE(2561)] = 89470, - [SMALL_STATE(2562)] = 89479, - [SMALL_STATE(2563)] = 89490, - [SMALL_STATE(2564)] = 89501, - [SMALL_STATE(2565)] = 89512, - [SMALL_STATE(2566)] = 89523, - [SMALL_STATE(2567)] = 89534, - [SMALL_STATE(2568)] = 89545, - [SMALL_STATE(2569)] = 89556, - [SMALL_STATE(2570)] = 89567, - [SMALL_STATE(2571)] = 89578, - [SMALL_STATE(2572)] = 89589, - [SMALL_STATE(2573)] = 89600, - [SMALL_STATE(2574)] = 89611, - [SMALL_STATE(2575)] = 89622, - [SMALL_STATE(2576)] = 89633, - [SMALL_STATE(2577)] = 89644, - [SMALL_STATE(2578)] = 89655, - [SMALL_STATE(2579)] = 89666, - [SMALL_STATE(2580)] = 89675, - [SMALL_STATE(2581)] = 89686, - [SMALL_STATE(2582)] = 89697, - [SMALL_STATE(2583)] = 89708, - [SMALL_STATE(2584)] = 89719, - [SMALL_STATE(2585)] = 89730, - [SMALL_STATE(2586)] = 89741, - [SMALL_STATE(2587)] = 89752, - [SMALL_STATE(2588)] = 89761, - [SMALL_STATE(2589)] = 89772, - [SMALL_STATE(2590)] = 89783, - [SMALL_STATE(2591)] = 89794, - [SMALL_STATE(2592)] = 89805, - [SMALL_STATE(2593)] = 89816, - [SMALL_STATE(2594)] = 89825, - [SMALL_STATE(2595)] = 89836, - [SMALL_STATE(2596)] = 89847, - [SMALL_STATE(2597)] = 89856, - [SMALL_STATE(2598)] = 89867, - [SMALL_STATE(2599)] = 89878, - [SMALL_STATE(2600)] = 89889, - [SMALL_STATE(2601)] = 89900, - [SMALL_STATE(2602)] = 89911, - [SMALL_STATE(2603)] = 89922, - [SMALL_STATE(2604)] = 89933, - [SMALL_STATE(2605)] = 89944, - [SMALL_STATE(2606)] = 89955, - [SMALL_STATE(2607)] = 89966, - [SMALL_STATE(2608)] = 89977, - [SMALL_STATE(2609)] = 89988, - [SMALL_STATE(2610)] = 89999, - [SMALL_STATE(2611)] = 90008, - [SMALL_STATE(2612)] = 90019, - [SMALL_STATE(2613)] = 90030, - [SMALL_STATE(2614)] = 90041, - [SMALL_STATE(2615)] = 90052, - [SMALL_STATE(2616)] = 90063, - [SMALL_STATE(2617)] = 90074, - [SMALL_STATE(2618)] = 90085, - [SMALL_STATE(2619)] = 90093, - [SMALL_STATE(2620)] = 90101, - [SMALL_STATE(2621)] = 90109, - [SMALL_STATE(2622)] = 90117, - [SMALL_STATE(2623)] = 90125, - [SMALL_STATE(2624)] = 90133, - [SMALL_STATE(2625)] = 90141, - [SMALL_STATE(2626)] = 90149, - [SMALL_STATE(2627)] = 90157, - [SMALL_STATE(2628)] = 90165, - [SMALL_STATE(2629)] = 90173, - [SMALL_STATE(2630)] = 90181, - [SMALL_STATE(2631)] = 90189, - [SMALL_STATE(2632)] = 90197, - [SMALL_STATE(2633)] = 90205, - [SMALL_STATE(2634)] = 90213, - [SMALL_STATE(2635)] = 90221, - [SMALL_STATE(2636)] = 90229, - [SMALL_STATE(2637)] = 90237, - [SMALL_STATE(2638)] = 90245, - [SMALL_STATE(2639)] = 90253, - [SMALL_STATE(2640)] = 90261, - [SMALL_STATE(2641)] = 90269, - [SMALL_STATE(2642)] = 90277, - [SMALL_STATE(2643)] = 90285, - [SMALL_STATE(2644)] = 90293, - [SMALL_STATE(2645)] = 90301, - [SMALL_STATE(2646)] = 90309, - [SMALL_STATE(2647)] = 90317, - [SMALL_STATE(2648)] = 90325, - [SMALL_STATE(2649)] = 90333, - [SMALL_STATE(2650)] = 90341, - [SMALL_STATE(2651)] = 90349, - [SMALL_STATE(2652)] = 90357, - [SMALL_STATE(2653)] = 90365, - [SMALL_STATE(2654)] = 90373, - [SMALL_STATE(2655)] = 90381, - [SMALL_STATE(2656)] = 90389, - [SMALL_STATE(2657)] = 90397, - [SMALL_STATE(2658)] = 90405, - [SMALL_STATE(2659)] = 90413, - [SMALL_STATE(2660)] = 90421, - [SMALL_STATE(2661)] = 90429, - [SMALL_STATE(2662)] = 90437, - [SMALL_STATE(2663)] = 90445, - [SMALL_STATE(2664)] = 90453, - [SMALL_STATE(2665)] = 90461, - [SMALL_STATE(2666)] = 90469, - [SMALL_STATE(2667)] = 90477, - [SMALL_STATE(2668)] = 90485, - [SMALL_STATE(2669)] = 90493, - [SMALL_STATE(2670)] = 90501, - [SMALL_STATE(2671)] = 90509, - [SMALL_STATE(2672)] = 90517, - [SMALL_STATE(2673)] = 90525, - [SMALL_STATE(2674)] = 90533, - [SMALL_STATE(2675)] = 90541, - [SMALL_STATE(2676)] = 90549, - [SMALL_STATE(2677)] = 90557, - [SMALL_STATE(2678)] = 90565, - [SMALL_STATE(2679)] = 90573, - [SMALL_STATE(2680)] = 90581, - [SMALL_STATE(2681)] = 90589, - [SMALL_STATE(2682)] = 90597, - [SMALL_STATE(2683)] = 90605, - [SMALL_STATE(2684)] = 90613, - [SMALL_STATE(2685)] = 90621, - [SMALL_STATE(2686)] = 90629, - [SMALL_STATE(2687)] = 90637, - [SMALL_STATE(2688)] = 90645, - [SMALL_STATE(2689)] = 90653, - [SMALL_STATE(2690)] = 90661, - [SMALL_STATE(2691)] = 90669, - [SMALL_STATE(2692)] = 90677, - [SMALL_STATE(2693)] = 90685, - [SMALL_STATE(2694)] = 90693, - [SMALL_STATE(2695)] = 90701, - [SMALL_STATE(2696)] = 90709, - [SMALL_STATE(2697)] = 90717, - [SMALL_STATE(2698)] = 90725, - [SMALL_STATE(2699)] = 90733, - [SMALL_STATE(2700)] = 90741, - [SMALL_STATE(2701)] = 90749, - [SMALL_STATE(2702)] = 90757, - [SMALL_STATE(2703)] = 90765, - [SMALL_STATE(2704)] = 90773, - [SMALL_STATE(2705)] = 90781, - [SMALL_STATE(2706)] = 90789, - [SMALL_STATE(2707)] = 90797, - [SMALL_STATE(2708)] = 90805, - [SMALL_STATE(2709)] = 90813, - [SMALL_STATE(2710)] = 90821, - [SMALL_STATE(2711)] = 90829, - [SMALL_STATE(2712)] = 90837, - [SMALL_STATE(2713)] = 90845, - [SMALL_STATE(2714)] = 90853, - [SMALL_STATE(2715)] = 90861, - [SMALL_STATE(2716)] = 90869, - [SMALL_STATE(2717)] = 90877, - [SMALL_STATE(2718)] = 90885, - [SMALL_STATE(2719)] = 90893, - [SMALL_STATE(2720)] = 90901, - [SMALL_STATE(2721)] = 90909, - [SMALL_STATE(2722)] = 90917, - [SMALL_STATE(2723)] = 90925, - [SMALL_STATE(2724)] = 90933, - [SMALL_STATE(2725)] = 90941, - [SMALL_STATE(2726)] = 90949, - [SMALL_STATE(2727)] = 90957, - [SMALL_STATE(2728)] = 90965, - [SMALL_STATE(2729)] = 90973, - [SMALL_STATE(2730)] = 90981, - [SMALL_STATE(2731)] = 90989, - [SMALL_STATE(2732)] = 90997, - [SMALL_STATE(2733)] = 91005, - [SMALL_STATE(2734)] = 91013, - [SMALL_STATE(2735)] = 91021, - [SMALL_STATE(2736)] = 91029, - [SMALL_STATE(2737)] = 91037, - [SMALL_STATE(2738)] = 91045, - [SMALL_STATE(2739)] = 91053, - [SMALL_STATE(2740)] = 91061, - [SMALL_STATE(2741)] = 91069, - [SMALL_STATE(2742)] = 91077, - [SMALL_STATE(2743)] = 91085, - [SMALL_STATE(2744)] = 91093, - [SMALL_STATE(2745)] = 91101, - [SMALL_STATE(2746)] = 91109, - [SMALL_STATE(2747)] = 91117, - [SMALL_STATE(2748)] = 91125, - [SMALL_STATE(2749)] = 91133, - [SMALL_STATE(2750)] = 91141, - [SMALL_STATE(2751)] = 91149, - [SMALL_STATE(2752)] = 91157, - [SMALL_STATE(2753)] = 91165, - [SMALL_STATE(2754)] = 91173, - [SMALL_STATE(2755)] = 91181, - [SMALL_STATE(2756)] = 91189, - [SMALL_STATE(2757)] = 91197, - [SMALL_STATE(2758)] = 91205, - [SMALL_STATE(2759)] = 91213, - [SMALL_STATE(2760)] = 91221, - [SMALL_STATE(2761)] = 91229, - [SMALL_STATE(2762)] = 91237, - [SMALL_STATE(2763)] = 91245, - [SMALL_STATE(2764)] = 91253, - [SMALL_STATE(2765)] = 91261, - [SMALL_STATE(2766)] = 91269, - [SMALL_STATE(2767)] = 91277, - [SMALL_STATE(2768)] = 91285, - [SMALL_STATE(2769)] = 91293, - [SMALL_STATE(2770)] = 91301, - [SMALL_STATE(2771)] = 91309, - [SMALL_STATE(2772)] = 91317, - [SMALL_STATE(2773)] = 91325, - [SMALL_STATE(2774)] = 91333, - [SMALL_STATE(2775)] = 91341, - [SMALL_STATE(2776)] = 91349, - [SMALL_STATE(2777)] = 91357, - [SMALL_STATE(2778)] = 91365, - [SMALL_STATE(2779)] = 91373, - [SMALL_STATE(2780)] = 91381, - [SMALL_STATE(2781)] = 91389, - [SMALL_STATE(2782)] = 91397, - [SMALL_STATE(2783)] = 91405, - [SMALL_STATE(2784)] = 91413, - [SMALL_STATE(2785)] = 91421, - [SMALL_STATE(2786)] = 91429, - [SMALL_STATE(2787)] = 91437, - [SMALL_STATE(2788)] = 91445, - [SMALL_STATE(2789)] = 91453, - [SMALL_STATE(2790)] = 91461, - [SMALL_STATE(2791)] = 91469, - [SMALL_STATE(2792)] = 91477, - [SMALL_STATE(2793)] = 91485, - [SMALL_STATE(2794)] = 91493, - [SMALL_STATE(2795)] = 91501, - [SMALL_STATE(2796)] = 91509, - [SMALL_STATE(2797)] = 91517, - [SMALL_STATE(2798)] = 91525, - [SMALL_STATE(2799)] = 91533, - [SMALL_STATE(2800)] = 91541, - [SMALL_STATE(2801)] = 91549, - [SMALL_STATE(2802)] = 91557, - [SMALL_STATE(2803)] = 91565, - [SMALL_STATE(2804)] = 91573, - [SMALL_STATE(2805)] = 91581, - [SMALL_STATE(2806)] = 91589, - [SMALL_STATE(2807)] = 91597, - [SMALL_STATE(2808)] = 91605, - [SMALL_STATE(2809)] = 91613, - [SMALL_STATE(2810)] = 91621, - [SMALL_STATE(2811)] = 91629, - [SMALL_STATE(2812)] = 91637, - [SMALL_STATE(2813)] = 91645, - [SMALL_STATE(2814)] = 91653, - [SMALL_STATE(2815)] = 91661, - [SMALL_STATE(2816)] = 91669, - [SMALL_STATE(2817)] = 91677, - [SMALL_STATE(2818)] = 91685, - [SMALL_STATE(2819)] = 91693, - [SMALL_STATE(2820)] = 91701, - [SMALL_STATE(2821)] = 91709, - [SMALL_STATE(2822)] = 91717, - [SMALL_STATE(2823)] = 91725, - [SMALL_STATE(2824)] = 91733, - [SMALL_STATE(2825)] = 91741, - [SMALL_STATE(2826)] = 91749, - [SMALL_STATE(2827)] = 91757, - [SMALL_STATE(2828)] = 91765, - [SMALL_STATE(2829)] = 91773, - [SMALL_STATE(2830)] = 91781, - [SMALL_STATE(2831)] = 91789, - [SMALL_STATE(2832)] = 91797, - [SMALL_STATE(2833)] = 91805, - [SMALL_STATE(2834)] = 91813, - [SMALL_STATE(2835)] = 91821, - [SMALL_STATE(2836)] = 91829, - [SMALL_STATE(2837)] = 91837, - [SMALL_STATE(2838)] = 91845, - [SMALL_STATE(2839)] = 91853, - [SMALL_STATE(2840)] = 91861, - [SMALL_STATE(2841)] = 91869, - [SMALL_STATE(2842)] = 91877, - [SMALL_STATE(2843)] = 91885, - [SMALL_STATE(2844)] = 91893, - [SMALL_STATE(2845)] = 91901, - [SMALL_STATE(2846)] = 91909, - [SMALL_STATE(2847)] = 91917, - [SMALL_STATE(2848)] = 91925, - [SMALL_STATE(2849)] = 91933, - [SMALL_STATE(2850)] = 91941, - [SMALL_STATE(2851)] = 91949, - [SMALL_STATE(2852)] = 91957, - [SMALL_STATE(2853)] = 91965, - [SMALL_STATE(2854)] = 91973, - [SMALL_STATE(2855)] = 91981, - [SMALL_STATE(2856)] = 91989, - [SMALL_STATE(2857)] = 91997, - [SMALL_STATE(2858)] = 92005, - [SMALL_STATE(2859)] = 92013, - [SMALL_STATE(2860)] = 92021, - [SMALL_STATE(2861)] = 92029, - [SMALL_STATE(2862)] = 92037, - [SMALL_STATE(2863)] = 92045, - [SMALL_STATE(2864)] = 92053, - [SMALL_STATE(2865)] = 92061, - [SMALL_STATE(2866)] = 92069, - [SMALL_STATE(2867)] = 92077, - [SMALL_STATE(2868)] = 92085, - [SMALL_STATE(2869)] = 92093, - [SMALL_STATE(2870)] = 92101, - [SMALL_STATE(2871)] = 92109, - [SMALL_STATE(2872)] = 92117, - [SMALL_STATE(2873)] = 92125, - [SMALL_STATE(2874)] = 92133, - [SMALL_STATE(2875)] = 92141, - [SMALL_STATE(2876)] = 92149, - [SMALL_STATE(2877)] = 92157, - [SMALL_STATE(2878)] = 92165, - [SMALL_STATE(2879)] = 92173, - [SMALL_STATE(2880)] = 92181, - [SMALL_STATE(2881)] = 92189, - [SMALL_STATE(2882)] = 92197, - [SMALL_STATE(2883)] = 92205, - [SMALL_STATE(2884)] = 92213, - [SMALL_STATE(2885)] = 92221, - [SMALL_STATE(2886)] = 92229, - [SMALL_STATE(2887)] = 92237, - [SMALL_STATE(2888)] = 92245, - [SMALL_STATE(2889)] = 92253, - [SMALL_STATE(2890)] = 92261, - [SMALL_STATE(2891)] = 92269, + [SMALL_STATE(880)] = 0, + [SMALL_STATE(881)] = 111, + [SMALL_STATE(882)] = 222, + [SMALL_STATE(883)] = 291, + [SMALL_STATE(884)] = 400, + [SMALL_STATE(885)] = 509, + [SMALL_STATE(886)] = 618, + [SMALL_STATE(887)] = 727, + [SMALL_STATE(888)] = 836, + [SMALL_STATE(889)] = 945, + [SMALL_STATE(890)] = 1054, + [SMALL_STATE(891)] = 1163, + [SMALL_STATE(892)] = 1265, + [SMALL_STATE(893)] = 1367, + [SMALL_STATE(894)] = 1469, + [SMALL_STATE(895)] = 1571, + [SMALL_STATE(896)] = 1673, + [SMALL_STATE(897)] = 1747, + [SMALL_STATE(898)] = 1847, + [SMALL_STATE(899)] = 1947, + [SMALL_STATE(900)] = 2047, + [SMALL_STATE(901)] = 2147, + [SMALL_STATE(902)] = 2247, + [SMALL_STATE(903)] = 2347, + [SMALL_STATE(904)] = 2447, + [SMALL_STATE(905)] = 2547, + [SMALL_STATE(906)] = 2647, + [SMALL_STATE(907)] = 2747, + [SMALL_STATE(908)] = 2847, + [SMALL_STATE(909)] = 2947, + [SMALL_STATE(910)] = 3047, + [SMALL_STATE(911)] = 3147, + [SMALL_STATE(912)] = 3247, + [SMALL_STATE(913)] = 3347, + [SMALL_STATE(914)] = 3447, + [SMALL_STATE(915)] = 3547, + [SMALL_STATE(916)] = 3647, + [SMALL_STATE(917)] = 3747, + [SMALL_STATE(918)] = 3846, + [SMALL_STATE(919)] = 3945, + [SMALL_STATE(920)] = 4044, + [SMALL_STATE(921)] = 4143, + [SMALL_STATE(922)] = 4242, + [SMALL_STATE(923)] = 4341, + [SMALL_STATE(924)] = 4440, + [SMALL_STATE(925)] = 4539, + [SMALL_STATE(926)] = 4638, + [SMALL_STATE(927)] = 4737, + [SMALL_STATE(928)] = 4835, + [SMALL_STATE(929)] = 4913, + [SMALL_STATE(930)] = 5011, + [SMALL_STATE(931)] = 5109, + [SMALL_STATE(932)] = 5207, + [SMALL_STATE(933)] = 5305, + [SMALL_STATE(934)] = 5371, + [SMALL_STATE(935)] = 5447, + [SMALL_STATE(936)] = 5521, + [SMALL_STATE(937)] = 5597, + [SMALL_STATE(938)] = 5671, + [SMALL_STATE(939)] = 5769, + [SMALL_STATE(940)] = 5867, + [SMALL_STATE(941)] = 5933, + [SMALL_STATE(942)] = 6031, + [SMALL_STATE(943)] = 6107, + [SMALL_STATE(944)] = 6177, + [SMALL_STATE(945)] = 6275, + [SMALL_STATE(946)] = 6373, + [SMALL_STATE(947)] = 6442, + [SMALL_STATE(948)] = 6511, + [SMALL_STATE(949)] = 6574, + [SMALL_STATE(950)] = 6637, + [SMALL_STATE(951)] = 6706, + [SMALL_STATE(952)] = 6772, + [SMALL_STATE(953)] = 6836, + [SMALL_STATE(954)] = 6912, + [SMALL_STATE(955)] = 6980, + [SMALL_STATE(956)] = 7046, + [SMALL_STATE(957)] = 7112, + [SMALL_STATE(958)] = 7178, + [SMALL_STATE(959)] = 7242, + [SMALL_STATE(960)] = 7306, + [SMALL_STATE(961)] = 7371, + [SMALL_STATE(962)] = 7436, + [SMALL_STATE(963)] = 7501, + [SMALL_STATE(964)] = 7568, + [SMALL_STATE(965)] = 7635, + [SMALL_STATE(966)] = 7700, + [SMALL_STATE(967)] = 7765, + [SMALL_STATE(968)] = 7832, + [SMALL_STATE(969)] = 7897, + [SMALL_STATE(970)] = 7962, + [SMALL_STATE(971)] = 8025, + [SMALL_STATE(972)] = 8088, + [SMALL_STATE(973)] = 8151, + [SMALL_STATE(974)] = 8215, + [SMALL_STATE(975)] = 8279, + [SMALL_STATE(976)] = 8345, + [SMALL_STATE(977)] = 8409, + [SMALL_STATE(978)] = 8468, + [SMALL_STATE(979)] = 8548, + [SMALL_STATE(980)] = 8622, + [SMALL_STATE(981)] = 8702, + [SMALL_STATE(982)] = 8776, + [SMALL_STATE(983)] = 8856, + [SMALL_STATE(984)] = 8936, + [SMALL_STATE(985)] = 9016, + [SMALL_STATE(986)] = 9096, + [SMALL_STATE(987)] = 9172, + [SMALL_STATE(988)] = 9234, + [SMALL_STATE(989)] = 9310, + [SMALL_STATE(990)] = 9368, + [SMALL_STATE(991)] = 9423, + [SMALL_STATE(992)] = 9484, + [SMALL_STATE(993)] = 9561, + [SMALL_STATE(994)] = 9616, + [SMALL_STATE(995)] = 9671, + [SMALL_STATE(996)] = 9748, + [SMALL_STATE(997)] = 9803, + [SMALL_STATE(998)] = 9874, + [SMALL_STATE(999)] = 9929, + [SMALL_STATE(1000)] = 9984, + [SMALL_STATE(1001)] = 10059, + [SMALL_STATE(1002)] = 10114, + [SMALL_STATE(1003)] = 10189, + [SMALL_STATE(1004)] = 10249, + [SMALL_STATE(1005)] = 10303, + [SMALL_STATE(1006)] = 10359, + [SMALL_STATE(1007)] = 10417, + [SMALL_STATE(1008)] = 10471, + [SMALL_STATE(1009)] = 10527, + [SMALL_STATE(1010)] = 10587, + [SMALL_STATE(1011)] = 10641, + [SMALL_STATE(1012)] = 10718, + [SMALL_STATE(1013)] = 10789, + [SMALL_STATE(1014)] = 10842, + [SMALL_STATE(1015)] = 10913, + [SMALL_STATE(1016)] = 10990, + [SMALL_STATE(1017)] = 11067, + [SMALL_STATE(1018)] = 11144, + [SMALL_STATE(1019)] = 11197, + [SMALL_STATE(1020)] = 11274, + [SMALL_STATE(1021)] = 11345, + [SMALL_STATE(1022)] = 11422, + [SMALL_STATE(1023)] = 11497, + [SMALL_STATE(1024)] = 11568, + [SMALL_STATE(1025)] = 11645, + [SMALL_STATE(1026)] = 11722, + [SMALL_STATE(1027)] = 11799, + [SMALL_STATE(1028)] = 11876, + [SMALL_STATE(1029)] = 11947, + [SMALL_STATE(1030)] = 12016, + [SMALL_STATE(1031)] = 12091, + [SMALL_STATE(1032)] = 12168, + [SMALL_STATE(1033)] = 12245, + [SMALL_STATE(1034)] = 12322, + [SMALL_STATE(1035)] = 12399, + [SMALL_STATE(1036)] = 12476, + [SMALL_STATE(1037)] = 12529, + [SMALL_STATE(1038)] = 12604, + [SMALL_STATE(1039)] = 12657, + [SMALL_STATE(1040)] = 12732, + [SMALL_STATE(1041)] = 12803, + [SMALL_STATE(1042)] = 12872, + [SMALL_STATE(1043)] = 12925, + [SMALL_STATE(1044)] = 12978, + [SMALL_STATE(1045)] = 13053, + [SMALL_STATE(1046)] = 13124, + [SMALL_STATE(1047)] = 13195, + [SMALL_STATE(1048)] = 13248, + [SMALL_STATE(1049)] = 13321, + [SMALL_STATE(1050)] = 13374, + [SMALL_STATE(1051)] = 13427, + [SMALL_STATE(1052)] = 13480, + [SMALL_STATE(1053)] = 13551, + [SMALL_STATE(1054)] = 13620, + [SMALL_STATE(1055)] = 13695, + [SMALL_STATE(1056)] = 13768, + [SMALL_STATE(1057)] = 13821, + [SMALL_STATE(1058)] = 13898, + [SMALL_STATE(1059)] = 13951, + [SMALL_STATE(1060)] = 14004, + [SMALL_STATE(1061)] = 14075, + [SMALL_STATE(1062)] = 14146, + [SMALL_STATE(1063)] = 14223, + [SMALL_STATE(1064)] = 14298, + [SMALL_STATE(1065)] = 14373, + [SMALL_STATE(1066)] = 14450, + [SMALL_STATE(1067)] = 14521, + [SMALL_STATE(1068)] = 14574, + [SMALL_STATE(1069)] = 14645, + [SMALL_STATE(1070)] = 14722, + [SMALL_STATE(1071)] = 14799, + [SMALL_STATE(1072)] = 14870, + [SMALL_STATE(1073)] = 14941, + [SMALL_STATE(1074)] = 15012, + [SMALL_STATE(1075)] = 15087, + [SMALL_STATE(1076)] = 15162, + [SMALL_STATE(1077)] = 15237, + [SMALL_STATE(1078)] = 15308, + [SMALL_STATE(1079)] = 15379, + [SMALL_STATE(1080)] = 15450, + [SMALL_STATE(1081)] = 15521, + [SMALL_STATE(1082)] = 15592, + [SMALL_STATE(1083)] = 15663, + [SMALL_STATE(1084)] = 15734, + [SMALL_STATE(1085)] = 15805, + [SMALL_STATE(1086)] = 15880, + [SMALL_STATE(1087)] = 15949, + [SMALL_STATE(1088)] = 16017, + [SMALL_STATE(1089)] = 16085, + [SMALL_STATE(1090)] = 16153, + [SMALL_STATE(1091)] = 16225, + [SMALL_STATE(1092)] = 16293, + [SMALL_STATE(1093)] = 16361, + [SMALL_STATE(1094)] = 16433, + [SMALL_STATE(1095)] = 16519, + [SMALL_STATE(1096)] = 16587, + [SMALL_STATE(1097)] = 16655, + [SMALL_STATE(1098)] = 16727, + [SMALL_STATE(1099)] = 16799, + [SMALL_STATE(1100)] = 16867, + [SMALL_STATE(1101)] = 16919, + [SMALL_STATE(1102)] = 17005, + [SMALL_STATE(1103)] = 17091, + [SMALL_STATE(1104)] = 17163, + [SMALL_STATE(1105)] = 17231, + [SMALL_STATE(1106)] = 17299, + [SMALL_STATE(1107)] = 17385, + [SMALL_STATE(1108)] = 17453, + [SMALL_STATE(1109)] = 17521, + [SMALL_STATE(1110)] = 17593, + [SMALL_STATE(1111)] = 17661, + [SMALL_STATE(1112)] = 17733, + [SMALL_STATE(1113)] = 17801, + [SMALL_STATE(1114)] = 17869, + [SMALL_STATE(1115)] = 17937, + [SMALL_STATE(1116)] = 18005, + [SMALL_STATE(1117)] = 18073, + [SMALL_STATE(1118)] = 18159, + [SMALL_STATE(1119)] = 18231, + [SMALL_STATE(1120)] = 18283, + [SMALL_STATE(1121)] = 18354, + [SMALL_STATE(1122)] = 18425, + [SMALL_STATE(1123)] = 18496, + [SMALL_STATE(1124)] = 18567, + [SMALL_STATE(1125)] = 18638, + [SMALL_STATE(1126)] = 18709, + [SMALL_STATE(1127)] = 18780, + [SMALL_STATE(1128)] = 18851, + [SMALL_STATE(1129)] = 18922, + [SMALL_STATE(1130)] = 18993, + [SMALL_STATE(1131)] = 19064, + [SMALL_STATE(1132)] = 19135, + [SMALL_STATE(1133)] = 19206, + [SMALL_STATE(1134)] = 19277, + [SMALL_STATE(1135)] = 19348, + [SMALL_STATE(1136)] = 19419, + [SMALL_STATE(1137)] = 19490, + [SMALL_STATE(1138)] = 19561, + [SMALL_STATE(1139)] = 19632, + [SMALL_STATE(1140)] = 19703, + [SMALL_STATE(1141)] = 19774, + [SMALL_STATE(1142)] = 19845, + [SMALL_STATE(1143)] = 19916, + [SMALL_STATE(1144)] = 19987, + [SMALL_STATE(1145)] = 20058, + [SMALL_STATE(1146)] = 20129, + [SMALL_STATE(1147)] = 20200, + [SMALL_STATE(1148)] = 20271, + [SMALL_STATE(1149)] = 20342, + [SMALL_STATE(1150)] = 20413, + [SMALL_STATE(1151)] = 20484, + [SMALL_STATE(1152)] = 20555, + [SMALL_STATE(1153)] = 20626, + [SMALL_STATE(1154)] = 20697, + [SMALL_STATE(1155)] = 20768, + [SMALL_STATE(1156)] = 20839, + [SMALL_STATE(1157)] = 20910, + [SMALL_STATE(1158)] = 20981, + [SMALL_STATE(1159)] = 21052, + [SMALL_STATE(1160)] = 21123, + [SMALL_STATE(1161)] = 21194, + [SMALL_STATE(1162)] = 21265, + [SMALL_STATE(1163)] = 21336, + [SMALL_STATE(1164)] = 21407, + [SMALL_STATE(1165)] = 21478, + [SMALL_STATE(1166)] = 21549, + [SMALL_STATE(1167)] = 21620, + [SMALL_STATE(1168)] = 21691, + [SMALL_STATE(1169)] = 21762, + [SMALL_STATE(1170)] = 21833, + [SMALL_STATE(1171)] = 21904, + [SMALL_STATE(1172)] = 21975, + [SMALL_STATE(1173)] = 22046, + [SMALL_STATE(1174)] = 22117, + [SMALL_STATE(1175)] = 22188, + [SMALL_STATE(1176)] = 22259, + [SMALL_STATE(1177)] = 22330, + [SMALL_STATE(1178)] = 22401, + [SMALL_STATE(1179)] = 22472, + [SMALL_STATE(1180)] = 22543, + [SMALL_STATE(1181)] = 22614, + [SMALL_STATE(1182)] = 22685, + [SMALL_STATE(1183)] = 22756, + [SMALL_STATE(1184)] = 22821, + [SMALL_STATE(1185)] = 22892, + [SMALL_STATE(1186)] = 22963, + [SMALL_STATE(1187)] = 23034, + [SMALL_STATE(1188)] = 23105, + [SMALL_STATE(1189)] = 23176, + [SMALL_STATE(1190)] = 23247, + [SMALL_STATE(1191)] = 23318, + [SMALL_STATE(1192)] = 23389, + [SMALL_STATE(1193)] = 23460, + [SMALL_STATE(1194)] = 23531, + [SMALL_STATE(1195)] = 23596, + [SMALL_STATE(1196)] = 23667, + [SMALL_STATE(1197)] = 23738, + [SMALL_STATE(1198)] = 23809, + [SMALL_STATE(1199)] = 23880, + [SMALL_STATE(1200)] = 23951, + [SMALL_STATE(1201)] = 24022, + [SMALL_STATE(1202)] = 24093, + [SMALL_STATE(1203)] = 24164, + [SMALL_STATE(1204)] = 24235, + [SMALL_STATE(1205)] = 24300, + [SMALL_STATE(1206)] = 24371, + [SMALL_STATE(1207)] = 24442, + [SMALL_STATE(1208)] = 24513, + [SMALL_STATE(1209)] = 24584, + [SMALL_STATE(1210)] = 24655, + [SMALL_STATE(1211)] = 24726, + [SMALL_STATE(1212)] = 24797, + [SMALL_STATE(1213)] = 24868, + [SMALL_STATE(1214)] = 24939, + [SMALL_STATE(1215)] = 25010, + [SMALL_STATE(1216)] = 25081, + [SMALL_STATE(1217)] = 25152, + [SMALL_STATE(1218)] = 25223, + [SMALL_STATE(1219)] = 25294, + [SMALL_STATE(1220)] = 25365, + [SMALL_STATE(1221)] = 25436, + [SMALL_STATE(1222)] = 25507, + [SMALL_STATE(1223)] = 25578, + [SMALL_STATE(1224)] = 25649, + [SMALL_STATE(1225)] = 25720, + [SMALL_STATE(1226)] = 25791, + [SMALL_STATE(1227)] = 25862, + [SMALL_STATE(1228)] = 25933, + [SMALL_STATE(1229)] = 26004, + [SMALL_STATE(1230)] = 26075, + [SMALL_STATE(1231)] = 26146, + [SMALL_STATE(1232)] = 26217, + [SMALL_STATE(1233)] = 26288, + [SMALL_STATE(1234)] = 26359, + [SMALL_STATE(1235)] = 26424, + [SMALL_STATE(1236)] = 26495, + [SMALL_STATE(1237)] = 26566, + [SMALL_STATE(1238)] = 26637, + [SMALL_STATE(1239)] = 26708, + [SMALL_STATE(1240)] = 26779, + [SMALL_STATE(1241)] = 26850, + [SMALL_STATE(1242)] = 26921, + [SMALL_STATE(1243)] = 26992, + [SMALL_STATE(1244)] = 27063, + [SMALL_STATE(1245)] = 27134, + [SMALL_STATE(1246)] = 27205, + [SMALL_STATE(1247)] = 27276, + [SMALL_STATE(1248)] = 27347, + [SMALL_STATE(1249)] = 27418, + [SMALL_STATE(1250)] = 27489, + [SMALL_STATE(1251)] = 27560, + [SMALL_STATE(1252)] = 27631, + [SMALL_STATE(1253)] = 27702, + [SMALL_STATE(1254)] = 27773, + [SMALL_STATE(1255)] = 27844, + [SMALL_STATE(1256)] = 27915, + [SMALL_STATE(1257)] = 27986, + [SMALL_STATE(1258)] = 28057, + [SMALL_STATE(1259)] = 28128, + [SMALL_STATE(1260)] = 28199, + [SMALL_STATE(1261)] = 28270, + [SMALL_STATE(1262)] = 28341, + [SMALL_STATE(1263)] = 28412, + [SMALL_STATE(1264)] = 28483, + [SMALL_STATE(1265)] = 28554, + [SMALL_STATE(1266)] = 28625, + [SMALL_STATE(1267)] = 28696, + [SMALL_STATE(1268)] = 28767, + [SMALL_STATE(1269)] = 28838, + [SMALL_STATE(1270)] = 28909, + [SMALL_STATE(1271)] = 28980, + [SMALL_STATE(1272)] = 29051, + [SMALL_STATE(1273)] = 29122, + [SMALL_STATE(1274)] = 29193, + [SMALL_STATE(1275)] = 29264, + [SMALL_STATE(1276)] = 29335, + [SMALL_STATE(1277)] = 29406, + [SMALL_STATE(1278)] = 29477, + [SMALL_STATE(1279)] = 29548, + [SMALL_STATE(1280)] = 29619, + [SMALL_STATE(1281)] = 29690, + [SMALL_STATE(1282)] = 29761, + [SMALL_STATE(1283)] = 29832, + [SMALL_STATE(1284)] = 29903, + [SMALL_STATE(1285)] = 29974, + [SMALL_STATE(1286)] = 30045, + [SMALL_STATE(1287)] = 30116, + [SMALL_STATE(1288)] = 30187, + [SMALL_STATE(1289)] = 30258, + [SMALL_STATE(1290)] = 30329, + [SMALL_STATE(1291)] = 30400, + [SMALL_STATE(1292)] = 30471, + [SMALL_STATE(1293)] = 30542, + [SMALL_STATE(1294)] = 30613, + [SMALL_STATE(1295)] = 30684, + [SMALL_STATE(1296)] = 30755, + [SMALL_STATE(1297)] = 30826, + [SMALL_STATE(1298)] = 30897, + [SMALL_STATE(1299)] = 30968, + [SMALL_STATE(1300)] = 31039, + [SMALL_STATE(1301)] = 31110, + [SMALL_STATE(1302)] = 31181, + [SMALL_STATE(1303)] = 31252, + [SMALL_STATE(1304)] = 31323, + [SMALL_STATE(1305)] = 31394, + [SMALL_STATE(1306)] = 31465, + [SMALL_STATE(1307)] = 31536, + [SMALL_STATE(1308)] = 31607, + [SMALL_STATE(1309)] = 31678, + [SMALL_STATE(1310)] = 31749, + [SMALL_STATE(1311)] = 31820, + [SMALL_STATE(1312)] = 31891, + [SMALL_STATE(1313)] = 31962, + [SMALL_STATE(1314)] = 32033, + [SMALL_STATE(1315)] = 32104, + [SMALL_STATE(1316)] = 32175, + [SMALL_STATE(1317)] = 32246, + [SMALL_STATE(1318)] = 32317, + [SMALL_STATE(1319)] = 32388, + [SMALL_STATE(1320)] = 32459, + [SMALL_STATE(1321)] = 32530, + [SMALL_STATE(1322)] = 32601, + [SMALL_STATE(1323)] = 32672, + [SMALL_STATE(1324)] = 32743, + [SMALL_STATE(1325)] = 32814, + [SMALL_STATE(1326)] = 32885, + [SMALL_STATE(1327)] = 32956, + [SMALL_STATE(1328)] = 33027, + [SMALL_STATE(1329)] = 33098, + [SMALL_STATE(1330)] = 33169, + [SMALL_STATE(1331)] = 33240, + [SMALL_STATE(1332)] = 33311, + [SMALL_STATE(1333)] = 33382, + [SMALL_STATE(1334)] = 33453, + [SMALL_STATE(1335)] = 33518, + [SMALL_STATE(1336)] = 33589, + [SMALL_STATE(1337)] = 33660, + [SMALL_STATE(1338)] = 33731, + [SMALL_STATE(1339)] = 33802, + [SMALL_STATE(1340)] = 33873, + [SMALL_STATE(1341)] = 33938, + [SMALL_STATE(1342)] = 34017, + [SMALL_STATE(1343)] = 34096, + [SMALL_STATE(1344)] = 34175, + [SMALL_STATE(1345)] = 34254, + [SMALL_STATE(1346)] = 34337, + [SMALL_STATE(1347)] = 34420, + [SMALL_STATE(1348)] = 34503, + [SMALL_STATE(1349)] = 34586, + [SMALL_STATE(1350)] = 34669, + [SMALL_STATE(1351)] = 34751, + [SMALL_STATE(1352)] = 34829, + [SMALL_STATE(1353)] = 34917, + [SMALL_STATE(1354)] = 34999, + [SMALL_STATE(1355)] = 35077, + [SMALL_STATE(1356)] = 35159, + [SMALL_STATE(1357)] = 35247, + [SMALL_STATE(1358)] = 35329, + [SMALL_STATE(1359)] = 35411, + [SMALL_STATE(1360)] = 35470, + [SMALL_STATE(1361)] = 35529, + [SMALL_STATE(1362)] = 35588, + [SMALL_STATE(1363)] = 35647, + [SMALL_STATE(1364)] = 35703, + [SMALL_STATE(1365)] = 35783, + [SMALL_STATE(1366)] = 35839, + [SMALL_STATE(1367)] = 35895, + [SMALL_STATE(1368)] = 35975, + [SMALL_STATE(1369)] = 36055, + [SMALL_STATE(1370)] = 36141, + [SMALL_STATE(1371)] = 36197, + [SMALL_STATE(1372)] = 36277, + [SMALL_STATE(1373)] = 36363, + [SMALL_STATE(1374)] = 36443, + [SMALL_STATE(1375)] = 36530, + [SMALL_STATE(1376)] = 36577, + [SMALL_STATE(1377)] = 36664, + [SMALL_STATE(1378)] = 36751, + [SMALL_STATE(1379)] = 36798, + [SMALL_STATE(1380)] = 36885, + [SMALL_STATE(1381)] = 36972, + [SMALL_STATE(1382)] = 37028, + [SMALL_STATE(1383)] = 37106, + [SMALL_STATE(1384)] = 37190, + [SMALL_STATE(1385)] = 37246, + [SMALL_STATE(1386)] = 37330, + [SMALL_STATE(1387)] = 37414, + [SMALL_STATE(1388)] = 37498, + [SMALL_STATE(1389)] = 37582, + [SMALL_STATE(1390)] = 37666, + [SMALL_STATE(1391)] = 37750, + [SMALL_STATE(1392)] = 37828, + [SMALL_STATE(1393)] = 37912, + [SMALL_STATE(1394)] = 37996, + [SMALL_STATE(1395)] = 38080, + [SMALL_STATE(1396)] = 38164, + [SMALL_STATE(1397)] = 38248, + [SMALL_STATE(1398)] = 38332, + [SMALL_STATE(1399)] = 38416, + [SMALL_STATE(1400)] = 38500, + [SMALL_STATE(1401)] = 38550, + [SMALL_STATE(1402)] = 38634, + [SMALL_STATE(1403)] = 38712, + [SMALL_STATE(1404)] = 38796, + [SMALL_STATE(1405)] = 38880, + [SMALL_STATE(1406)] = 38958, + [SMALL_STATE(1407)] = 39042, + [SMALL_STATE(1408)] = 39092, + [SMALL_STATE(1409)] = 39142, + [SMALL_STATE(1410)] = 39226, + [SMALL_STATE(1411)] = 39310, + [SMALL_STATE(1412)] = 39394, + [SMALL_STATE(1413)] = 39478, + [SMALL_STATE(1414)] = 39562, + [SMALL_STATE(1415)] = 39646, + [SMALL_STATE(1416)] = 39730, + [SMALL_STATE(1417)] = 39814, + [SMALL_STATE(1418)] = 39898, + [SMALL_STATE(1419)] = 39982, + [SMALL_STATE(1420)] = 40066, + [SMALL_STATE(1421)] = 40150, + [SMALL_STATE(1422)] = 40234, + [SMALL_STATE(1423)] = 40318, + [SMALL_STATE(1424)] = 40402, + [SMALL_STATE(1425)] = 40486, + [SMALL_STATE(1426)] = 40570, + [SMALL_STATE(1427)] = 40648, + [SMALL_STATE(1428)] = 40704, + [SMALL_STATE(1429)] = 40754, + [SMALL_STATE(1430)] = 40838, + [SMALL_STATE(1431)] = 40922, + [SMALL_STATE(1432)] = 41006, + [SMALL_STATE(1433)] = 41089, + [SMALL_STATE(1434)] = 41138, + [SMALL_STATE(1435)] = 41219, + [SMALL_STATE(1436)] = 41300, + [SMALL_STATE(1437)] = 41381, + [SMALL_STATE(1438)] = 41462, + [SMALL_STATE(1439)] = 41543, + [SMALL_STATE(1440)] = 41624, + [SMALL_STATE(1441)] = 41705, + [SMALL_STATE(1442)] = 41754, + [SMALL_STATE(1443)] = 41807, + [SMALL_STATE(1444)] = 41858, + [SMALL_STATE(1445)] = 41939, + [SMALL_STATE(1446)] = 42020, + [SMALL_STATE(1447)] = 42071, + [SMALL_STATE(1448)] = 42152, + [SMALL_STATE(1449)] = 42201, + [SMALL_STATE(1450)] = 42282, + [SMALL_STATE(1451)] = 42363, + [SMALL_STATE(1452)] = 42444, + [SMALL_STATE(1453)] = 42525, + [SMALL_STATE(1454)] = 42606, + [SMALL_STATE(1455)] = 42687, + [SMALL_STATE(1456)] = 42768, + [SMALL_STATE(1457)] = 42849, + [SMALL_STATE(1458)] = 42930, + [SMALL_STATE(1459)] = 43011, + [SMALL_STATE(1460)] = 43092, + [SMALL_STATE(1461)] = 43173, + [SMALL_STATE(1462)] = 43254, + [SMALL_STATE(1463)] = 43335, + [SMALL_STATE(1464)] = 43416, + [SMALL_STATE(1465)] = 43497, + [SMALL_STATE(1466)] = 43578, + [SMALL_STATE(1467)] = 43659, + [SMALL_STATE(1468)] = 43740, + [SMALL_STATE(1469)] = 43821, + [SMALL_STATE(1470)] = 43902, + [SMALL_STATE(1471)] = 43983, + [SMALL_STATE(1472)] = 44064, + [SMALL_STATE(1473)] = 44145, + [SMALL_STATE(1474)] = 44226, + [SMALL_STATE(1475)] = 44307, + [SMALL_STATE(1476)] = 44388, + [SMALL_STATE(1477)] = 44469, + [SMALL_STATE(1478)] = 44550, + [SMALL_STATE(1479)] = 44594, + [SMALL_STATE(1480)] = 44678, + [SMALL_STATE(1481)] = 44762, + [SMALL_STATE(1482)] = 44816, + [SMALL_STATE(1483)] = 44870, + [SMALL_STATE(1484)] = 44912, + [SMALL_STATE(1485)] = 44954, + [SMALL_STATE(1486)] = 45008, + [SMALL_STATE(1487)] = 45050, + [SMALL_STATE(1488)] = 45134, + [SMALL_STATE(1489)] = 45218, + [SMALL_STATE(1490)] = 45302, + [SMALL_STATE(1491)] = 45348, + [SMALL_STATE(1492)] = 45428, + [SMALL_STATE(1493)] = 45482, + [SMALL_STATE(1494)] = 45536, + [SMALL_STATE(1495)] = 45590, + [SMALL_STATE(1496)] = 45636, + [SMALL_STATE(1497)] = 45720, + [SMALL_STATE(1498)] = 45804, + [SMALL_STATE(1499)] = 45858, + [SMALL_STATE(1500)] = 45934, + [SMALL_STATE(1501)] = 46010, + [SMALL_STATE(1502)] = 46086, + [SMALL_STATE(1503)] = 46162, + [SMALL_STATE(1504)] = 46238, + [SMALL_STATE(1505)] = 46322, + [SMALL_STATE(1506)] = 46406, + [SMALL_STATE(1507)] = 46490, + [SMALL_STATE(1508)] = 46543, + [SMALL_STATE(1509)] = 46622, + [SMALL_STATE(1510)] = 46663, + [SMALL_STATE(1511)] = 46704, + [SMALL_STATE(1512)] = 46745, + [SMALL_STATE(1513)] = 46824, + [SMALL_STATE(1514)] = 46871, + [SMALL_STATE(1515)] = 46912, + [SMALL_STATE(1516)] = 46953, + [SMALL_STATE(1517)] = 47004, + [SMALL_STATE(1518)] = 47077, + [SMALL_STATE(1519)] = 47150, + [SMALL_STATE(1520)] = 47223, + [SMALL_STATE(1521)] = 47296, + [SMALL_STATE(1522)] = 47369, + [SMALL_STATE(1523)] = 47420, + [SMALL_STATE(1524)] = 47461, + [SMALL_STATE(1525)] = 47502, + [SMALL_STATE(1526)] = 47543, + [SMALL_STATE(1527)] = 47590, + [SMALL_STATE(1528)] = 47631, + [SMALL_STATE(1529)] = 47682, + [SMALL_STATE(1530)] = 47723, + [SMALL_STATE(1531)] = 47764, + [SMALL_STATE(1532)] = 47805, + [SMALL_STATE(1533)] = 47846, + [SMALL_STATE(1534)] = 47887, + [SMALL_STATE(1535)] = 47928, + [SMALL_STATE(1536)] = 47969, + [SMALL_STATE(1537)] = 48016, + [SMALL_STATE(1538)] = 48057, + [SMALL_STATE(1539)] = 48098, + [SMALL_STATE(1540)] = 48139, + [SMALL_STATE(1541)] = 48212, + [SMALL_STATE(1542)] = 48285, + [SMALL_STATE(1543)] = 48358, + [SMALL_STATE(1544)] = 48431, + [SMALL_STATE(1545)] = 48504, + [SMALL_STATE(1546)] = 48545, + [SMALL_STATE(1547)] = 48592, + [SMALL_STATE(1548)] = 48633, + [SMALL_STATE(1549)] = 48674, + [SMALL_STATE(1550)] = 48715, + [SMALL_STATE(1551)] = 48756, + [SMALL_STATE(1552)] = 48797, + [SMALL_STATE(1553)] = 48838, + [SMALL_STATE(1554)] = 48889, + [SMALL_STATE(1555)] = 48936, + [SMALL_STATE(1556)] = 48983, + [SMALL_STATE(1557)] = 49030, + [SMALL_STATE(1558)] = 49071, + [SMALL_STATE(1559)] = 49118, + [SMALL_STATE(1560)] = 49165, + [SMALL_STATE(1561)] = 49206, + [SMALL_STATE(1562)] = 49247, + [SMALL_STATE(1563)] = 49298, + [SMALL_STATE(1564)] = 49345, + [SMALL_STATE(1565)] = 49386, + [SMALL_STATE(1566)] = 49467, + [SMALL_STATE(1567)] = 49546, + [SMALL_STATE(1568)] = 49627, + [SMALL_STATE(1569)] = 49668, + [SMALL_STATE(1570)] = 49709, + [SMALL_STATE(1571)] = 49750, + [SMALL_STATE(1572)] = 49791, + [SMALL_STATE(1573)] = 49842, + [SMALL_STATE(1574)] = 49883, + [SMALL_STATE(1575)] = 49924, + [SMALL_STATE(1576)] = 49965, + [SMALL_STATE(1577)] = 50012, + [SMALL_STATE(1578)] = 50053, + [SMALL_STATE(1579)] = 50100, + [SMALL_STATE(1580)] = 50141, + [SMALL_STATE(1581)] = 50219, + [SMALL_STATE(1582)] = 50297, + [SMALL_STATE(1583)] = 50375, + [SMALL_STATE(1584)] = 50415, + [SMALL_STATE(1585)] = 50493, + [SMALL_STATE(1586)] = 50571, + [SMALL_STATE(1587)] = 50649, + [SMALL_STATE(1588)] = 50693, + [SMALL_STATE(1589)] = 50771, + [SMALL_STATE(1590)] = 50849, + [SMALL_STATE(1591)] = 50889, + [SMALL_STATE(1592)] = 50967, + [SMALL_STATE(1593)] = 51045, + [SMALL_STATE(1594)] = 51123, + [SMALL_STATE(1595)] = 51201, + [SMALL_STATE(1596)] = 51241, + [SMALL_STATE(1597)] = 51319, + [SMALL_STATE(1598)] = 51363, + [SMALL_STATE(1599)] = 51435, + [SMALL_STATE(1600)] = 51507, + [SMALL_STATE(1601)] = 51579, + [SMALL_STATE(1602)] = 51651, + [SMALL_STATE(1603)] = 51723, + [SMALL_STATE(1604)] = 51801, + [SMALL_STATE(1605)] = 51879, + [SMALL_STATE(1606)] = 51957, + [SMALL_STATE(1607)] = 52035, + [SMALL_STATE(1608)] = 52113, + [SMALL_STATE(1609)] = 52191, + [SMALL_STATE(1610)] = 52233, + [SMALL_STATE(1611)] = 52305, + [SMALL_STATE(1612)] = 52383, + [SMALL_STATE(1613)] = 52461, + [SMALL_STATE(1614)] = 52539, + [SMALL_STATE(1615)] = 52611, + [SMALL_STATE(1616)] = 52689, + [SMALL_STATE(1617)] = 52761, + [SMALL_STATE(1618)] = 52833, + [SMALL_STATE(1619)] = 52905, + [SMALL_STATE(1620)] = 52983, + [SMALL_STATE(1621)] = 53061, + [SMALL_STATE(1622)] = 53139, + [SMALL_STATE(1623)] = 53217, + [SMALL_STATE(1624)] = 53295, + [SMALL_STATE(1625)] = 53373, + [SMALL_STATE(1626)] = 53415, + [SMALL_STATE(1627)] = 53493, + [SMALL_STATE(1628)] = 53571, + [SMALL_STATE(1629)] = 53649, + [SMALL_STATE(1630)] = 53727, + [SMALL_STATE(1631)] = 53769, + [SMALL_STATE(1632)] = 53847, + [SMALL_STATE(1633)] = 53925, + [SMALL_STATE(1634)] = 54003, + [SMALL_STATE(1635)] = 54081, + [SMALL_STATE(1636)] = 54159, + [SMALL_STATE(1637)] = 54237, + [SMALL_STATE(1638)] = 54315, + [SMALL_STATE(1639)] = 54393, + [SMALL_STATE(1640)] = 54433, + [SMALL_STATE(1641)] = 54511, + [SMALL_STATE(1642)] = 54589, + [SMALL_STATE(1643)] = 54667, + [SMALL_STATE(1644)] = 54745, + [SMALL_STATE(1645)] = 54823, + [SMALL_STATE(1646)] = 54901, + [SMALL_STATE(1647)] = 54979, + [SMALL_STATE(1648)] = 55057, + [SMALL_STATE(1649)] = 55135, + [SMALL_STATE(1650)] = 55213, + [SMALL_STATE(1651)] = 55291, + [SMALL_STATE(1652)] = 55369, + [SMALL_STATE(1653)] = 55447, + [SMALL_STATE(1654)] = 55525, + [SMALL_STATE(1655)] = 55603, + [SMALL_STATE(1656)] = 55681, + [SMALL_STATE(1657)] = 55759, + [SMALL_STATE(1658)] = 55805, + [SMALL_STATE(1659)] = 55883, + [SMALL_STATE(1660)] = 55961, + [SMALL_STATE(1661)] = 56039, + [SMALL_STATE(1662)] = 56117, + [SMALL_STATE(1663)] = 56161, + [SMALL_STATE(1664)] = 56239, + [SMALL_STATE(1665)] = 56283, + [SMALL_STATE(1666)] = 56327, + [SMALL_STATE(1667)] = 56405, + [SMALL_STATE(1668)] = 56445, + [SMALL_STATE(1669)] = 56523, + [SMALL_STATE(1670)] = 56601, + [SMALL_STATE(1671)] = 56679, + [SMALL_STATE(1672)] = 56757, + [SMALL_STATE(1673)] = 56835, + [SMALL_STATE(1674)] = 56913, + [SMALL_STATE(1675)] = 56991, + [SMALL_STATE(1676)] = 57069, + [SMALL_STATE(1677)] = 57109, + [SMALL_STATE(1678)] = 57149, + [SMALL_STATE(1679)] = 57227, + [SMALL_STATE(1680)] = 57267, + [SMALL_STATE(1681)] = 57345, + [SMALL_STATE(1682)] = 57423, + [SMALL_STATE(1683)] = 57501, + [SMALL_STATE(1684)] = 57579, + [SMALL_STATE(1685)] = 57657, + [SMALL_STATE(1686)] = 57735, + [SMALL_STATE(1687)] = 57813, + [SMALL_STATE(1688)] = 57891, + [SMALL_STATE(1689)] = 57969, + [SMALL_STATE(1690)] = 58047, + [SMALL_STATE(1691)] = 58087, + [SMALL_STATE(1692)] = 58165, + [SMALL_STATE(1693)] = 58243, + [SMALL_STATE(1694)] = 58321, + [SMALL_STATE(1695)] = 58361, + [SMALL_STATE(1696)] = 58401, + [SMALL_STATE(1697)] = 58479, + [SMALL_STATE(1698)] = 58557, + [SMALL_STATE(1699)] = 58635, + [SMALL_STATE(1700)] = 58713, + [SMALL_STATE(1701)] = 58791, + [SMALL_STATE(1702)] = 58869, + [SMALL_STATE(1703)] = 58947, + [SMALL_STATE(1704)] = 59025, + [SMALL_STATE(1705)] = 59103, + [SMALL_STATE(1706)] = 59181, + [SMALL_STATE(1707)] = 59259, + [SMALL_STATE(1708)] = 59337, + [SMALL_STATE(1709)] = 59415, + [SMALL_STATE(1710)] = 59465, + [SMALL_STATE(1711)] = 59511, + [SMALL_STATE(1712)] = 59589, + [SMALL_STATE(1713)] = 59667, + [SMALL_STATE(1714)] = 59745, + [SMALL_STATE(1715)] = 59823, + [SMALL_STATE(1716)] = 59867, + [SMALL_STATE(1717)] = 59909, + [SMALL_STATE(1718)] = 59987, + [SMALL_STATE(1719)] = 60027, + [SMALL_STATE(1720)] = 60105, + [SMALL_STATE(1721)] = 60183, + [SMALL_STATE(1722)] = 60261, + [SMALL_STATE(1723)] = 60339, + [SMALL_STATE(1724)] = 60417, + [SMALL_STATE(1725)] = 60495, + [SMALL_STATE(1726)] = 60573, + [SMALL_STATE(1727)] = 60651, + [SMALL_STATE(1728)] = 60729, + [SMALL_STATE(1729)] = 60807, + [SMALL_STATE(1730)] = 60885, + [SMALL_STATE(1731)] = 60963, + [SMALL_STATE(1732)] = 61041, + [SMALL_STATE(1733)] = 61119, + [SMALL_STATE(1734)] = 61197, + [SMALL_STATE(1735)] = 61275, + [SMALL_STATE(1736)] = 61353, + [SMALL_STATE(1737)] = 61431, + [SMALL_STATE(1738)] = 61509, + [SMALL_STATE(1739)] = 61587, + [SMALL_STATE(1740)] = 61665, + [SMALL_STATE(1741)] = 61743, + [SMALL_STATE(1742)] = 61821, + [SMALL_STATE(1743)] = 61899, + [SMALL_STATE(1744)] = 61977, + [SMALL_STATE(1745)] = 62055, + [SMALL_STATE(1746)] = 62133, + [SMALL_STATE(1747)] = 62211, + [SMALL_STATE(1748)] = 62289, + [SMALL_STATE(1749)] = 62367, + [SMALL_STATE(1750)] = 62406, + [SMALL_STATE(1751)] = 62481, + [SMALL_STATE(1752)] = 62520, + [SMALL_STATE(1753)] = 62595, + [SMALL_STATE(1754)] = 62670, + [SMALL_STATE(1755)] = 62745, + [SMALL_STATE(1756)] = 62820, + [SMALL_STATE(1757)] = 62859, + [SMALL_STATE(1758)] = 62898, + [SMALL_STATE(1759)] = 62937, + [SMALL_STATE(1760)] = 62976, + [SMALL_STATE(1761)] = 63015, + [SMALL_STATE(1762)] = 63054, + [SMALL_STATE(1763)] = 63093, + [SMALL_STATE(1764)] = 63132, + [SMALL_STATE(1765)] = 63171, + [SMALL_STATE(1766)] = 63210, + [SMALL_STATE(1767)] = 63285, + [SMALL_STATE(1768)] = 63356, + [SMALL_STATE(1769)] = 63395, + [SMALL_STATE(1770)] = 63434, + [SMALL_STATE(1771)] = 63473, + [SMALL_STATE(1772)] = 63548, + [SMALL_STATE(1773)] = 63623, + [SMALL_STATE(1774)] = 63698, + [SMALL_STATE(1775)] = 63737, + [SMALL_STATE(1776)] = 63812, + [SMALL_STATE(1777)] = 63851, + [SMALL_STATE(1778)] = 63926, + [SMALL_STATE(1779)] = 64001, + [SMALL_STATE(1780)] = 64040, + [SMALL_STATE(1781)] = 64115, + [SMALL_STATE(1782)] = 64154, + [SMALL_STATE(1783)] = 64193, + [SMALL_STATE(1784)] = 64264, + [SMALL_STATE(1785)] = 64303, + [SMALL_STATE(1786)] = 64378, + [SMALL_STATE(1787)] = 64417, + [SMALL_STATE(1788)] = 64456, + [SMALL_STATE(1789)] = 64495, + [SMALL_STATE(1790)] = 64534, + [SMALL_STATE(1791)] = 64573, + [SMALL_STATE(1792)] = 64644, + [SMALL_STATE(1793)] = 64719, + [SMALL_STATE(1794)] = 64790, + [SMALL_STATE(1795)] = 64829, + [SMALL_STATE(1796)] = 64904, + [SMALL_STATE(1797)] = 64949, + [SMALL_STATE(1798)] = 64988, + [SMALL_STATE(1799)] = 65027, + [SMALL_STATE(1800)] = 65102, + [SMALL_STATE(1801)] = 65177, + [SMALL_STATE(1802)] = 65252, + [SMALL_STATE(1803)] = 65291, + [SMALL_STATE(1804)] = 65366, + [SMALL_STATE(1805)] = 65441, + [SMALL_STATE(1806)] = 65480, + [SMALL_STATE(1807)] = 65519, + [SMALL_STATE(1808)] = 65590, + [SMALL_STATE(1809)] = 65665, + [SMALL_STATE(1810)] = 65704, + [SMALL_STATE(1811)] = 65743, + [SMALL_STATE(1812)] = 65782, + [SMALL_STATE(1813)] = 65821, + [SMALL_STATE(1814)] = 65860, + [SMALL_STATE(1815)] = 65899, + [SMALL_STATE(1816)] = 65974, + [SMALL_STATE(1817)] = 66013, + [SMALL_STATE(1818)] = 66088, + [SMALL_STATE(1819)] = 66127, + [SMALL_STATE(1820)] = 66166, + [SMALL_STATE(1821)] = 66241, + [SMALL_STATE(1822)] = 66280, + [SMALL_STATE(1823)] = 66355, + [SMALL_STATE(1824)] = 66430, + [SMALL_STATE(1825)] = 66469, + [SMALL_STATE(1826)] = 66544, + [SMALL_STATE(1827)] = 66619, + [SMALL_STATE(1828)] = 66694, + [SMALL_STATE(1829)] = 66765, + [SMALL_STATE(1830)] = 66840, + [SMALL_STATE(1831)] = 66915, + [SMALL_STATE(1832)] = 66990, + [SMALL_STATE(1833)] = 67029, + [SMALL_STATE(1834)] = 67100, + [SMALL_STATE(1835)] = 67175, + [SMALL_STATE(1836)] = 67250, + [SMALL_STATE(1837)] = 67325, + [SMALL_STATE(1838)] = 67370, + [SMALL_STATE(1839)] = 67445, + [SMALL_STATE(1840)] = 67520, + [SMALL_STATE(1841)] = 67595, + [SMALL_STATE(1842)] = 67670, + [SMALL_STATE(1843)] = 67741, + [SMALL_STATE(1844)] = 67786, + [SMALL_STATE(1845)] = 67861, + [SMALL_STATE(1846)] = 67900, + [SMALL_STATE(1847)] = 67939, + [SMALL_STATE(1848)] = 68014, + [SMALL_STATE(1849)] = 68053, + [SMALL_STATE(1850)] = 68092, + [SMALL_STATE(1851)] = 68167, + [SMALL_STATE(1852)] = 68206, + [SMALL_STATE(1853)] = 68281, + [SMALL_STATE(1854)] = 68320, + [SMALL_STATE(1855)] = 68395, + [SMALL_STATE(1856)] = 68470, + [SMALL_STATE(1857)] = 68545, + [SMALL_STATE(1858)] = 68620, + [SMALL_STATE(1859)] = 68659, + [SMALL_STATE(1860)] = 68730, + [SMALL_STATE(1861)] = 68769, + [SMALL_STATE(1862)] = 68808, + [SMALL_STATE(1863)] = 68883, + [SMALL_STATE(1864)] = 68958, + [SMALL_STATE(1865)] = 69033, + [SMALL_STATE(1866)] = 69108, + [SMALL_STATE(1867)] = 69183, + [SMALL_STATE(1868)] = 69258, + [SMALL_STATE(1869)] = 69297, + [SMALL_STATE(1870)] = 69372, + [SMALL_STATE(1871)] = 69411, + [SMALL_STATE(1872)] = 69486, + [SMALL_STATE(1873)] = 69561, + [SMALL_STATE(1874)] = 69636, + [SMALL_STATE(1875)] = 69711, + [SMALL_STATE(1876)] = 69786, + [SMALL_STATE(1877)] = 69861, + [SMALL_STATE(1878)] = 69936, + [SMALL_STATE(1879)] = 70011, + [SMALL_STATE(1880)] = 70086, + [SMALL_STATE(1881)] = 70161, + [SMALL_STATE(1882)] = 70236, + [SMALL_STATE(1883)] = 70311, + [SMALL_STATE(1884)] = 70350, + [SMALL_STATE(1885)] = 70425, + [SMALL_STATE(1886)] = 70464, + [SMALL_STATE(1887)] = 70539, + [SMALL_STATE(1888)] = 70614, + [SMALL_STATE(1889)] = 70653, + [SMALL_STATE(1890)] = 70692, + [SMALL_STATE(1891)] = 70767, + [SMALL_STATE(1892)] = 70842, + [SMALL_STATE(1893)] = 70917, + [SMALL_STATE(1894)] = 70992, + [SMALL_STATE(1895)] = 71067, + [SMALL_STATE(1896)] = 71142, + [SMALL_STATE(1897)] = 71217, + [SMALL_STATE(1898)] = 71292, + [SMALL_STATE(1899)] = 71367, + [SMALL_STATE(1900)] = 71442, + [SMALL_STATE(1901)] = 71517, + [SMALL_STATE(1902)] = 71592, + [SMALL_STATE(1903)] = 71631, + [SMALL_STATE(1904)] = 71670, + [SMALL_STATE(1905)] = 71745, + [SMALL_STATE(1906)] = 71820, + [SMALL_STATE(1907)] = 71895, + [SMALL_STATE(1908)] = 71970, + [SMALL_STATE(1909)] = 72045, + [SMALL_STATE(1910)] = 72120, + [SMALL_STATE(1911)] = 72195, + [SMALL_STATE(1912)] = 72270, + [SMALL_STATE(1913)] = 72345, + [SMALL_STATE(1914)] = 72420, + [SMALL_STATE(1915)] = 72495, + [SMALL_STATE(1916)] = 72570, + [SMALL_STATE(1917)] = 72645, + [SMALL_STATE(1918)] = 72720, + [SMALL_STATE(1919)] = 72795, + [SMALL_STATE(1920)] = 72870, + [SMALL_STATE(1921)] = 72945, + [SMALL_STATE(1922)] = 73020, + [SMALL_STATE(1923)] = 73095, + [SMALL_STATE(1924)] = 73170, + [SMALL_STATE(1925)] = 73245, + [SMALL_STATE(1926)] = 73286, + [SMALL_STATE(1927)] = 73325, + [SMALL_STATE(1928)] = 73400, + [SMALL_STATE(1929)] = 73439, + [SMALL_STATE(1930)] = 73514, + [SMALL_STATE(1931)] = 73589, + [SMALL_STATE(1932)] = 73628, + [SMALL_STATE(1933)] = 73703, + [SMALL_STATE(1934)] = 73778, + [SMALL_STATE(1935)] = 73823, + [SMALL_STATE(1936)] = 73898, + [SMALL_STATE(1937)] = 73973, + [SMALL_STATE(1938)] = 74048, + [SMALL_STATE(1939)] = 74123, + [SMALL_STATE(1940)] = 74198, + [SMALL_STATE(1941)] = 74273, + [SMALL_STATE(1942)] = 74348, + [SMALL_STATE(1943)] = 74387, + [SMALL_STATE(1944)] = 74462, + [SMALL_STATE(1945)] = 74537, + [SMALL_STATE(1946)] = 74578, + [SMALL_STATE(1947)] = 74653, + [SMALL_STATE(1948)] = 74728, + [SMALL_STATE(1949)] = 74773, + [SMALL_STATE(1950)] = 74812, + [SMALL_STATE(1951)] = 74851, + [SMALL_STATE(1952)] = 74926, + [SMALL_STATE(1953)] = 75001, + [SMALL_STATE(1954)] = 75076, + [SMALL_STATE(1955)] = 75151, + [SMALL_STATE(1956)] = 75226, + [SMALL_STATE(1957)] = 75301, + [SMALL_STATE(1958)] = 75376, + [SMALL_STATE(1959)] = 75451, + [SMALL_STATE(1960)] = 75526, + [SMALL_STATE(1961)] = 75601, + [SMALL_STATE(1962)] = 75640, + [SMALL_STATE(1963)] = 75715, + [SMALL_STATE(1964)] = 75790, + [SMALL_STATE(1965)] = 75865, + [SMALL_STATE(1966)] = 75940, + [SMALL_STATE(1967)] = 76015, + [SMALL_STATE(1968)] = 76090, + [SMALL_STATE(1969)] = 76165, + [SMALL_STATE(1970)] = 76240, + [SMALL_STATE(1971)] = 76315, + [SMALL_STATE(1972)] = 76390, + [SMALL_STATE(1973)] = 76465, + [SMALL_STATE(1974)] = 76510, + [SMALL_STATE(1975)] = 76549, + [SMALL_STATE(1976)] = 76590, + [SMALL_STATE(1977)] = 76635, + [SMALL_STATE(1978)] = 76674, + [SMALL_STATE(1979)] = 76749, + [SMALL_STATE(1980)] = 76824, + [SMALL_STATE(1981)] = 76899, + [SMALL_STATE(1982)] = 76974, + [SMALL_STATE(1983)] = 77049, + [SMALL_STATE(1984)] = 77124, + [SMALL_STATE(1985)] = 77163, + [SMALL_STATE(1986)] = 77238, + [SMALL_STATE(1987)] = 77313, + [SMALL_STATE(1988)] = 77388, + [SMALL_STATE(1989)] = 77463, + [SMALL_STATE(1990)] = 77508, + [SMALL_STATE(1991)] = 77583, + [SMALL_STATE(1992)] = 77622, + [SMALL_STATE(1993)] = 77697, + [SMALL_STATE(1994)] = 77768, + [SMALL_STATE(1995)] = 77843, + [SMALL_STATE(1996)] = 77918, + [SMALL_STATE(1997)] = 77957, + [SMALL_STATE(1998)] = 77998, + [SMALL_STATE(1999)] = 78073, + [SMALL_STATE(2000)] = 78148, + [SMALL_STATE(2001)] = 78187, + [SMALL_STATE(2002)] = 78262, + [SMALL_STATE(2003)] = 78301, + [SMALL_STATE(2004)] = 78376, + [SMALL_STATE(2005)] = 78451, + [SMALL_STATE(2006)] = 78526, + [SMALL_STATE(2007)] = 78601, + [SMALL_STATE(2008)] = 78676, + [SMALL_STATE(2009)] = 78715, + [SMALL_STATE(2010)] = 78790, + [SMALL_STATE(2011)] = 78865, + [SMALL_STATE(2012)] = 78904, + [SMALL_STATE(2013)] = 78979, + [SMALL_STATE(2014)] = 79054, + [SMALL_STATE(2015)] = 79129, + [SMALL_STATE(2016)] = 79204, + [SMALL_STATE(2017)] = 79279, + [SMALL_STATE(2018)] = 79354, + [SMALL_STATE(2019)] = 79429, + [SMALL_STATE(2020)] = 79472, + [SMALL_STATE(2021)] = 79511, + [SMALL_STATE(2022)] = 79586, + [SMALL_STATE(2023)] = 79661, + [SMALL_STATE(2024)] = 79700, + [SMALL_STATE(2025)] = 79775, + [SMALL_STATE(2026)] = 79814, + [SMALL_STATE(2027)] = 79853, + [SMALL_STATE(2028)] = 79928, + [SMALL_STATE(2029)] = 80003, + [SMALL_STATE(2030)] = 80078, + [SMALL_STATE(2031)] = 80153, + [SMALL_STATE(2032)] = 80228, + [SMALL_STATE(2033)] = 80303, + [SMALL_STATE(2034)] = 80378, + [SMALL_STATE(2035)] = 80453, + [SMALL_STATE(2036)] = 80528, + [SMALL_STATE(2037)] = 80603, + [SMALL_STATE(2038)] = 80678, + [SMALL_STATE(2039)] = 80753, + [SMALL_STATE(2040)] = 80828, + [SMALL_STATE(2041)] = 80903, + [SMALL_STATE(2042)] = 80942, + [SMALL_STATE(2043)] = 81017, + [SMALL_STATE(2044)] = 81092, + [SMALL_STATE(2045)] = 81167, + [SMALL_STATE(2046)] = 81242, + [SMALL_STATE(2047)] = 81281, + [SMALL_STATE(2048)] = 81356, + [SMALL_STATE(2049)] = 81431, + [SMALL_STATE(2050)] = 81506, + [SMALL_STATE(2051)] = 81581, + [SMALL_STATE(2052)] = 81620, + [SMALL_STATE(2053)] = 81658, + [SMALL_STATE(2054)] = 81728, + [SMALL_STATE(2055)] = 81798, + [SMALL_STATE(2056)] = 81868, + [SMALL_STATE(2057)] = 81938, + [SMALL_STATE(2058)] = 82008, + [SMALL_STATE(2059)] = 82046, + [SMALL_STATE(2060)] = 82084, + [SMALL_STATE(2061)] = 82128, + [SMALL_STATE(2062)] = 82164, + [SMALL_STATE(2063)] = 82200, + [SMALL_STATE(2064)] = 82238, + [SMALL_STATE(2065)] = 82306, + [SMALL_STATE(2066)] = 82344, + [SMALL_STATE(2067)] = 82384, + [SMALL_STATE(2068)] = 82449, + [SMALL_STATE(2069)] = 82514, + [SMALL_STATE(2070)] = 82579, + [SMALL_STATE(2071)] = 82644, + [SMALL_STATE(2072)] = 82709, + [SMALL_STATE(2073)] = 82774, + [SMALL_STATE(2074)] = 82839, + [SMALL_STATE(2075)] = 82904, + [SMALL_STATE(2076)] = 82969, + [SMALL_STATE(2077)] = 83034, + [SMALL_STATE(2078)] = 83099, + [SMALL_STATE(2079)] = 83164, + [SMALL_STATE(2080)] = 83229, + [SMALL_STATE(2081)] = 83294, + [SMALL_STATE(2082)] = 83359, + [SMALL_STATE(2083)] = 83424, + [SMALL_STATE(2084)] = 83489, + [SMALL_STATE(2085)] = 83554, + [SMALL_STATE(2086)] = 83619, + [SMALL_STATE(2087)] = 83684, + [SMALL_STATE(2088)] = 83749, + [SMALL_STATE(2089)] = 83814, + [SMALL_STATE(2090)] = 83879, + [SMALL_STATE(2091)] = 83944, + [SMALL_STATE(2092)] = 84009, + [SMALL_STATE(2093)] = 84074, + [SMALL_STATE(2094)] = 84139, + [SMALL_STATE(2095)] = 84204, + [SMALL_STATE(2096)] = 84269, + [SMALL_STATE(2097)] = 84334, + [SMALL_STATE(2098)] = 84399, + [SMALL_STATE(2099)] = 84464, + [SMALL_STATE(2100)] = 84529, + [SMALL_STATE(2101)] = 84594, + [SMALL_STATE(2102)] = 84659, + [SMALL_STATE(2103)] = 84724, + [SMALL_STATE(2104)] = 84789, + [SMALL_STATE(2105)] = 84854, + [SMALL_STATE(2106)] = 84919, + [SMALL_STATE(2107)] = 84984, + [SMALL_STATE(2108)] = 85049, + [SMALL_STATE(2109)] = 85114, + [SMALL_STATE(2110)] = 85179, + [SMALL_STATE(2111)] = 85244, + [SMALL_STATE(2112)] = 85309, + [SMALL_STATE(2113)] = 85374, + [SMALL_STATE(2114)] = 85439, + [SMALL_STATE(2115)] = 85504, + [SMALL_STATE(2116)] = 85569, + [SMALL_STATE(2117)] = 85634, + [SMALL_STATE(2118)] = 85699, + [SMALL_STATE(2119)] = 85764, + [SMALL_STATE(2120)] = 85829, + [SMALL_STATE(2121)] = 85894, + [SMALL_STATE(2122)] = 85959, + [SMALL_STATE(2123)] = 86024, + [SMALL_STATE(2124)] = 86089, + [SMALL_STATE(2125)] = 86154, + [SMALL_STATE(2126)] = 86219, + [SMALL_STATE(2127)] = 86284, + [SMALL_STATE(2128)] = 86349, + [SMALL_STATE(2129)] = 86414, + [SMALL_STATE(2130)] = 86479, + [SMALL_STATE(2131)] = 86544, + [SMALL_STATE(2132)] = 86609, + [SMALL_STATE(2133)] = 86674, + [SMALL_STATE(2134)] = 86739, + [SMALL_STATE(2135)] = 86804, + [SMALL_STATE(2136)] = 86869, + [SMALL_STATE(2137)] = 86934, + [SMALL_STATE(2138)] = 86999, + [SMALL_STATE(2139)] = 87064, + [SMALL_STATE(2140)] = 87105, + [SMALL_STATE(2141)] = 87170, + [SMALL_STATE(2142)] = 87235, + [SMALL_STATE(2143)] = 87300, + [SMALL_STATE(2144)] = 87365, + [SMALL_STATE(2145)] = 87430, + [SMALL_STATE(2146)] = 87495, + [SMALL_STATE(2147)] = 87560, + [SMALL_STATE(2148)] = 87625, + [SMALL_STATE(2149)] = 87690, + [SMALL_STATE(2150)] = 87755, + [SMALL_STATE(2151)] = 87820, + [SMALL_STATE(2152)] = 87885, + [SMALL_STATE(2153)] = 87950, + [SMALL_STATE(2154)] = 88015, + [SMALL_STATE(2155)] = 88080, + [SMALL_STATE(2156)] = 88145, + [SMALL_STATE(2157)] = 88210, + [SMALL_STATE(2158)] = 88275, + [SMALL_STATE(2159)] = 88340, + [SMALL_STATE(2160)] = 88405, + [SMALL_STATE(2161)] = 88470, + [SMALL_STATE(2162)] = 88535, + [SMALL_STATE(2163)] = 88600, + [SMALL_STATE(2164)] = 88665, + [SMALL_STATE(2165)] = 88730, + [SMALL_STATE(2166)] = 88795, + [SMALL_STATE(2167)] = 88860, + [SMALL_STATE(2168)] = 88925, + [SMALL_STATE(2169)] = 88990, + [SMALL_STATE(2170)] = 89055, + [SMALL_STATE(2171)] = 89120, + [SMALL_STATE(2172)] = 89185, + [SMALL_STATE(2173)] = 89250, + [SMALL_STATE(2174)] = 89315, + [SMALL_STATE(2175)] = 89380, + [SMALL_STATE(2176)] = 89445, + [SMALL_STATE(2177)] = 89510, + [SMALL_STATE(2178)] = 89575, + [SMALL_STATE(2179)] = 89640, + [SMALL_STATE(2180)] = 89705, + [SMALL_STATE(2181)] = 89770, + [SMALL_STATE(2182)] = 89835, + [SMALL_STATE(2183)] = 89900, + [SMALL_STATE(2184)] = 89965, + [SMALL_STATE(2185)] = 90030, + [SMALL_STATE(2186)] = 90095, + [SMALL_STATE(2187)] = 90160, + [SMALL_STATE(2188)] = 90225, + [SMALL_STATE(2189)] = 90290, + [SMALL_STATE(2190)] = 90355, + [SMALL_STATE(2191)] = 90420, + [SMALL_STATE(2192)] = 90485, + [SMALL_STATE(2193)] = 90550, + [SMALL_STATE(2194)] = 90615, + [SMALL_STATE(2195)] = 90680, + [SMALL_STATE(2196)] = 90742, + [SMALL_STATE(2197)] = 90804, + [SMALL_STATE(2198)] = 90866, + [SMALL_STATE(2199)] = 90928, + [SMALL_STATE(2200)] = 90990, + [SMALL_STATE(2201)] = 91052, + [SMALL_STATE(2202)] = 91114, + [SMALL_STATE(2203)] = 91176, + [SMALL_STATE(2204)] = 91238, + [SMALL_STATE(2205)] = 91300, + [SMALL_STATE(2206)] = 91362, + [SMALL_STATE(2207)] = 91424, + [SMALL_STATE(2208)] = 91486, + [SMALL_STATE(2209)] = 91520, + [SMALL_STATE(2210)] = 91558, + [SMALL_STATE(2211)] = 91620, + [SMALL_STATE(2212)] = 91682, + [SMALL_STATE(2213)] = 91744, + [SMALL_STATE(2214)] = 91806, + [SMALL_STATE(2215)] = 91868, + [SMALL_STATE(2216)] = 91930, + [SMALL_STATE(2217)] = 91992, + [SMALL_STATE(2218)] = 92054, + [SMALL_STATE(2219)] = 92118, + [SMALL_STATE(2220)] = 92180, + [SMALL_STATE(2221)] = 92242, + [SMALL_STATE(2222)] = 92304, + [SMALL_STATE(2223)] = 92366, + [SMALL_STATE(2224)] = 92400, + [SMALL_STATE(2225)] = 92436, + [SMALL_STATE(2226)] = 92498, + [SMALL_STATE(2227)] = 92559, + [SMALL_STATE(2228)] = 92620, + [SMALL_STATE(2229)] = 92681, + [SMALL_STATE(2230)] = 92742, + [SMALL_STATE(2231)] = 92777, + [SMALL_STATE(2232)] = 92838, + [SMALL_STATE(2233)] = 92899, + [SMALL_STATE(2234)] = 92937, + [SMALL_STATE(2235)] = 92973, + [SMALL_STATE(2236)] = 93028, + [SMALL_STATE(2237)] = 93081, + [SMALL_STATE(2238)] = 93136, + [SMALL_STATE(2239)] = 93191, + [SMALL_STATE(2240)] = 93246, + [SMALL_STATE(2241)] = 93301, + [SMALL_STATE(2242)] = 93356, + [SMALL_STATE(2243)] = 93411, + [SMALL_STATE(2244)] = 93466, + [SMALL_STATE(2245)] = 93519, + [SMALL_STATE(2246)] = 93574, + [SMALL_STATE(2247)] = 93627, + [SMALL_STATE(2248)] = 93682, + [SMALL_STATE(2249)] = 93737, + [SMALL_STATE(2250)] = 93790, + [SMALL_STATE(2251)] = 93845, + [SMALL_STATE(2252)] = 93900, + [SMALL_STATE(2253)] = 93955, + [SMALL_STATE(2254)] = 94010, + [SMALL_STATE(2255)] = 94065, + [SMALL_STATE(2256)] = 94098, + [SMALL_STATE(2257)] = 94153, + [SMALL_STATE(2258)] = 94208, + [SMALL_STATE(2259)] = 94263, + [SMALL_STATE(2260)] = 94318, + [SMALL_STATE(2261)] = 94354, + [SMALL_STATE(2262)] = 94388, + [SMALL_STATE(2263)] = 94426, + [SMALL_STATE(2264)] = 94462, + [SMALL_STATE(2265)] = 94495, + [SMALL_STATE(2266)] = 94524, + [SMALL_STATE(2267)] = 94569, + [SMALL_STATE(2268)] = 94614, + [SMALL_STATE(2269)] = 94643, + [SMALL_STATE(2270)] = 94674, + [SMALL_STATE(2271)] = 94707, + [SMALL_STATE(2272)] = 94738, + [SMALL_STATE(2273)] = 94771, + [SMALL_STATE(2274)] = 94804, + [SMALL_STATE(2275)] = 94838, + [SMALL_STATE(2276)] = 94868, + [SMALL_STATE(2277)] = 94896, + [SMALL_STATE(2278)] = 94927, + [SMALL_STATE(2279)] = 94957, + [SMALL_STATE(2280)] = 94985, + [SMALL_STATE(2281)] = 95023, + [SMALL_STATE(2282)] = 95051, + [SMALL_STATE(2283)] = 95079, + [SMALL_STATE(2284)] = 95107, + [SMALL_STATE(2285)] = 95145, + [SMALL_STATE(2286)] = 95172, + [SMALL_STATE(2287)] = 95197, + [SMALL_STATE(2288)] = 95222, + [SMALL_STATE(2289)] = 95257, + [SMALL_STATE(2290)] = 95292, + [SMALL_STATE(2291)] = 95315, + [SMALL_STATE(2292)] = 95342, + [SMALL_STATE(2293)] = 95369, + [SMALL_STATE(2294)] = 95396, + [SMALL_STATE(2295)] = 95416, + [SMALL_STATE(2296)] = 95442, + [SMALL_STATE(2297)] = 95461, + [SMALL_STATE(2298)] = 95480, + [SMALL_STATE(2299)] = 95510, + [SMALL_STATE(2300)] = 95540, + [SMALL_STATE(2301)] = 95570, + [SMALL_STATE(2302)] = 95600, + [SMALL_STATE(2303)] = 95622, + [SMALL_STATE(2304)] = 95652, + [SMALL_STATE(2305)] = 95682, + [SMALL_STATE(2306)] = 95706, + [SMALL_STATE(2307)] = 95722, + [SMALL_STATE(2308)] = 95738, + [SMALL_STATE(2309)] = 95768, + [SMALL_STATE(2310)] = 95790, + [SMALL_STATE(2311)] = 95816, + [SMALL_STATE(2312)] = 95846, + [SMALL_STATE(2313)] = 95876, + [SMALL_STATE(2314)] = 95906, + [SMALL_STATE(2315)] = 95928, + [SMALL_STATE(2316)] = 95958, + [SMALL_STATE(2317)] = 95981, + [SMALL_STATE(2318)] = 96004, + [SMALL_STATE(2319)] = 96027, + [SMALL_STATE(2320)] = 96048, + [SMALL_STATE(2321)] = 96066, + [SMALL_STATE(2322)] = 96082, + [SMALL_STATE(2323)] = 96108, + [SMALL_STATE(2324)] = 96134, + [SMALL_STATE(2325)] = 96160, + [SMALL_STATE(2326)] = 96186, + [SMALL_STATE(2327)] = 96210, + [SMALL_STATE(2328)] = 96236, + [SMALL_STATE(2329)] = 96262, + [SMALL_STATE(2330)] = 96288, + [SMALL_STATE(2331)] = 96304, + [SMALL_STATE(2332)] = 96330, + [SMALL_STATE(2333)] = 96356, + [SMALL_STATE(2334)] = 96382, + [SMALL_STATE(2335)] = 96408, + [SMALL_STATE(2336)] = 96434, + [SMALL_STATE(2337)] = 96460, + [SMALL_STATE(2338)] = 96486, + [SMALL_STATE(2339)] = 96506, + [SMALL_STATE(2340)] = 96532, + [SMALL_STATE(2341)] = 96558, + [SMALL_STATE(2342)] = 96584, + [SMALL_STATE(2343)] = 96610, + [SMALL_STATE(2344)] = 96636, + [SMALL_STATE(2345)] = 96658, + [SMALL_STATE(2346)] = 96684, + [SMALL_STATE(2347)] = 96706, + [SMALL_STATE(2348)] = 96732, + [SMALL_STATE(2349)] = 96758, + [SMALL_STATE(2350)] = 96784, + [SMALL_STATE(2351)] = 96810, + [SMALL_STATE(2352)] = 96832, + [SMALL_STATE(2353)] = 96858, + [SMALL_STATE(2354)] = 96884, + [SMALL_STATE(2355)] = 96910, + [SMALL_STATE(2356)] = 96932, + [SMALL_STATE(2357)] = 96958, + [SMALL_STATE(2358)] = 96980, + [SMALL_STATE(2359)] = 97006, + [SMALL_STATE(2360)] = 97032, + [SMALL_STATE(2361)] = 97058, + [SMALL_STATE(2362)] = 97082, + [SMALL_STATE(2363)] = 97100, + [SMALL_STATE(2364)] = 97126, + [SMALL_STATE(2365)] = 97152, + [SMALL_STATE(2366)] = 97178, + [SMALL_STATE(2367)] = 97204, + [SMALL_STATE(2368)] = 97230, + [SMALL_STATE(2369)] = 97246, + [SMALL_STATE(2370)] = 97272, + [SMALL_STATE(2371)] = 97290, + [SMALL_STATE(2372)] = 97316, + [SMALL_STATE(2373)] = 97342, + [SMALL_STATE(2374)] = 97360, + [SMALL_STATE(2375)] = 97378, + [SMALL_STATE(2376)] = 97396, + [SMALL_STATE(2377)] = 97412, + [SMALL_STATE(2378)] = 97428, + [SMALL_STATE(2379)] = 97444, + [SMALL_STATE(2380)] = 97470, + [SMALL_STATE(2381)] = 97496, + [SMALL_STATE(2382)] = 97518, + [SMALL_STATE(2383)] = 97544, + [SMALL_STATE(2384)] = 97566, + [SMALL_STATE(2385)] = 97588, + [SMALL_STATE(2386)] = 97609, + [SMALL_STATE(2387)] = 97630, + [SMALL_STATE(2388)] = 97647, + [SMALL_STATE(2389)] = 97670, + [SMALL_STATE(2390)] = 97687, + [SMALL_STATE(2391)] = 97704, + [SMALL_STATE(2392)] = 97727, + [SMALL_STATE(2393)] = 97750, + [SMALL_STATE(2394)] = 97773, + [SMALL_STATE(2395)] = 97796, + [SMALL_STATE(2396)] = 97815, + [SMALL_STATE(2397)] = 97836, + [SMALL_STATE(2398)] = 97859, + [SMALL_STATE(2399)] = 97880, + [SMALL_STATE(2400)] = 97903, + [SMALL_STATE(2401)] = 97926, + [SMALL_STATE(2402)] = 97947, + [SMALL_STATE(2403)] = 97970, + [SMALL_STATE(2404)] = 97989, + [SMALL_STATE(2405)] = 98010, + [SMALL_STATE(2406)] = 98033, + [SMALL_STATE(2407)] = 98056, + [SMALL_STATE(2408)] = 98079, + [SMALL_STATE(2409)] = 98102, + [SMALL_STATE(2410)] = 98121, + [SMALL_STATE(2411)] = 98134, + [SMALL_STATE(2412)] = 98157, + [SMALL_STATE(2413)] = 98180, + [SMALL_STATE(2414)] = 98199, + [SMALL_STATE(2415)] = 98222, + [SMALL_STATE(2416)] = 98245, + [SMALL_STATE(2417)] = 98268, + [SMALL_STATE(2418)] = 98291, + [SMALL_STATE(2419)] = 98314, + [SMALL_STATE(2420)] = 98337, + [SMALL_STATE(2421)] = 98358, + [SMALL_STATE(2422)] = 98379, + [SMALL_STATE(2423)] = 98400, + [SMALL_STATE(2424)] = 98423, + [SMALL_STATE(2425)] = 98446, + [SMALL_STATE(2426)] = 98469, + [SMALL_STATE(2427)] = 98492, + [SMALL_STATE(2428)] = 98515, + [SMALL_STATE(2429)] = 98538, + [SMALL_STATE(2430)] = 98559, + [SMALL_STATE(2431)] = 98576, + [SMALL_STATE(2432)] = 98599, + [SMALL_STATE(2433)] = 98614, + [SMALL_STATE(2434)] = 98627, + [SMALL_STATE(2435)] = 98650, + [SMALL_STATE(2436)] = 98667, + [SMALL_STATE(2437)] = 98684, + [SMALL_STATE(2438)] = 98701, + [SMALL_STATE(2439)] = 98718, + [SMALL_STATE(2440)] = 98733, + [SMALL_STATE(2441)] = 98748, + [SMALL_STATE(2442)] = 98763, + [SMALL_STATE(2443)] = 98786, + [SMALL_STATE(2444)] = 98809, + [SMALL_STATE(2445)] = 98832, + [SMALL_STATE(2446)] = 98855, + [SMALL_STATE(2447)] = 98878, + [SMALL_STATE(2448)] = 98901, + [SMALL_STATE(2449)] = 98924, + [SMALL_STATE(2450)] = 98945, + [SMALL_STATE(2451)] = 98968, + [SMALL_STATE(2452)] = 98991, + [SMALL_STATE(2453)] = 99012, + [SMALL_STATE(2454)] = 99033, + [SMALL_STATE(2455)] = 99056, + [SMALL_STATE(2456)] = 99079, + [SMALL_STATE(2457)] = 99102, + [SMALL_STATE(2458)] = 99122, + [SMALL_STATE(2459)] = 99140, + [SMALL_STATE(2460)] = 99156, + [SMALL_STATE(2461)] = 99174, + [SMALL_STATE(2462)] = 99194, + [SMALL_STATE(2463)] = 99214, + [SMALL_STATE(2464)] = 99230, + [SMALL_STATE(2465)] = 99250, + [SMALL_STATE(2466)] = 99264, + [SMALL_STATE(2467)] = 99282, + [SMALL_STATE(2468)] = 99300, + [SMALL_STATE(2469)] = 99320, + [SMALL_STATE(2470)] = 99340, + [SMALL_STATE(2471)] = 99360, + [SMALL_STATE(2472)] = 99372, + [SMALL_STATE(2473)] = 99388, + [SMALL_STATE(2474)] = 99406, + [SMALL_STATE(2475)] = 99424, + [SMALL_STATE(2476)] = 99440, + [SMALL_STATE(2477)] = 99460, + [SMALL_STATE(2478)] = 99478, + [SMALL_STATE(2479)] = 99496, + [SMALL_STATE(2480)] = 99512, + [SMALL_STATE(2481)] = 99532, + [SMALL_STATE(2482)] = 99548, + [SMALL_STATE(2483)] = 99566, + [SMALL_STATE(2484)] = 99580, + [SMALL_STATE(2485)] = 99596, + [SMALL_STATE(2486)] = 99614, + [SMALL_STATE(2487)] = 99634, + [SMALL_STATE(2488)] = 99654, + [SMALL_STATE(2489)] = 99672, + [SMALL_STATE(2490)] = 99690, + [SMALL_STATE(2491)] = 99706, + [SMALL_STATE(2492)] = 99720, + [SMALL_STATE(2493)] = 99738, + [SMALL_STATE(2494)] = 99758, + [SMALL_STATE(2495)] = 99778, + [SMALL_STATE(2496)] = 99792, + [SMALL_STATE(2497)] = 99812, + [SMALL_STATE(2498)] = 99826, + [SMALL_STATE(2499)] = 99842, + [SMALL_STATE(2500)] = 99858, + [SMALL_STATE(2501)] = 99878, + [SMALL_STATE(2502)] = 99898, + [SMALL_STATE(2503)] = 99916, + [SMALL_STATE(2504)] = 99934, + [SMALL_STATE(2505)] = 99954, + [SMALL_STATE(2506)] = 99970, + [SMALL_STATE(2507)] = 99986, + [SMALL_STATE(2508)] = 100006, + [SMALL_STATE(2509)] = 100026, + [SMALL_STATE(2510)] = 100042, + [SMALL_STATE(2511)] = 100062, + [SMALL_STATE(2512)] = 100082, + [SMALL_STATE(2513)] = 100102, + [SMALL_STATE(2514)] = 100114, + [SMALL_STATE(2515)] = 100134, + [SMALL_STATE(2516)] = 100152, + [SMALL_STATE(2517)] = 100166, + [SMALL_STATE(2518)] = 100186, + [SMALL_STATE(2519)] = 100206, + [SMALL_STATE(2520)] = 100226, + [SMALL_STATE(2521)] = 100246, + [SMALL_STATE(2522)] = 100262, + [SMALL_STATE(2523)] = 100276, + [SMALL_STATE(2524)] = 100296, + [SMALL_STATE(2525)] = 100310, + [SMALL_STATE(2526)] = 100330, + [SMALL_STATE(2527)] = 100342, + [SMALL_STATE(2528)] = 100354, + [SMALL_STATE(2529)] = 100372, + [SMALL_STATE(2530)] = 100390, + [SMALL_STATE(2531)] = 100404, + [SMALL_STATE(2532)] = 100422, + [SMALL_STATE(2533)] = 100438, + [SMALL_STATE(2534)] = 100458, + [SMALL_STATE(2535)] = 100475, + [SMALL_STATE(2536)] = 100492, + [SMALL_STATE(2537)] = 100509, + [SMALL_STATE(2538)] = 100526, + [SMALL_STATE(2539)] = 100543, + [SMALL_STATE(2540)] = 100560, + [SMALL_STATE(2541)] = 100577, + [SMALL_STATE(2542)] = 100594, + [SMALL_STATE(2543)] = 100611, + [SMALL_STATE(2544)] = 100628, + [SMALL_STATE(2545)] = 100645, + [SMALL_STATE(2546)] = 100662, + [SMALL_STATE(2547)] = 100677, + [SMALL_STATE(2548)] = 100694, + [SMALL_STATE(2549)] = 100713, + [SMALL_STATE(2550)] = 100730, + [SMALL_STATE(2551)] = 100747, + [SMALL_STATE(2552)] = 100764, + [SMALL_STATE(2553)] = 100781, + [SMALL_STATE(2554)] = 100798, + [SMALL_STATE(2555)] = 100815, + [SMALL_STATE(2556)] = 100832, + [SMALL_STATE(2557)] = 100843, + [SMALL_STATE(2558)] = 100860, + [SMALL_STATE(2559)] = 100877, + [SMALL_STATE(2560)] = 100894, + [SMALL_STATE(2561)] = 100911, + [SMALL_STATE(2562)] = 100928, + [SMALL_STATE(2563)] = 100947, + [SMALL_STATE(2564)] = 100964, + [SMALL_STATE(2565)] = 100981, + [SMALL_STATE(2566)] = 100998, + [SMALL_STATE(2567)] = 101015, + [SMALL_STATE(2568)] = 101032, + [SMALL_STATE(2569)] = 101049, + [SMALL_STATE(2570)] = 101066, + [SMALL_STATE(2571)] = 101083, + [SMALL_STATE(2572)] = 101100, + [SMALL_STATE(2573)] = 101117, + [SMALL_STATE(2574)] = 101134, + [SMALL_STATE(2575)] = 101151, + [SMALL_STATE(2576)] = 101168, + [SMALL_STATE(2577)] = 101185, + [SMALL_STATE(2578)] = 101202, + [SMALL_STATE(2579)] = 101219, + [SMALL_STATE(2580)] = 101236, + [SMALL_STATE(2581)] = 101253, + [SMALL_STATE(2582)] = 101270, + [SMALL_STATE(2583)] = 101287, + [SMALL_STATE(2584)] = 101304, + [SMALL_STATE(2585)] = 101321, + [SMALL_STATE(2586)] = 101338, + [SMALL_STATE(2587)] = 101355, + [SMALL_STATE(2588)] = 101372, + [SMALL_STATE(2589)] = 101383, + [SMALL_STATE(2590)] = 101400, + [SMALL_STATE(2591)] = 101417, + [SMALL_STATE(2592)] = 101434, + [SMALL_STATE(2593)] = 101451, + [SMALL_STATE(2594)] = 101468, + [SMALL_STATE(2595)] = 101485, + [SMALL_STATE(2596)] = 101502, + [SMALL_STATE(2597)] = 101519, + [SMALL_STATE(2598)] = 101536, + [SMALL_STATE(2599)] = 101553, + [SMALL_STATE(2600)] = 101570, + [SMALL_STATE(2601)] = 101587, + [SMALL_STATE(2602)] = 101604, + [SMALL_STATE(2603)] = 101619, + [SMALL_STATE(2604)] = 101636, + [SMALL_STATE(2605)] = 101653, + [SMALL_STATE(2606)] = 101670, + [SMALL_STATE(2607)] = 101687, + [SMALL_STATE(2608)] = 101700, + [SMALL_STATE(2609)] = 101717, + [SMALL_STATE(2610)] = 101734, + [SMALL_STATE(2611)] = 101751, + [SMALL_STATE(2612)] = 101768, + [SMALL_STATE(2613)] = 101785, + [SMALL_STATE(2614)] = 101802, + [SMALL_STATE(2615)] = 101819, + [SMALL_STATE(2616)] = 101836, + [SMALL_STATE(2617)] = 101853, + [SMALL_STATE(2618)] = 101870, + [SMALL_STATE(2619)] = 101887, + [SMALL_STATE(2620)] = 101904, + [SMALL_STATE(2621)] = 101921, + [SMALL_STATE(2622)] = 101938, + [SMALL_STATE(2623)] = 101955, + [SMALL_STATE(2624)] = 101972, + [SMALL_STATE(2625)] = 101989, + [SMALL_STATE(2626)] = 102006, + [SMALL_STATE(2627)] = 102023, + [SMALL_STATE(2628)] = 102040, + [SMALL_STATE(2629)] = 102057, + [SMALL_STATE(2630)] = 102074, + [SMALL_STATE(2631)] = 102091, + [SMALL_STATE(2632)] = 102108, + [SMALL_STATE(2633)] = 102125, + [SMALL_STATE(2634)] = 102144, + [SMALL_STATE(2635)] = 102161, + [SMALL_STATE(2636)] = 102176, + [SMALL_STATE(2637)] = 102191, + [SMALL_STATE(2638)] = 102208, + [SMALL_STATE(2639)] = 102225, + [SMALL_STATE(2640)] = 102242, + [SMALL_STATE(2641)] = 102259, + [SMALL_STATE(2642)] = 102276, + [SMALL_STATE(2643)] = 102293, + [SMALL_STATE(2644)] = 102310, + [SMALL_STATE(2645)] = 102327, + [SMALL_STATE(2646)] = 102344, + [SMALL_STATE(2647)] = 102361, + [SMALL_STATE(2648)] = 102378, + [SMALL_STATE(2649)] = 102395, + [SMALL_STATE(2650)] = 102412, + [SMALL_STATE(2651)] = 102429, + [SMALL_STATE(2652)] = 102446, + [SMALL_STATE(2653)] = 102463, + [SMALL_STATE(2654)] = 102480, + [SMALL_STATE(2655)] = 102497, + [SMALL_STATE(2656)] = 102514, + [SMALL_STATE(2657)] = 102531, + [SMALL_STATE(2658)] = 102548, + [SMALL_STATE(2659)] = 102559, + [SMALL_STATE(2660)] = 102576, + [SMALL_STATE(2661)] = 102593, + [SMALL_STATE(2662)] = 102610, + [SMALL_STATE(2663)] = 102627, + [SMALL_STATE(2664)] = 102644, + [SMALL_STATE(2665)] = 102661, + [SMALL_STATE(2666)] = 102676, + [SMALL_STATE(2667)] = 102693, + [SMALL_STATE(2668)] = 102710, + [SMALL_STATE(2669)] = 102725, + [SMALL_STATE(2670)] = 102742, + [SMALL_STATE(2671)] = 102759, + [SMALL_STATE(2672)] = 102778, + [SMALL_STATE(2673)] = 102795, + [SMALL_STATE(2674)] = 102810, + [SMALL_STATE(2675)] = 102827, + [SMALL_STATE(2676)] = 102844, + [SMALL_STATE(2677)] = 102861, + [SMALL_STATE(2678)] = 102878, + [SMALL_STATE(2679)] = 102895, + [SMALL_STATE(2680)] = 102912, + [SMALL_STATE(2681)] = 102929, + [SMALL_STATE(2682)] = 102946, + [SMALL_STATE(2683)] = 102963, + [SMALL_STATE(2684)] = 102976, + [SMALL_STATE(2685)] = 102993, + [SMALL_STATE(2686)] = 103010, + [SMALL_STATE(2687)] = 103029, + [SMALL_STATE(2688)] = 103046, + [SMALL_STATE(2689)] = 103063, + [SMALL_STATE(2690)] = 103078, + [SMALL_STATE(2691)] = 103095, + [SMALL_STATE(2692)] = 103112, + [SMALL_STATE(2693)] = 103129, + [SMALL_STATE(2694)] = 103144, + [SMALL_STATE(2695)] = 103161, + [SMALL_STATE(2696)] = 103176, + [SMALL_STATE(2697)] = 103195, + [SMALL_STATE(2698)] = 103212, + [SMALL_STATE(2699)] = 103229, + [SMALL_STATE(2700)] = 103246, + [SMALL_STATE(2701)] = 103263, + [SMALL_STATE(2702)] = 103280, + [SMALL_STATE(2703)] = 103293, + [SMALL_STATE(2704)] = 103310, + [SMALL_STATE(2705)] = 103327, + [SMALL_STATE(2706)] = 103344, + [SMALL_STATE(2707)] = 103361, + [SMALL_STATE(2708)] = 103378, + [SMALL_STATE(2709)] = 103393, + [SMALL_STATE(2710)] = 103410, + [SMALL_STATE(2711)] = 103427, + [SMALL_STATE(2712)] = 103444, + [SMALL_STATE(2713)] = 103461, + [SMALL_STATE(2714)] = 103478, + [SMALL_STATE(2715)] = 103495, + [SMALL_STATE(2716)] = 103512, + [SMALL_STATE(2717)] = 103529, + [SMALL_STATE(2718)] = 103542, + [SMALL_STATE(2719)] = 103559, + [SMALL_STATE(2720)] = 103576, + [SMALL_STATE(2721)] = 103593, + [SMALL_STATE(2722)] = 103610, + [SMALL_STATE(2723)] = 103627, + [SMALL_STATE(2724)] = 103644, + [SMALL_STATE(2725)] = 103661, + [SMALL_STATE(2726)] = 103678, + [SMALL_STATE(2727)] = 103695, + [SMALL_STATE(2728)] = 103712, + [SMALL_STATE(2729)] = 103729, + [SMALL_STATE(2730)] = 103746, + [SMALL_STATE(2731)] = 103763, + [SMALL_STATE(2732)] = 103780, + [SMALL_STATE(2733)] = 103797, + [SMALL_STATE(2734)] = 103814, + [SMALL_STATE(2735)] = 103831, + [SMALL_STATE(2736)] = 103846, + [SMALL_STATE(2737)] = 103863, + [SMALL_STATE(2738)] = 103880, + [SMALL_STATE(2739)] = 103897, + [SMALL_STATE(2740)] = 103914, + [SMALL_STATE(2741)] = 103927, + [SMALL_STATE(2742)] = 103944, + [SMALL_STATE(2743)] = 103961, + [SMALL_STATE(2744)] = 103978, + [SMALL_STATE(2745)] = 103995, + [SMALL_STATE(2746)] = 104012, + [SMALL_STATE(2747)] = 104027, + [SMALL_STATE(2748)] = 104044, + [SMALL_STATE(2749)] = 104061, + [SMALL_STATE(2750)] = 104078, + [SMALL_STATE(2751)] = 104089, + [SMALL_STATE(2752)] = 104108, + [SMALL_STATE(2753)] = 104125, + [SMALL_STATE(2754)] = 104142, + [SMALL_STATE(2755)] = 104157, + [SMALL_STATE(2756)] = 104174, + [SMALL_STATE(2757)] = 104189, + [SMALL_STATE(2758)] = 104206, + [SMALL_STATE(2759)] = 104221, + [SMALL_STATE(2760)] = 104240, + [SMALL_STATE(2761)] = 104257, + [SMALL_STATE(2762)] = 104274, + [SMALL_STATE(2763)] = 104291, + [SMALL_STATE(2764)] = 104308, + [SMALL_STATE(2765)] = 104323, + [SMALL_STATE(2766)] = 104340, + [SMALL_STATE(2767)] = 104357, + [SMALL_STATE(2768)] = 104372, + [SMALL_STATE(2769)] = 104389, + [SMALL_STATE(2770)] = 104404, + [SMALL_STATE(2771)] = 104421, + [SMALL_STATE(2772)] = 104438, + [SMALL_STATE(2773)] = 104453, + [SMALL_STATE(2774)] = 104470, + [SMALL_STATE(2775)] = 104487, + [SMALL_STATE(2776)] = 104506, + [SMALL_STATE(2777)] = 104521, + [SMALL_STATE(2778)] = 104536, + [SMALL_STATE(2779)] = 104551, + [SMALL_STATE(2780)] = 104566, + [SMALL_STATE(2781)] = 104583, + [SMALL_STATE(2782)] = 104600, + [SMALL_STATE(2783)] = 104617, + [SMALL_STATE(2784)] = 104634, + [SMALL_STATE(2785)] = 104651, + [SMALL_STATE(2786)] = 104668, + [SMALL_STATE(2787)] = 104685, + [SMALL_STATE(2788)] = 104696, + [SMALL_STATE(2789)] = 104713, + [SMALL_STATE(2790)] = 104728, + [SMALL_STATE(2791)] = 104745, + [SMALL_STATE(2792)] = 104762, + [SMALL_STATE(2793)] = 104779, + [SMALL_STATE(2794)] = 104794, + [SMALL_STATE(2795)] = 104809, + [SMALL_STATE(2796)] = 104824, + [SMALL_STATE(2797)] = 104839, + [SMALL_STATE(2798)] = 104856, + [SMALL_STATE(2799)] = 104873, + [SMALL_STATE(2800)] = 104890, + [SMALL_STATE(2801)] = 104907, + [SMALL_STATE(2802)] = 104924, + [SMALL_STATE(2803)] = 104941, + [SMALL_STATE(2804)] = 104958, + [SMALL_STATE(2805)] = 104975, + [SMALL_STATE(2806)] = 104990, + [SMALL_STATE(2807)] = 105007, + [SMALL_STATE(2808)] = 105022, + [SMALL_STATE(2809)] = 105037, + [SMALL_STATE(2810)] = 105052, + [SMALL_STATE(2811)] = 105069, + [SMALL_STATE(2812)] = 105086, + [SMALL_STATE(2813)] = 105103, + [SMALL_STATE(2814)] = 105120, + [SMALL_STATE(2815)] = 105137, + [SMALL_STATE(2816)] = 105154, + [SMALL_STATE(2817)] = 105171, + [SMALL_STATE(2818)] = 105188, + [SMALL_STATE(2819)] = 105205, + [SMALL_STATE(2820)] = 105222, + [SMALL_STATE(2821)] = 105239, + [SMALL_STATE(2822)] = 105258, + [SMALL_STATE(2823)] = 105275, + [SMALL_STATE(2824)] = 105292, + [SMALL_STATE(2825)] = 105307, + [SMALL_STATE(2826)] = 105324, + [SMALL_STATE(2827)] = 105337, + [SMALL_STATE(2828)] = 105350, + [SMALL_STATE(2829)] = 105363, + [SMALL_STATE(2830)] = 105380, + [SMALL_STATE(2831)] = 105397, + [SMALL_STATE(2832)] = 105414, + [SMALL_STATE(2833)] = 105431, + [SMALL_STATE(2834)] = 105450, + [SMALL_STATE(2835)] = 105465, + [SMALL_STATE(2836)] = 105479, + [SMALL_STATE(2837)] = 105491, + [SMALL_STATE(2838)] = 105505, + [SMALL_STATE(2839)] = 105517, + [SMALL_STATE(2840)] = 105531, + [SMALL_STATE(2841)] = 105545, + [SMALL_STATE(2842)] = 105559, + [SMALL_STATE(2843)] = 105573, + [SMALL_STATE(2844)] = 105583, + [SMALL_STATE(2845)] = 105597, + [SMALL_STATE(2846)] = 105611, + [SMALL_STATE(2847)] = 105625, + [SMALL_STATE(2848)] = 105637, + [SMALL_STATE(2849)] = 105651, + [SMALL_STATE(2850)] = 105665, + [SMALL_STATE(2851)] = 105677, + [SMALL_STATE(2852)] = 105691, + [SMALL_STATE(2853)] = 105701, + [SMALL_STATE(2854)] = 105711, + [SMALL_STATE(2855)] = 105725, + [SMALL_STATE(2856)] = 105735, + [SMALL_STATE(2857)] = 105747, + [SMALL_STATE(2858)] = 105761, + [SMALL_STATE(2859)] = 105773, + [SMALL_STATE(2860)] = 105785, + [SMALL_STATE(2861)] = 105799, + [SMALL_STATE(2862)] = 105813, + [SMALL_STATE(2863)] = 105827, + [SMALL_STATE(2864)] = 105837, + [SMALL_STATE(2865)] = 105847, + [SMALL_STATE(2866)] = 105861, + [SMALL_STATE(2867)] = 105875, + [SMALL_STATE(2868)] = 105889, + [SMALL_STATE(2869)] = 105903, + [SMALL_STATE(2870)] = 105917, + [SMALL_STATE(2871)] = 105929, + [SMALL_STATE(2872)] = 105943, + [SMALL_STATE(2873)] = 105957, + [SMALL_STATE(2874)] = 105969, + [SMALL_STATE(2875)] = 105983, + [SMALL_STATE(2876)] = 105997, + [SMALL_STATE(2877)] = 106011, + [SMALL_STATE(2878)] = 106025, + [SMALL_STATE(2879)] = 106039, + [SMALL_STATE(2880)] = 106053, + [SMALL_STATE(2881)] = 106067, + [SMALL_STATE(2882)] = 106081, + [SMALL_STATE(2883)] = 106095, + [SMALL_STATE(2884)] = 106109, + [SMALL_STATE(2885)] = 106123, + [SMALL_STATE(2886)] = 106137, + [SMALL_STATE(2887)] = 106151, + [SMALL_STATE(2888)] = 106165, + [SMALL_STATE(2889)] = 106179, + [SMALL_STATE(2890)] = 106191, + [SMALL_STATE(2891)] = 106205, + [SMALL_STATE(2892)] = 106219, + [SMALL_STATE(2893)] = 106233, + [SMALL_STATE(2894)] = 106245, + [SMALL_STATE(2895)] = 106259, + [SMALL_STATE(2896)] = 106271, + [SMALL_STATE(2897)] = 106283, + [SMALL_STATE(2898)] = 106297, + [SMALL_STATE(2899)] = 106311, + [SMALL_STATE(2900)] = 106325, + [SMALL_STATE(2901)] = 106339, + [SMALL_STATE(2902)] = 106353, + [SMALL_STATE(2903)] = 106367, + [SMALL_STATE(2904)] = 106381, + [SMALL_STATE(2905)] = 106395, + [SMALL_STATE(2906)] = 106409, + [SMALL_STATE(2907)] = 106421, + [SMALL_STATE(2908)] = 106433, + [SMALL_STATE(2909)] = 106447, + [SMALL_STATE(2910)] = 106461, + [SMALL_STATE(2911)] = 106475, + [SMALL_STATE(2912)] = 106489, + [SMALL_STATE(2913)] = 106503, + [SMALL_STATE(2914)] = 106513, + [SMALL_STATE(2915)] = 106527, + [SMALL_STATE(2916)] = 106541, + [SMALL_STATE(2917)] = 106555, + [SMALL_STATE(2918)] = 106569, + [SMALL_STATE(2919)] = 106583, + [SMALL_STATE(2920)] = 106597, + [SMALL_STATE(2921)] = 106611, + [SMALL_STATE(2922)] = 106625, + [SMALL_STATE(2923)] = 106639, + [SMALL_STATE(2924)] = 106653, + [SMALL_STATE(2925)] = 106667, + [SMALL_STATE(2926)] = 106681, + [SMALL_STATE(2927)] = 106695, + [SMALL_STATE(2928)] = 106709, + [SMALL_STATE(2929)] = 106723, + [SMALL_STATE(2930)] = 106737, + [SMALL_STATE(2931)] = 106751, + [SMALL_STATE(2932)] = 106765, + [SMALL_STATE(2933)] = 106779, + [SMALL_STATE(2934)] = 106793, + [SMALL_STATE(2935)] = 106807, + [SMALL_STATE(2936)] = 106821, + [SMALL_STATE(2937)] = 106835, + [SMALL_STATE(2938)] = 106849, + [SMALL_STATE(2939)] = 106863, + [SMALL_STATE(2940)] = 106875, + [SMALL_STATE(2941)] = 106887, + [SMALL_STATE(2942)] = 106901, + [SMALL_STATE(2943)] = 106915, + [SMALL_STATE(2944)] = 106929, + [SMALL_STATE(2945)] = 106943, + [SMALL_STATE(2946)] = 106957, + [SMALL_STATE(2947)] = 106971, + [SMALL_STATE(2948)] = 106985, + [SMALL_STATE(2949)] = 106999, + [SMALL_STATE(2950)] = 107013, + [SMALL_STATE(2951)] = 107027, + [SMALL_STATE(2952)] = 107041, + [SMALL_STATE(2953)] = 107053, + [SMALL_STATE(2954)] = 107067, + [SMALL_STATE(2955)] = 107081, + [SMALL_STATE(2956)] = 107095, + [SMALL_STATE(2957)] = 107109, + [SMALL_STATE(2958)] = 107119, + [SMALL_STATE(2959)] = 107133, + [SMALL_STATE(2960)] = 107145, + [SMALL_STATE(2961)] = 107159, + [SMALL_STATE(2962)] = 107173, + [SMALL_STATE(2963)] = 107183, + [SMALL_STATE(2964)] = 107197, + [SMALL_STATE(2965)] = 107207, + [SMALL_STATE(2966)] = 107221, + [SMALL_STATE(2967)] = 107233, + [SMALL_STATE(2968)] = 107243, + [SMALL_STATE(2969)] = 107257, + [SMALL_STATE(2970)] = 107271, + [SMALL_STATE(2971)] = 107283, + [SMALL_STATE(2972)] = 107297, + [SMALL_STATE(2973)] = 107311, + [SMALL_STATE(2974)] = 107321, + [SMALL_STATE(2975)] = 107333, + [SMALL_STATE(2976)] = 107347, + [SMALL_STATE(2977)] = 107357, + [SMALL_STATE(2978)] = 107371, + [SMALL_STATE(2979)] = 107383, + [SMALL_STATE(2980)] = 107397, + [SMALL_STATE(2981)] = 107411, + [SMALL_STATE(2982)] = 107425, + [SMALL_STATE(2983)] = 107439, + [SMALL_STATE(2984)] = 107451, + [SMALL_STATE(2985)] = 107463, + [SMALL_STATE(2986)] = 107477, + [SMALL_STATE(2987)] = 107489, + [SMALL_STATE(2988)] = 107503, + [SMALL_STATE(2989)] = 107517, + [SMALL_STATE(2990)] = 107531, + [SMALL_STATE(2991)] = 107543, + [SMALL_STATE(2992)] = 107557, + [SMALL_STATE(2993)] = 107569, + [SMALL_STATE(2994)] = 107581, + [SMALL_STATE(2995)] = 107593, + [SMALL_STATE(2996)] = 107605, + [SMALL_STATE(2997)] = 107617, + [SMALL_STATE(2998)] = 107629, + [SMALL_STATE(2999)] = 107641, + [SMALL_STATE(3000)] = 107653, + [SMALL_STATE(3001)] = 107665, + [SMALL_STATE(3002)] = 107677, + [SMALL_STATE(3003)] = 107689, + [SMALL_STATE(3004)] = 107701, + [SMALL_STATE(3005)] = 107713, + [SMALL_STATE(3006)] = 107727, + [SMALL_STATE(3007)] = 107741, + [SMALL_STATE(3008)] = 107753, + [SMALL_STATE(3009)] = 107765, + [SMALL_STATE(3010)] = 107779, + [SMALL_STATE(3011)] = 107793, + [SMALL_STATE(3012)] = 107807, + [SMALL_STATE(3013)] = 107821, + [SMALL_STATE(3014)] = 107835, + [SMALL_STATE(3015)] = 107847, + [SMALL_STATE(3016)] = 107861, + [SMALL_STATE(3017)] = 107873, + [SMALL_STATE(3018)] = 107885, + [SMALL_STATE(3019)] = 107899, + [SMALL_STATE(3020)] = 107913, + [SMALL_STATE(3021)] = 107927, + [SMALL_STATE(3022)] = 107939, + [SMALL_STATE(3023)] = 107953, + [SMALL_STATE(3024)] = 107967, + [SMALL_STATE(3025)] = 107981, + [SMALL_STATE(3026)] = 107993, + [SMALL_STATE(3027)] = 108007, + [SMALL_STATE(3028)] = 108019, + [SMALL_STATE(3029)] = 108031, + [SMALL_STATE(3030)] = 108043, + [SMALL_STATE(3031)] = 108057, + [SMALL_STATE(3032)] = 108069, + [SMALL_STATE(3033)] = 108081, + [SMALL_STATE(3034)] = 108091, + [SMALL_STATE(3035)] = 108105, + [SMALL_STATE(3036)] = 108119, + [SMALL_STATE(3037)] = 108131, + [SMALL_STATE(3038)] = 108143, + [SMALL_STATE(3039)] = 108155, + [SMALL_STATE(3040)] = 108167, + [SMALL_STATE(3041)] = 108181, + [SMALL_STATE(3042)] = 108193, + [SMALL_STATE(3043)] = 108205, + [SMALL_STATE(3044)] = 108217, + [SMALL_STATE(3045)] = 108229, + [SMALL_STATE(3046)] = 108241, + [SMALL_STATE(3047)] = 108255, + [SMALL_STATE(3048)] = 108269, + [SMALL_STATE(3049)] = 108281, + [SMALL_STATE(3050)] = 108293, + [SMALL_STATE(3051)] = 108307, + [SMALL_STATE(3052)] = 108321, + [SMALL_STATE(3053)] = 108335, + [SMALL_STATE(3054)] = 108347, + [SMALL_STATE(3055)] = 108359, + [SMALL_STATE(3056)] = 108371, + [SMALL_STATE(3057)] = 108383, + [SMALL_STATE(3058)] = 108395, + [SMALL_STATE(3059)] = 108407, + [SMALL_STATE(3060)] = 108419, + [SMALL_STATE(3061)] = 108431, + [SMALL_STATE(3062)] = 108443, + [SMALL_STATE(3063)] = 108457, + [SMALL_STATE(3064)] = 108471, + [SMALL_STATE(3065)] = 108485, + [SMALL_STATE(3066)] = 108497, + [SMALL_STATE(3067)] = 108509, + [SMALL_STATE(3068)] = 108521, + [SMALL_STATE(3069)] = 108533, + [SMALL_STATE(3070)] = 108545, + [SMALL_STATE(3071)] = 108557, + [SMALL_STATE(3072)] = 108569, + [SMALL_STATE(3073)] = 108579, + [SMALL_STATE(3074)] = 108591, + [SMALL_STATE(3075)] = 108603, + [SMALL_STATE(3076)] = 108617, + [SMALL_STATE(3077)] = 108629, + [SMALL_STATE(3078)] = 108643, + [SMALL_STATE(3079)] = 108657, + [SMALL_STATE(3080)] = 108671, + [SMALL_STATE(3081)] = 108683, + [SMALL_STATE(3082)] = 108697, + [SMALL_STATE(3083)] = 108711, + [SMALL_STATE(3084)] = 108725, + [SMALL_STATE(3085)] = 108737, + [SMALL_STATE(3086)] = 108749, + [SMALL_STATE(3087)] = 108761, + [SMALL_STATE(3088)] = 108773, + [SMALL_STATE(3089)] = 108785, + [SMALL_STATE(3090)] = 108797, + [SMALL_STATE(3091)] = 108809, + [SMALL_STATE(3092)] = 108823, + [SMALL_STATE(3093)] = 108835, + [SMALL_STATE(3094)] = 108847, + [SMALL_STATE(3095)] = 108861, + [SMALL_STATE(3096)] = 108873, + [SMALL_STATE(3097)] = 108887, + [SMALL_STATE(3098)] = 108901, + [SMALL_STATE(3099)] = 108915, + [SMALL_STATE(3100)] = 108927, + [SMALL_STATE(3101)] = 108941, + [SMALL_STATE(3102)] = 108953, + [SMALL_STATE(3103)] = 108965, + [SMALL_STATE(3104)] = 108979, + [SMALL_STATE(3105)] = 108991, + [SMALL_STATE(3106)] = 109003, + [SMALL_STATE(3107)] = 109017, + [SMALL_STATE(3108)] = 109031, + [SMALL_STATE(3109)] = 109045, + [SMALL_STATE(3110)] = 109059, + [SMALL_STATE(3111)] = 109073, + [SMALL_STATE(3112)] = 109085, + [SMALL_STATE(3113)] = 109099, + [SMALL_STATE(3114)] = 109113, + [SMALL_STATE(3115)] = 109124, + [SMALL_STATE(3116)] = 109135, + [SMALL_STATE(3117)] = 109146, + [SMALL_STATE(3118)] = 109157, + [SMALL_STATE(3119)] = 109166, + [SMALL_STATE(3120)] = 109177, + [SMALL_STATE(3121)] = 109188, + [SMALL_STATE(3122)] = 109199, + [SMALL_STATE(3123)] = 109210, + [SMALL_STATE(3124)] = 109221, + [SMALL_STATE(3125)] = 109232, + [SMALL_STATE(3126)] = 109243, + [SMALL_STATE(3127)] = 109254, + [SMALL_STATE(3128)] = 109265, + [SMALL_STATE(3129)] = 109276, + [SMALL_STATE(3130)] = 109287, + [SMALL_STATE(3131)] = 109298, + [SMALL_STATE(3132)] = 109309, + [SMALL_STATE(3133)] = 109320, + [SMALL_STATE(3134)] = 109331, + [SMALL_STATE(3135)] = 109342, + [SMALL_STATE(3136)] = 109353, + [SMALL_STATE(3137)] = 109364, + [SMALL_STATE(3138)] = 109375, + [SMALL_STATE(3139)] = 109386, + [SMALL_STATE(3140)] = 109397, + [SMALL_STATE(3141)] = 109408, + [SMALL_STATE(3142)] = 109419, + [SMALL_STATE(3143)] = 109430, + [SMALL_STATE(3144)] = 109441, + [SMALL_STATE(3145)] = 109452, + [SMALL_STATE(3146)] = 109463, + [SMALL_STATE(3147)] = 109474, + [SMALL_STATE(3148)] = 109485, + [SMALL_STATE(3149)] = 109496, + [SMALL_STATE(3150)] = 109507, + [SMALL_STATE(3151)] = 109518, + [SMALL_STATE(3152)] = 109529, + [SMALL_STATE(3153)] = 109540, + [SMALL_STATE(3154)] = 109551, + [SMALL_STATE(3155)] = 109562, + [SMALL_STATE(3156)] = 109573, + [SMALL_STATE(3157)] = 109584, + [SMALL_STATE(3158)] = 109595, + [SMALL_STATE(3159)] = 109604, + [SMALL_STATE(3160)] = 109615, + [SMALL_STATE(3161)] = 109626, + [SMALL_STATE(3162)] = 109637, + [SMALL_STATE(3163)] = 109648, + [SMALL_STATE(3164)] = 109659, + [SMALL_STATE(3165)] = 109668, + [SMALL_STATE(3166)] = 109679, + [SMALL_STATE(3167)] = 109690, + [SMALL_STATE(3168)] = 109701, + [SMALL_STATE(3169)] = 109712, + [SMALL_STATE(3170)] = 109723, + [SMALL_STATE(3171)] = 109734, + [SMALL_STATE(3172)] = 109745, + [SMALL_STATE(3173)] = 109756, + [SMALL_STATE(3174)] = 109767, + [SMALL_STATE(3175)] = 109778, + [SMALL_STATE(3176)] = 109789, + [SMALL_STATE(3177)] = 109800, + [SMALL_STATE(3178)] = 109811, + [SMALL_STATE(3179)] = 109822, + [SMALL_STATE(3180)] = 109831, + [SMALL_STATE(3181)] = 109842, + [SMALL_STATE(3182)] = 109853, + [SMALL_STATE(3183)] = 109864, + [SMALL_STATE(3184)] = 109875, + [SMALL_STATE(3185)] = 109886, + [SMALL_STATE(3186)] = 109897, + [SMALL_STATE(3187)] = 109908, + [SMALL_STATE(3188)] = 109917, + [SMALL_STATE(3189)] = 109928, + [SMALL_STATE(3190)] = 109939, + [SMALL_STATE(3191)] = 109950, + [SMALL_STATE(3192)] = 109961, + [SMALL_STATE(3193)] = 109972, + [SMALL_STATE(3194)] = 109983, + [SMALL_STATE(3195)] = 109994, + [SMALL_STATE(3196)] = 110005, + [SMALL_STATE(3197)] = 110016, + [SMALL_STATE(3198)] = 110027, + [SMALL_STATE(3199)] = 110038, + [SMALL_STATE(3200)] = 110049, + [SMALL_STATE(3201)] = 110060, + [SMALL_STATE(3202)] = 110071, + [SMALL_STATE(3203)] = 110082, + [SMALL_STATE(3204)] = 110093, + [SMALL_STATE(3205)] = 110104, + [SMALL_STATE(3206)] = 110115, + [SMALL_STATE(3207)] = 110126, + [SMALL_STATE(3208)] = 110137, + [SMALL_STATE(3209)] = 110146, + [SMALL_STATE(3210)] = 110157, + [SMALL_STATE(3211)] = 110168, + [SMALL_STATE(3212)] = 110179, + [SMALL_STATE(3213)] = 110190, + [SMALL_STATE(3214)] = 110201, + [SMALL_STATE(3215)] = 110212, + [SMALL_STATE(3216)] = 110223, + [SMALL_STATE(3217)] = 110234, + [SMALL_STATE(3218)] = 110245, + [SMALL_STATE(3219)] = 110256, + [SMALL_STATE(3220)] = 110267, + [SMALL_STATE(3221)] = 110278, + [SMALL_STATE(3222)] = 110289, + [SMALL_STATE(3223)] = 110300, + [SMALL_STATE(3224)] = 110311, + [SMALL_STATE(3225)] = 110322, + [SMALL_STATE(3226)] = 110333, + [SMALL_STATE(3227)] = 110344, + [SMALL_STATE(3228)] = 110355, + [SMALL_STATE(3229)] = 110366, + [SMALL_STATE(3230)] = 110377, + [SMALL_STATE(3231)] = 110388, + [SMALL_STATE(3232)] = 110399, + [SMALL_STATE(3233)] = 110410, + [SMALL_STATE(3234)] = 110421, + [SMALL_STATE(3235)] = 110432, + [SMALL_STATE(3236)] = 110443, + [SMALL_STATE(3237)] = 110454, + [SMALL_STATE(3238)] = 110465, + [SMALL_STATE(3239)] = 110476, + [SMALL_STATE(3240)] = 110487, + [SMALL_STATE(3241)] = 110498, + [SMALL_STATE(3242)] = 110509, + [SMALL_STATE(3243)] = 110518, + [SMALL_STATE(3244)] = 110529, + [SMALL_STATE(3245)] = 110540, + [SMALL_STATE(3246)] = 110551, + [SMALL_STATE(3247)] = 110562, + [SMALL_STATE(3248)] = 110573, + [SMALL_STATE(3249)] = 110584, + [SMALL_STATE(3250)] = 110595, + [SMALL_STATE(3251)] = 110606, + [SMALL_STATE(3252)] = 110617, + [SMALL_STATE(3253)] = 110628, + [SMALL_STATE(3254)] = 110639, + [SMALL_STATE(3255)] = 110650, + [SMALL_STATE(3256)] = 110661, + [SMALL_STATE(3257)] = 110672, + [SMALL_STATE(3258)] = 110683, + [SMALL_STATE(3259)] = 110692, + [SMALL_STATE(3260)] = 110703, + [SMALL_STATE(3261)] = 110714, + [SMALL_STATE(3262)] = 110725, + [SMALL_STATE(3263)] = 110736, + [SMALL_STATE(3264)] = 110745, + [SMALL_STATE(3265)] = 110756, + [SMALL_STATE(3266)] = 110765, + [SMALL_STATE(3267)] = 110776, + [SMALL_STATE(3268)] = 110787, + [SMALL_STATE(3269)] = 110798, + [SMALL_STATE(3270)] = 110807, + [SMALL_STATE(3271)] = 110818, + [SMALL_STATE(3272)] = 110829, + [SMALL_STATE(3273)] = 110840, + [SMALL_STATE(3274)] = 110851, + [SMALL_STATE(3275)] = 110862, + [SMALL_STATE(3276)] = 110873, + [SMALL_STATE(3277)] = 110884, + [SMALL_STATE(3278)] = 110895, + [SMALL_STATE(3279)] = 110906, + [SMALL_STATE(3280)] = 110917, + [SMALL_STATE(3281)] = 110928, + [SMALL_STATE(3282)] = 110939, + [SMALL_STATE(3283)] = 110950, + [SMALL_STATE(3284)] = 110961, + [SMALL_STATE(3285)] = 110972, + [SMALL_STATE(3286)] = 110983, + [SMALL_STATE(3287)] = 110994, + [SMALL_STATE(3288)] = 111005, + [SMALL_STATE(3289)] = 111016, + [SMALL_STATE(3290)] = 111027, + [SMALL_STATE(3291)] = 111038, + [SMALL_STATE(3292)] = 111049, + [SMALL_STATE(3293)] = 111060, + [SMALL_STATE(3294)] = 111071, + [SMALL_STATE(3295)] = 111082, + [SMALL_STATE(3296)] = 111093, + [SMALL_STATE(3297)] = 111102, + [SMALL_STATE(3298)] = 111113, + [SMALL_STATE(3299)] = 111124, + [SMALL_STATE(3300)] = 111135, + [SMALL_STATE(3301)] = 111146, + [SMALL_STATE(3302)] = 111157, + [SMALL_STATE(3303)] = 111168, + [SMALL_STATE(3304)] = 111179, + [SMALL_STATE(3305)] = 111190, + [SMALL_STATE(3306)] = 111201, + [SMALL_STATE(3307)] = 111212, + [SMALL_STATE(3308)] = 111223, + [SMALL_STATE(3309)] = 111234, + [SMALL_STATE(3310)] = 111245, + [SMALL_STATE(3311)] = 111256, + [SMALL_STATE(3312)] = 111267, + [SMALL_STATE(3313)] = 111278, + [SMALL_STATE(3314)] = 111289, + [SMALL_STATE(3315)] = 111300, + [SMALL_STATE(3316)] = 111311, + [SMALL_STATE(3317)] = 111322, + [SMALL_STATE(3318)] = 111333, + [SMALL_STATE(3319)] = 111344, + [SMALL_STATE(3320)] = 111355, + [SMALL_STATE(3321)] = 111363, + [SMALL_STATE(3322)] = 111371, + [SMALL_STATE(3323)] = 111379, + [SMALL_STATE(3324)] = 111387, + [SMALL_STATE(3325)] = 111395, + [SMALL_STATE(3326)] = 111403, + [SMALL_STATE(3327)] = 111411, + [SMALL_STATE(3328)] = 111419, + [SMALL_STATE(3329)] = 111427, + [SMALL_STATE(3330)] = 111435, + [SMALL_STATE(3331)] = 111443, + [SMALL_STATE(3332)] = 111451, + [SMALL_STATE(3333)] = 111459, + [SMALL_STATE(3334)] = 111467, + [SMALL_STATE(3335)] = 111475, + [SMALL_STATE(3336)] = 111483, + [SMALL_STATE(3337)] = 111491, + [SMALL_STATE(3338)] = 111499, + [SMALL_STATE(3339)] = 111507, + [SMALL_STATE(3340)] = 111515, + [SMALL_STATE(3341)] = 111523, + [SMALL_STATE(3342)] = 111531, + [SMALL_STATE(3343)] = 111539, + [SMALL_STATE(3344)] = 111547, + [SMALL_STATE(3345)] = 111555, + [SMALL_STATE(3346)] = 111563, + [SMALL_STATE(3347)] = 111571, + [SMALL_STATE(3348)] = 111579, + [SMALL_STATE(3349)] = 111587, + [SMALL_STATE(3350)] = 111595, + [SMALL_STATE(3351)] = 111603, + [SMALL_STATE(3352)] = 111611, + [SMALL_STATE(3353)] = 111619, + [SMALL_STATE(3354)] = 111627, + [SMALL_STATE(3355)] = 111635, + [SMALL_STATE(3356)] = 111643, + [SMALL_STATE(3357)] = 111651, + [SMALL_STATE(3358)] = 111659, + [SMALL_STATE(3359)] = 111667, + [SMALL_STATE(3360)] = 111675, + [SMALL_STATE(3361)] = 111683, + [SMALL_STATE(3362)] = 111691, + [SMALL_STATE(3363)] = 111699, + [SMALL_STATE(3364)] = 111707, + [SMALL_STATE(3365)] = 111715, + [SMALL_STATE(3366)] = 111723, + [SMALL_STATE(3367)] = 111731, + [SMALL_STATE(3368)] = 111739, + [SMALL_STATE(3369)] = 111747, + [SMALL_STATE(3370)] = 111755, + [SMALL_STATE(3371)] = 111763, + [SMALL_STATE(3372)] = 111771, + [SMALL_STATE(3373)] = 111779, + [SMALL_STATE(3374)] = 111787, + [SMALL_STATE(3375)] = 111795, + [SMALL_STATE(3376)] = 111803, + [SMALL_STATE(3377)] = 111811, + [SMALL_STATE(3378)] = 111819, + [SMALL_STATE(3379)] = 111827, + [SMALL_STATE(3380)] = 111835, + [SMALL_STATE(3381)] = 111843, + [SMALL_STATE(3382)] = 111851, + [SMALL_STATE(3383)] = 111859, + [SMALL_STATE(3384)] = 111867, + [SMALL_STATE(3385)] = 111875, + [SMALL_STATE(3386)] = 111883, + [SMALL_STATE(3387)] = 111891, + [SMALL_STATE(3388)] = 111899, + [SMALL_STATE(3389)] = 111907, + [SMALL_STATE(3390)] = 111915, + [SMALL_STATE(3391)] = 111923, + [SMALL_STATE(3392)] = 111931, + [SMALL_STATE(3393)] = 111939, + [SMALL_STATE(3394)] = 111947, + [SMALL_STATE(3395)] = 111955, + [SMALL_STATE(3396)] = 111963, + [SMALL_STATE(3397)] = 111971, + [SMALL_STATE(3398)] = 111979, + [SMALL_STATE(3399)] = 111987, + [SMALL_STATE(3400)] = 111995, + [SMALL_STATE(3401)] = 112003, + [SMALL_STATE(3402)] = 112011, + [SMALL_STATE(3403)] = 112019, + [SMALL_STATE(3404)] = 112027, + [SMALL_STATE(3405)] = 112035, + [SMALL_STATE(3406)] = 112043, + [SMALL_STATE(3407)] = 112051, + [SMALL_STATE(3408)] = 112059, + [SMALL_STATE(3409)] = 112067, + [SMALL_STATE(3410)] = 112075, + [SMALL_STATE(3411)] = 112083, + [SMALL_STATE(3412)] = 112091, + [SMALL_STATE(3413)] = 112099, + [SMALL_STATE(3414)] = 112107, + [SMALL_STATE(3415)] = 112115, + [SMALL_STATE(3416)] = 112123, + [SMALL_STATE(3417)] = 112131, + [SMALL_STATE(3418)] = 112139, + [SMALL_STATE(3419)] = 112147, + [SMALL_STATE(3420)] = 112155, + [SMALL_STATE(3421)] = 112163, + [SMALL_STATE(3422)] = 112171, + [SMALL_STATE(3423)] = 112179, + [SMALL_STATE(3424)] = 112187, + [SMALL_STATE(3425)] = 112195, + [SMALL_STATE(3426)] = 112203, + [SMALL_STATE(3427)] = 112211, + [SMALL_STATE(3428)] = 112219, + [SMALL_STATE(3429)] = 112227, + [SMALL_STATE(3430)] = 112235, + [SMALL_STATE(3431)] = 112243, + [SMALL_STATE(3432)] = 112251, + [SMALL_STATE(3433)] = 112259, + [SMALL_STATE(3434)] = 112267, + [SMALL_STATE(3435)] = 112275, + [SMALL_STATE(3436)] = 112283, + [SMALL_STATE(3437)] = 112291, + [SMALL_STATE(3438)] = 112299, + [SMALL_STATE(3439)] = 112307, + [SMALL_STATE(3440)] = 112315, + [SMALL_STATE(3441)] = 112323, + [SMALL_STATE(3442)] = 112331, + [SMALL_STATE(3443)] = 112339, + [SMALL_STATE(3444)] = 112347, + [SMALL_STATE(3445)] = 112355, + [SMALL_STATE(3446)] = 112363, + [SMALL_STATE(3447)] = 112371, + [SMALL_STATE(3448)] = 112379, + [SMALL_STATE(3449)] = 112387, + [SMALL_STATE(3450)] = 112395, + [SMALL_STATE(3451)] = 112403, + [SMALL_STATE(3452)] = 112411, + [SMALL_STATE(3453)] = 112419, + [SMALL_STATE(3454)] = 112427, + [SMALL_STATE(3455)] = 112435, + [SMALL_STATE(3456)] = 112443, + [SMALL_STATE(3457)] = 112451, + [SMALL_STATE(3458)] = 112459, + [SMALL_STATE(3459)] = 112467, + [SMALL_STATE(3460)] = 112475, + [SMALL_STATE(3461)] = 112483, + [SMALL_STATE(3462)] = 112491, + [SMALL_STATE(3463)] = 112499, + [SMALL_STATE(3464)] = 112507, + [SMALL_STATE(3465)] = 112515, + [SMALL_STATE(3466)] = 112523, + [SMALL_STATE(3467)] = 112531, + [SMALL_STATE(3468)] = 112539, + [SMALL_STATE(3469)] = 112547, + [SMALL_STATE(3470)] = 112555, + [SMALL_STATE(3471)] = 112563, + [SMALL_STATE(3472)] = 112571, + [SMALL_STATE(3473)] = 112579, + [SMALL_STATE(3474)] = 112587, + [SMALL_STATE(3475)] = 112595, + [SMALL_STATE(3476)] = 112603, + [SMALL_STATE(3477)] = 112611, + [SMALL_STATE(3478)] = 112619, + [SMALL_STATE(3479)] = 112627, + [SMALL_STATE(3480)] = 112635, + [SMALL_STATE(3481)] = 112643, + [SMALL_STATE(3482)] = 112651, + [SMALL_STATE(3483)] = 112659, + [SMALL_STATE(3484)] = 112667, + [SMALL_STATE(3485)] = 112675, + [SMALL_STATE(3486)] = 112683, + [SMALL_STATE(3487)] = 112691, + [SMALL_STATE(3488)] = 112699, + [SMALL_STATE(3489)] = 112707, + [SMALL_STATE(3490)] = 112715, + [SMALL_STATE(3491)] = 112723, + [SMALL_STATE(3492)] = 112731, + [SMALL_STATE(3493)] = 112739, + [SMALL_STATE(3494)] = 112747, + [SMALL_STATE(3495)] = 112755, + [SMALL_STATE(3496)] = 112763, + [SMALL_STATE(3497)] = 112771, + [SMALL_STATE(3498)] = 112779, + [SMALL_STATE(3499)] = 112787, + [SMALL_STATE(3500)] = 112795, + [SMALL_STATE(3501)] = 112803, + [SMALL_STATE(3502)] = 112811, + [SMALL_STATE(3503)] = 112819, + [SMALL_STATE(3504)] = 112827, + [SMALL_STATE(3505)] = 112835, + [SMALL_STATE(3506)] = 112843, + [SMALL_STATE(3507)] = 112851, + [SMALL_STATE(3508)] = 112859, + [SMALL_STATE(3509)] = 112867, + [SMALL_STATE(3510)] = 112875, + [SMALL_STATE(3511)] = 112883, + [SMALL_STATE(3512)] = 112891, + [SMALL_STATE(3513)] = 112899, + [SMALL_STATE(3514)] = 112907, + [SMALL_STATE(3515)] = 112915, + [SMALL_STATE(3516)] = 112923, + [SMALL_STATE(3517)] = 112931, + [SMALL_STATE(3518)] = 112939, + [SMALL_STATE(3519)] = 112947, + [SMALL_STATE(3520)] = 112955, + [SMALL_STATE(3521)] = 112963, + [SMALL_STATE(3522)] = 112971, + [SMALL_STATE(3523)] = 112979, + [SMALL_STATE(3524)] = 112987, + [SMALL_STATE(3525)] = 112995, + [SMALL_STATE(3526)] = 113003, + [SMALL_STATE(3527)] = 113011, + [SMALL_STATE(3528)] = 113019, + [SMALL_STATE(3529)] = 113027, + [SMALL_STATE(3530)] = 113035, + [SMALL_STATE(3531)] = 113043, + [SMALL_STATE(3532)] = 113051, + [SMALL_STATE(3533)] = 113059, + [SMALL_STATE(3534)] = 113067, + [SMALL_STATE(3535)] = 113075, + [SMALL_STATE(3536)] = 113083, + [SMALL_STATE(3537)] = 113091, + [SMALL_STATE(3538)] = 113099, + [SMALL_STATE(3539)] = 113107, + [SMALL_STATE(3540)] = 113115, + [SMALL_STATE(3541)] = 113123, + [SMALL_STATE(3542)] = 113131, + [SMALL_STATE(3543)] = 113139, + [SMALL_STATE(3544)] = 113147, + [SMALL_STATE(3545)] = 113155, + [SMALL_STATE(3546)] = 113163, + [SMALL_STATE(3547)] = 113171, + [SMALL_STATE(3548)] = 113179, + [SMALL_STATE(3549)] = 113187, + [SMALL_STATE(3550)] = 113195, + [SMALL_STATE(3551)] = 113203, + [SMALL_STATE(3552)] = 113211, + [SMALL_STATE(3553)] = 113219, + [SMALL_STATE(3554)] = 113227, + [SMALL_STATE(3555)] = 113235, + [SMALL_STATE(3556)] = 113243, + [SMALL_STATE(3557)] = 113251, + [SMALL_STATE(3558)] = 113259, + [SMALL_STATE(3559)] = 113267, + [SMALL_STATE(3560)] = 113275, + [SMALL_STATE(3561)] = 113283, + [SMALL_STATE(3562)] = 113291, + [SMALL_STATE(3563)] = 113299, + [SMALL_STATE(3564)] = 113307, + [SMALL_STATE(3565)] = 113315, + [SMALL_STATE(3566)] = 113323, + [SMALL_STATE(3567)] = 113331, + [SMALL_STATE(3568)] = 113339, + [SMALL_STATE(3569)] = 113347, + [SMALL_STATE(3570)] = 113355, + [SMALL_STATE(3571)] = 113363, + [SMALL_STATE(3572)] = 113371, + [SMALL_STATE(3573)] = 113379, + [SMALL_STATE(3574)] = 113387, + [SMALL_STATE(3575)] = 113395, + [SMALL_STATE(3576)] = 113403, + [SMALL_STATE(3577)] = 113411, + [SMALL_STATE(3578)] = 113419, + [SMALL_STATE(3579)] = 113427, + [SMALL_STATE(3580)] = 113435, + [SMALL_STATE(3581)] = 113443, + [SMALL_STATE(3582)] = 113451, + [SMALL_STATE(3583)] = 113459, + [SMALL_STATE(3584)] = 113467, + [SMALL_STATE(3585)] = 113475, + [SMALL_STATE(3586)] = 113483, + [SMALL_STATE(3587)] = 113491, + [SMALL_STATE(3588)] = 113499, + [SMALL_STATE(3589)] = 113507, + [SMALL_STATE(3590)] = 113515, + [SMALL_STATE(3591)] = 113523, + [SMALL_STATE(3592)] = 113531, + [SMALL_STATE(3593)] = 113539, + [SMALL_STATE(3594)] = 113547, + [SMALL_STATE(3595)] = 113555, + [SMALL_STATE(3596)] = 113563, + [SMALL_STATE(3597)] = 113571, + [SMALL_STATE(3598)] = 113579, + [SMALL_STATE(3599)] = 113587, + [SMALL_STATE(3600)] = 113595, + [SMALL_STATE(3601)] = 113603, + [SMALL_STATE(3602)] = 113611, + [SMALL_STATE(3603)] = 113619, + [SMALL_STATE(3604)] = 113627, + [SMALL_STATE(3605)] = 113635, + [SMALL_STATE(3606)] = 113643, + [SMALL_STATE(3607)] = 113651, + [SMALL_STATE(3608)] = 113659, + [SMALL_STATE(3609)] = 113667, + [SMALL_STATE(3610)] = 113675, + [SMALL_STATE(3611)] = 113683, + [SMALL_STATE(3612)] = 113691, + [SMALL_STATE(3613)] = 113699, + [SMALL_STATE(3614)] = 113707, + [SMALL_STATE(3615)] = 113715, + [SMALL_STATE(3616)] = 113723, + [SMALL_STATE(3617)] = 113731, + [SMALL_STATE(3618)] = 113739, + [SMALL_STATE(3619)] = 113747, + [SMALL_STATE(3620)] = 113755, + [SMALL_STATE(3621)] = 113763, + [SMALL_STATE(3622)] = 113771, + [SMALL_STATE(3623)] = 113779, + [SMALL_STATE(3624)] = 113787, + [SMALL_STATE(3625)] = 113795, + [SMALL_STATE(3626)] = 113803, + [SMALL_STATE(3627)] = 113811, + [SMALL_STATE(3628)] = 113819, + [SMALL_STATE(3629)] = 113827, + [SMALL_STATE(3630)] = 113835, + [SMALL_STATE(3631)] = 113843, + [SMALL_STATE(3632)] = 113851, + [SMALL_STATE(3633)] = 113859, + [SMALL_STATE(3634)] = 113867, + [SMALL_STATE(3635)] = 113875, + [SMALL_STATE(3636)] = 113883, + [SMALL_STATE(3637)] = 113891, + [SMALL_STATE(3638)] = 113899, + [SMALL_STATE(3639)] = 113907, + [SMALL_STATE(3640)] = 113915, + [SMALL_STATE(3641)] = 113923, + [SMALL_STATE(3642)] = 113931, + [SMALL_STATE(3643)] = 113939, + [SMALL_STATE(3644)] = 113947, + [SMALL_STATE(3645)] = 113955, + [SMALL_STATE(3646)] = 113963, + [SMALL_STATE(3647)] = 113971, + [SMALL_STATE(3648)] = 113979, + [SMALL_STATE(3649)] = 113987, + [SMALL_STATE(3650)] = 113995, + [SMALL_STATE(3651)] = 114003, + [SMALL_STATE(3652)] = 114011, + [SMALL_STATE(3653)] = 114019, + [SMALL_STATE(3654)] = 114027, + [SMALL_STATE(3655)] = 114035, + [SMALL_STATE(3656)] = 114043, + [SMALL_STATE(3657)] = 114051, + [SMALL_STATE(3658)] = 114059, + [SMALL_STATE(3659)] = 114067, + [SMALL_STATE(3660)] = 114075, + [SMALL_STATE(3661)] = 114083, + [SMALL_STATE(3662)] = 114091, + [SMALL_STATE(3663)] = 114099, + [SMALL_STATE(3664)] = 114107, + [SMALL_STATE(3665)] = 114115, + [SMALL_STATE(3666)] = 114123, + [SMALL_STATE(3667)] = 114131, + [SMALL_STATE(3668)] = 114139, + [SMALL_STATE(3669)] = 114147, + [SMALL_STATE(3670)] = 114155, + [SMALL_STATE(3671)] = 114163, + [SMALL_STATE(3672)] = 114171, + [SMALL_STATE(3673)] = 114179, + [SMALL_STATE(3674)] = 114187, + [SMALL_STATE(3675)] = 114195, + [SMALL_STATE(3676)] = 114203, + [SMALL_STATE(3677)] = 114211, + [SMALL_STATE(3678)] = 114219, + [SMALL_STATE(3679)] = 114227, + [SMALL_STATE(3680)] = 114235, + [SMALL_STATE(3681)] = 114243, + [SMALL_STATE(3682)] = 114251, + [SMALL_STATE(3683)] = 114259, + [SMALL_STATE(3684)] = 114267, + [SMALL_STATE(3685)] = 114275, + [SMALL_STATE(3686)] = 114283, + [SMALL_STATE(3687)] = 114291, + [SMALL_STATE(3688)] = 114299, + [SMALL_STATE(3689)] = 114307, + [SMALL_STATE(3690)] = 114315, + [SMALL_STATE(3691)] = 114323, + [SMALL_STATE(3692)] = 114331, + [SMALL_STATE(3693)] = 114339, + [SMALL_STATE(3694)] = 114347, + [SMALL_STATE(3695)] = 114355, + [SMALL_STATE(3696)] = 114363, + [SMALL_STATE(3697)] = 114371, + [SMALL_STATE(3698)] = 114379, + [SMALL_STATE(3699)] = 114387, + [SMALL_STATE(3700)] = 114395, + [SMALL_STATE(3701)] = 114403, + [SMALL_STATE(3702)] = 114411, + [SMALL_STATE(3703)] = 114419, + [SMALL_STATE(3704)] = 114427, + [SMALL_STATE(3705)] = 114435, + [SMALL_STATE(3706)] = 114443, + [SMALL_STATE(3707)] = 114451, + [SMALL_STATE(3708)] = 114459, + [SMALL_STATE(3709)] = 114467, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -141767,2338 +184950,2991 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), - [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1181), - [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2545), - [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2017), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1988), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2324), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1423), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2875), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1328), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1485), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2742), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(89), - [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2465), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2541), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1747), - [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1467), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1889), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1039), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1800), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1801), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1789), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1776), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1653), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), - [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1511), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1574), - [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), - [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2158), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2522), - [276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2054), - [279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1993), - [282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), - [285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(103), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2421), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1426), - [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1494), - [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2870), - [303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2472), - [306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1882), - [309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), - [312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [315] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), - [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1814), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1793), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1728), - [327] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1797), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2464), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), - [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), - [400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), - [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2480), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 8), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 8), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 13), - [476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 13), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(210), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), - [485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1834), - [488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(83), - [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2513), - [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(225), - [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(222), - [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(222), - [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(221), - [506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(221), - [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(219), - [512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1900), - [515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2156), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 16), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 16), - [522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 25), - [524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 25), - [526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), - [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(235), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2492), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), - [544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(205), - [557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2455), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(230), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2511), - [576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), - [596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(761), - [641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(68), - [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2435), - [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1834), - [652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1360), - [655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2844), - [658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(691), - [661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1527), - [664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2455), - [673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1667), - [676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1868), - [685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1857), - [694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(225), - [697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(222), - [703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(221), - [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(219), - [712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1900), - [715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2156), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1215), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1259), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1189), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1195), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1186), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1125), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2734), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), - [940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1161), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2518), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), - [1008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1197), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2852), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2632), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1471), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), - [1404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), - [1406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), - [1408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [1410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), - [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), - [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), - [1416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), - [1418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), - [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), - [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 41), - [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 41), - [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), - [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), - [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), - [1442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), - [1452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 5, 0, 0), - [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 5, 0, 0), - [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 34), - [1458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 34), - [1460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), - [1462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), - [1464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), - [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [1470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [1473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), - [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 5), - [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 5), - [1480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [1483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), - [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 2, 0, 4), - [1492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 2, 0, 4), - [1494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), - [1496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), - [1498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), - [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [1508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), - [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_brace, 2, 0, 0), - [1520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_brace, 2, 0, 0), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [1528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), - [1530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), - [1532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [1534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [1536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), - [1538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), - [1540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 24), - [1542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 24), - [1544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), - [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), - [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), - [1560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), - [1562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), - [1564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), - [1566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), - [1568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), - [1570] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), - [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__constructor_call, 1, 0, 1), REDUCE(sym_call_expression, 1, 0, 1), - [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__constructor_call, 1, 0, 1), REDUCE(sym_call_expression, 1, 0, 1), - [1578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), - [1580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), - [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 12), - [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 12), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [1590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [1596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1760), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), - [1616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 2, 0, 3), - [1618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 2, 0, 3), - [1620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), - [1626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [1628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 70), - [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 70), - [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 99), - [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 99), - [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 105), - [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 105), - [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 50), - [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 50), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 73), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 73), - [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 89), - [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 89), - [1660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 94), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 94), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 105), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 105), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 105), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 105), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 89), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 89), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 49), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 49), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 87), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 87), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 82), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 82), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 2), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 2), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 3), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 3), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 47), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 47), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 78), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 78), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 17), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 17), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 42), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 42), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 46), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 46), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 17), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 17), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 45), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 45), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 2), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 2), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 44), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 44), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 30), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 30), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 43), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 43), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 94), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 94), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 51), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 51), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 73), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 73), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 40), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 40), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 62), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 62), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 112), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 112), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 111), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 111), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 105), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 105), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 94), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 94), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 78), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 78), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 89), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 89), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 39), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 39), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 73), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 73), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 55), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 55), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 110), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 110), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 62), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 62), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 44), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 44), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 109), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 109), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 108), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 108), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 107), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 107), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 26), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 26), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 106), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 106), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 39), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 39), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 105), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 105), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 94), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 94), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 2), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 2), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 38), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 38), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 78), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 78), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 52), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 52), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 26), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 26), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 37), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 37), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 104), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 104), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 103), - [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 103), - [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 55), - [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 55), - [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), - [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), - [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), - [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 89), - [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 89), - [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 64), - [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 64), - [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 2, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 2, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 55), - [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 55), - [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 53), - [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 53), - [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 102), - [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 102), - [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 101), - [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 101), - [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 19), - [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 19), - [1916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 3), - [1918] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 3), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 100), - [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 100), - [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 54), - [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 54), - [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 55), - [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 55), - [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 62), - [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 62), - [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 26), - [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 26), - [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 26), - [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 26), - [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 2), - [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 2), - [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 44), - [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 44), - [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 19), - [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 19), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), - [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 20), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 20), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 2), - [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 2), - [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 30), - [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 30), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 19), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 19), - [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 38), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 38), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 20), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 20), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 0), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 0), - [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 56), - [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 56), - [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 23), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 23), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 26), - [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 26), - [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 28), - [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 28), - [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 39), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 39), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 43), - [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 43), - [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 57), - [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 57), - [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 39), - [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 39), - [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 2), - [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 2), - [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 58), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 58), - [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 59), - [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 59), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 60), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 60), - [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), - [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 61), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 61), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 30), - [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 30), - [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 44), - [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 44), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 62), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 62), - [2060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), - [2062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 2), - [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 2), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 63), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 63), - [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 88), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 88), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 65), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 65), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 67), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 67), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 68), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 68), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 69), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 69), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 71), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 71), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 72), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 72), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 55), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 55), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 73), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 73), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 26), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 26), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 26), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 26), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 74), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 74), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 86), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 86), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 75), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 75), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 98), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 98), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 85), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 85), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 97), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 97), - [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 84), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 84), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 83), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 83), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 2), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 2), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 33), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 9), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 9), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 9), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 9), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 26), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 26), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 27), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 27), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 76), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 76), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 96), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 96), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 77), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 77), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 78), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 78), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 95), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 95), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 39), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 39), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 62), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 62), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 94), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 94), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 39), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 39), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 78), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 78), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 0), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 0), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 23), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 23), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 44), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 44), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 93), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 93), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 57), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 57), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 92), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 92), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 4, 0, 14), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 4, 0, 14), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 2), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 2), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 79), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 79), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 2), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 2), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 91), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 91), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 32), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 32), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 39), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 39), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 90), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 90), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 30), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 30), - [2288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [2290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 53), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 53), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 80), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 80), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 32), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 32), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 4, 0, 0), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 4, 0, 0), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 26), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 26), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 3), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 3), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 31), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 31), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 4, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 4, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 28), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 28), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 29), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 29), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 89), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 89), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 73), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 73), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 81), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 81), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 28), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 28), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 29), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 29), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 30), - [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 30), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [2368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), - [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [2378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(756), - [2381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2517), - [2384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(764), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), - [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(1834), - [2394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(83), - [2397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2455), - [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(1667), - [2403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(225), - [2406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(222), - [2409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(222), - [2412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(221), - [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(221), - [2418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(219), - [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(1900), - [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2156), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [2429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(753), - [2432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2503), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), - [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1176), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(772), - [2456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2510), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [2463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(773), - [2466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2480), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(806), - [2474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2491), - [2477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(787), - [2480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2518), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2532), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [2493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [2497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [2503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(786), - [2506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2532), - [2509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(774), - [2512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2509), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(794), - [2520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2465), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1716), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2721), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [2599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [2605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [2607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), - [2609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [2611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1173), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2555), - [2617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [2619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [2623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), - [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1173), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2555), - [2653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [2659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [2675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [2679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [2693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [2751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [2753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), - [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), - [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [2769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), - [2773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), - [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [2781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), - [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [2803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [2805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [2807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [2809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [2811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [2813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), - [2817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [2819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [2821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [2823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [2825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), - [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1662), - [3068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2543), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [3079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1920), - [3082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1065), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [3087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1834), - [3090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(83), - [3093] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2543), - [3096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1969), - [3099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(225), - [3102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(222), - [3105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(222), - [3108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(221), - [3111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(221), - [3114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(219), - [3117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1900), - [3120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2156), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [3173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1838), - [3176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2483), - [3179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1839), - [3182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2494), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [3209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [3251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), - [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [3265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1831), - [3268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2482), - [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), - [3273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [3275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [3277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1862), - [3280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2497), - [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [3285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [3287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1849), - [3290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2485), - [3293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1870), - [3296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2484), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), - [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 35), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 35), - [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [3311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [3313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [3315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [3321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), - [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [3329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [3331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1854), - [3334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2493), - [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [3339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [3341] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1860), - [3344] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2505), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 11), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 11), - [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 10), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 10), - [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), - [3363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 11), - [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 11), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1142), - [3369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 10), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 10), - [3373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [3375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), - [3383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [3387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3395] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [3397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1856), - [3400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1834), - [3403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(83), - [3406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2528), - [3409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1900), - [3412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2156), - [3415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [3417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [3419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(95), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), - [3426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1855), - [3429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2586), - [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), - [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), - [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [3442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(1598), - [3445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), - [3449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), - [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), - [3455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 36), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 36), - [3461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(1871), - [3464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 15), SHIFT_REPEAT(2502), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), - [3471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [3487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [3507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), - [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), - [3513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [3515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), - [3521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [3529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [3535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [3539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [3541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1858), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), - [3597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1796), - [3600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 2), - [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 2), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [3610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 2), - [3612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 2), - [3614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 2), - [3616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 2), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [3628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_declaration_repeat1, 2, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [3639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__modifier, 1, 0, 0), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [3647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [3651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [3685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), - [3711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [3714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [3717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1788), - [3720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(1918), - [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 48), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 66), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 22), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), - [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2812), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 22), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [3881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [3883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1347), - [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2817), - [3903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), - [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [3913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 18), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [3925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 18), - [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [3937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [3955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [3961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1340), - [3964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [3972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2871), - [3999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2353), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2046), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [4123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [4127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), - [4129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2217), - [4132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2217), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), - [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [4161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(94), - [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [4214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), - [4216] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(1129), - [4219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [4227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 22), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), - [4231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1719), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 22), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [4248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), - [4250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 48), - [4258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2568), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), - [4283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 66), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), - [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), - [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [4355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(2874), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), - [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [4370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [4380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), - [4382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1850), - [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [4397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [4401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [4414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1117), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), - [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [4425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), - [4427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), - [4429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(1847), - [4432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 21), - [4434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 21), SHIFT_REPEAT(1795), - [4437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 21), - [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 21), SHIFT_REPEAT(1829), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [4444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [4454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [4458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_import_statement_repeat1, 2, 0, 0), - [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [4476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), - [4478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [4490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), - [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [4510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [4512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), - [4522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 3, 0, 18), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [4562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_name, 1, 0, 0), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [4590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 18), - [4592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [4594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), - [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4706] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [4806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [4826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [4832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [67] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), + [149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), + [151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1482), + [214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3198), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2504), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2380), + [223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2234), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2392), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(335), + [232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(169), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2890), + [238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(10), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1659), + [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3602), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3708), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1746), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2050), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3699), + [259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(158), + [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3195), + [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2217), + [268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2217), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(98), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3318), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3202), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(209), + [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2400), + [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(238), + [289] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(238), + [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2255), + [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(177), + [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2234), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(192), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1870), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2284), + [310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1341), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2199), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2219), + [319] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2201), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2198), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2161), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2216), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1832), + [334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1832), + [337] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1846), + [340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1846), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1861), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2301), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2562), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1482), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3198), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2504), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2380), + [364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2234), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2392), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(335), + [373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(169), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2890), + [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(10), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1659), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3602), + [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3708), + [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1624), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1850), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3452), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(158), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3195), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2217), + [409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2217), + [412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(98), + [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3318), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3202), + [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(209), + [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2400), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(238), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(238), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2255), + [436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(177), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2234), + [442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(192), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1870), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2284), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1341), + [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2199), + [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2219), + [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2201), + [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2198), + [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2161), + [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2216), + [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1832), + [475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1832), + [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1846), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1846), + [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1861), + [487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2301), + [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2562), + [493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3194), + [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2493), + [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2372), + [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2446), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(261), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2860), + [511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(12), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3666), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1640), + [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1878), + [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3349), + [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(97), + [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3183), + [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3213), + [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(231), + [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2280), + [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(1342), + [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2225), + [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2220), + [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2221), + [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2212), + [556] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2146), + [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(2222), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3194), + [565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2493), + [568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2372), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2446), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(261), + [577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2860), + [580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(12), + [583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3666), + [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1680), + [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1897), + [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3464), + [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(97), + [598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3183), + [601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3213), + [604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(231), + [607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2280), + [610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(1342), + [613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2225), + [616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2220), + [619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2221), + [622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2212), + [625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2146), + [628] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(2222), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1482), + [636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3198), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2504), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2380), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2392), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(335), + [654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [657] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2890), + [660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(10), + [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1659), + [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3602), + [669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3684), + [672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1700), + [675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3480), + [681] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(158), + [684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3195), + [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(67), + [696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3153), + [699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3210), + [702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2400), + [708] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1870), + [729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2284), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2199), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2219), + [741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2198), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2161), + [750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2216), + [753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1832), + [759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), + [762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1846), + [765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1861), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2301), + [771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2562), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3194), + [777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2493), + [780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2372), + [783] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2446), + [786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(261), + [789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2860), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [795] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3484), + [798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1621), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1871), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3535), + [807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(64), + [810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3312), + [813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), + [816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2280), + [822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(1342), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2225), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2220), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2221), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2212), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), SHIFT_REPEAT(2222), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3700), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(50), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3233), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3145), + [855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1, 0, 0), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3700), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(50), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3233), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3145), + [869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3707), + [872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(95), + [875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3144), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3186), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3707), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(95), + [887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3144), + [890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3186), + [893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3660), + [896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(96), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3271), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3174), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3660), + [908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(96), + [911] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3271), + [914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3174), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3665), + [936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(76), + [939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3180), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3197), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), + [947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3665), + [964] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(76), + [967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3180), + [970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3197), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3684), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(67), + [987] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3153), + [990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3210), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3484), + [996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(64), + [999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3312), + [1002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3280), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [1021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3684), + [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(67), + [1027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3153), + [1030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 0), SHIFT(3210), + [1033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3484), + [1036] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(64), + [1039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3312), + [1042] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_while_statement, 2, 0, 4), SHIFT(3280), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [1065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1681), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [1231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [1233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [1235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [1239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [1251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 20), + [1315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 20), + [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [1339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 8), + [1341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 8), + [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unaryExpression, 2, 0, 0), + [1345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unaryExpression, 2, 0, 0), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [1371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 0), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [1375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 3, 0, 0), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [1379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 17), + [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 17), + [1383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(304), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2232), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(156), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3135), + [1399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(180), + [1402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(181), + [1405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(181), + [1408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(182), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(182), + [1414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(183), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2303), + [1420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2633), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 4, 0, 32), + [1449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 4, 0, 32), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 4, 0, 0), + [1457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pair, 4, 0, 0), + [1459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), + [1465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [1469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [1471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), + [1473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [1476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [1479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [1482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [1485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(303), + [1497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3116), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(175), + [1521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3126), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [1544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), + [1564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), + [1566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 4, 0, 0), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [1570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(397), + [1573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3300), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1608), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [1638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [1642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(936), + [1647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [1653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [1655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2910), + [1658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2232), + [1661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1620), + [1664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3332), + [1667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(865), + [1670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1921), + [1673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [1676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [1679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3302), + [1682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), + [1685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [1688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(238), + [1691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), + [1694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(177), + [1697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2234), + [1700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(192), + [1703] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(180), + [1706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1709] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(181), + [1712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [1715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [1718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [1721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2303), + [1724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2633), + [1727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [1733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [1745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2876), + [1753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [1755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__lhs_expression, 1, 0, 0), + [1757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__compoundAssignmentOperator, 2, 0, 0), + [1763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), + [1766] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__postfixUnaryOperator, 1, 0, 0), + [1769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_null, 1, 0, 0), + [1771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_null, 1, 0, 0), + [1773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_integer, 1, 0, 0), + [1775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_integer, 1, 0, 0), + [1777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_float, 1, 0, 0), + [1779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_float, 1, 0, 0), + [1781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bool, 1, 0, 0), + [1783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bool, 1, 0, 0), + [1785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [1787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rhs_expression, 1, 0, 0), + [1789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [1791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 1), + [1799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 1), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 1, 0, 2), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 1, 0, 2), + [1805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 2, 0, 0), + [1807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [1811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [1813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [1821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__rangeOperator, 1, 0, 0), + [1823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__rangeOperator, 1, 0, 0), + [1825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 2, 0, 5), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 2, 0, 5), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [1837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_runtime_type_check_expression, 3, 0, 6), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parenthesized_expression, 3, 0, 0), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_expression, 3, 0, 0), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_expression, 3, 0, 0), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__closing_brace, 2, 0, 0), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__closing_brace, 2, 0, 0), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3, 0, 0), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 1, 0, 7), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 3, 0, 11), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 3, 0, 11), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [1883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [1893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 13), + [1895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 13), + [1897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 2, 0, 0), + [1899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 2, 0, 0), + [1901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call, 3, 0, 16), + [1903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__call, 3, 0, 16), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 2, 0, 0), + [1907] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 2, 0, 0), + [1909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [1911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [1913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 4, 0, 0), + [1915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 4, 0, 0), + [1917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [1919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_trace_expression, 4, 0, 0), + [1921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [1923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [1925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 4, 0, 0), + [1927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 4, 0, 0), + [1929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 24), + [1931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 24), + [1933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 4, 0, 25), + [1935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 4, 0, 25), + [1937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 31), + [1939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 31), + [1941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 3, 0, 0), + [1943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 3, 0, 0), + [1945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_block, 3, 0, 0), + [1947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_block, 3, 0, 0), + [1949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 5, 0, 0), + [1951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 5, 0, 0), + [1953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 40), + [1955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 40), + [1957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 5, 0, 41), + [1959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 5, 0, 41), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 45), + [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 45), + [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 4, 0, 0), + [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 4, 0, 0), + [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cast_expression, 6, 0, 53), + [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cast_expression, 6, 0, 53), + [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__constructor_call, 6, 0, 56), + [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__constructor_call, 6, 0, 56), + [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arg_list, 5, 0, 0), + [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arg_list, 5, 0, 0), + [1987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), + [1990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__prefixUnaryOperator, 1, 0, 0), REDUCE(sym__arithmeticOperator, 1, 0, 0), + [1993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1, 0, 0), + [1995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_operator, 1, 0, 0), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [2015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1808), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [2023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [2033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [2043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1615), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [2153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [2173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [2175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [2179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [2183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [2187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), + [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [2195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [2199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [2201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [2203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [2207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [2217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [2229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [2231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [2233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [2235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [2237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [2239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [2251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [2267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [2279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [2285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1706), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [2315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [2335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), + [2341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [2343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), + [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1622), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), + [2597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [2603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [2625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [2627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 3, 0, 10), + [2629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 3, 0, 10), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 71), + [2635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 71), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 72), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 72), + [2643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [2655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [2661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 10), + [2663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 10), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 22), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 22), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [2677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 38), + [2679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 38), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 9), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 9), + [2685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 49), + [2687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 49), + [2689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 52), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 52), + [2693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 0), + [2695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 0), + [2697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 6, 0, 54), + [2699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 6, 0, 54), + [2701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, 0, 0), + [2703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, 0, 0), + [2705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 6, 0, 55), + [2707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 6, 0, 55), + [2709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 42), + [2711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 42), + [2713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 57), + [2715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 57), + [2717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 3), + [2719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 3), + [2721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 58), + [2723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 58), + [2725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 59), + [2727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 59), + [2729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 60), + [2731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 60), + [2733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 3), + [2735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 3), + [2737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 62), + [2739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 62), + [2741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 63), + [2743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 63), + [2745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 64), + [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 64), + [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 33), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 33), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 65), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 65), + [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 66), + [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 66), + [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 6, 0, 33), + [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 6, 0, 33), + [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 33), + [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 33), + [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 48), + [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 48), + [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 6, 0, 50), + [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 6, 0, 50), + [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 67), + [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 67), + [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 68), + [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 68), + [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 50), + [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 50), + [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 6, 0, 66), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 6, 0, 66), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 69), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 69), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 35), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 35), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 70), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 70), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 7, 0, 0), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 7, 0, 0), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 48), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 48), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, 0, 0), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, 0, 0), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 42), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 42), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 57), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 57), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 73), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 73), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 3), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 3), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 74), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 74), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 75), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 75), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 76), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 76), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 78), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 78), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 79), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 79), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 64), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 64), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 80), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 80), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 33), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 33), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 81), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 81), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 82), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 82), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 83), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 83), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 33), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 33), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 84), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 84), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 85), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 85), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 86), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 86), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, 0, 50), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, 0, 50), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 87), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 87), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 88), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 88), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 7, 0, 50), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 7, 0, 50), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 50), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 50), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 7, 0, 67), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 7, 0, 67), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 89), + [2919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 89), + [2921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 8, 0, 52), + [2923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 8, 0, 52), + [2925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, 0, 90), + [2927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, 0, 90), + [2929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 6, 0, 91), + [2931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 6, 0, 91), + [2933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 42), + [2935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 42), + [2937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 57), + [2939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 57), + [2941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 73), + [2943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 73), + [2945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 92), + [2947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 92), + [2949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 93), + [2951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 93), + [2953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 64), + [2955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 64), + [2957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 80), + [2959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 80), + [2961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 94), + [2963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 94), + [2965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 33), + [2967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 33), + [2969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 95), + [2971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 95), + [2973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 96), + [2975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 96), + [2977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 97), + [2979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 97), + [2981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 98), + [2983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 98), + [2985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 99), + [2987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 99), + [2989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 86), + [2991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 86), + [2993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 100), + [2995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 100), + [2997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 8, 0, 50), + [2999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 8, 0, 50), + [3001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 101), + [3003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 101), + [3005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 102), + [3007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 102), + [3009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 8, 0, 103), + [3011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 8, 0, 103), + [3013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 8, 0, 50), + [3015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 8, 0, 50), + [3017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 104), + [3019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 104), + [3021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 8, 0, 105), + [3023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 8, 0, 105), + [3025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 106), + [3027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 106), + [3029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 9, 0, 70), + [3031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 9, 0, 70), + [3033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, 0, 107), + [3035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, 0, 107), + [3037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_statement, 7, 0, 108), + [3039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_statement, 7, 0, 108), + [3041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 42), + [3043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 42), + [3045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 57), + [3047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 57), + [3049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 73), + [3051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 73), + [3053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 64), + [3055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 64), + [3057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 80), + [3059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 80), + [3061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 94), + [3063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 94), + [3065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 109), + [3067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 109), + [3069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 110), + [3071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 110), + [3073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 86), + [3075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 86), + [3077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 100), + [3079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 100), + [3081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 111), + [3083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 111), + [3085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 9, 0, 50), + [3087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 9, 0, 50), + [3089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 112), + [3091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 112), + [3093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 113), + [3095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 113), + [3097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 9, 0, 114), + [3099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 9, 0, 114), + [3101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 115), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 115), + [3105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 9, 0, 116), + [3107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 9, 0, 116), + [3109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 57), + [3111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 57), + [3113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 73), + [3115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 73), + [3117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 64), + [3119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 64), + [3121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 80), + [3123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 80), + [3125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 94), + [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 94), + [3129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 86), + [3131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 86), + [3133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 100), + [3135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 100), + [3137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 10, 0, 111), + [3139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 10, 0, 111), + [3141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 10, 0, 117), + [3143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 10, 0, 117), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 10, 0, 118), + [3147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 10, 0, 118), + [3149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 73), + [3151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 73), + [3153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 80), + [3155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 80), + [3157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 94), + [3159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 94), + [3161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 86), + [3163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 86), + [3165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 100), + [3167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 100), + [3169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 11, 0, 111), + [3171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 11, 0, 111), + [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 94), + [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 94), + [3177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 100), + [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 100), + [3181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 12, 0, 111), + [3183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 12, 0, 111), + [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 13, 0, 111), + [3187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 13, 0, 111), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [3195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [3197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [3199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [3201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_preprocessor_statement, 2, 0, 0), + [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 2, 0, 0), + [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 2, 0, 0), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 3, 0, 3), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 3, 0, 3), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 3, 0, 0), + [3217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 3, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [3229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 3), + [3233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 3), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 12), + [3237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 12), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 12), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [3245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 12), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_package_statement, 4, 0, 18), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_statement, 4, 0, 18), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 4, 0, 0), + [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 4, 0, 0), + [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 4, 0, 0), + [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 4, 0, 0), + [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [3271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 4, 0, 23), + [3277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 4, 0, 23), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, 0, 22), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, 0, 22), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 3), + [3285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 3), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 27), + [3289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 27), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 28), + [3293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 28), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 27), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 27), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 28), + [3301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 28), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 3), + [3305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 3), + [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 33), + [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 33), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 34), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 34), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 34), + [3317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 34), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 35), + [3321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 35), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_using_statement, 5, 0, 0), + [3329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_using_statement, 5, 0, 0), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_statement, 5, 0, 37), + [3333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_statement, 5, 0, 37), + [3335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, 0, 38), + [3337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, 0, 38), + [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_while_statement, 5, 0, 39), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_while_statement, 5, 0, 39), + [3343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 42), + [3349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 42), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 3), + [3353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 3), + [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), + [3357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 21), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 21), + [3361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), + [3365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3491), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 5, 0, 36), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 5, 0, 36), + [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), + [3374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3466), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 43), + [3379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 43), + [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 44), + [3383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 44), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 44), + [3387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 44), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_typedef_declaration, 5, 0, 3), + [3391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typedef_declaration, 5, 0, 3), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 3), + [3395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 3), + [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 27), + [3399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 27), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 33), + [3403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 33), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 48), + [3407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 48), + [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 49), + [3411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 49), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 33), + [3415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 33), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 5, 0, 50), + [3419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 5, 0, 50), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 51), + [3423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 51), + [3425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_catch_statement, 5, 0, 72), REDUCE(sym_catch_statement, 5, 0, 72), + [3428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_catch_statement, 5, 0, 72), REDUCE(sym_catch_statement, 5, 0, 72), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [3435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3546), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [3440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [3446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3417), + [3449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [3459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 1, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [3465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 3, 0, 0), + [3469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2, 0, 0), + [3471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3317), + [3474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [3476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [3478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(896), + [3481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3302), + [3484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [3486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(940), + [3491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3313), + [3494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(935), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [3499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2232), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(156), + [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(3302), + [3510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2425), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(180), + [3516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(181), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(181), + [3522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(182), + [3525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(182), + [3528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(183), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2303), + [3534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 1, 0, 0), SHIFT_REPEAT(2633), + [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [3543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(943), + [3546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3127), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_expression_repeat1, 2, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [3557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [3559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [3561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [3563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(989), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3119), + [3569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [3573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(987), + [3576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3143), + [3579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [3581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1008), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3139), + [3587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [3589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [3591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1005), + [3594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3310), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [3599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1056), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3138), + [3605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), + [3607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [3609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [3611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [3613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(991), + [3616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3123), + [3619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1006), + [3622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3270), + [3625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [3627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [3631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [3633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [3635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1009), + [3638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3195), + [3641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [3643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [3645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [3647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1003), + [3650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3130), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [3657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), + [3659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [3661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [3663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [3669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3475), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [3686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3469), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), + [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [3749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [3753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [3787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [3797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [3801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [3805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [3823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [3831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), + [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [3845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [3853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [3865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [3933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 3, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [3941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1448), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3230), + [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 3, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [3961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [3969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), + [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [3983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [3985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), + [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3025), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [4143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [4325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__modifier, 1, 0, 0), + [4327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [4331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(1657), + [4334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3289), + [4337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2063), + [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3132), + [4349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [4351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), + [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2224), + [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3141), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [4369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2317), + [4380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(1374), + [4383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2232), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(156), + [4389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(3289), + [4392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2410), + [4395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(180), + [4398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(181), + [4401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(181), + [4404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(182), + [4407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(182), + [4410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(183), + [4413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2303), + [4416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 1, 0, 0), SHIFT(2633), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), + [4441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2139), + [4444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3142), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [4459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [4507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2233), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3136), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2269), + [4532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3129), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [4541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2276), + [4544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3140), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), + [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1572), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [4565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [4567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2270), + [4570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3124), + [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [4579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2260), + [4582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3133), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [4603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 14), + [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 14), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [4609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 15), + [4611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 15), + [4613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1, 0, 0), + [4615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 1, 0, 0), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), + [4623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 14), + [4625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 14), + [4627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 2, 0, 15), + [4629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 2, 0, 15), + [4631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 3, 0, 0), + [4633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 3, 0, 0), + [4635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 3, 0, 46), + [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type, 3, 0, 46), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_params, 4, 0, 0), + [4641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_params, 4, 0, 0), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [4661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2262), + [4664] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2232), + [4667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(156), + [4670] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3303), + [4673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2303), + [4676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2633), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2263), + [4682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3147), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [4689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_builtin_type, 1, 0, 0), + [4691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_builtin_type, 1, 0, 0), + [4693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(256), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [4700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 47), + [4702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 47), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [4712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 0), + [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 0), + [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [4720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 0), + [4722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 0), + [4724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2019), + [4729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat2, 2, 0, 0), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(2274), + [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_member_expression_repeat1, 2, 0, 19), SHIFT_REPEAT(3128), + [4739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [4741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 5, 0, 0), + [4743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [4745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_access_identifiers, 3, 0, 0), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [4749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), + [4751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [4753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binaryOperator, 1, 0, 0), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3060), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [4821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__arithmeticOperator, 1, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2273), + [4882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [4884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [4888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(2217), + [4894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat1, 2, 0, 0), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [4898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), SHIFT_REPEAT(2279), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat2, 2, 0, 0), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 2, 0, 3), + [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 2, 0, 3), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [4915] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 5, 0, 3), + [4917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 5, 0, 3), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_metadata, 6, 0, 3), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_metadata, 6, 0, 3), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [4965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [4969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), + [4999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [5003] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [5006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(252), + [5009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2205), + [5012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(2312), + [5015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [5035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), + [5038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [5040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [5044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [5052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 77), + [5058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [5062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [5066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [5072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [5080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [5094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3696), + [5096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [5102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 61), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [5138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), + [5140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [5142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [5144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [5148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [5150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 2, 0, 0), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_structure_type, 2, 0, 0), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_name, 1, 0, 0), + [5166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [5168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3473), + [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 1, 0, 30), + [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), + [5183] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_package_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3436), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 4, 0, 0), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 4, 0, 0), + [5190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [5194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 2, 0, 0), + [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(1671), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3345), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_block_repeat1, 2, 0, 0), + [5214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [5216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [5220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [5224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 2, 0, 30), + [5232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [5236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 1, 0, 0), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 1, 0, 0), + [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_block, 3, 0, 0), + [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 3, 0, 0), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2869), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__interpolated_identifier, 3, 0, 0), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 2, 0, 0), + [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), + [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_path, 1, 0, 0), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [5326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [5348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [5352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), SHIFT(250), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [5381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2671), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), REDUCE(sym_structure_type_pair, 3, 0, 0), + [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), + [5422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 26), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [5434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 4, 0, 0), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [5438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__type_path_repeat1, 2, 0, 0), SHIFT_REPEAT(2433), + [5443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 26), + [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [5463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2843), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 3, 0, 0), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [5504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2775), + [5507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(2775), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [5514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 3, 0, 0), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [5528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(2513), + [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), + [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__function_type_args, 1, 0, 0), SHIFT(1694), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [5571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 3, 0, 0), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [5575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 5, 0, 61), + [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [5579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 3, 0, 0), + [5583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 6, 0, 0), + [5585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [5589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [5593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [5595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [5597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 4, 0, 0), + [5599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [5601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), + [5607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), + [5609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [5612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(258), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [5621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 2, 0, 0), + [5623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), + [5625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_params_repeat1, 2, 0, 0), SHIFT_REPEAT(1452), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), + [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3315), + [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 29), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 2, 0, 29), SHIFT_REPEAT(2336), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3216), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [5657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 29), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 2, 0, 29), SHIFT_REPEAT(2379), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [5746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 2, 0, 0), + [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), + [5754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type, 4, 0, 0), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [5770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), + [5773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_structure_type_repeat1, 2, 0, 0), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 6, 0, 77), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_try_statement_repeat1, 2, 0, 0), SHIFT_REPEAT(3462), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [5828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2248), + [5831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 3, 0, 30), + [5833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_arg_list, 4, 0, 0), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_arg_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2137), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [5842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), + [5844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__function_type_args_repeat1, 2, 0, 0), SHIFT_REPEAT(1470), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_statement, 5, 0, 0), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [5861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [5869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_arg, 4, 0, 30), + [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [5879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_structure_type_pair, 3, 0, 0), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2, 0, 0), SHIFT_REPEAT(2245), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [5892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__function_type_args, 4, 0, 0), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_interface_declaration_repeat1, 3, 0, 26), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [5988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [5996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [6002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [6010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_package_name, 1, 0, 0), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [6028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_declaration_repeat3, 3, 0, 26), + [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), + [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), + [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [6086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [6094] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [6100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [6144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [6146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2086), + [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/alloc.h b/src/tree_sitter/alloc.h index 1f4466d..1abdd12 100644 --- a/src/tree_sitter/alloc.h +++ b/src/tree_sitter/alloc.h @@ -12,10 +12,10 @@ extern "C" { // Allow clients to override allocation functions #ifdef TREE_SITTER_REUSE_ALLOCATOR -extern void *(*ts_current_malloc)(size_t); -extern void *(*ts_current_calloc)(size_t, size_t); -extern void *(*ts_current_realloc)(void *, size_t); -extern void (*ts_current_free)(void *); +extern void *(*ts_current_malloc)(size_t size); +extern void *(*ts_current_calloc)(size_t count, size_t size); +extern void *(*ts_current_realloc)(void *ptr, size_t size); +extern void (*ts_current_free)(void *ptr); #ifndef ts_malloc #define ts_malloc ts_current_malloc diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17f0e94..799f599 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum { diff --git a/test/corpus/declarations.txt b/test/corpus/declarations.txt index b2aabd1..b5ecc0d 100644 --- a/test/corpus/declarations.txt +++ b/test/corpus/declarations.txt @@ -837,7 +837,7 @@ var x:Array; ) =================== -var declaration array comprehension +var declaration array comprehension (for) =================== var a = [for (i in 0...5) i]; @@ -849,9 +849,30 @@ var a = [for (i in 0...5) i]; (identifier) (operator) (array - (call_expression + (for_statement (identifier) - (range_expression (identifier) (integer) (integer)) + (range_expression (integer) (integer)) + ) + (identifier) + ) + ) +) + +=================== +var declaration array comprehension (while) +=================== + +var a = [while (i < 1) i]; +--- + +(module + (variable_declaration + (identifier) + (operator) + (array + (for_statement + (identifier) + (range_expression (integer) (integer)) ) (identifier) ) diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt index b9f1864..1c00aed 100644 --- a/test/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -46,8 +46,10 @@ if (true) { (block (identifier) (operator) (integer) ) - (block - (identifier) (operator) (integer) + (else_clause + (block + (identifier) (operator) (integer) + ) ) ) ) diff --git a/tree-sitter.json b/tree-sitter.json new file mode 100644 index 0000000..21e4fa8 --- /dev/null +++ b/tree-sitter.json @@ -0,0 +1,38 @@ +{ + "grammars": [ + { + "name": "haxe", + "camelcase": "Haxe", + "scope": "source.hx", + "path": ".", + "file-types": [ + "hx" + ], + "highlights": [ + "queries/highlights.scm" + ], + "injection-regex": "^(hx|haxe)$" + } + ], + "metadata": { + "version": "0.13.0", + "license": "MIT", + "description": "A tree sitter parser for haxe.", + "authors": [ + { + "name": "vantreeseba@gmail.com" + } + ], + "links": { + "repository": "git+https://github.com/vantreeseba/tree-sitter-haxe.git" + } + }, + "bindings": { + "c": true, + "go": true, + "node": true, + "python": true, + "rust": true, + "swift": true + } +}